如何在R中绘制这个?

时间:2015-02-07 05:33:49

标签: r scatter-plot

我想绘制speed vs age。这是数据:

Speed   Age
15      <18
30      18-25
40      26-40
32      40+

如何在R中将其绘制为散点图?我不知道怎么做范围。这是我到目前为止所做的。

speed<-c(15,30,40,32)

2 个答案:

答案 0 :(得分:1)

使用ggplot2

# Make a data frame
df <- data.frame(Speed = c(15, 30, 40, 32), 
                 Age = factor(c("<18", "18-25", "26-40", "40+")))

require(ggplot2)
# Use the geom_point geom
ggplot(df, aes(Speed, Age)) + geom_point()

答案 1 :(得分:0)