The R Project SVN R

Rev

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

Rev 43636 Rev 44151
Line 1... Line 1...
1
 
1
 
2
R version 2.7.0 Under development (unstable) (2007-12-09 r43632)
2
R version 2.7.0 Under development (unstable) (2008-01-25 r44149)
3
Copyright (C) 2007 The R Foundation for Statistical Computing
3
Copyright (C) 2008 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.
8
Type 'license()' or 'licence()' for distribution details.
8
Type 'license()' or 'licence()' for distribution details.
Line 46... Line 46...
46
> known <- c(32:126, 160:255)
46
> known <- c(32:126, 160:255)
47
> 
47
> 
48
> for(i in known) {
48
> for(i in known) {
49
+     x <- i %% 16
49
+     x <- i %% 16
50
+     y <- i %/% 16
50
+     y <- i %/% 16
51
+     points(x, y, pch=i)
51
+     points(x, y, pch=-i)
52
+ }
52
+ }
53
> 
53
> 
54
> par(pty="m")
54
> par(pty="m")
55
> 
55
> 
56
> ## PR 816 (label sizes in dotchart)
56
> ## PR 816 (label sizes in dotchart)