TigerZheng commited on
Commit
26a8f73
·
verified ·
1 Parent(s): 7045685

Update PFCdevApp.qmd

Browse files
Files changed (1) hide show
  1. PFCdevApp.qmd +5 -1
PFCdevApp.qmd CHANGED
@@ -230,9 +230,13 @@ output$vln_plot <- renderPlot({
230
  )
231
  ggplot(data, aes(x=Cluster, y=Gene, fill=Cluster)) +
232
  geom_violin(scale = "width", adjust=1, trim=T) +
 
233
  scale_fill_manual(values = col_cluster[[input$celltype]]) +
234
  theme_classic(base_size = 15) +
235
- theme(legend.position = "none")
 
 
 
236
  })
237
  ```
238
 
 
230
  )
231
  ggplot(data, aes(x=Cluster, y=Gene, fill=Cluster)) +
232
  geom_violin(scale = "width", adjust=1, trim=T) +
233
+ geom_jitter(size=0.1) +
234
  scale_fill_manual(values = col_cluster[[input$celltype]]) +
235
  theme_classic(base_size = 15) +
236
+ theme(legend.position = "none",
237
+ plot.title = element_text(hjust = 0.5, size = 20, face = "bold.italic"),
238
+ axis.text.x = element_text(angle = 45, hjust = 1)) +
239
+ labs(x="", y="Expression Level", title = input$gene)
240
  })
241
  ```
242