Entering edit mode
8.5 years ago
alcarcar94
•
0
Hello, I am trying to do 6 different MAplots, each one of a different array, but I want that they appear together in one image. I use this command
ArraysName <- c("A", "B", "C", "D", "E", "F")
par(mfrow= c(3,2))
for (i in 1:6) {
plotMA(data, array= i, cex = 0.2, ,ArraysName [i] ))
}
And it works perfectly, but in the image the legend of each array is very big and it covers part of the data. How can I change the position of the legend or make the legend smaller so that it doesn't cover the array?
Thank you so much! It worked!