├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── NAMESPACE ├── R ├── create_hist.R ├── describe_data.R ├── describer.R ├── get_metrics_info.R └── style_nested_tabs.R ├── README.md ├── adsl_describer.html ├── adsl_describer.rmd ├── data-raw ├── metric.csv └── metrics-csv.R ├── data └── metrics.rda ├── describer.Rproj ├── inst ├── hex │ ├── describer.png │ ├── describer.svg │ └── hex-describer.png ├── images │ ├── blank_crop.png │ ├── details_crop.png │ ├── distinct_crop.png │ ├── gmd_crop.png │ ├── info_crop.png │ ├── max_crop.png │ ├── mean_crop.png │ ├── median_crop.png │ ├── min_crop.png │ ├── missing_crop.png │ ├── observed_crop.png │ ├── q05_crop.png │ ├── q25_crop.png │ ├── q75_crop.png │ ├── q95_crop.png │ ├── screenshot.png │ └── zoom_crop.png └── style │ ├── styles.css │ └── styles.csvv ├── man ├── create_hist.Rd ├── describe_data.Rd ├── describer.Rd ├── get_metrics_info.Rd ├── nested_tab_counts.Rd ├── nested_tab_extremes.Rd ├── nested_tab_theme.Rd └── nested_tab_values.Rd └── rmd ├── adsl_describe.html ├── adsl_describe.rmd ├── instructions.html ├── instructions.rmd ├── overview.html └── overview.rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agstn/describer/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agstn/describer/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agstn/describer/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agstn/describer/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/create_hist.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agstn/describer/HEAD/R/create_hist.R -------------------------------------------------------------------------------- /R/describe_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agstn/describer/HEAD/R/describe_data.R -------------------------------------------------------------------------------- /R/describer.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agstn/describer/HEAD/R/describer.R -------------------------------------------------------------------------------- /R/get_metrics_info.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agstn/describer/HEAD/R/get_metrics_info.R -------------------------------------------------------------------------------- /R/style_nested_tabs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agstn/describer/HEAD/R/style_nested_tabs.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agstn/describer/HEAD/README.md -------------------------------------------------------------------------------- /adsl_describer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agstn/describer/HEAD/adsl_describer.html -------------------------------------------------------------------------------- /adsl_describer.rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agstn/describer/HEAD/adsl_describer.rmd -------------------------------------------------------------------------------- /data-raw/metric.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agstn/describer/HEAD/data-raw/metric.csv -------------------------------------------------------------------------------- /data-raw/metrics-csv.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agstn/describer/HEAD/data-raw/metrics-csv.R -------------------------------------------------------------------------------- /data/metrics.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agstn/describer/HEAD/data/metrics.rda -------------------------------------------------------------------------------- /describer.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agstn/describer/HEAD/describer.Rproj -------------------------------------------------------------------------------- /inst/hex/describer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agstn/describer/HEAD/inst/hex/describer.png -------------------------------------------------------------------------------- /inst/hex/describer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agstn/describer/HEAD/inst/hex/describer.svg -------------------------------------------------------------------------------- /inst/hex/hex-describer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agstn/describer/HEAD/inst/hex/hex-describer.png -------------------------------------------------------------------------------- /inst/images/blank_crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agstn/describer/HEAD/inst/images/blank_crop.png -------------------------------------------------------------------------------- /inst/images/details_crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agstn/describer/HEAD/inst/images/details_crop.png -------------------------------------------------------------------------------- /inst/images/distinct_crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agstn/describer/HEAD/inst/images/distinct_crop.png -------------------------------------------------------------------------------- /inst/images/gmd_crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agstn/describer/HEAD/inst/images/gmd_crop.png -------------------------------------------------------------------------------- /inst/images/info_crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agstn/describer/HEAD/inst/images/info_crop.png -------------------------------------------------------------------------------- /inst/images/max_crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agstn/describer/HEAD/inst/images/max_crop.png -------------------------------------------------------------------------------- /inst/images/mean_crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agstn/describer/HEAD/inst/images/mean_crop.png -------------------------------------------------------------------------------- /inst/images/median_crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agstn/describer/HEAD/inst/images/median_crop.png -------------------------------------------------------------------------------- /inst/images/min_crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agstn/describer/HEAD/inst/images/min_crop.png -------------------------------------------------------------------------------- /inst/images/missing_crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agstn/describer/HEAD/inst/images/missing_crop.png -------------------------------------------------------------------------------- /inst/images/observed_crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agstn/describer/HEAD/inst/images/observed_crop.png -------------------------------------------------------------------------------- /inst/images/q05_crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agstn/describer/HEAD/inst/images/q05_crop.png -------------------------------------------------------------------------------- /inst/images/q25_crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agstn/describer/HEAD/inst/images/q25_crop.png -------------------------------------------------------------------------------- /inst/images/q75_crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agstn/describer/HEAD/inst/images/q75_crop.png -------------------------------------------------------------------------------- /inst/images/q95_crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agstn/describer/HEAD/inst/images/q95_crop.png -------------------------------------------------------------------------------- /inst/images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agstn/describer/HEAD/inst/images/screenshot.png -------------------------------------------------------------------------------- /inst/images/zoom_crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agstn/describer/HEAD/inst/images/zoom_crop.png -------------------------------------------------------------------------------- /inst/style/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agstn/describer/HEAD/inst/style/styles.css -------------------------------------------------------------------------------- /inst/style/styles.csvv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agstn/describer/HEAD/inst/style/styles.csvv -------------------------------------------------------------------------------- /man/create_hist.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agstn/describer/HEAD/man/create_hist.Rd -------------------------------------------------------------------------------- /man/describe_data.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agstn/describer/HEAD/man/describe_data.Rd -------------------------------------------------------------------------------- /man/describer.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agstn/describer/HEAD/man/describer.Rd -------------------------------------------------------------------------------- /man/get_metrics_info.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agstn/describer/HEAD/man/get_metrics_info.Rd -------------------------------------------------------------------------------- /man/nested_tab_counts.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agstn/describer/HEAD/man/nested_tab_counts.Rd -------------------------------------------------------------------------------- /man/nested_tab_extremes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agstn/describer/HEAD/man/nested_tab_extremes.Rd -------------------------------------------------------------------------------- /man/nested_tab_theme.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agstn/describer/HEAD/man/nested_tab_theme.Rd -------------------------------------------------------------------------------- /man/nested_tab_values.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agstn/describer/HEAD/man/nested_tab_values.Rd -------------------------------------------------------------------------------- /rmd/adsl_describe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agstn/describer/HEAD/rmd/adsl_describe.html -------------------------------------------------------------------------------- /rmd/adsl_describe.rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agstn/describer/HEAD/rmd/adsl_describe.rmd -------------------------------------------------------------------------------- /rmd/instructions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agstn/describer/HEAD/rmd/instructions.html -------------------------------------------------------------------------------- /rmd/instructions.rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agstn/describer/HEAD/rmd/instructions.rmd -------------------------------------------------------------------------------- /rmd/overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agstn/describer/HEAD/rmd/overview.html -------------------------------------------------------------------------------- /rmd/overview.rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agstn/describer/HEAD/rmd/overview.rmd --------------------------------------------------------------------------------