Ross Ihaka y Robert Gentleman
Ihaka, Ross., & Gentleman, Robert. (1996). R: A Language for Data Analysis and Graphics. Journal of Computational and Graphical Statistics, 5(3), 299. doi:10.2307/1390807
Douglas Bates - John Chambers - Peter Dalgaard - Robert Gentleman - Kurt Hornik - Ross Ihaka - Tomas Kalibera - Michael Lawrence - Friedrich Leisch - Uwe Ligges - Thomas Lumley - Martin Maechler - Sebastian Meyer - Paul Murrell - Martyn Plummer - Brian Ripley - Deepayan Sarkar - Duncan Temple Lang - Luke Tierney - Simon Urbanek
R Core Team (2024). R: A language and environment for statistical computing. R Foundation for Statistical Computing, Vienna, Austria. URL https://www.R-project.org/.
R users groups, R-Ladies
library(vegan)
dat <- read.table("/home/santiago/mandevilla.txt", header = TRUE)
## multidimensional scaling
m1 <- metaMDS(dat2, dist = "bray", k = 2)
m1
## figura
plot(m1, "sites", type = "n")
points(m1$points[,1],
m1$points[,2],
pch = c(rep(1, 4), rep(19, 4), rep(19, 3),
rep(1, 5), rep(19, 4), rep(1, 4)),
col = c(rep("blue4", 4), rep("blue4", 4), rep("red4", 3),
rep("red4", 5), rep("green4", 4), rep("green4", 4)))
## agregar compuestos
points(m1, "species", pch = 2, cex = 0.7)
## agregar nombres de compuestos
text(m1$species[, 1], m1$species[, 2] - 0.1, colnames(dat2), cex = 0.6)
## anosim
tipo <- as.factor(c(rep("hib", 8), rep("lax", 8), rep("pen", 8)))
a1 <- anosim(dat = dat2, grouping = tipo, distance = "bray", permutations = 9999)
summary(a1)
perm <- permustats(a1)
densityplot(perm)
plot(a1)
Zenodo | Figshare | GitHub | Supplementary Material | |
---|---|---|---|---|
Licencia | flexible | MIT | flexible | no |
A largo plazo? | si* | si | no | si* |
Asigna DOI? | si | si | no | no |
Permite buscar código? | si | si | si | no |
Conexión con GitHub? | si | no | si | no |
Costo para el autor | no | no | no | no* |
Modificado de Mislan et al. 2016
ver PÁGINA DEL CURSO
Construcción de una rutina de resolución de problemas estadísticos y gráficos. Entrega de un informe, 15 días después de que el curso acabe.