Re: [R] hist function+label second y-axis

2008-03-21 Thread Jim Lemon
canadiangirl19 wrote: > with the plot function I get the timeseries, I want a histogram but as a line > and no bars. > plot(x$LAN_3,type="h") > I should have been clearer: plot(hist(x$LAN_3,plot=FALSE)$counts,type="h",...) Jim __ R-help@r-project.org

Re: [R] hist function+label second y-axis

2008-03-21 Thread canadiangirl19
with the plot function I get the timeseries, I want a histogram but as a line and no bars. plot(x$LAN_3,type="h") I solved the second problem with: mtext("Differenzwerte",side=3,line=3) mtext("Häufigkeit (diff Werte)",side=4) but get a new little problem: If I set line=3 at the axis=4 R did not

Re: [R] hist function+label second y-axis

2008-03-21 Thread Jim Lemon
canadiangirl19 wrote: > Dear Forum, > > hist(x$LAN_3,col="green",xaxt='n',yaxt='n',xlab="",ylab="",main="",type="l") > I´d like to craete a line not a bar in the hist function, but regrettably I > get only warning messages: > 1: Grafikparameter "type" ist veraltet in: title(main, sub, xlab, ylab,

[R] hist function+label second y-axis

2008-03-21 Thread canadiangirl19
Dear Forum, hist(x$LAN_3,col="green",xaxt='n',yaxt='n',xlab="",ylab="",main="",type="l") I´d like to craete a line not a bar in the hist function, but regrettably I get only warning messages: 1: Grafikparameter "type" ist veraltet in: title(main, sub, xlab, ylab, line, outer, ...) 2: Grafikparam