GGally for quick overviews
Metabolites and lipids descriptive statistical analysis in R

Last updated
Metabolites and lipids descriptive statistical analysis in R

Last updated
# Installing GGally:
install.packages("GGally")
# Calling library:
library(GGally)
# Consulting the documentation about the function:
?ggpairs()
# Creating an exemplary overview of selected features:
data %>%
select(`Label`,
`SM 39:1;O2`,
`SM 40:1;O2`,
`SM 41:1;O2`,
`SM 42:1;O2`) %>%
ggpairs()