
Plot Normalised expression quickly
easyExpPlot.Rd
A convenience function to make line plots and bubble plots to showcase gene expression trends across time points or sample groups
Usage
easyExpPlot(df, x, y, value, type = "line", scaleBubbles = c(2, 6))
Value
A line plot or a bubble plot that represents trends across different time points and sample types.
Examples
if (FALSE) { # \dontrun{
# Load sample data that contain Z-score transformed TPM values (randomly generated) for some genes
data(pf3d7TPMs)
df <- reshape2::melt(pf3d7TPMs,"Probe",na.rm = T)
easyExpPlot(df,x="variable",y="Probe",value="value", type = "bubble")
easyExpPlot(df,x="variable",y="value",value="Probe")
} # }