barplot
> x = 1:10 > x[4] = NA > x [1] 1 2 3 NA 5 6 7 8 9 10 > barplot(x)
# If you set names(x), then those will appear as the labels # in the bar graph. > names(x) = c("one", "two", "three", "four", "five") > barplot(x)
plot
> x = seq(0, 6*pi, 0.1) > y = sin(x) > plot(x, y)