4
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 below shows the table used to produce the scatter chart:
The problem is that I’m not getting to take all these columns of variants highlighted in red in the chart above and use in the code below:
library ggplot2
ggplot(gnomad_length, aes(frameshift, lengthbp))+
geom_point()
The figure below is the scatter chart of only one variant, see in eixo x
should be all variants and not only frameshift
:
Marlon, good afternoon! Make the dataset available in your question to anyone who will try to help you to test. Hug!
– lmonferrari
follows the link released link to the dataframe
– Marlon Matsumoto