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, ∼1251🔥, 0💬
Popular Posts:
How to change the default Save Path on qBittorrent? By default, qBittorrent uses "Downloads" directo...
What is a PowerPoint Template (.potx) File? What is the difference between .potx and .pptx files? A ...
How to download Mozilla Firefox 2.0? If you want to try Mozilla Firefox 2.0, you can follow this tut...
Why I am getting the "run or save ChromeSetup.exe" pop up box when trying to install Google Chrome 3...
How to convert slide files created with older versions of PowerPoint to the current PowerPoint? I ha...