R ggplot如何显示两个变量的概率

时间:2018-05-30 20:11:04

标签: r ggplot2

我有一个数据分布,如下图所示。我的目标是显示变量低于X和Y的特定值的可能性。例如,我想要一个好的方法表明〜-95%的值在X轴上低于8000,在Y轴上低于6500。我相信这有一个简单的答案。如果以前曾多次询问我,我会道歉。

plot1 <- df %>% ggplot(mapping = aes(x = FLUID_TOT)) + stat_ecdf() + theme_bw()
plot2 <- df %>% ggplot(mapping = aes(x = FLUID_TOT, y = y)) + geom_point() + theme_bw()

Continuous data in X and Y

Cumulative distribution of the X variable

0 个答案:

没有答案