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, 1052🔥, 0💬
Popular Posts:
What port numbers are used for data connections in passive mode in FileZilla Server? Can I limit the...
Where to find answers to frequently asked questions on Microsoft Word? I want to know how to open PD...
How to unzip a Word Document .docx file? According to Microsoft documentation, a .docx file is reall...
Where to find answers to frequently asked questions about Adobe Flash Player? I want to understand m...
Why I am getting the "Warning: Unresponsive Script" message box? How to avoid this message box? When...