Displaying 2 results from an estimated 2 matches for "18h27".
Did you mean:
1827
2017 Oct 22
2
Add a vertical line and some values on a plot
Dear R-experts,
Here below is my code,
I would like to add a vertical line on my plot, showing the median and I would like to place some values on this graph as well, i.e. 4.3 and -8.4. How can I do ?
Many thanks for your reply.
A=c(1,2.3,4,3.5,4.3,2.5,6.3,-0.1,-1.5,3.7,-2.3,-3.5,5.4,3.2, -10.5,-8.4,-9.4)
d <- density(A)
plot(d)
median(A)
2017 Oct 22
0
Add a vertical line and some values on a plot
Hello,
After the plot just do
abline(v = median(A))
As for how to plot points, see, well, ?points().
Hope this helps,
Rui Barradas
Em 22-10-2017 16:33, varin sacha via R-help escreveu:
> Dear R-experts,
>
> Here below is my code,
> I would like to add a vertical line on my plot, showing the median and I would like to place some values on this graph as well, i.e. 4.3 and -8.4. How