如何使用ggplot()
函数(不是qplot()
函数)为 ecdf 绘制反向 xaxis?
以下代码不起作用:
test1 <-
structure(list(ID = c(1L, 2L, 3L, 4L, 5L, 6L, 7L, 8L, 9L, 10L,
51L, 52L, 53L, 54L, 55L, 56L, 57L, 58L, 59L, 60L), ProductType = c("productA",
"productA", "productA", "productA", "productA", "productA", "productA",
"productA", "productA", "productA", "productB", "productB", "productB",
"productB", "productB", "productB", "productB", "productB", "productB",
"productB"), ConsumptionDays = structure(c(29, 98, 164, 96, 233,
14, 12, 264, 97, 47, 27, 133, 28, 63, 420, 105, 67, 160, 22,
41), class = "difftime", units = "days")), .Names = c("ID", "ProductType",
"ConsumptionDays"), row.names = c(1L, 2L, 3L, 4L, 5L, 6L, 7L,
8L, 9L, 10L, 51L, 52L, 53L, 54L, 55L, 56L, 57L, 58L, 59L, 60L
), class = "data.frame")
ggplot(data=test1, aes(as.numeric(ConsumptionDays)/30 , color=ProductType)) +
geom_line(stat='ecdf', size = 0.9 ) +
scale_x_reverse( lim=c(15,0))
没有scale_x_reverse( lim=c(15,0))
情节将如下所示: