You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have to see the distributions of this data. I have 100,000 times the value 1, 200,000 times the value 2 and 50,000 the value 3. With the current implementation of the density, I am obliged to pass an array that has 350,000 elements. If I do that, my image is frozen completely. The time is spent calculating the RSGaussianDensity
How to reproduce:
| densityPlotdata |
data :=OrderedCollectionnew.
100000timesRepeat: [ data add:1 ].
200000timesRepeat: [ data add:2 ].
50000timesRepeat: [ data add:3 ].
densityPlot :=selfdata: data.
densityPlot bandwidth:4.
^ densityPlot open.
The text was updated successfully, but these errors were encountered:
I have to see the distributions of this data. I have 100,000 times the value
1
, 200,000 times the value2
and 50,000 the value3
. With the current implementation of the density, I am obliged to pass an array that has 350,000 elements. If I do that, my image is frozen completely. The time is spent calculating the RSGaussianDensityHow to reproduce:
The text was updated successfully, but these errors were encountered: