-
Notifications
You must be signed in to change notification settings - Fork 10
/
soiltexture_foodweb.R
55 lines (46 loc) · 993 Bytes
/
soiltexture_foodweb.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
setwd("C:/_RTOOLS/SWEAVE_WORK/SOIL_TEXTURES/rforge/soiltexture_foodweb")
require(soiltexture)
require(mvbutils)
# foodweb(
# where = "package:MACROLegions",
# cex = 1,
# charlim = 60
# ) #
funz <- c(
"TT.plot",
"TT.points.in.classes",
"TT.classes",
"TT.iwd",
"TT.image",
"TT.contour",
"TT.kde2d",
"TT.mahalanobis",
"TT.text",
"TT.normalise.sum",
"TT.text.transf",
"TT.text.transf.X",
"TT.points",
"TT.classes.tbl",
"TT.vertices.tbl",
"TT.vertices.plot"
) #
for( i in funz )
{ #
pdf(
file = paste(sep="",i,".pdf"),
width = 21/2.51,
height = 21/2.51,
pointsize = 14
) #
#
foodweb(
prune = i,
where = "package:soiltexture",
cex = 1,
charlim = 60,
ancestors = FALSE,
descendents = TRUE
) #
#
dev.off()
} #