Posts by Marlon Matsumoto • 63 points
4 posts
-
4
votes1
answer85
viewsQ: Scatter plot in ggplot2
Talks guys I’m wanting to create a scatter chart in R using the ggplot2, a scatter plot with gene size (lengthbp) X variants (frameshift, splice_acceptor, splice_donor, stop_gained), the figure…
-
0
votes2
answers309
viewsA: Plotting Graphs ggplot inside loop
Guy tries to add a print to his ggplot: for(i in 1:6){ #print foi adicionado na plotagem do histograma para percorrer os índices print(ggplot(Carteira[,i], aes(Carteira[,i])) + geom_histogram(aes(y…
-
1
votes1
answer63
viewsA: Graphics in ggplot2, I want to add a loop to create graphics
Guys can solve, I added a loop that will go through all the lines of "gene_data" (table 2), and for each row traveled it will make the chart in png format with the line name of "gene_data", for…
-
0
votes1
answer63
viewsQ: Graphics in ggplot2, I want to add a loop to create graphics
I have a question in ggplot, I want to compare two tables and create graphs for each Gene in R: Table 1 Table 2 below I used as reference in the index for the loop: "gene_data" is variable for Table…