├── .Rbuildignore ├── .github └── workflows │ └── rhub.yaml ├── .gitignore ├── CRAN-SUBMISSION ├── DESCRIPTION ├── NAMESPACE ├── NEWS.md ├── R ├── aaa.R ├── sm_add_legend.R ├── sm_add_point.R ├── sm_add_text.R ├── sm_auc.R ├── sm_auc_all.R ├── sm_bar2.R ├── sm_bland_altman.R ├── sm_boxplot2.R ├── sm_ci.R ├── sm_classic.R ├── sm_color.R ├── sm_common_axis.R ├── sm_common_legend.R ├── sm_common_title.R ├── sm_common_xlabel.R ├── sm_common_ylabel.R ├── sm_corr_avgErr.R ├── sm_effsize.R ├── sm_forest2.R ├── sm_forest_annot.R ├── sm_hgrid.R ├── sm_hist.R ├── sm_hvgrid.R ├── sm_hvgrid_minor.R ├── sm_minimal.R ├── sm_palette.R ├── sm_panel_label.R ├── sm_plot_clean.R ├── sm_pointplot.R ├── sm_power.R ├── sm_put_together.R ├── sm_raincloud.R ├── sm_slope.R ├── sm_slope_all.R ├── sm_slope_mean.R ├── sm_slope_theme.R ├── sm_statBlandAlt.R ├── sm_statCorr.R ├── sm_stdErr.R ├── sm_vgrid.R ├── sm_violin.R └── zzz.R ├── README.md ├── cran-comments.md ├── inst └── CITATION ├── man ├── figures │ └── logo.png ├── sm_add_legend.Rd ├── sm_add_point.Rd ├── sm_add_text.Rd ├── sm_auc.Rd ├── sm_auc_all.Rd ├── sm_bar.Rd ├── sm_bland_altman.Rd ├── sm_boxplot.Rd ├── sm_ci.Rd ├── sm_classic.Rd ├── sm_color.Rd ├── sm_common_axis.Rd ├── sm_common_legend.Rd ├── sm_common_title.Rd ├── sm_common_xlabel.Rd ├── sm_common_ylabel.Rd ├── sm_corr_avgErr.Rd ├── sm_effsize.Rd ├── sm_forest.Rd ├── sm_forest_annot.Rd ├── sm_hgrid.Rd ├── sm_hist.Rd ├── sm_hvgrid.Rd ├── sm_hvgrid_minor.Rd ├── sm_minimal.Rd ├── sm_palette.Rd ├── sm_panel_label.Rd ├── sm_plot_clean.Rd ├── sm_pointplot.Rd ├── sm_power.Rd ├── sm_put_together.Rd ├── sm_raincloud.Rd ├── sm_slope.Rd ├── sm_slope_all.Rd ├── sm_slope_mean.Rd ├── sm_slope_theme.Rd ├── sm_statBlandAlt.Rd ├── sm_statCorr.Rd ├── sm_stdErr.Rd ├── sm_vgrid.Rd └── sm_violin.Rd └── smplot2.Rproj /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/workflows/rhub.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/.github/workflows/rhub.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/.gitignore -------------------------------------------------------------------------------- /CRAN-SUBMISSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/CRAN-SUBMISSION -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/aaa.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/R/aaa.R -------------------------------------------------------------------------------- /R/sm_add_legend.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/R/sm_add_legend.R -------------------------------------------------------------------------------- /R/sm_add_point.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/R/sm_add_point.R -------------------------------------------------------------------------------- /R/sm_add_text.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/R/sm_add_text.R -------------------------------------------------------------------------------- /R/sm_auc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/R/sm_auc.R -------------------------------------------------------------------------------- /R/sm_auc_all.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/R/sm_auc_all.R -------------------------------------------------------------------------------- /R/sm_bar2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/R/sm_bar2.R -------------------------------------------------------------------------------- /R/sm_bland_altman.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/R/sm_bland_altman.R -------------------------------------------------------------------------------- /R/sm_boxplot2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/R/sm_boxplot2.R -------------------------------------------------------------------------------- /R/sm_ci.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/R/sm_ci.R -------------------------------------------------------------------------------- /R/sm_classic.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/R/sm_classic.R -------------------------------------------------------------------------------- /R/sm_color.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/R/sm_color.R -------------------------------------------------------------------------------- /R/sm_common_axis.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/R/sm_common_axis.R -------------------------------------------------------------------------------- /R/sm_common_legend.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/R/sm_common_legend.R -------------------------------------------------------------------------------- /R/sm_common_title.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/R/sm_common_title.R -------------------------------------------------------------------------------- /R/sm_common_xlabel.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/R/sm_common_xlabel.R -------------------------------------------------------------------------------- /R/sm_common_ylabel.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/R/sm_common_ylabel.R -------------------------------------------------------------------------------- /R/sm_corr_avgErr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/R/sm_corr_avgErr.R -------------------------------------------------------------------------------- /R/sm_effsize.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/R/sm_effsize.R -------------------------------------------------------------------------------- /R/sm_forest2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/R/sm_forest2.R -------------------------------------------------------------------------------- /R/sm_forest_annot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/R/sm_forest_annot.R -------------------------------------------------------------------------------- /R/sm_hgrid.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/R/sm_hgrid.R -------------------------------------------------------------------------------- /R/sm_hist.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/R/sm_hist.R -------------------------------------------------------------------------------- /R/sm_hvgrid.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/R/sm_hvgrid.R -------------------------------------------------------------------------------- /R/sm_hvgrid_minor.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/R/sm_hvgrid_minor.R -------------------------------------------------------------------------------- /R/sm_minimal.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/R/sm_minimal.R -------------------------------------------------------------------------------- /R/sm_palette.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/R/sm_palette.R -------------------------------------------------------------------------------- /R/sm_panel_label.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/R/sm_panel_label.R -------------------------------------------------------------------------------- /R/sm_plot_clean.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/R/sm_plot_clean.R -------------------------------------------------------------------------------- /R/sm_pointplot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/R/sm_pointplot.R -------------------------------------------------------------------------------- /R/sm_power.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/R/sm_power.R -------------------------------------------------------------------------------- /R/sm_put_together.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/R/sm_put_together.R -------------------------------------------------------------------------------- /R/sm_raincloud.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/R/sm_raincloud.R -------------------------------------------------------------------------------- /R/sm_slope.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/R/sm_slope.R -------------------------------------------------------------------------------- /R/sm_slope_all.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/R/sm_slope_all.R -------------------------------------------------------------------------------- /R/sm_slope_mean.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/R/sm_slope_mean.R -------------------------------------------------------------------------------- /R/sm_slope_theme.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/R/sm_slope_theme.R -------------------------------------------------------------------------------- /R/sm_statBlandAlt.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/R/sm_statBlandAlt.R -------------------------------------------------------------------------------- /R/sm_statCorr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/R/sm_statCorr.R -------------------------------------------------------------------------------- /R/sm_stdErr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/R/sm_stdErr.R -------------------------------------------------------------------------------- /R/sm_vgrid.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/R/sm_vgrid.R -------------------------------------------------------------------------------- /R/sm_violin.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/R/sm_violin.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/README.md -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/cran-comments.md -------------------------------------------------------------------------------- /inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/inst/CITATION -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/sm_add_legend.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/man/sm_add_legend.Rd -------------------------------------------------------------------------------- /man/sm_add_point.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/man/sm_add_point.Rd -------------------------------------------------------------------------------- /man/sm_add_text.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/man/sm_add_text.Rd -------------------------------------------------------------------------------- /man/sm_auc.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/man/sm_auc.Rd -------------------------------------------------------------------------------- /man/sm_auc_all.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/man/sm_auc_all.Rd -------------------------------------------------------------------------------- /man/sm_bar.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/man/sm_bar.Rd -------------------------------------------------------------------------------- /man/sm_bland_altman.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/man/sm_bland_altman.Rd -------------------------------------------------------------------------------- /man/sm_boxplot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/man/sm_boxplot.Rd -------------------------------------------------------------------------------- /man/sm_ci.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/man/sm_ci.Rd -------------------------------------------------------------------------------- /man/sm_classic.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/man/sm_classic.Rd -------------------------------------------------------------------------------- /man/sm_color.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/man/sm_color.Rd -------------------------------------------------------------------------------- /man/sm_common_axis.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/man/sm_common_axis.Rd -------------------------------------------------------------------------------- /man/sm_common_legend.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/man/sm_common_legend.Rd -------------------------------------------------------------------------------- /man/sm_common_title.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/man/sm_common_title.Rd -------------------------------------------------------------------------------- /man/sm_common_xlabel.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/man/sm_common_xlabel.Rd -------------------------------------------------------------------------------- /man/sm_common_ylabel.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/man/sm_common_ylabel.Rd -------------------------------------------------------------------------------- /man/sm_corr_avgErr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/man/sm_corr_avgErr.Rd -------------------------------------------------------------------------------- /man/sm_effsize.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/man/sm_effsize.Rd -------------------------------------------------------------------------------- /man/sm_forest.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/man/sm_forest.Rd -------------------------------------------------------------------------------- /man/sm_forest_annot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/man/sm_forest_annot.Rd -------------------------------------------------------------------------------- /man/sm_hgrid.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/man/sm_hgrid.Rd -------------------------------------------------------------------------------- /man/sm_hist.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/man/sm_hist.Rd -------------------------------------------------------------------------------- /man/sm_hvgrid.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/man/sm_hvgrid.Rd -------------------------------------------------------------------------------- /man/sm_hvgrid_minor.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/man/sm_hvgrid_minor.Rd -------------------------------------------------------------------------------- /man/sm_minimal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/man/sm_minimal.Rd -------------------------------------------------------------------------------- /man/sm_palette.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/man/sm_palette.Rd -------------------------------------------------------------------------------- /man/sm_panel_label.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/man/sm_panel_label.Rd -------------------------------------------------------------------------------- /man/sm_plot_clean.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/man/sm_plot_clean.Rd -------------------------------------------------------------------------------- /man/sm_pointplot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/man/sm_pointplot.Rd -------------------------------------------------------------------------------- /man/sm_power.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/man/sm_power.Rd -------------------------------------------------------------------------------- /man/sm_put_together.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/man/sm_put_together.Rd -------------------------------------------------------------------------------- /man/sm_raincloud.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/man/sm_raincloud.Rd -------------------------------------------------------------------------------- /man/sm_slope.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/man/sm_slope.Rd -------------------------------------------------------------------------------- /man/sm_slope_all.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/man/sm_slope_all.Rd -------------------------------------------------------------------------------- /man/sm_slope_mean.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/man/sm_slope_mean.Rd -------------------------------------------------------------------------------- /man/sm_slope_theme.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/man/sm_slope_theme.Rd -------------------------------------------------------------------------------- /man/sm_statBlandAlt.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/man/sm_statBlandAlt.Rd -------------------------------------------------------------------------------- /man/sm_statCorr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/man/sm_statCorr.Rd -------------------------------------------------------------------------------- /man/sm_stdErr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/man/sm_stdErr.Rd -------------------------------------------------------------------------------- /man/sm_vgrid.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/man/sm_vgrid.Rd -------------------------------------------------------------------------------- /man/sm_violin.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/man/sm_violin.Rd -------------------------------------------------------------------------------- /smplot2.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smin95/smplot2/HEAD/smplot2.Rproj --------------------------------------------------------------------------------