## Generate a raw_df object with default settings. No technical replicates.
raw_df <- create_df(
prot_groups = "https://raw.githubusercontent.com/caranathunge/promor_example_data/main/pg1.txt",
exp_design = "https://raw.githubusercontent.com/caranathunge/promor_example_data/main/ed1.txt"
)
## Missing data heatmap with default settings.
heatmap_na(raw_df)
## Missing data heatmap with x and y axes reordered by the mean (default) of
## protein intensity.
heatmap_na(raw_df,
reorder_x = TRUE, reorder_y = TRUE
)
## Missing data heatmap with x and y axes reordered by the sum of
## protein intensity.
heatmap_na(raw_df,
reorder_x = TRUE, reorder_y = TRUE, x_fun = sum,
y_fun = sum
)
## Missing data heatmap for a subset of the proteins with x and y axes
## reordered by the mean (default) of protein intensity and the y axis
## labeled with protein IDs.
heatmap_na(raw_df,
protein_range = 1:30,
reorder_x = TRUE, reorder_y = TRUE,
label_proteins = TRUE
)
Run the code above in your browser using DataLab