Comment utiliser par () dans r

#define plot area as three rows and one column
par(mfrow = c(3, 1))    

#create plots
plot(1:5, pch=19, col='red')
plot(1:10, pch=19, col='blue')
plot(1:20, pch=19, col='green')
hanux