About DataFrame
How to plot points alone using plot function?
R Introduction-to-Data-Frames-in-R 12-13 min 30-40 sec
Answers:
In the plot function, set "type" argument to "p" for points only. Example - plot(x,y,type = "p"), where "x" and "y" are some vectors.