The R Project SVN R

Rev

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

Rev 62864 Rev 63202
Line 1... Line 1...
1
 
1
 
2
R Under development (unstable) (2013-06-04 r62863) -- "Unsuffered Consequences"
2
R Under development (unstable) (2013-07-06 r63201) -- "Unsuffered Consequences"
3
Copyright (C) 2013 The R Foundation for Statistical Computing
3
Copyright (C) 2013 The R Foundation for Statistical Computing
4
Platform: x86_64-unknown-linux-gnu (64-bit)
4
Platform: x86_64-unknown-linux-gnu (64-bit)
5
 
5
 
6
R is free software and comes with ABSOLUTELY NO WARRANTY.
6
R is free software and comes with ABSOLUTELY NO WARRANTY.
7
You are welcome to redistribute it under certain conditions.
7
You are welcome to redistribute it under certain conditions.
Line 2025... Line 2025...
2025
> ### ** Examples
2025
> ### ** Examples
2026
> 
2026
> 
2027
> points.default # to see how it calls "plot.xy(xy.coords(x, y), ...)"
2027
> points.default # to see how it calls "plot.xy(xy.coords(x, y), ...)"
2028
function (x, y = NULL, type = "p", ...) 
2028
function (x, y = NULL, type = "p", ...) 
2029
plot.xy(xy.coords(x, y), type = type, ...)
2029
plot.xy(xy.coords(x, y), type = type, ...)
2030
<bytecode: 0x2577988>
2030
<bytecode: 0x2332048>
2031
<environment: namespace:graphics>
2031
<environment: namespace:graphics>
2032
> 
2032
> 
2033
> 
2033
> 
2034
> 
2034
> 
2035
> cleanEx()
2035
> cleanEx()
Line 2925... Line 2925...
2925
    if (warn.log && (par("xlog") || par("ylog"))) 
2925
    if (warn.log && (par("xlog") || par("ylog"))) 
2926
        warning("log scale:  xyinch() is nonsense")
2926
        warning("log scale:  xyinch() is nonsense")
2927
    u <- par("usr")
2927
    u <- par("usr")
2928
    xy * c(u[2L] - u[1L], u[4L] - u[3L])/par("pin")
2928
    xy * c(u[2L] - u[1L], u[4L] - u[3L])/par("pin")
2929
}
2929
}
2930
<bytecode: 0x2a09f20>
2930
<bytecode: 0x2cda550>
2931
<environment: namespace:graphics>
2931
<environment: namespace:graphics>
2932
> 
2932
> 
2933
> ## plot labels offset 0.12 inches to the right
2933
> ## plot labels offset 0.12 inches to the right
2934
> ## of plotted symbols in a plot
2934
> ## of plotted symbols in a plot
2935
> with(mtcars, {
2935
> with(mtcars, {
Line 3005... Line 3005...
3005
> graphics::par(get("par.postscript", pos = 'CheckExEnv'))
3005
> graphics::par(get("par.postscript", pos = 'CheckExEnv'))
3006
> ### * <FOOTER>
3006
> ### * <FOOTER>
3007
> ###
3007
> ###
3008
> options(digits = 7L)
3008
> options(digits = 7L)
3009
> base::cat("Time elapsed: ", proc.time() - base::get("ptime", pos = 'CheckExEnv'),"\n")
3009
> base::cat("Time elapsed: ", proc.time() - base::get("ptime", pos = 'CheckExEnv'),"\n")
3010
Time elapsed:  4.284 0.196 4.502 0 0 
3010
Time elapsed:  3.278 0.059 3.347 0 0 
3011
> grDevices::dev.off()
3011
> grDevices::dev.off()
3012
null device 
3012
null device 
3013
          1 
3013
          1 
3014
> ###
3014
> ###
3015
> ### Local variables: ***
3015
> ### Local variables: ***