我想删除图片上的水平绿线,我该怎么做?
我在此图表中使用ggplot2
,这是Shiny应用程序的输出。
p1 <- ggplot(dat = dat, aes(x = as.numeric(dura), col = TYPE_DE_TERMINAL)) +
stat_ecdf(geom = "step") +
scale_colour_brewer(name = "Terminal", palette = "Set1") +
theme(axis.text = element_text(size = 15), legend.justification = c(1, 0),
legend.position = c(1, 0), axis.text.x = element_text(angle = 45, vjust = 1, hjust=1)) +
ylab("CDF") + xlab("Duration") + theme_bw() +
scale_y_continuous(limits=c(0,1), labels= percent) +
ggtitle("Cumulative distribution function of 3G connections duration (in s)") + scale_x_continuous(limits=c(0, 50))
print(p1)
这是我的dat的str()。
答案 0 :(得分:1)
我刚刚找到了响应,我使用了stat_density()而不是geom_density()并添加了参数geom =“line”和position =“identity”。