I have plotted genotype against splicing ratio, due to a large number of outliers the size of boxplots squeezed, is there any way to increase the size?
Sample data:
sample Isoforms Ratio Genotype
108 AT1G04170_JC4 0.114555061397559 CC
139 AT1G04170_JC4 1.43188141139633E-07 CC
159 AT1G04170_JC4 0.974829214147311 CT
108 AT1G04170_P1 0.885444938602441 CC
139 AT1G04170_P1 0.980915433730349 CC
159 AT1G04170_P1 0.025170785852689 CT
108 AT1G04170_P2 0 CC
139 AT1G04170_P2 0 CC
159 AT1G04170_P2 0 CT
108 AT1G04170_c1 0 CC
139 AT1G04170_c1 0.01908442308151 CC
159 AT1G04170_c1 0 CT
R code:
Trans <- read.delim("EXAMPLES/AT1G04170_SR_2", header=TRUE, sep="\t")
Trans_1 <- ggplot(data=Trans,mapping=aes(x=Genotype,y=Ratio,fill=Isoforms)) +geom_boxplot()
I want to increase the height of box plots
Many thanks for your suggestion, I have tried violin plots but it also didn't work for me