barplot(table(c$position)) > plot(c$height,c$weight) # scatter plot > plot(c) # scatterplot matrix > plot(c[,c(4,5,6,9)]) > boxplot(c$height) # box-wicker plot > boxplot(c$height[c$position=="pitcher"], c$height[c$position!="pitcher"], names=c("pitcher","other"),ylab="height") 29