Categories:
Cloud (204)
Entertainment (11)
Facebook (43)
General (50)
Life (31)
Programming (64)
Technology (430)
Testing (4)
Tools (488)
Twitter (5)
Wearable (26)
Web Design (44)
Collections:
Other Resources:
What Is plot() Function
How to use the plot() function to generate graphics?
✍: FYIcenter.com
plot() function allows you to generate a graph representing
a given sequence of x-y points.
plot() function is provided in the built-in "graphics" package.
plot() function takes the following positional arguments:
plot() function also takes 5 optional named arguments:
Examples calling plot() function:
# coordinates specified as 2 vectors plot( c(1,2,3,4), c(31, 22, 13, 44) ) # coordinates specified as a data frame plot( c(1,2,3,4), c(31, 22, 13, 44) ) # coordinates specified as a function plot(sin, -pi, 2*pi)
2023-05-09, ∼1765🔥, 0💬
Popular Posts:
How to add comments on slides? I am reviewing someone else's presentation and I want to add some com...
How to unzip an XPS (XML Paper Specification, .xps) file? According to Microsoft documentation, an ....
Why I getting the "Error! No text of specified style in document." in Microsoft Word? You are gettin...
How to add a new layout to the slide master in PowerPoint? In my PowerPoint presentation, I need to ...
How to update TOC (Table Of Content) for a FrameMaker book? I have make changes in some chapters. Yo...