Displaying 2 results from an estimated 2 matches for "y18".
Did you mean:
18
2002 Aug 20
2
Reset par(xaxp) in plot
R-Helpers;
This seems simple to set graphic parameter, but I tried plot a graph
with 10 intervals in x axis with par(xaxp = c(0, 150, 10) but to no avail:
par(xaxp =c (0, 150, 10))
plot(age, y18, type="n", ylab="Height (m)", xlab=" age (Yrs)", font
= 2)
lines(age, y6, lty = 4, lwd = 2)
lnes(age, y10, lty = 1, lwd =2)
lines(age, y14, lty = 2, lwd =2)
lines(age, y18, lty = 3, lwd = 2)
abline(v=50)
The plot shown only 3 intervals with tick at 0, 50, 100, an...
2002 Aug 20
0
Sum: Reset par(xaxp) in plot
...desired intervals.
Richard
My original question:
> R-Helpers;
>
> This seems simple to set graphic parameter, but I tried
> plot a graph
> with 10 intervals in x axis with par(xaxp = c(0, 150, 10)
> but to no avail:
>
> par(xaxp =c (0, 150, 10))
> plot(age, y18, type="n", ylab="Height (m)", xlab=" age
> (Yrs)", font
> = 2)
> lines(age, y6, lty = 4, lwd = 2)
> lnes(age, y10, lty = 1, lwd =2)
> lines(age, y14, lty = 2, lwd =2)
> lines(age, y18, lty = 3, lwd = 2)
> abline(v=50)
>
> The plot show...