Displaying 1 result from an estimated 1 matches for "x3log".
2004 Jun 16
4
non-linear binning? power-law in R
...plots.
If you play with drawing these curves on top of each other they look OK
apart from at the beginning. However, changing the band width to 0.0001 has
a radical effect on these plots, and they begin to show a different trend
(look like they are being governed by a different power).
Hmmm....
x3log <- -log(x3)
plot( density(x3log,cut=0,bw=0.5), log='y',col=1)
lines(density(x3log,cut=0,bw=0.2), log='y',col=2)
lines(density(x3log,cut=0,bw=0.1), log='y',col=3)
lines(density(x3log,cut=0,bw=0.01), log='y',col=4)
Sorry...
'Real' data of this form i...