Displaying 3 results from an estimated 3 matches for "lnes".
Did you mean:
lines
2002 Aug 20
2
Reset par(xaxp) in plot
...mple 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, and 150. and
> par()$xaxp
[1] 0 150 3
I use current version Lattice and Grid.
> version
_
pla...
2002 Aug 20
0
Sum: Reset par(xaxp) in 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, and 150. and
>
> > par()$xaxp
> [1] 0 150 3
>
> I use current version Lattice an...
2009 May 20
0
RAID handling in UPS Shutdown script
I have read the NUT document /usr/share/doc/nut-2.2.0/docs/shutdown.txt
And in particular the section called "RAID Warning".
In response to this section I have added the two lnes, but haven't yet
tested it:
mdadm --readonly /dev/md0
mdadm --readonly /dev/md1
into /etc/rc.d/init.d/halt
Thus:
-----------
# Remount read only anything that's left mounted.
# echo $"Remounting remaining filesystems readonly"
mount | awk '{ print $3 }' | while read li...