search for: yact

Displaying 1 result from an estimated 1 matches for "yact".

Did you mean: fact
2007 Nov 11
1
Removing axes / frame from plot()
...umeric(min(df)), as.numeric(max(df))), col="OliveDrab", xlab="", ylab="") What I would like to do is have this chart appear such that there is only an x and a y axis. I do not want a frame around my plot. First I tried: axis(side=2, xact="n"); axis(side=3, yact="n") but this didn't work. Then I looked up: ?plot.default In here there is an argument called 'frame.plot' which is described as "a logical indicating whether a box should be drawn around the plot." I tried: plot(df, ylim=c(as.numeric(min(df)), as.numeric(max(...