Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to make a barplot with R from a table?

Tags:

plot

r

I have some data in .cvs. I would like to make a simple barplot in R, with this data, but I a little lost in R.

Specie   Number
A        18756
V        8608 
R        3350 
P        3312 
O        1627

I already have the number of each specie. I just want to plot the results? A, V, R, P, O are the names of the species.

I am a little confused of what I have to do first? Do I have to convert the table to a matrix? What commands do I have to use in R?

like image 918
user1302247 Avatar asked Jan 18 '23 01:01

user1302247


2 Answers

Here's a simple example:

y = data.frame(Specie=c('A','V','R','P','O'),Number=c(18756,8608,3350,3312,1627))
barplot(y$Number, names.arg=y$Specie)

You would use read.csv (or one of its friends) to read from a file into a Data Frame.

like image 66
Matthew Lundberg Avatar answered Jan 25 '23 13:01

Matthew Lundberg


Try help(barplot), In there you'll find a command that does what you need. Specifically you'll enter Number as the height argument and Specie for the names.arg argument.

like image 43
John Avatar answered Jan 25 '23 13:01

John