Write a R program to draw an empty plot and an empty plot specify the axes limits of the graphic
- برمجة R
- 2021-09-04
- adonis77j
الأجوبة
#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:

القوائم الدراسية التي ينتمي لها السؤال
معلومات ذات صلة