El código relativo a los gráficos es:
x11(width=10, height=5, xpos=0,pointsize=14)
op <- par(mfrow = c(1, 2), # 2 x 2 pictures on one plot
pty = "m", las=1, mar=c(6,5,5,6), cex=0.75,cex.axis=0.9,
cex=1,xaxs="r") # square plotting region,
plot(TukeyHSD(anovaGen, "Gen",ordered=TRUE))
plot(TukeyHSD(anovaSel, "Sel",ordered=TRUE))
dev.copy2eps(file=dirTukey, width=10.0, height=5.0, pointsize=14)
y el fichero dirTukey se genera, pero no puedo abrirlo, es como si el formato estuviera mal.
Sin embargo con el siguiente código si funciona correctamente.
x11(width=10, height=10, xpos=0,pointsize=14)
op <- par(mfrow = c(2, 2), pty = "m", cex=1,xaxs="r") # square plotting region,
boxplot(Fitness~Gen, ylab="Fitness", xlab="Gen", data=datos,cex.axis=1.2,cex.lab=1.2)
boxplot(Fitness~PS, ylab="Fitness", xlab="PS", data=datos,cex.axis=1.2,cex.lab=1.2)
boxplot(Fitness~Op, ylab="Fitness", xlab="Op", data=datos,cex.axis=1.2,cex.lab=1.2)
boxplot(Fitness~Sel, ylab="Fitness", xlab="Sel", data=datos,cex.axis=1.2,cex.lab=1.2)
dev.copy2eps(file=dirBox, width=10.0, height=10.0, pointsize=14)
¿Podría alguien echarme una mano?
Un saludo a todos, Maribel