Posts by Alex Silvestrini • 75 points
3 posts
-
4
votes1
answer28
viewsQ: Command line correction R in ggplot2
I used the following code to generate the attached chart ggplot(dados,aes(x = Espécies, y = DNASat, size = Reads, fill=Espécies)) + scale_y_discrete(limits = positions) + geom_point(shape = 21) +…
-
1
votes1
answer116
viewsQ: How to change the graph structure in ggplot2?
I used the following command line from ggplot2 in R to generate the attached graph: g1 <- ggplot(count, aes(x=cluster, y=Reads)) + geom_point(shape=1) + facet_grid(. ~ Spp) ggplot(count,…
-
0
votes1
answer542
viewsQ: To change the order of the legend without changing the colors of the chart in ggplot2
I am mounting this graphic using the ggplot2 package and prefer it with more neutral colors as in the first image (without vibrant colors), but when I modify the order of the caption the colors of…