3
我從這個答案question重新創建了這個情節。但是我想知道如何用平滑的圖形重疊或替換條形圖,即將X軸上的點鏈接在一起。如果他們正在更換酒吧,那麼用顏色填充它會很好。我試圖玩geom_smooth,但我不能得到它做我想要的和幫助,將不勝感激。我正在討論的問題的陰謀和代碼如下。ggplot
set.seed(1)
df0 <- data.frame(Age = factor(rep(x = 1:10, times = 2)),
Gender = rep(x = c("Female", "Male"), each = 10),
Population = sample(x = 1:100, size = 20))
head(df0)
# Age Gender Population
# 1 1 Female 27
# 2 2 Female 37
# 3 3 Female 57
# 4 4 Female 89
# 5 5 Female 20
# 6 6 Female 86
library("ggplot2")
ggplot(data = df0, aes(x = Age, y = Population, fill = Gender)) +
geom_bar(data = subset(df0, Gender=="Female"),
stat = "identity") +
geom_bar(data = subset(df0, Gender=="Male"),
stat = "identity",
position = "identity",
mapping = aes(y = -Population)) +
scale_y_continuous(labels = abs) +
coord_flip()