-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathdata.R
148 lines (95 loc) · 3.41 KB
/
data.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
if(dev.cur() <= 1) {
dd <- getOption("device")
if(is.character(dd)) dd <- get(dd)
dd()
}
oldpar <- par(ask = interactive() && dev.interactive(orNone=TRUE))
oldoptions <- options(warn=-1)
plot(amacrine)
plot(anemones, markscale=1)
ants.extra$plotit()
plot(austates)
plot(bei.extra$elev, main="Beilschmiedia")
plot(bei, add=TRUE, pch=16, cex=0.3)
plot(betacells)
plot(bramblecanes, cols=1:3)
plot(split(bramblecanes))
plot(bronzefilter,markscale=2)
plot(subset(btb, select=spoligotype), cols=2:5,
main="Bovine Tuberculosis, by spoligotype")
plot(cells)
plot(chicago, main="Chicago Street Crimes", col="grey",
cols=c("red", "blue", "black", "blue", "red", "blue", "blue"),
chars=c(16,2,22,17,24,15,6), leg.side="left", show.window=FALSE)
chorley.extra$plotit()
plot(clmfires, which.marks="cause", cols=2:5, cex=0.25,
main="Castilla-La Mancha forest fires")
plot(clmfires.extra$clmcov200, main="Covariates for forest fires")
plot(concrete)
plot(copper$Points, main="Copper")
plot(copper$Lines, add=TRUE)
plot(demohyper, quote({ plot(Image, main=""); plot(Points, add=TRUE) }),
parargs=list(mar=rep(1,4)))
plot(dendrite, leg.side="bottom", main="Dendritic spines", cex=0.75, cols=2:4)
plot(demopat)
plot(finpines, main="Finnish pines")
wildM1 <- with(flu, virustype == "wt" & stain == "M2-M1")
plot(flu[wildM1, 1, drop=TRUE],
main=c("flu data", "wild type virus, M2-M1 stain"),
chars=c(16,3), cex=0.4, cols=2:3)
plot(gordon, main="People in Gordon Square", pch=16)
plot(gorillas, which.marks=1, chars=c(1,3), cols=2:3, main="Gorilla nest sites")
plot(hamster, cols=c(2,4))
plot(heather)
plot(humberside)
plot(hyytiala, cols=2:5)
plot(japanesepines)
plot(lansing)
plot(split(lansing))
plot(longleaf)
plot(mucosa, chars=c(1,3), cols=c("red", "green"))
plot(mucosa.subwin, add=TRUE, lty=3)
plot(murchison, main="Murchison data")
plot(murchison$greenstone, main="Murchison data", col="lightgreen")
plot(murchison$gold, add=TRUE, pch=3, col="blue")
plot(murchison$faults, add=TRUE, col="red")
plot(nbfires, use.marks=FALSE, pch=".")
plot(split(nbfires), use.marks=FALSE, chars=".")
plot(split(nbfires)$"2000", which.marks="fire.type",
main=c("New Brunswick fires 2000", "by fire type"),
cols=c("blue", "green", "red", "cyan"),
leg.side="left")
plot(nztrees)
plot(trim.rectangle(as.owin(nztrees), c(0,5), 0), add=TRUE, lty=3)
plot(osteo[1:10,], tick.marks=FALSE, xlab="", ylab="", zlab="")
plot(paracou, cols=2:3, chars=c(16,3))
ponderosa.extra$plotit()
pyr <- pyramidal
pyr$grp <- abbreviate(pyramidal$group, minlength=7)
plot(pyr, quote(plot(Neurons, pch=16, main=grp)), main="Pyramidal Neurons")
rm(pyr)
plot(redwood)
plot(redwood3, add=TRUE, pch=20)
redwoodfull.extra$plotit()
plot(residualspaper$Fig1)
plot(residualspaper$Fig4a)
plot(residualspaper$Fig4b)
plot(residualspaper$Fig4c)
shapley.extra$plotit(main="Shapley")
plot(simdat)
plot(spiders, pch=16, show.window=FALSE)
plot(sporophores, chars=c(16,1,2), cex=0.6)
points(0,0,pch=16, cex=2)
text(15,8,"Tree", cex=0.75)
plot(spruces, maxsize=min(nndist(spruces)))
plot(subset(stonetools, select=TYPE),
main="Palaeolithic stone tools and bone fragments",
cols=2:3, cex=0.5)
plot(swedishpines)
plot(urkiola, cex=0.5, cols=2:3)
plot(waka, markscale=0.04, main=c("Waka national park", "tree diameters"))
plot(waterstriders, main.panel="",
equal.scales=TRUE, mar.panel=0, hsep=1,
cex=0.75)
par(oldpar)
options(oldoptions)