jax.scipy.stats.gaussian_kde.evaluate

jax.scipy.stats.gaussian_kde.evaluate#

gaussian_kde.evaluate(points)[source]#

Evaluate the estimated pdf on a set of points.

LAX-backend implementation of scipy.stats._kde.evaluate().

Original docstring below.

Parameters:

points ((# of dimensions, # of points)-array) – Alternatively, a (# of dimensions,) vector can be passed in and treated as a single point.

Returns:

values – The values at each point.

Return type:

(# of points,)-array