The R Project SVN R

Rev

Rev 43202 | Rev 43526 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 43202 Rev 43286
Line 120... Line 120...
120
 
120
 
121
plot(cos, -7,7, n=11, axes=FALSE)
121
plot(cos, -7,7, n=11, axes=FALSE)
122
## gave wrong ylab in R 2.6.0
122
## gave wrong ylab in R 2.6.0
123
plot(cos, -7,7, ylab = "Cosine  cos(x)", n=11, axes=FALSE)
123
plot(cos, -7,7, ylab = "Cosine  cos(x)", n=11, axes=FALSE)
124
## partial matching of 'ylab'; mapping  [0,1] (not [-7.7]):
124
## partial matching of 'ylab'; mapping  [0,1] (not [-7.7]):
-
 
125
## margins chosen to avoid rouding error showing to 2dp.
-
 
126
op <- par(mar=c(5,4.123,4,2)+0.1)
125
plot(gamma, yla = expression(Gamma(x)), n=11, yaxt="n")
127
plot(gamma, yla = expression(Gamma(x)), n=11, yaxt="n")
-
 
128
par(op)
126
 
129