Displaying 1 result from an estimated 1 matches for "gengraphics".
Did you mean:
opengraphics
2015 Nov 10
4
función par dentro de bucles, representar gráficas en bucle
...epresentación de las gráficas, así que tampoco lo tengo muy claro)
Muchas gracias!
//PAC2
sudo R
library(Rcmdr)
setwd("/home/albert/Documentos/UOC/PAC2/R")
dir()
wb <- read.table("Dades_PAC1Des96_Des08_PUNTS.csv", header=T, as.is=T,
sep=",")
head(wb)
tail(wb)
genGraphics <- function(arguments){
i=1
j=2
while i<=10 {
while j<=10 {
par( mfrow =c(3,3)) ??????????????????????????
xyplot(wb[i] ~ wb[j], type="p", pch=16,
auto.key=list(border=TRUE),
par.settings=simpleTheme(pch=16),...