Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

R Programming: Draw an empty plot and an empty plot specify the axes limits of the graphic

R Programming: Basic Exercise-20 with Solution

Write a R program to draw an empty plot and an empty plot specify the axes limits of the graphic.

Sample Solution :

R Programming Code :

#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))

Sample Output:

R programming: Blank rplot R programming: Blank rplot

R Programming Code Editor:



Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: Write a R program to create a list of elements using vectors, matrices and a functions. Print the content of the list.
Next: Write a R program to create a simple bar plot of five subjects marks.

Test your Programming skills with w3resource's quiz.

What is the difficulty level of this exercise?