JuliaStats / KernelDensity.jl

Kernel density estimators for Julia
Other
172 stars 40 forks source link

kde on Vector{Date} #105

Open jariji opened 2 years ago

jariji commented 2 years ago

I want to use kde on Dates but I get

julia> kde(collect(Date(2000):Day(1):Date(2001)))
ERROR: MethodError: no method matching kde(::Vector{Date})

I would like do this directly on Dates rather than converting to Int and back. Is this possible?