i have a dataframe where gene names are the column headers and sample names as rownames. they have one value for every cell. example:
           G1         G2       G3
S1  0.19021657  0.129541639 0.741696359
S2  0.431098317 0.791633452 0.502163442
S3  0.433107132 0.085196075 0.071400934
S4  0.800781053 0.221191986 0.918588422
I would like to do a boxplot for every column (gene) - all plotted on one graph.
I tried to reshape the dataframe and then use ggplot, but I couldnt achieve the desired result. is there an elegant way to do this with ggplot?
 
     
    
