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, ∼1327🔥, 0💬
Popular Posts:
What contents are stored in a Web Archive (.mht) file? When you convert a word document into a singl...
What is "OneNote Linked Notes Add-in" in Microsoft Word? Should I disable it? "OneNote Linked Notes ...
What do those Fitbit icons mean? Over the years, Fitbit has used a number of icons on their wearable...
How do I tell what version of Outlook my computer is using? You can determine the version number of ...
How to make my presentation beautiful by applying a built-in theme provided by Office PowerPoint 200...