Slip 19 - E) Write an R program to draw an empty plot and an empty plot specify the axes limits of the graphic.

Solution:

#print("Empty plot:")
plot.new()
#print("Empty plot specify the axes limits of the graphic:")
plot(1, type="n", xlab="", ylab="", xlim=c(0, 20), ylim=c(0, 20))

Post a Comment

0 Comments