我想绘制speed
vs age
。这是数据:
Speed Age
15 <18
30 18-25
40 26-40
32 40+
如何在R中将其绘制为散点图?我不知道怎么做范围。这是我到目前为止所做的。
speed<-c(15,30,40,32)
答案 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)
应该是plot(x, y)
。查看http://www.statmethods.net/graphs/scatterplot.html