My data is displayed in the picture below. I'm using ggplot2 to draw a dotplot:
ggplot(dr, aes(x = tSNE1, y = tSNE2, color = HLA_DR)) +
geom_point(size = 0.1) +
theme_bw() +
scale_color_gradientn("TCRgd",
colours =
colorRampPalette(rev(
brewer.pal(n = 11, name = "RdYlBu")))(50))+
theme(panel.background = element_rect(fill = "transparent",colour = NA),
panel.grid.minor = element_blank(),
panel.grid.major = element_blank(),
plot.background = element_rect(fill = "transparent",colour = NA))
How can I plot all the other columns(like CD14 ,CD16...) at the same time like the facet function.