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:
barplot() on Numeric Vector
How to use the barplot() function on a numeric vector?
✍: FYIcenter.com
barplot() function is provided in the built-in "graphics" package.
You don't need to install any external packages to use barplot().
If you have a numeric vector, you can visualize it as a bar chart with the barplot() function.
Call barplot() with on a numeric vector:
> v = c(2,3,4) > typeof(v) [1] "double" > barplot(v)
Call barplot() with on a named numeric vector. The name for each member will be printed below the bar.
> v = c(2,3,4) > names(v) = c("First", "Second", "Third") > typeof(v) [1] "double" > barplot(v)
2023-05-09, 492🔥, 0💬
Popular Posts:
How to insert a dynamic field code manually in Microsoft Word? I know how the field code works. If y...
How to download publication files from libgen.rs? libgen.rs or gen.lib.rus.ec is the most robust Web...
Should I sign in to Google account after installing Google Chrome 55? When you run Google Chrome 55 ...
Why the "dir" command hangs when using the FTP command-line tool on Windows? when you run the "dir" ...
Where to find answers to frequently asked questions about Fitbit devices? Here is a collection of fr...