I have a serie generated and from histogram it looks quite bell-shaped.
To draw the density, I use
Code: Select all
density(type=gauss) bn 1 2000 x bnd
x are 100 grids automatically generated using 1%-ile to 99%-ile, why there is a 0.0, because there is no zero in my series?
Code: Select all
compute fract=%fractiles(bn,||.025,.975||)
compute bar = fract(1)
scatter(style=lines,$
header="Figure 3 ",hshade=||0.0,bar||) 1
# x bnd / 1
I want to shade the area left to 2.5%-ile point, but this would shade the whole area, I tried to add a vshade but only real is allowed as arguments. Is there any way to do that?
how do I put text near the shade or in the shade or with an arrow?