πGeneric Plot Types
plot(x, y, type="p")Example
# Data
x<-1:10; y=x**3
# Create different plots
plot(x,y, type="p")
plot(x,y, type="b")
plot(x,y, type="h")
plot(x,y, type="s")Source:
Last updated
plot(x, y, type="p")# Data
x<-1:10; y=x**3
# Create different plots
plot(x,y, type="p")
plot(x,y, type="b")
plot(x,y, type="h")
plot(x,y, type="s")Last updated