Sorry for puting this silly question: I am reading the book "Using R for Introductory Statistics" and would like to create a barplot using this data

install.packages("UsingR")
library(UsingR)
head(scrabble)

   piece points frequency
1      A      1         9
4      B      3         2
7      C      3         2
10     D      2         4

The variable piece shows the letter, and the variable frequency its respective frequency in the scrabble game. Specifically, I would like to have on the X axis the letters, and on the Y axis the frequencies.

Thank you in advance

link|improve this question
feedback

1 Answer

up vote 6 down vote accepted

Take a look at barplot(), e.g.:

barplot(scrabble$frequency, names = scrabble$piece, 
        xlab = "Piece", ylab = "Frequency", main = "Letter Frequencies")

Barplot

link|improve this answer
thank you Alex :) I totally forgot I could give them NAMES :D – moldovean Feb 4 at 10:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.