statistics icon indicating copy to clipboard operation
statistics copied to clipboard

Statistics.Sample.KernelDensity.Simple is deprecated?

Open jsermeno opened this issue 9 years ago • 2 comments

Hi,

I wanted to learn more about this module's deprecation. I want to specify the lower and upper bounds for an estimate, where the lower and upper bounds extend beyond the range of the sample data. I was unable to get the results I want with Statistics.Sample.KernelDensity.kde_, but found that Statistics.Sample.KernelDensity.Simple.estimatePDF works perfectly. My question is, should kde_ be able to do everything that estimatePDF can? Is there something I need to do to the data I pass into kde_? Here's an example:

With the following test data:

let demoData = V.fromList $ concat $ zipWith replicate [5, 4, 3, 7] [0..3]

The following estimate:

-- xValues has 'n' values ranging from 'a' to 'b'.
Stats.estimatePDF Stats.gaussianKernel bw demoData (Points xs)

Returns an estimate like this:

__amby

While the following code:

Stats.kde_ n a b demoData

Returns an estimate like this:

__amby

Thanks

jsermeno avatar Nov 19 '16 22:11 jsermeno

@bos could you comment on this?

Shimuuar avatar May 01 '17 16:05 Shimuuar

This looks related to #46

luke-clifton avatar Oct 23 '17 03:10 luke-clifton