tommyod/KDEpy

SPherical KDE

Open

#158 aperta il 14 nov 2023

Vedi su GitHub
 (1 commento) (0 reazioni) (0 assegnatari)Jupyter Notebook (104 fork)auto 404
help wanted

Metriche repository

Star
 (647 star)
Metriche merge PR
 (Metriche PR in attesa)

Descrizione

Hi, Thank you for this very useful package. I'm wondering if it's possible to estimate the kde on a unit sphere data, i.e. the custom grid is defined by the following:

def create_grid(B=16) : Theta = np.linspace(0, 360, 2B + 1) * np.pi / 180 Phi = np.linspace(0, 180, 2B + 1) * np.pi / 180 [T,P] = np.meshgrid(Theta,Phi)

    return T,P

Guida contributor