Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR R

How to use par() in 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')
Source by www.statology.org #
 
PREVIOUS NEXT
Tagged: #How #R
ADD COMMENT
Topic
Name
4+2 =