1
使用示例數據:磨製使用ggplot R中
#天1
carrots <- data.frame(length = rnorm(100000, 6, 2))
cukes <- data.frame(length = rnorm(50000, 7, 2.5))
#Now,你的兩個dataframes合二爲一。首先在每個中創建一個新列。
carrots$veg <- 'carrot'
cukes$veg <- 'cuke'
#,然後組合成新的數據幀vegLengths
vegLengths <- rbind(carrots, cukes)
#now讓你的可愛情節
ggplot(vegLengths, aes(length, fill = veg)) + geom_histogram(alpha = 0.5), position = 'identity')
#每日2
carrots <- data.frame(length = rnorm(600000, 6, 2))
cukes <- data.frame(length = rnorm(70000, 7, 2.5))
#Now, combine your two dataframes into one. First make a new column in each.
carrots$veg <- 'carrot'
cukes$veg <- 'cuke'
#,然後組合成新的數據幀vegLengths
vegLengths <- rbind(carrots, cukes)
#now讓你的可愛情節
ggplot(vegLengths, aes(length, fill = veg)) + geom_histogram(alpha = 0.5), position = 'identity')
我有一個類似的數據集,並決定用這個更容易理解。我有兩個這樣的情節。如何使用刻面選項並將day1和day2一起表示在一個繪圖中以便比較它們?