## 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"
)
## Impute missing values in the data frame using the default minProb
## method prioir to normalization.
imp_df <- impute_na(raw_df)
## Normalize the imp_df object using the default quantile method
norm_df1 <- normalize_data(imp_df)
## Use the cyclicloess method
norm_df2 <- normalize_data(imp_df, method = "cyclicloess")
## Normalize data in the raw_df object prior to imputation.
norm_df3 <- normalize_data(raw_df)
Run the code above in your browser using DataLab