-2
我想繪製speed
vs age
。這裏的數據:如何在R中繪製這個圖?
Speed Age
15 <18
30 18-25
40 26-40
32 40+
我該如何繪製這個散點圖在R?我不知道如何做範圍。這是我迄今爲止所擁有的。
speed<-c(15,30,40,32)
我想繪製speed
vs age
。這裏的數據:如何在R中繪製這個圖?
Speed Age
15 <18
30 18-25
40 26-40
32 40+
我該如何繪製這個散點圖在R?我不知道如何做範圍。這是我迄今爲止所擁有的。
speed<-c(15,30,40,32)
隨着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()
它應該是plot(x, y)
。退房http://www.statmethods.net/graphs/scatterplot.html