
OmicsPrepR is an integrated R package that provides
unified workflows for quality control,
normalization, and visualization of
proteomic and metabolomic data.
It simplifies preprocessing through automated imputation, scaling, and
PCA-based exploratory analysis, enabling efficient preparation of omics
datasets for downstream statistical and machine learning analyses.
You can install the development version directly from GitHub:
```r # install.packages(“devtools”) devtools::install_github(“ikemillar/OmicsPrepR”)
library(OmicsPrepR)
omics_data <- load_omics(“data.csv”)
omics_imputed <- impute_missing(omics_data)
export_clean(omics_imputed, “cleaned_data.csv”)
plot_omics(omics_imputed)