grups.plots is a companion R package providing with various interactive visualizations, utilities and summary statistics to analyse the results of GRUPS-rs
R --slave -e 'devtools::install_github("https://github.com:MaelLefeuvre/grups.plots", upgrade="always")'Simply use the grups.plots::app() function from an interactive session, by targeting any directory containing the output results of grups-rs pedigree-sims
library(grups.plots)
grups.plots::app(data_dir = "./grups-output")or directly launch the app from the terminal, by running R in --slave mode
R --slave -e 'grups.plots::app(data_dir="./grups-output")'Just like any other R package:
- Typing
?grups.plots::appwithin an interactive R session should provide documentation for the main shinyApp ofgrups.plots - Typing
help(package = grups.plots)within an interactive R session should output a documented list of every public function ofgrups.plots(Note that every exported function ofgrups.plotsis documented, and may be printed out using thehelp()function, or the?documentation shortcut, as in?grups.plots::<function-name>)