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
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.