ggplot2中的点优先级抖动的散点图

时间:2016-01-26 09:36:26

标签: r ggplot2

我有一天/时间点图一系列属性。我改变了特定属性的颜色,使其从集合中脱颖而出。然而,似乎无论我做什么,大多数点都会隐藏"在另一个"不相关的"数据点。如何更改蓝绿点的图层优先级始终为#34;顶部"?

这是我的情节的样子。

enter image description here

这是我用来生成闪亮的代码。

  output$timdat <- renderPlot({
        pasx2$color <- factor(ifelse(pasx2$pasx.BFTYPE == input$BFTYPESEL,'Selection','Dataset'))
        ggplot(pasx2, aes(pasx.day, pasx.time, colour=color)) +
          geom_jitter() + scale_x_discrete("Day") + 
          scale_y_discrete("Time")})

BFTYPESEL是可能的&#34;术语列表&#34;从主数据帧中隔离出来。一个被选中。 color是我的数据框中有2个级别的因子,它被更新以区分一个术语和一个术语。

0 个答案:

没有答案