So I have a dataframe that I want to plot using gglot2 in R. To make you understand what I want Example =
- I have a table that has 5 columns A, B, C, D, E.
- I want to plot the graph of A vs B, A vs C, A vs D, A vs E.
- Finally I want to merge all these plots into one that will show the plot as A vs B, C, D, E.
- Also to note one of my dataframe column has values under 0.00x.... (here x = any number) upto 3 decimal place so I want to make sure the scaling is right.
Finally, thank you all for reading this and helping me out.