如何在 R 中绘制这个?

How to plot this in R?

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

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

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

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

应该是plot(x, y)。查看 http://www.statmethods.net/graphs/scatterplot.html

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()