The R Project SVN R

Rev

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

Rev 52784 Rev 52823
Line 1... Line 1...
1
 
1
 
2
R version 2.12.0 Under development (unstable) (2010-06-28 r52408)
2
R version 2.12.0 Under development (unstable) (2010-08-28 r52822)
3
Copyright (C) 2010 The R Foundation for Statistical Computing
3
Copyright (C) 2010 The R Foundation for Statistical Computing
4
ISBN 3-900051-07-0
4
ISBN 3-900051-07-0
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 2374... Line 2374...
2374
> 
2374
> 
2375
>   ## use with pairs:
2375
>   ## use with pairs:
2376
>   par(mfrow=c(1,1))
2376
>   par(mfrow=c(1,1))
2377
>   y <- matrix(rnorm(40000), ncol=4) + 3*rnorm(10000)
2377
>   y <- matrix(rnorm(40000), ncol=4) + 3*rnorm(10000)
2378
>   y[, c(2,4)] <-  -y[, c(2,4)]
2378
>   y[, c(2,4)] <-  -y[, c(2,4)]
2379
>   pairs(y, panel=function(...) {par(new=TRUE);smoothScatter(..., nrpoints=0)})
2379
>   pairs(y, panel = function(...) smoothScatter(..., nrpoints=0, add=TRUE))
2380
> 
2380
> 
2381
>   par(oldpar)
2381
>   par(oldpar)
2382
> 
2382
> 
2383
> 
2383
> 
2384
> 
2384
>