ggplot无法用不同的数据参数绘制不同的行?

时间:2018-05-23 16:05:40

标签: r ggplot2 plotly r-plotly ggplotly

我无法使用不同的数据参数绘制线条内的线条。这是正常的吗?有没有解决方法或错误修复?

y_data <- data.frame(x = c(-Inf, .5), y = c(10, 10), stringsAsFactors = FALSE)
x_data <- data.frame(x = c(.5, .5), y = c(-Inf, 10))

ggplot() +
    geom_line(data = y_data, aes(x,y)) +
    geom_line(data = x_data, aes(x,y))

ggplotly()    

ggplot

plotly

0 个答案:

没有答案