├── .Rbuildignore ├── .gitattributes ├── .github ├── .gitignore └── workflows │ ├── R-CMD-check.yaml │ └── rhub.yaml ├── .gitignore ├── CONDUCT.md ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── RcppExports.R ├── launch.R ├── utils.R ├── xpl-data-exam.R ├── xpl-data-hsb.R ├── xpl-data-treatment.R ├── xplorerr.R └── zzz.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── cran-comments.md ├── data ├── exam.rda ├── hsb.rda └── treatment.rda ├── docs ├── 404.html ├── CNAME ├── CONDUCT.html ├── LICENSE ├── LICENSE-text.html ├── LICENSE.html ├── _headers ├── authors.html ├── bootstrap-toc.css ├── bootstrap-toc.js ├── docsearch.css ├── docsearch.js ├── google02e424888b5e2def.html ├── hex_xplorerr.png ├── index.html ├── jquery.sticky-kit.min.js ├── link.svg ├── news │ └── index.html ├── pkgdown.css ├── pkgdown.js ├── pkgdown.yml ├── reference │ ├── Rplot001.png │ ├── app_descriptive.html │ ├── app_inference.html │ ├── app_linear_regression.html │ ├── app_logistic_regression.html │ ├── app_rfm_analysis.html │ ├── app_vistributions.html │ ├── app_visualizer.html │ ├── exam.html │ ├── hsb.html │ ├── index.html │ ├── launch_app_blorr.html │ ├── launch_app_descriptr.html │ ├── launch_app_inferr.html │ ├── launch_app_olsrr.html │ ├── launch_app_visualizer.html │ ├── launch_app_xplorerr.html │ ├── treatment.html │ ├── xpl_gvar.html │ ├── xpl_nsignC.html │ └── xplorerr.html └── sitemap.xml ├── hex_xplorerr.png ├── inst ├── app-blorr │ ├── logic │ │ ├── logic_bivar.R │ │ ├── logic_dataoptions.R │ │ ├── logic_exit_button.R │ │ ├── logic_filter.R │ │ ├── logic_home.R │ │ ├── logic_partition.R │ │ ├── logic_regress.R │ │ ├── logic_residual_diagnostics.R │ │ ├── logic_sample.R │ │ ├── logic_screen.R │ │ ├── logic_select.R │ │ ├── logic_transform2.R │ │ ├── logic_upload.R │ │ ├── logic_validation.R │ │ ├── logic_varsel.R │ │ └── logic_view.R │ ├── mystyle.css │ ├── server.R │ ├── styles.css │ ├── ui.R │ ├── ui │ │ ├── ui_2way_segment.R │ │ ├── ui_analyze.R │ │ ├── ui_bivar.R │ │ ├── ui_bivar_analysis.R │ │ ├── ui_conf_matrix.R │ │ ├── ui_data.R │ │ ├── ui_datafiles.R │ │ ├── ui_dataoptions.R │ │ ├── ui_datasamples.R │ │ ├── ui_dfbetas_panel.R │ │ ├── ui_diag_fit.R │ │ ├── ui_diag_influence.R │ │ ├── ui_diag_leverage.R │ │ ├── ui_exit_button.R │ │ ├── ui_filter.R │ │ ├── ui_gains_table.R │ │ ├── ui_homes.R │ │ ├── ui_hoslem_test.R │ │ ├── ui_ks_chart.R │ │ ├── ui_lorenz_curve.R │ │ ├── ui_mlr.R │ │ ├── ui_model_fit_stats.R │ │ ├── ui_model_home.R │ │ ├── ui_multi_model_fit_stats.R │ │ ├── ui_partition.R │ │ ├── ui_regress.R │ │ ├── ui_resid_diag.R │ │ ├── ui_roc_curve.R │ │ ├── ui_sample.R │ │ ├── ui_scr.R │ │ ├── ui_screen.R │ │ ├── ui_segment.R │ │ ├── ui_segment_dist.R │ │ ├── ui_seldata.R │ │ ├── ui_select.R │ │ ├── ui_trans.R │ │ ├── ui_transform2.R │ │ ├── ui_up.R │ │ ├── ui_valid.R │ │ ├── ui_varsel.R │ │ ├── ui_varsel_backward.R │ │ ├── ui_varsel_forward.R │ │ ├── ui_varsel_stepwise.R │ │ ├── ui_vi.R │ │ ├── ui_view.R │ │ ├── ui_woe_iv.R │ │ └── ui_woe_iv_stats.R │ └── www │ │ └── main.png ├── app-descriptr │ ├── logic │ │ ├── logic_cross.R │ │ ├── logic_dataoptions.R │ │ ├── logic_exit_button.R │ │ ├── logic_filter.R │ │ ├── logic_freq_qual.R │ │ ├── logic_freq_quant.R │ │ ├── logic_group_summary.R │ │ ├── logic_home.R │ │ ├── logic_mult1.R │ │ ├── logic_mult2.R │ │ ├── logic_screen.R │ │ ├── logic_select.R │ │ ├── logic_summary.R │ │ ├── logic_transform2.R │ │ ├── logic_upload.R │ │ └── logic_view.R │ ├── mystyle.css │ ├── server.R │ ├── styles.css │ ├── ui.R │ ├── ui │ │ ├── ui_analyze.R │ │ ├── ui_cross.R │ │ ├── ui_data.R │ │ ├── ui_datafiles.R │ │ ├── ui_dataoptions.R │ │ ├── ui_datasamples.R │ │ ├── ui_eda.R │ │ ├── ui_eda_home.R │ │ ├── ui_exit_button.R │ │ ├── ui_f.R │ │ ├── ui_filter.R │ │ ├── ui_freq_qual.R │ │ ├── ui_freq_quant.R │ │ ├── ui_group_summary.R │ │ ├── ui_mult1.R │ │ ├── ui_mult2.R │ │ ├── ui_scr.R │ │ ├── ui_screen.R │ │ ├── ui_sel.R │ │ ├── ui_seldata.R │ │ ├── ui_select.R │ │ ├── ui_summary.R │ │ ├── ui_trans.R │ │ ├── ui_transform2.R │ │ ├── ui_up.R │ │ ├── ui_vi.R │ │ └── ui_view.R │ └── www │ │ ├── normal.png │ │ └── summary1.png ├── app-inferr │ ├── logic │ │ ├── logic_anova.R │ │ ├── logic_binomtest.R │ │ ├── logic_chict.R │ │ ├── logic_chigof.R │ │ ├── logic_cochran.R │ │ ├── logic_dataoptions.R │ │ ├── logic_exit_button.R │ │ ├── logic_filter.R │ │ ├── logic_home.R │ │ ├── logic_itest.R │ │ ├── logic_levene.R │ │ ├── logic_mcnemar.R │ │ ├── logic_osprop.R │ │ ├── logic_osvar.R │ │ ├── logic_ptest.R │ │ ├── logic_runs.R │ │ ├── logic_screen.R │ │ ├── logic_select.R │ │ ├── logic_transform2.R │ │ ├── logic_tsprop.R │ │ ├── logic_tsvar.R │ │ ├── logic_ttest.R │ │ ├── logic_upload.R │ │ └── logic_view.R │ ├── mystyle.css │ ├── server.R │ ├── styles.css │ ├── ui.R │ ├── ui │ │ ├── ui_analyze.R │ │ ├── ui_anova.R │ │ ├── ui_binomtest.R │ │ ├── ui_chict.R │ │ ├── ui_chigof.R │ │ ├── ui_cochran.R │ │ ├── ui_data.R │ │ ├── ui_datafiles.R │ │ ├── ui_dataoptions.R │ │ ├── ui_datasamples.R │ │ ├── ui_exit_button.R │ │ ├── ui_filter.R │ │ ├── ui_homes.R │ │ ├── ui_indttest.R │ │ ├── ui_infer1_home.R │ │ ├── ui_infer2_home.R │ │ ├── ui_infer3_home.R │ │ ├── ui_infer_home.R │ │ ├── ui_inference.R │ │ ├── ui_levene.R │ │ ├── ui_mcnemar.R │ │ ├── ui_osprop.R │ │ ├── ui_osvar.R │ │ ├── ui_ptest.R │ │ ├── ui_runs.R │ │ ├── ui_scr.R │ │ ├── ui_screen.R │ │ ├── ui_sel.R │ │ ├── ui_seldata.R │ │ ├── ui_select.R │ │ ├── ui_trans.R │ │ ├── ui_transform2.R │ │ ├── ui_tsprop.R │ │ ├── ui_tsvar.R │ │ ├── ui_ttest.R │ │ ├── ui_up.R │ │ ├── ui_vi.R │ │ └── ui_view.R │ ├── xpl-format.R │ ├── xpl-helpers.R │ └── xpl-output.R ├── app-olsrr │ ├── logic │ │ ├── logic_collin.R │ │ ├── logic_dataoptions.R │ │ ├── logic_exit_button.R │ │ ├── logic_filter.R │ │ ├── logic_hetero.R │ │ ├── logic_home.R │ │ ├── logic_inflobs2.R │ │ ├── logic_mfit2.R │ │ ├── logic_mselection2.R │ │ ├── logic_partition.R │ │ ├── logic_regdiag.R │ │ ├── logic_regress.R │ │ ├── logic_resdiagtrial.R │ │ ├── logic_sample.R │ │ ├── logic_screen.R │ │ ├── logic_select.R │ │ ├── logic_transform2.R │ │ ├── logic_upload.R │ │ └── logic_view.R │ ├── mystyle.css │ ├── server.R │ ├── styles.css │ ├── ui.R │ └── ui │ │ ├── ui_analyze.R │ │ ├── ui_collin.R │ │ ├── ui_data.R │ │ ├── ui_datafiles.R │ │ ├── ui_dataoptions.R │ │ ├── ui_datasamples.R │ │ ├── ui_exit_button.R │ │ ├── ui_filter.R │ │ ├── ui_hetero.R │ │ ├── ui_home.R │ │ ├── ui_homes.R │ │ ├── ui_inflobs2.R │ │ ├── ui_mfit2.R │ │ ├── ui_mlr.R │ │ ├── ui_model_home.R │ │ ├── ui_mselection2.R │ │ ├── ui_partition.R │ │ ├── ui_regdiag.R │ │ ├── ui_regress.R │ │ ├── ui_resdiagtrial.R │ │ ├── ui_sample.R │ │ ├── ui_scr.R │ │ ├── ui_screen.R │ │ ├── ui_sel.R │ │ ├── ui_seldata.R │ │ ├── ui_select.R │ │ ├── ui_trans.R │ │ ├── ui_transform2.R │ │ ├── ui_up.R │ │ ├── ui_vi.R │ │ └── ui_view.R ├── app-rfm │ ├── logic │ │ ├── logic_dataoptions.R │ │ ├── logic_exit_button.R │ │ ├── logic_home.R │ │ ├── logic_rfm_score.R │ │ ├── logic_screen.R │ │ ├── logic_segments.R │ │ ├── logic_select.R │ │ ├── logic_transform2.R │ │ ├── logic_upload.R │ │ ├── logic_view.R │ │ └── ui_rfm_home.R │ ├── mystyle.css │ ├── server.R │ ├── styles.css │ ├── ui.R │ ├── ui │ │ ├── ui_analyze.R │ │ ├── ui_average_frequency.R │ │ ├── ui_average_monetary.R │ │ ├── ui_average_recency.R │ │ ├── ui_data.R │ │ ├── ui_datafiles.R │ │ ├── ui_dataoptions.R │ │ ├── ui_datasamples.R │ │ ├── ui_exit_button.R │ │ ├── ui_home.R │ │ ├── ui_rfm.R │ │ ├── ui_rfm_bar_chart.R │ │ ├── ui_rfm_customer_1.R │ │ ├── ui_rfm_customer_2.R │ │ ├── ui_rfm_heat_map.R │ │ ├── ui_rfm_histogram.R │ │ ├── ui_rfm_home.R │ │ ├── ui_rfm_scatter_plot.R │ │ ├── ui_rfm_score_transaction.R │ │ ├── ui_scr.R │ │ ├── ui_screen.R │ │ ├── ui_segment.R │ │ ├── ui_segment_size.R │ │ ├── ui_segments.R │ │ ├── ui_seldata.R │ │ ├── ui_select.R │ │ ├── ui_trans.R │ │ ├── ui_transform2.R │ │ ├── ui_up.R │ │ ├── ui_vi.R │ │ ├── ui_view.R │ │ └── ui_welcome.R │ └── www │ │ ├── rfm_main.jpg │ │ └── rfm_main.png ├── app-vistributions │ ├── logic │ │ ├── logic_binom.R │ │ ├── logic_chisq.R │ │ ├── logic_exit_button.R │ │ ├── logic_f.R │ │ ├── logic_home.R │ │ ├── logic_norm.R │ │ └── logic_t.R │ ├── mystyle.css │ ├── server.R │ ├── styles.css │ ├── ui.R │ ├── ui │ │ ├── ui_analyze.R │ │ ├── ui_binom.R │ │ ├── ui_chisq.R │ │ ├── ui_dist.R │ │ ├── ui_dist_home.R │ │ ├── ui_exit_button.R │ │ ├── ui_f.R │ │ ├── ui_homes.R │ │ ├── ui_normal.R │ │ └── ui_t.R │ └── www │ │ ├── normal.png │ │ └── summary1.png └── app-visualize │ ├── helper │ ├── barly1.R │ ├── barly2.R │ ├── bbar-plot.R │ ├── bbox-plot.R │ ├── bibar.R │ ├── boxly1.R │ ├── boxly2.R │ ├── freq-cont.R │ ├── ggbibar.R │ ├── ggbox1.R │ ├── ggbox2.R │ ├── gghist.R │ ├── ggline.R │ ├── ggline2.R │ ├── ggpie.R │ ├── ggscatter.R │ ├── ggunibar.R │ ├── hibox2.R │ ├── highhist.R │ ├── highline.R │ ├── highpie.R │ ├── histly.R │ ├── histogram.R │ ├── hscatter.R │ ├── line-plot.R │ ├── linely.R │ ├── output.R │ ├── pie-plot.R │ ├── pie3d-plot.R │ ├── piely.R │ ├── scatter-plot.R │ ├── scatterly.R │ ├── ubar_plot.R │ ├── ubox-plot.R │ ├── unibar.R │ └── utils.R │ ├── logic │ ├── logic_bar.R │ ├── logic_bar2.R │ ├── logic_bar_plot_1.R │ ├── logic_bar_plot_2.R │ ├── logic_box.R │ ├── logic_box2.R │ ├── logic_box_plot_1.R │ ├── logic_box_plot_2.R │ ├── logic_dataoptions.R │ ├── logic_exit_button.R │ ├── logic_filter.R │ ├── logic_gbar.R │ ├── logic_gbar2.R │ ├── logic_gbox.R │ ├── logic_gbox2.R │ ├── logic_ghist.R │ ├── logic_gline.R │ ├── logic_gline2.R │ ├── logic_gpie.R │ ├── logic_gscatter.R │ ├── logic_hist.R │ ├── logic_hist_prh.R │ ├── logic_home.R │ ├── logic_line.R │ ├── logic_line_prh.R │ ├── logic_pie.R │ ├── logic_pie3d.R │ ├── logic_pie_prh.R │ ├── logic_scatter.R │ ├── logic_scatter_prh.R │ ├── logic_screen.R │ ├── logic_select.R │ ├── logic_transform2.R │ ├── logic_upload.R │ ├── logic_view.R │ └── logic_vizlib.R │ ├── mystyle.css │ ├── server.R │ ├── styles.css │ ├── ui.R │ ├── ui │ ├── ui_bar.R │ ├── ui_bar2.R │ ├── ui_bar_plot_1.R │ ├── ui_bar_plot_2.R │ ├── ui_base.R │ ├── ui_box.R │ ├── ui_box2.R │ ├── ui_box_plot_1.R │ ├── ui_box_plot_2.R │ ├── ui_data.R │ ├── ui_datafiles.R │ ├── ui_dataoptions.R │ ├── ui_datasamples.R │ ├── ui_exit_button.R │ ├── ui_filter.R │ ├── ui_gbar.R │ ├── ui_gbar2.R │ ├── ui_gbox.R │ ├── ui_gbox2.R │ ├── ui_ggplot.R │ ├── ui_ghist.R │ ├── ui_gline.R │ ├── ui_gline2.R │ ├── ui_gpie.R │ ├── ui_gscatter.R │ ├── ui_hist.R │ ├── ui_hist_prh.R │ ├── ui_home.R │ ├── ui_homes.R │ ├── ui_line.R │ ├── ui_line_prh.R │ ├── ui_others.R │ ├── ui_pie.R │ ├── ui_pie3d.R │ ├── ui_pie_prh.R │ ├── ui_scatter.R │ ├── ui_scatter_prh.R │ ├── ui_scr.R │ ├── ui_screen.R │ ├── ui_sel.R │ ├── ui_seldata.R │ ├── ui_select.R │ ├── ui_trans.R │ ├── ui_transform2.R │ ├── ui_up.R │ ├── ui_vi.R │ ├── ui_view.R │ ├── ui_visualize.R │ ├── ui_viz_base.R │ ├── ui_viz_gg.R │ ├── ui_viz_others.R │ ├── ui_vizhome.R │ ├── ui_vizlib.R │ └── ui_vizmenu.R │ └── www │ ├── Rlogonew.png │ ├── bokeh_logo.png │ ├── ggplot2_logo.png │ ├── highcharts_logo.png │ └── plotly_logo.png ├── man ├── app_descriptive.Rd ├── app_inference.Rd ├── app_linear_regression.Rd ├── app_logistic_regression.Rd ├── app_rfm_analysis.Rd ├── app_vistributions.Rd ├── app_visualizer.Rd ├── exam.Rd ├── hsb.Rd ├── treatment.Rd ├── xpl_gvar.Rd ├── xpl_nsignC.Rd └── xplorerr.Rd ├── revdep ├── README.md ├── checks │ ├── blorr │ │ ├── blorr_0.3.0.tar.gz │ │ ├── new │ │ │ ├── blorr.Rcheck │ │ │ │ ├── 00check.log │ │ │ │ ├── 00install.out │ │ │ │ ├── blorr-Ex.R │ │ │ │ ├── blorr-Ex.Rout │ │ │ │ ├── blorr-Ex.pdf │ │ │ │ └── tests │ │ │ │ │ ├── figs │ │ │ │ │ ├── deps.txt │ │ │ │ │ └── test-blr-plots-r │ │ │ │ │ │ ├── c-fitted-plot.svg │ │ │ │ │ │ ├── c-leverage-plot.svg │ │ │ │ │ │ ├── c-plot.svg │ │ │ │ │ │ ├── cbar-plot.svg │ │ │ │ │ │ ├── decile-capture-rate-chart.svg │ │ │ │ │ │ ├── decile-lift-chart.svg │ │ │ │ │ │ ├── deviance-fitted-plot.svg │ │ │ │ │ │ ├── deviance-residual-plot.svg │ │ │ │ │ │ ├── difchisq-fitted-plot.svg │ │ │ │ │ │ ├── difchisq-leverage-plot.svg │ │ │ │ │ │ ├── difchisq-plot.svg │ │ │ │ │ │ ├── difdev-fitted-plot.svg │ │ │ │ │ │ ├── difdev-leverage-plot.svg │ │ │ │ │ │ ├── difdev-plot.svg │ │ │ │ │ │ ├── fitted-leverage-plot.svg │ │ │ │ │ │ ├── forward-selection-plot.svg │ │ │ │ │ │ ├── ks-chart.svg │ │ │ │ │ │ ├── leverage-fitted-plot.svg │ │ │ │ │ │ ├── leverage-plot.svg │ │ │ │ │ │ ├── lift-chart.svg │ │ │ │ │ │ ├── lorenz-curve.svg │ │ │ │ │ │ ├── pearson-residual-plot.svg │ │ │ │ │ │ ├── residual-fitted-plot.svg │ │ │ │ │ │ ├── roc-curve.svg │ │ │ │ │ │ ├── segment-distribution-plot.svg │ │ │ │ │ │ ├── stepwise-backward-selection-plot.svg │ │ │ │ │ │ ├── stepwise-selection-plot.svg │ │ │ │ │ │ └── woe-plot.svg │ │ │ │ │ ├── startup.Rs │ │ │ │ │ ├── testthat.R │ │ │ │ │ ├── testthat.Rout │ │ │ │ │ └── testthat │ │ │ │ │ ├── test-backward-elimination.R │ │ │ │ │ ├── test-bivariate-analysis.R │ │ │ │ │ ├── test-blr-gains-table.R │ │ │ │ │ ├── test-blr-lrtest.R │ │ │ │ │ ├── test-blr-pairs.R │ │ │ │ │ ├── test-blr-plots.R │ │ │ │ │ ├── test-blr-regress.R │ │ │ │ │ ├── test-coll-diag.R │ │ │ │ │ ├── test-forward-selection.R │ │ │ │ │ ├── test-gini-index.R │ │ │ │ │ ├── test-hosmer-lemeshow.R │ │ │ │ │ ├── test-linktest.R │ │ │ │ │ ├── test-model-fit-stats.R │ │ │ │ │ ├── test-model-validation.R │ │ │ │ │ ├── test-stepwise-selection.R │ │ │ │ │ └── test-utils.R │ │ │ └── libraries.txt │ │ └── old │ │ │ ├── blorr.Rcheck │ │ │ ├── 00check.log │ │ │ ├── 00install.out │ │ │ ├── blorr-Ex.R │ │ │ ├── blorr-Ex.Rout │ │ │ ├── blorr-Ex.pdf │ │ │ └── tests │ │ │ │ ├── figs │ │ │ │ ├── deps.txt │ │ │ │ └── test-blr-plots-r │ │ │ │ │ ├── c-fitted-plot.svg │ │ │ │ │ ├── c-leverage-plot.svg │ │ │ │ │ ├── c-plot.svg │ │ │ │ │ ├── cbar-plot.svg │ │ │ │ │ ├── decile-capture-rate-chart.svg │ │ │ │ │ ├── decile-lift-chart.svg │ │ │ │ │ ├── deviance-fitted-plot.svg │ │ │ │ │ ├── deviance-residual-plot.svg │ │ │ │ │ ├── difchisq-fitted-plot.svg │ │ │ │ │ ├── difchisq-leverage-plot.svg │ │ │ │ │ ├── difchisq-plot.svg │ │ │ │ │ ├── difdev-fitted-plot.svg │ │ │ │ │ ├── difdev-leverage-plot.svg │ │ │ │ │ ├── difdev-plot.svg │ │ │ │ │ ├── fitted-leverage-plot.svg │ │ │ │ │ ├── forward-selection-plot.svg │ │ │ │ │ ├── ks-chart.svg │ │ │ │ │ ├── leverage-fitted-plot.svg │ │ │ │ │ ├── leverage-plot.svg │ │ │ │ │ ├── lift-chart.svg │ │ │ │ │ ├── lorenz-curve.svg │ │ │ │ │ ├── pearson-residual-plot.svg │ │ │ │ │ ├── residual-fitted-plot.svg │ │ │ │ │ ├── roc-curve.svg │ │ │ │ │ ├── segment-distribution-plot.svg │ │ │ │ │ ├── stepwise-backward-selection-plot.svg │ │ │ │ │ ├── stepwise-selection-plot.svg │ │ │ │ │ └── woe-plot.svg │ │ │ │ ├── startup.Rs │ │ │ │ ├── testthat.R │ │ │ │ ├── testthat.Rout │ │ │ │ └── testthat │ │ │ │ ├── test-backward-elimination.R │ │ │ │ ├── test-bivariate-analysis.R │ │ │ │ ├── test-blr-gains-table.R │ │ │ │ ├── test-blr-lrtest.R │ │ │ │ ├── test-blr-pairs.R │ │ │ │ ├── test-blr-plots.R │ │ │ │ ├── test-blr-regress.R │ │ │ │ ├── test-coll-diag.R │ │ │ │ ├── test-forward-selection.R │ │ │ │ ├── test-gini-index.R │ │ │ │ ├── test-hosmer-lemeshow.R │ │ │ │ ├── test-linktest.R │ │ │ │ ├── test-model-fit-stats.R │ │ │ │ ├── test-model-validation.R │ │ │ │ ├── test-stepwise-selection.R │ │ │ │ └── test-utils.R │ │ │ └── libraries.txt │ ├── descriptr │ │ ├── descriptr_0.5.2.tar.gz │ │ ├── new │ │ │ ├── descriptr.Rcheck │ │ │ │ ├── 00check.log │ │ │ │ ├── 00install.out │ │ │ │ ├── descriptr-Ex.R │ │ │ │ ├── descriptr-Ex.Rout │ │ │ │ ├── descriptr-Ex.pdf │ │ │ │ └── tests │ │ │ │ │ ├── README.md │ │ │ │ │ ├── README_files │ │ │ │ │ └── figure-gfm │ │ │ │ │ │ ├── tests-1.png │ │ │ │ │ │ ├── tests-10.png │ │ │ │ │ │ ├── tests-11.png │ │ │ │ │ │ ├── tests-12.png │ │ │ │ │ │ ├── tests-13.png │ │ │ │ │ │ ├── tests-14.png │ │ │ │ │ │ ├── tests-15.png │ │ │ │ │ │ ├── tests-2.png │ │ │ │ │ │ ├── tests-3.png │ │ │ │ │ │ ├── tests-4.png │ │ │ │ │ │ ├── tests-5.png │ │ │ │ │ │ ├── tests-6.png │ │ │ │ │ │ ├── tests-7.png │ │ │ │ │ │ ├── tests-8.png │ │ │ │ │ │ └── tests-9.png │ │ │ │ │ ├── figs │ │ │ │ │ ├── deps.txt │ │ │ │ │ ├── ds-cross-table │ │ │ │ │ │ ├── cross-bar-proportional.svg │ │ │ │ │ │ ├── cross-bar-stacked.svg │ │ │ │ │ │ └── cross-bar.svg │ │ │ │ │ ├── ds-group-summary │ │ │ │ │ │ └── group-summary.svg │ │ │ │ │ ├── freq-table │ │ │ │ │ │ ├── ds-freq-bar.svg │ │ │ │ │ │ └── ds-freq-cont.svg │ │ │ │ │ └── test-plots │ │ │ │ │ │ ├── ds-plot-bar-1.svg │ │ │ │ │ │ ├── ds-plot-bar-2.svg │ │ │ │ │ │ ├── ds-plot-bar-grouped-1.svg │ │ │ │ │ │ ├── ds-plot-bar-grouped-2.svg │ │ │ │ │ │ ├── ds-plot-bar-stacked-1.svg │ │ │ │ │ │ ├── ds-plot-bar-stacked-2.svg │ │ │ │ │ │ ├── ds-plot-box-group-1.svg │ │ │ │ │ │ ├── ds-plot-box-group-2.svg │ │ │ │ │ │ ├── ds-plot-box-single-1.svg │ │ │ │ │ │ ├── ds-plot-box-single-2.svg │ │ │ │ │ │ ├── ds-plot-density-1.svg │ │ │ │ │ │ ├── ds-plot-density-2.svg │ │ │ │ │ │ ├── ds-plot-density-3.svg │ │ │ │ │ │ ├── ds-plot-hist-1.svg │ │ │ │ │ │ ├── ds-plot-hist-2.svg │ │ │ │ │ │ ├── ds-plot-hist-3.svg │ │ │ │ │ │ ├── ds-plot-scatter-1.svg │ │ │ │ │ │ ├── ds-plot-scatter-2.svg │ │ │ │ │ │ └── ds-screener-1.svg │ │ │ │ │ ├── startup.Rs │ │ │ │ │ ├── testthat.R │ │ │ │ │ ├── testthat.Rout │ │ │ │ │ └── testthat │ │ │ │ │ ├── Rplots.pdf │ │ │ │ │ ├── helper-utils.R │ │ │ │ │ ├── test-auto-summary.R │ │ │ │ │ ├── test-cross-table.R │ │ │ │ │ ├── test-describe.R │ │ │ │ │ ├── test-freq-table.R │ │ │ │ │ ├── test-group-summary-interact.R │ │ │ │ │ ├── test-group-summary.R │ │ │ │ │ ├── test-multistats.R │ │ │ │ │ ├── test-output.R │ │ │ │ │ ├── test-plots.R │ │ │ │ │ ├── test-screen.R │ │ │ │ │ ├── test-summary-stats.R │ │ │ │ │ └── test-utils.R │ │ │ └── libraries.txt │ │ └── old │ │ │ ├── descriptr.Rcheck │ │ │ ├── 00check.log │ │ │ ├── 00install.out │ │ │ ├── descriptr-Ex.R │ │ │ ├── descriptr-Ex.Rout │ │ │ ├── descriptr-Ex.pdf │ │ │ └── tests │ │ │ │ ├── README.md │ │ │ │ ├── README_files │ │ │ │ └── figure-gfm │ │ │ │ │ ├── tests-1.png │ │ │ │ │ ├── tests-10.png │ │ │ │ │ ├── tests-11.png │ │ │ │ │ ├── tests-12.png │ │ │ │ │ ├── tests-13.png │ │ │ │ │ ├── tests-14.png │ │ │ │ │ ├── tests-15.png │ │ │ │ │ ├── tests-2.png │ │ │ │ │ ├── tests-3.png │ │ │ │ │ ├── tests-4.png │ │ │ │ │ ├── tests-5.png │ │ │ │ │ ├── tests-6.png │ │ │ │ │ ├── tests-7.png │ │ │ │ │ ├── tests-8.png │ │ │ │ │ └── tests-9.png │ │ │ │ ├── figs │ │ │ │ ├── deps.txt │ │ │ │ ├── ds-cross-table │ │ │ │ │ ├── cross-bar-proportional.svg │ │ │ │ │ ├── cross-bar-stacked.svg │ │ │ │ │ └── cross-bar.svg │ │ │ │ ├── ds-group-summary │ │ │ │ │ └── group-summary.svg │ │ │ │ ├── freq-table │ │ │ │ │ ├── ds-freq-bar.svg │ │ │ │ │ └── ds-freq-cont.svg │ │ │ │ └── test-plots │ │ │ │ │ ├── ds-plot-bar-1.svg │ │ │ │ │ ├── ds-plot-bar-2.svg │ │ │ │ │ ├── ds-plot-bar-grouped-1.svg │ │ │ │ │ ├── ds-plot-bar-grouped-2.svg │ │ │ │ │ ├── ds-plot-bar-stacked-1.svg │ │ │ │ │ ├── ds-plot-bar-stacked-2.svg │ │ │ │ │ ├── ds-plot-box-group-1.svg │ │ │ │ │ ├── ds-plot-box-group-2.svg │ │ │ │ │ ├── ds-plot-box-single-1.svg │ │ │ │ │ ├── ds-plot-box-single-2.svg │ │ │ │ │ ├── ds-plot-density-1.svg │ │ │ │ │ ├── ds-plot-density-2.svg │ │ │ │ │ ├── ds-plot-density-3.svg │ │ │ │ │ ├── ds-plot-hist-1.svg │ │ │ │ │ ├── ds-plot-hist-2.svg │ │ │ │ │ ├── ds-plot-hist-3.svg │ │ │ │ │ ├── ds-plot-scatter-1.svg │ │ │ │ │ ├── ds-plot-scatter-2.svg │ │ │ │ │ └── ds-screener-1.svg │ │ │ │ ├── startup.Rs │ │ │ │ ├── testthat.R │ │ │ │ ├── testthat.Rout │ │ │ │ └── testthat │ │ │ │ ├── Rplots.pdf │ │ │ │ ├── helper-utils.R │ │ │ │ ├── test-auto-summary.R │ │ │ │ ├── test-cross-table.R │ │ │ │ ├── test-describe.R │ │ │ │ ├── test-freq-table.R │ │ │ │ ├── test-group-summary-interact.R │ │ │ │ ├── test-group-summary.R │ │ │ │ ├── test-multistats.R │ │ │ │ ├── test-output.R │ │ │ │ ├── test-plots.R │ │ │ │ ├── test-screen.R │ │ │ │ ├── test-summary-stats.R │ │ │ │ └── test-utils.R │ │ │ └── libraries.txt │ ├── inferr │ │ ├── inferr_0.3.1.tar.gz │ │ ├── new │ │ │ ├── inferr.Rcheck │ │ │ │ ├── 00check.log │ │ │ │ ├── 00install.out │ │ │ │ ├── inferr-Ex.R │ │ │ │ ├── inferr-Ex.Rout │ │ │ │ ├── inferr-Ex.pdf │ │ │ │ └── tests │ │ │ │ │ ├── _covrpage.Rmd │ │ │ │ │ ├── startup.Rs │ │ │ │ │ ├── testthat.R │ │ │ │ │ ├── testthat.Rout │ │ │ │ │ └── testthat │ │ │ │ │ ├── test-anova.R │ │ │ │ │ ├── test-binom.R │ │ │ │ │ ├── test-chisq.R │ │ │ │ │ ├── test-chisqgof.R │ │ │ │ │ ├── test-cochran.R │ │ │ │ │ ├── test-indttest.R │ │ │ │ │ ├── test-levene.R │ │ │ │ │ ├── test-mcnemar.R │ │ │ │ │ ├── test-os-vartest.R │ │ │ │ │ ├── test-paired-test.R │ │ │ │ │ ├── test-prop-test.R │ │ │ │ │ ├── test-runs.R │ │ │ │ │ ├── test-ttest.R │ │ │ │ │ ├── test-two-prop-test.R │ │ │ │ │ ├── test-two-var-test.R │ │ │ │ │ └── test-utils.R │ │ │ └── libraries.txt │ │ └── old │ │ │ ├── inferr.Rcheck │ │ │ ├── 00check.log │ │ │ ├── 00install.out │ │ │ ├── inferr-Ex.R │ │ │ ├── inferr-Ex.Rout │ │ │ ├── inferr-Ex.pdf │ │ │ └── tests │ │ │ │ ├── _covrpage.Rmd │ │ │ │ ├── startup.Rs │ │ │ │ ├── testthat.R │ │ │ │ ├── testthat.Rout │ │ │ │ └── testthat │ │ │ │ ├── test-anova.R │ │ │ │ ├── test-binom.R │ │ │ │ ├── test-chisq.R │ │ │ │ ├── test-chisqgof.R │ │ │ │ ├── test-cochran.R │ │ │ │ ├── test-indttest.R │ │ │ │ ├── test-levene.R │ │ │ │ ├── test-mcnemar.R │ │ │ │ ├── test-os-vartest.R │ │ │ │ ├── test-paired-test.R │ │ │ │ ├── test-prop-test.R │ │ │ │ ├── test-runs.R │ │ │ │ ├── test-ttest.R │ │ │ │ ├── test-two-prop-test.R │ │ │ │ ├── test-two-var-test.R │ │ │ │ └── test-utils.R │ │ │ └── libraries.txt │ ├── libraries.csv │ ├── olsrr │ │ ├── new │ │ │ ├── libraries.txt │ │ │ └── olsrr.Rcheck │ │ │ │ ├── 00check.log │ │ │ │ ├── 00install.out │ │ │ │ ├── olsrr-Ex.R │ │ │ │ ├── olsrr-Ex.Rout │ │ │ │ ├── olsrr-Ex.pdf │ │ │ │ └── tests │ │ │ │ ├── figs │ │ │ │ ├── deps.txt │ │ │ │ └── visual-test │ │ │ │ │ ├── avplot-1.svg │ │ │ │ │ ├── avplot-2.svg │ │ │ │ │ ├── avplot-3.svg │ │ │ │ │ ├── bestplot-1.svg │ │ │ │ │ ├── bestplot-2.svg │ │ │ │ │ ├── bestplot-3.svg │ │ │ │ │ ├── bestplot-4.svg │ │ │ │ │ ├── bestplot-5.svg │ │ │ │ │ ├── bestplot-6.svg │ │ │ │ │ ├── cooks-d-bar-chart.svg │ │ │ │ │ ├── cooks-d-bar-plot.svg │ │ │ │ │ ├── dfbetas-1.svg │ │ │ │ │ ├── dfbetas-2.svg │ │ │ │ │ ├── dfbetas-3.svg │ │ │ │ │ ├── dfbetas-4.svg │ │ │ │ │ ├── dfbetas-5.svg │ │ │ │ │ ├── dffits-plot.svg │ │ │ │ │ ├── dsrvsp-plot.svg │ │ │ │ │ ├── fm-plot.svg │ │ │ │ │ ├── ggplot2-histogram.svg │ │ │ │ │ ├── hadi-plot.svg │ │ │ │ │ ├── potential-residual-plot.svg │ │ │ │ │ ├── residual-box-plot.svg │ │ │ │ │ ├── residual-fit-spread-plot-2.svg │ │ │ │ │ ├── residual-fit-spread-plot.svg │ │ │ │ │ ├── residual-vs-fitted-plot.svg │ │ │ │ │ ├── residual-vs-regressor-plot.svg │ │ │ │ │ ├── residual-vs-regressor-shiny-plot.svg │ │ │ │ │ ├── resp-viz-boxplot.svg │ │ │ │ │ ├── resp-viz-dot-plot.svg │ │ │ │ │ ├── resp-viz-histogram.svg │ │ │ │ │ ├── resp-viz-trend-plot.svg │ │ │ │ │ ├── rpcplot-1.svg │ │ │ │ │ ├── rpcplot-2.svg │ │ │ │ │ ├── rpcplot-3.svg │ │ │ │ │ ├── rpcplot-4.svg │ │ │ │ │ ├── rsd-plot.svg │ │ │ │ │ ├── rslev-1.svg │ │ │ │ │ ├── step-back-1.svg │ │ │ │ │ ├── step-back-2.svg │ │ │ │ │ ├── step-back-3.svg │ │ │ │ │ ├── step-back-4.svg │ │ │ │ │ ├── step-back-5.svg │ │ │ │ │ ├── step-back-6.svg │ │ │ │ │ ├── step-both-1.svg │ │ │ │ │ ├── step-both-2.svg │ │ │ │ │ ├── step-both-3.svg │ │ │ │ │ ├── step-both-4.svg │ │ │ │ │ ├── step-both-5.svg │ │ │ │ │ ├── step-both-6.svg │ │ │ │ │ ├── step-forward-1.svg │ │ │ │ │ ├── step-forward-2.svg │ │ │ │ │ ├── step-forward-3.svg │ │ │ │ │ ├── step-forward-4.svg │ │ │ │ │ ├── step-forward-5.svg │ │ │ │ │ ├── step-forward-6.svg │ │ │ │ │ ├── stepaic-backward-regression-plot.svg │ │ │ │ │ ├── stepaic-both-regression-plot.svg │ │ │ │ │ ├── stepaic-forward-regression-plot.svg │ │ │ │ │ └── studres-1.svg │ │ │ │ ├── startup.Rs │ │ │ │ ├── testthat.R │ │ │ │ ├── testthat.Rout │ │ │ │ └── testthat │ │ │ │ ├── Rplots.pdf │ │ │ │ ├── _snaps │ │ │ │ ├── all-possible.md │ │ │ │ ├── bartlett-output.md │ │ │ │ ├── best-subsets-output.md │ │ │ │ ├── collindiag.md │ │ │ │ ├── correlations-output.md │ │ │ │ ├── ftest-output.md │ │ │ │ ├── loftest-output.md │ │ │ │ ├── norm-output.md │ │ │ │ ├── regress-output.md │ │ │ │ ├── step-backward-output.md │ │ │ │ ├── step-forward-output.md │ │ │ │ ├── step-rsquared-output.md │ │ │ │ ├── stepaic-b-output.md │ │ │ │ ├── stepaic-both-output.md │ │ │ │ ├── stepaic-f-output.md │ │ │ │ └── stepwise-output.md │ │ │ │ ├── test-all-possible.R │ │ │ │ ├── test-bartlett-output.R │ │ │ │ ├── test-bartlett.R │ │ │ │ ├── test-best-subsets-output.R │ │ │ │ ├── test-best-subsets.R │ │ │ │ ├── test-bp-output.R │ │ │ │ ├── test-breusch-pagan.R │ │ │ │ ├── test-collindiag.R │ │ │ │ ├── test-correlations-output.R │ │ │ │ ├── test-correlations.R │ │ │ │ ├── test-f.R │ │ │ │ ├── test-ftest-output.R │ │ │ │ ├── test-influence.R │ │ │ │ ├── test-info.R │ │ │ │ ├── test-loftest-output.R │ │ │ │ ├── test-loftest.R │ │ │ │ ├── test-norm-output.R │ │ │ │ ├── test-regress-output.R │ │ │ │ ├── test-regress.R │ │ │ │ ├── test-score-output.R │ │ │ │ ├── test-score.R │ │ │ │ ├── test-step-backward-output.R │ │ │ │ ├── test-step-backward.R │ │ │ │ ├── test-step-forward-output.R │ │ │ │ ├── test-step-forward.R │ │ │ │ ├── test-step-rsquared-output.R │ │ │ │ ├── test-step-rsquared.R │ │ │ │ ├── test-stepaic-b-output.R │ │ │ │ ├── test-stepaic-b.R │ │ │ │ ├── test-stepaic-both-output.R │ │ │ │ ├── test-stepaic-both.R │ │ │ │ ├── test-stepaic-f-output.R │ │ │ │ ├── test-stepaic-f.R │ │ │ │ ├── test-stepwise-output.R │ │ │ │ ├── test-stepwise.R │ │ │ │ ├── test-utility.R │ │ │ │ └── test-visual.R │ │ ├── old │ │ │ ├── libraries.txt │ │ │ └── olsrr.Rcheck │ │ │ │ ├── 00check.log │ │ │ │ ├── 00install.out │ │ │ │ ├── olsrr-Ex.R │ │ │ │ ├── olsrr-Ex.Rout │ │ │ │ ├── olsrr-Ex.pdf │ │ │ │ └── tests │ │ │ │ ├── figs │ │ │ │ ├── deps.txt │ │ │ │ └── visual-test │ │ │ │ │ ├── avplot-1.svg │ │ │ │ │ ├── avplot-2.svg │ │ │ │ │ ├── avplot-3.svg │ │ │ │ │ ├── bestplot-1.svg │ │ │ │ │ ├── bestplot-2.svg │ │ │ │ │ ├── bestplot-3.svg │ │ │ │ │ ├── bestplot-4.svg │ │ │ │ │ ├── bestplot-5.svg │ │ │ │ │ ├── bestplot-6.svg │ │ │ │ │ ├── cooks-d-bar-chart.svg │ │ │ │ │ ├── cooks-d-bar-plot.svg │ │ │ │ │ ├── dfbetas-1.svg │ │ │ │ │ ├── dfbetas-2.svg │ │ │ │ │ ├── dfbetas-3.svg │ │ │ │ │ ├── dfbetas-4.svg │ │ │ │ │ ├── dfbetas-5.svg │ │ │ │ │ ├── dffits-plot.svg │ │ │ │ │ ├── dsrvsp-plot.svg │ │ │ │ │ ├── fm-plot.svg │ │ │ │ │ ├── ggplot2-histogram.svg │ │ │ │ │ ├── hadi-plot.svg │ │ │ │ │ ├── potential-residual-plot.svg │ │ │ │ │ ├── residual-box-plot.svg │ │ │ │ │ ├── residual-fit-spread-plot-2.svg │ │ │ │ │ ├── residual-fit-spread-plot.svg │ │ │ │ │ ├── residual-vs-fitted-plot.svg │ │ │ │ │ ├── residual-vs-regressor-plot.svg │ │ │ │ │ ├── residual-vs-regressor-shiny-plot.svg │ │ │ │ │ ├── resp-viz-boxplot.svg │ │ │ │ │ ├── resp-viz-dot-plot.svg │ │ │ │ │ ├── resp-viz-histogram.svg │ │ │ │ │ ├── resp-viz-trend-plot.svg │ │ │ │ │ ├── rpcplot-1.svg │ │ │ │ │ ├── rpcplot-2.svg │ │ │ │ │ ├── rpcplot-3.svg │ │ │ │ │ ├── rpcplot-4.svg │ │ │ │ │ ├── rsd-plot.svg │ │ │ │ │ ├── rslev-1.svg │ │ │ │ │ ├── step-back-1.svg │ │ │ │ │ ├── step-back-2.svg │ │ │ │ │ ├── step-back-3.svg │ │ │ │ │ ├── step-back-4.svg │ │ │ │ │ ├── step-back-5.svg │ │ │ │ │ ├── step-back-6.svg │ │ │ │ │ ├── step-both-1.svg │ │ │ │ │ ├── step-both-2.svg │ │ │ │ │ ├── step-both-3.svg │ │ │ │ │ ├── step-both-4.svg │ │ │ │ │ ├── step-both-5.svg │ │ │ │ │ ├── step-both-6.svg │ │ │ │ │ ├── step-forward-1.svg │ │ │ │ │ ├── step-forward-2.svg │ │ │ │ │ ├── step-forward-3.svg │ │ │ │ │ ├── step-forward-4.svg │ │ │ │ │ ├── step-forward-5.svg │ │ │ │ │ ├── step-forward-6.svg │ │ │ │ │ ├── stepaic-backward-regression-plot.svg │ │ │ │ │ ├── stepaic-both-regression-plot.svg │ │ │ │ │ ├── stepaic-forward-regression-plot.svg │ │ │ │ │ └── studres-1.svg │ │ │ │ ├── startup.Rs │ │ │ │ ├── testthat.R │ │ │ │ ├── testthat.Rout │ │ │ │ └── testthat │ │ │ │ ├── Rplots.pdf │ │ │ │ ├── _snaps │ │ │ │ ├── all-possible.md │ │ │ │ ├── bartlett-output.md │ │ │ │ ├── best-subsets-output.md │ │ │ │ ├── collindiag.md │ │ │ │ ├── correlations-output.md │ │ │ │ ├── ftest-output.md │ │ │ │ ├── loftest-output.md │ │ │ │ ├── norm-output.md │ │ │ │ ├── regress-output.md │ │ │ │ ├── step-backward-output.md │ │ │ │ ├── step-forward-output.md │ │ │ │ ├── step-rsquared-output.md │ │ │ │ ├── stepaic-b-output.md │ │ │ │ ├── stepaic-both-output.md │ │ │ │ ├── stepaic-f-output.md │ │ │ │ └── stepwise-output.md │ │ │ │ ├── test-all-possible.R │ │ │ │ ├── test-bartlett-output.R │ │ │ │ ├── test-bartlett.R │ │ │ │ ├── test-best-subsets-output.R │ │ │ │ ├── test-best-subsets.R │ │ │ │ ├── test-bp-output.R │ │ │ │ ├── test-breusch-pagan.R │ │ │ │ ├── test-collindiag.R │ │ │ │ ├── test-correlations-output.R │ │ │ │ ├── test-correlations.R │ │ │ │ ├── test-f.R │ │ │ │ ├── test-ftest-output.R │ │ │ │ ├── test-influence.R │ │ │ │ ├── test-info.R │ │ │ │ ├── test-loftest-output.R │ │ │ │ ├── test-loftest.R │ │ │ │ ├── test-norm-output.R │ │ │ │ ├── test-regress-output.R │ │ │ │ ├── test-regress.R │ │ │ │ ├── test-score-output.R │ │ │ │ ├── test-score.R │ │ │ │ ├── test-step-backward-output.R │ │ │ │ ├── test-step-backward.R │ │ │ │ ├── test-step-forward-output.R │ │ │ │ ├── test-step-forward.R │ │ │ │ ├── test-step-rsquared-output.R │ │ │ │ ├── test-step-rsquared.R │ │ │ │ ├── test-stepaic-b-output.R │ │ │ │ ├── test-stepaic-b.R │ │ │ │ ├── test-stepaic-both-output.R │ │ │ │ ├── test-stepaic-both.R │ │ │ │ ├── test-stepaic-f-output.R │ │ │ │ ├── test-stepaic-f.R │ │ │ │ ├── test-stepwise-output.R │ │ │ │ ├── test-stepwise.R │ │ │ │ ├── test-utility.R │ │ │ │ └── test-visual.R │ │ └── olsrr_0.6.0.tar.gz │ ├── rfm │ │ ├── new │ │ │ ├── libraries.txt │ │ │ └── rfm.Rcheck │ │ │ │ ├── 00check.log │ │ │ │ ├── 00install.out │ │ │ │ ├── rfm-Ex.R │ │ │ │ ├── rfm-Ex.Rout │ │ │ │ ├── rfm-Ex.pdf │ │ │ │ └── tests │ │ │ │ ├── README.md │ │ │ │ ├── figs │ │ │ │ ├── deps.txt │ │ │ │ └── test-rfm-plots-r │ │ │ │ │ ├── rfm-barchart.svg │ │ │ │ │ ├── rfm-fmplot.svg │ │ │ │ │ ├── rfm-heatmap.svg │ │ │ │ │ ├── rfm-histograms.svg │ │ │ │ │ ├── rfm-median-frequency.svg │ │ │ │ │ ├── rfm-median-monetary.svg │ │ │ │ │ ├── rfm-median-recency.svg │ │ │ │ │ ├── rfm-orderdist.svg │ │ │ │ │ ├── rfm-rfplot.svg │ │ │ │ │ └── rfm-rmplot.svg │ │ │ │ ├── startup.Rs │ │ │ │ ├── testthat.R │ │ │ │ ├── testthat.Rout │ │ │ │ └── testthat │ │ │ │ ├── Rplots.pdf │ │ │ │ ├── _snaps │ │ │ │ └── rfm-plotly.md │ │ │ │ ├── test-rfm-plotly.R │ │ │ │ ├── test-rfm-plots.R │ │ │ │ ├── test-rfm-segment.R │ │ │ │ ├── test-rfm-table.R │ │ │ │ └── test-utils.R │ │ ├── old │ │ │ ├── libraries.txt │ │ │ └── rfm.Rcheck │ │ │ │ ├── 00check.log │ │ │ │ ├── 00install.out │ │ │ │ ├── rfm-Ex.R │ │ │ │ ├── rfm-Ex.Rout │ │ │ │ ├── rfm-Ex.pdf │ │ │ │ └── tests │ │ │ │ ├── README.md │ │ │ │ ├── figs │ │ │ │ ├── deps.txt │ │ │ │ └── test-rfm-plots-r │ │ │ │ │ ├── rfm-barchart.svg │ │ │ │ │ ├── rfm-fmplot.svg │ │ │ │ │ ├── rfm-heatmap.svg │ │ │ │ │ ├── rfm-histograms.svg │ │ │ │ │ ├── rfm-median-frequency.svg │ │ │ │ │ ├── rfm-median-monetary.svg │ │ │ │ │ ├── rfm-median-recency.svg │ │ │ │ │ ├── rfm-orderdist.svg │ │ │ │ │ ├── rfm-rfplot.svg │ │ │ │ │ └── rfm-rmplot.svg │ │ │ │ ├── startup.Rs │ │ │ │ ├── testthat.R │ │ │ │ ├── testthat.Rout │ │ │ │ └── testthat │ │ │ │ ├── Rplots.pdf │ │ │ │ ├── _snaps │ │ │ │ └── rfm-plotly.md │ │ │ │ ├── test-rfm-plotly.R │ │ │ │ ├── test-rfm-plots.R │ │ │ │ ├── test-rfm-segment.R │ │ │ │ ├── test-rfm-table.R │ │ │ │ └── test-utils.R │ │ └── rfm_0.3.0.tar.gz │ └── vistributions │ │ ├── new │ │ ├── libraries.txt │ │ └── vistributions.Rcheck │ │ │ ├── 00check.log │ │ │ ├── 00install.out │ │ │ ├── tests │ │ │ ├── figs │ │ │ │ ├── deps.txt │ │ │ │ └── test-visual │ │ │ │ │ ├── binomial-perc-lower.svg │ │ │ │ │ ├── binomial-perc-upper.svg │ │ │ │ │ ├── binomial-plot.svg │ │ │ │ │ ├── binomial-prob-exact.svg │ │ │ │ │ ├── binomial-prob-interval.svg │ │ │ │ │ ├── binomial-prob-lower.svg │ │ │ │ │ ├── binomial-prob-upper.svg │ │ │ │ │ ├── chisquare-perc-lower.svg │ │ │ │ │ ├── chisquare-perc-upper.svg │ │ │ │ │ ├── chisquare-plot-1.svg │ │ │ │ │ ├── chisquare-plot-1a.svg │ │ │ │ │ ├── chisquare-plot-2.svg │ │ │ │ │ ├── chisquare-plot-3.svg │ │ │ │ │ ├── chisquare-prob-lower.svg │ │ │ │ │ ├── chisquare-prob-upper.svg │ │ │ │ │ ├── f-perc-lower.svg │ │ │ │ │ ├── f-perc-upper.svg │ │ │ │ │ ├── f-plot-1.svg │ │ │ │ │ ├── f-plot-2.svg │ │ │ │ │ ├── f-prob-lower.svg │ │ │ │ │ ├── f-prob-upper.svg │ │ │ │ │ ├── normal-perc-both.svg │ │ │ │ │ ├── normal-perc-lower.svg │ │ │ │ │ ├── normal-perc-upper.svg │ │ │ │ │ ├── normal-plot-1.svg │ │ │ │ │ ├── normal-plot-2.svg │ │ │ │ │ ├── normal-prob-both.svg │ │ │ │ │ ├── normal-prob-lower.svg │ │ │ │ │ ├── normal-prob-upper.svg │ │ │ │ │ ├── t-perc-both.svg │ │ │ │ │ ├── t-perc-lower.svg │ │ │ │ │ ├── t-perc-upper.svg │ │ │ │ │ ├── t-plot-1.svg │ │ │ │ │ ├── t-plot-2.svg │ │ │ │ │ ├── t-plot-3.svg │ │ │ │ │ ├── t-prob-both.svg │ │ │ │ │ ├── t-prob-interval.svg │ │ │ │ │ ├── t-prob-lower.svg │ │ │ │ │ └── t-prob-upper.svg │ │ │ ├── startup.Rs │ │ │ ├── testthat.R │ │ │ ├── testthat.Rout │ │ │ └── testthat │ │ │ │ ├── test-binomial.R │ │ │ │ ├── test-chisquare.R │ │ │ │ ├── test-f.R │ │ │ │ ├── test-normal.R │ │ │ │ ├── test-t.R │ │ │ │ └── test-visual.R │ │ │ ├── vistributions-Ex.R │ │ │ ├── vistributions-Ex.Rout │ │ │ └── vistributions-Ex.pdf │ │ ├── old │ │ ├── libraries.txt │ │ └── vistributions.Rcheck │ │ │ ├── 00check.log │ │ │ ├── 00install.out │ │ │ ├── tests │ │ │ ├── figs │ │ │ │ ├── deps.txt │ │ │ │ └── test-visual │ │ │ │ │ ├── binomial-perc-lower.svg │ │ │ │ │ ├── binomial-perc-upper.svg │ │ │ │ │ ├── binomial-plot.svg │ │ │ │ │ ├── binomial-prob-exact.svg │ │ │ │ │ ├── binomial-prob-interval.svg │ │ │ │ │ ├── binomial-prob-lower.svg │ │ │ │ │ ├── binomial-prob-upper.svg │ │ │ │ │ ├── chisquare-perc-lower.svg │ │ │ │ │ ├── chisquare-perc-upper.svg │ │ │ │ │ ├── chisquare-plot-1.svg │ │ │ │ │ ├── chisquare-plot-1a.svg │ │ │ │ │ ├── chisquare-plot-2.svg │ │ │ │ │ ├── chisquare-plot-3.svg │ │ │ │ │ ├── chisquare-prob-lower.svg │ │ │ │ │ ├── chisquare-prob-upper.svg │ │ │ │ │ ├── f-perc-lower.svg │ │ │ │ │ ├── f-perc-upper.svg │ │ │ │ │ ├── f-plot-1.svg │ │ │ │ │ ├── f-plot-2.svg │ │ │ │ │ ├── f-prob-lower.svg │ │ │ │ │ ├── f-prob-upper.svg │ │ │ │ │ ├── normal-perc-both.svg │ │ │ │ │ ├── normal-perc-lower.svg │ │ │ │ │ ├── normal-perc-upper.svg │ │ │ │ │ ├── normal-plot-1.svg │ │ │ │ │ ├── normal-plot-2.svg │ │ │ │ │ ├── normal-prob-both.svg │ │ │ │ │ ├── normal-prob-lower.svg │ │ │ │ │ ├── normal-prob-upper.svg │ │ │ │ │ ├── t-perc-both.svg │ │ │ │ │ ├── t-perc-lower.svg │ │ │ │ │ ├── t-perc-upper.svg │ │ │ │ │ ├── t-plot-1.svg │ │ │ │ │ ├── t-plot-2.svg │ │ │ │ │ ├── t-plot-3.svg │ │ │ │ │ ├── t-prob-both.svg │ │ │ │ │ ├── t-prob-interval.svg │ │ │ │ │ ├── t-prob-lower.svg │ │ │ │ │ └── t-prob-upper.svg │ │ │ ├── startup.Rs │ │ │ ├── testthat.R │ │ │ ├── testthat.Rout │ │ │ └── testthat │ │ │ │ ├── test-binomial.R │ │ │ │ ├── test-chisquare.R │ │ │ │ ├── test-f.R │ │ │ │ ├── test-normal.R │ │ │ │ ├── test-t.R │ │ │ │ └── test-visual.R │ │ │ ├── vistributions-Ex.R │ │ │ ├── vistributions-Ex.Rout │ │ │ └── vistributions-Ex.pdf │ │ └── vistributions_0.1.2.tar.gz ├── cran.md ├── data.sqlite ├── failures.md ├── library │ └── xplorerr │ │ ├── new │ │ ├── R6 │ │ │ ├── DESCRIPTION │ │ │ ├── INDEX │ │ │ ├── LICENSE │ │ │ ├── MD5 │ │ │ ├── Meta │ │ │ │ ├── Rd.rds │ │ │ │ ├── features.rds │ │ │ │ ├── hsearch.rds │ │ │ │ ├── links.rds │ │ │ │ ├── nsInfo.rds │ │ │ │ └── package.rds │ │ │ ├── NAMESPACE │ │ │ ├── NEWS.md │ │ │ ├── R │ │ │ │ ├── R6 │ │ │ │ ├── R6.rdb │ │ │ │ └── R6.rdx │ │ │ ├── help │ │ │ │ ├── AnIndex │ │ │ │ ├── R6.rdb │ │ │ │ ├── R6.rdx │ │ │ │ ├── aliases.rds │ │ │ │ ├── figures │ │ │ │ │ ├── logo.png │ │ │ │ │ └── logo.svg │ │ │ │ └── paths.rds │ │ │ └── html │ │ │ │ ├── 00Index.html │ │ │ │ └── R.css │ │ ├── Rcpp │ │ │ ├── CITATION │ │ │ ├── DESCRIPTION │ │ │ ├── INDEX │ │ │ ├── MD5 │ │ │ ├── Meta │ │ │ │ ├── Rd.rds │ │ │ │ ├── features.rds │ │ │ │ ├── hsearch.rds │ │ │ │ ├── links.rds │ │ │ │ ├── nsInfo.rds │ │ │ │ ├── package.rds │ │ │ │ └── vignette.rds │ │ │ ├── NAMESPACE │ │ │ ├── NEWS.Rd │ │ │ ├── R │ │ │ │ ├── Rcpp │ │ │ │ ├── Rcpp.rdb │ │ │ │ └── Rcpp.rdx │ │ │ ├── announce │ │ │ │ ├── ANNOUNCE-0.10.0.txt │ │ │ │ ├── ANNOUNCE-0.11.0.txt │ │ │ │ ├── ANNOUNCE-0.6.0.txt │ │ │ │ ├── ANNOUNCE-0.7.0.txt │ │ │ │ ├── ANNOUNCE-0.8.0.txt │ │ │ │ └── ANNOUNCE-0.9.0.txt │ │ │ ├── bib │ │ │ │ └── Rcpp.bib │ │ │ ├── discovery │ │ │ │ └── cxx0x.R │ │ │ ├── doc │ │ │ │ ├── Rcpp-FAQ.Rnw │ │ │ │ ├── Rcpp-FAQ.pdf │ │ │ │ ├── Rcpp-attributes.Rnw │ │ │ │ ├── Rcpp-attributes.pdf │ │ │ │ ├── Rcpp-extending.Rnw │ │ │ │ ├── Rcpp-extending.pdf │ │ │ │ ├── Rcpp-introduction.Rnw │ │ │ │ ├── Rcpp-introduction.pdf │ │ │ │ ├── Rcpp-jss-2011.Rnw │ │ │ │ ├── Rcpp-jss-2011.pdf │ │ │ │ ├── Rcpp-libraries.Rnw │ │ │ │ ├── Rcpp-libraries.pdf │ │ │ │ ├── Rcpp-modules.Rnw │ │ │ │ ├── Rcpp-modules.pdf │ │ │ │ ├── Rcpp-package.Rnw │ │ │ │ ├── Rcpp-package.pdf │ │ │ │ ├── Rcpp-quickref.Rnw │ │ │ │ ├── Rcpp-quickref.pdf │ │ │ │ ├── Rcpp-sugar.Rnw │ │ │ │ ├── Rcpp-sugar.pdf │ │ │ │ └── index.html │ │ │ ├── examples │ │ │ │ ├── Attributes │ │ │ │ │ ├── Depends.cpp │ │ │ │ │ ├── Export.cpp │ │ │ │ │ ├── cppFunction.R │ │ │ │ │ └── sourceCpp.R │ │ │ │ ├── ConvolveBenchmarks │ │ │ │ │ ├── GNUmakefile │ │ │ │ │ ├── buildAndRun.sh │ │ │ │ │ ├── convolve10_cpp.cpp │ │ │ │ │ ├── convolve10_cpp.h │ │ │ │ │ ├── convolve11_cpp.cpp │ │ │ │ │ ├── convolve12_cpp.cpp │ │ │ │ │ ├── convolve13_cpp.cpp │ │ │ │ │ ├── convolve14_cpp.cpp │ │ │ │ │ ├── convolve2_c.c │ │ │ │ │ ├── convolve3_cpp.cpp │ │ │ │ │ ├── convolve4_cpp.cpp │ │ │ │ │ ├── convolve5_cpp.cpp │ │ │ │ │ ├── convolve7_c.c │ │ │ │ │ ├── convolve8_cpp.cpp │ │ │ │ │ ├── convolve9_cpp.cpp │ │ │ │ │ ├── exampleRCode.r │ │ │ │ │ ├── loopmacro.h │ │ │ │ │ ├── overhead.r │ │ │ │ │ ├── overhead.sh │ │ │ │ │ ├── overhead_1.cpp │ │ │ │ │ └── overhead_2.c │ │ │ │ ├── FastLM │ │ │ │ │ ├── benchmark.r │ │ │ │ │ ├── benchmarkLongley.r │ │ │ │ │ ├── fastLMviaArmadillo.r │ │ │ │ │ ├── fastLMviaGSL.r │ │ │ │ │ ├── lmArmadillo.R │ │ │ │ │ └── lmGSL.R │ │ │ │ ├── Misc │ │ │ │ │ ├── fibonacci.r │ │ │ │ │ ├── ifelseLooped.r │ │ │ │ │ ├── newFib.r │ │ │ │ │ ├── piBySimulation.r │ │ │ │ │ └── piSugar.cpp │ │ │ │ ├── OpenMP │ │ │ │ │ ├── GNUmakefile │ │ │ │ │ ├── OpenMPandInline.r │ │ │ │ │ ├── check.R │ │ │ │ │ └── piWithInterrupts.cpp │ │ │ │ ├── RcppGibbs │ │ │ │ │ ├── RcppGibbs.R │ │ │ │ │ ├── RcppGibbs_Updated.R │ │ │ │ │ └── timeRNGs.R │ │ │ │ ├── RcppInline │ │ │ │ │ ├── RObject.r │ │ │ │ │ ├── RcppInlineExample.r │ │ │ │ │ ├── RcppInlineWithLibsExamples.r │ │ │ │ │ ├── RcppSimpleExample.r │ │ │ │ │ ├── UncaughtExceptions.r │ │ │ │ │ └── external_pointer.r │ │ │ │ ├── SugarPerformance │ │ │ │ │ ├── Timer.h │ │ │ │ │ ├── Timertest.cpp │ │ │ │ │ └── sugarBenchmarks.R │ │ │ │ ├── functionCallback │ │ │ │ │ ├── README │ │ │ │ │ └── newApiExample.r │ │ │ │ └── performance │ │ │ │ │ ├── extractors.R │ │ │ │ │ └── performance.R │ │ │ ├── help │ │ │ │ ├── AnIndex │ │ │ │ ├── Rcpp.rdb │ │ │ │ ├── Rcpp.rdx │ │ │ │ ├── aliases.rds │ │ │ │ └── paths.rds │ │ │ ├── html │ │ │ │ ├── 00Index.html │ │ │ │ └── R.css │ │ │ ├── include │ │ │ │ ├── Rcpp.h │ │ │ │ ├── Rcpp │ │ │ │ │ ├── Benchmark │ │ │ │ │ │ └── Timer.h │ │ │ │ │ ├── DataFrame.h │ │ │ │ │ ├── Dimension.h │ │ │ │ │ ├── DottedPair.h │ │ │ │ │ ├── DottedPairImpl.h │ │ │ │ │ ├── Environment.h │ │ │ │ │ ├── Extractor.h │ │ │ │ │ ├── Fast.h │ │ │ │ │ ├── Formula.h │ │ │ │ │ ├── Function.h │ │ │ │ │ ├── InputParameter.h │ │ │ │ │ ├── InternalFunction.h │ │ │ │ │ ├── InternalFunctionWithStdFunction.h │ │ │ │ │ ├── Interrupt.h │ │ │ │ │ ├── Language.h │ │ │ │ │ ├── Light │ │ │ │ │ ├── Lighter │ │ │ │ │ ├── Lightest │ │ │ │ │ ├── Module.h │ │ │ │ │ ├── Na_Proxy.h │ │ │ │ │ ├── Named.h │ │ │ │ │ ├── Nullable.h │ │ │ │ │ ├── Pairlist.h │ │ │ │ │ ├── Promise.h │ │ │ │ │ ├── RNGScope.h │ │ │ │ │ ├── RObject.h │ │ │ │ │ ├── Rcpp │ │ │ │ │ ├── Reference.h │ │ │ │ │ ├── Rmath.h │ │ │ │ │ ├── S4.h │ │ │ │ │ ├── StretchyList.h │ │ │ │ │ ├── String.h │ │ │ │ │ ├── StringTransformer.h │ │ │ │ │ ├── Symbol.h │ │ │ │ │ ├── Vector.h │ │ │ │ │ ├── WeakReference.h │ │ │ │ │ ├── XPtr.h │ │ │ │ │ ├── algo.h │ │ │ │ │ ├── algorithm.h │ │ │ │ │ ├── api │ │ │ │ │ │ ├── bones │ │ │ │ │ │ │ ├── Date.h │ │ │ │ │ │ │ ├── Datetime.h │ │ │ │ │ │ │ ├── bones.h │ │ │ │ │ │ │ └── wrap_extra_steps.h │ │ │ │ │ │ └── meat │ │ │ │ │ │ │ ├── DataFrame.h │ │ │ │ │ │ │ ├── Date.h │ │ │ │ │ │ │ ├── Datetime.h │ │ │ │ │ │ │ ├── Dimension.h │ │ │ │ │ │ │ ├── DottedPairImpl.h │ │ │ │ │ │ │ ├── Environment.h │ │ │ │ │ │ │ ├── Rcpp_eval.h │ │ │ │ │ │ │ ├── S4.h │ │ │ │ │ │ │ ├── StretchyList.h │ │ │ │ │ │ │ ├── Vector.h │ │ │ │ │ │ │ ├── as.h │ │ │ │ │ │ │ ├── export.h │ │ │ │ │ │ │ ├── is.h │ │ │ │ │ │ │ ├── meat.h │ │ │ │ │ │ │ ├── message.h │ │ │ │ │ │ │ ├── module │ │ │ │ │ │ │ └── Module.h │ │ │ │ │ │ │ ├── protection.h │ │ │ │ │ │ │ ├── proxy.h │ │ │ │ │ │ │ └── wrap.h │ │ │ │ │ ├── as.h │ │ │ │ │ ├── barrier.h │ │ │ │ │ ├── clone.h │ │ │ │ │ ├── complex.h │ │ │ │ │ ├── config.h │ │ │ │ │ ├── date_datetime │ │ │ │ │ │ ├── Date.h │ │ │ │ │ │ ├── Datetime.h │ │ │ │ │ │ ├── date_datetime.h │ │ │ │ │ │ ├── newDateVector.h │ │ │ │ │ │ ├── newDatetimeVector.h │ │ │ │ │ │ ├── oldDateVector.h │ │ │ │ │ │ └── oldDatetimeVector.h │ │ │ │ │ ├── exceptions.h │ │ │ │ │ ├── exceptions │ │ │ │ │ │ ├── cpp11 │ │ │ │ │ │ │ └── exceptions.h │ │ │ │ │ │ └── cpp98 │ │ │ │ │ │ │ └── exceptions.h │ │ │ │ │ ├── exceptions_impl.h │ │ │ │ │ ├── generated │ │ │ │ │ │ ├── DataFrame_generated.h │ │ │ │ │ │ ├── DottedPair__ctors.h │ │ │ │ │ │ ├── Function__operator.h │ │ │ │ │ │ ├── InternalFunctionWithStdFunction_call.h │ │ │ │ │ │ ├── InternalFunction__ctors.h │ │ │ │ │ │ ├── Language__ctors.h │ │ │ │ │ │ ├── Pairlist__ctors.h │ │ │ │ │ │ ├── Vector__create.h │ │ │ │ │ │ └── grow__pairlist.h │ │ │ │ │ ├── grow.h │ │ │ │ │ ├── hash │ │ │ │ │ │ ├── IndexHash.h │ │ │ │ │ │ ├── SelfHash.h │ │ │ │ │ │ └── hash.h │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── Exporter.h │ │ │ │ │ │ ├── GreedyVector.h │ │ │ │ │ │ ├── ListInitialization.h │ │ │ │ │ │ ├── NAComparator.h │ │ │ │ │ │ ├── NAEquals.h │ │ │ │ │ │ ├── Proxy_Iterator.h │ │ │ │ │ │ ├── SEXP_Iterator.h │ │ │ │ │ │ ├── call.h │ │ │ │ │ │ ├── caster.h │ │ │ │ │ │ ├── converter.h │ │ │ │ │ │ ├── export.h │ │ │ │ │ │ ├── na.h │ │ │ │ │ │ ├── r_coerce.h │ │ │ │ │ │ ├── r_vector.h │ │ │ │ │ │ ├── wrap.h │ │ │ │ │ │ └── wrap_end.h │ │ │ │ │ ├── iostream │ │ │ │ │ │ └── Rstreambuf.h │ │ │ │ │ ├── is.h │ │ │ │ │ ├── lang.h │ │ │ │ │ ├── longlong.h │ │ │ │ │ ├── macros │ │ │ │ │ │ ├── cat.hpp │ │ │ │ │ │ ├── config.hpp │ │ │ │ │ │ ├── debug.h │ │ │ │ │ │ ├── dispatch.h │ │ │ │ │ │ ├── interface.h │ │ │ │ │ │ ├── macros.h │ │ │ │ │ │ ├── module.h │ │ │ │ │ │ ├── traits.h │ │ │ │ │ │ ├── unroll.h │ │ │ │ │ │ └── xp.h │ │ │ │ │ ├── module │ │ │ │ │ │ ├── CppFunction.h │ │ │ │ │ │ ├── Module.h │ │ │ │ │ │ ├── Module_Add_Property.h │ │ │ │ │ │ ├── Module_Field.h │ │ │ │ │ │ ├── Module_Property.h │ │ │ │ │ │ ├── Module_generated_Constructor.h │ │ │ │ │ │ ├── Module_generated_CppFunction.h │ │ │ │ │ │ ├── Module_generated_CppMethod.h │ │ │ │ │ │ ├── Module_generated_Factory.h │ │ │ │ │ │ ├── Module_generated_Pointer_CppMethod.h │ │ │ │ │ │ ├── Module_generated_Pointer_method.h │ │ │ │ │ │ ├── Module_generated_class_constructor.h │ │ │ │ │ │ ├── Module_generated_class_factory.h │ │ │ │ │ │ ├── Module_generated_class_signature.h │ │ │ │ │ │ ├── Module_generated_ctor_signature.h │ │ │ │ │ │ ├── Module_generated_function.h │ │ │ │ │ │ ├── Module_generated_get_signature.h │ │ │ │ │ │ ├── Module_generated_method.h │ │ │ │ │ │ ├── class.h │ │ │ │ │ │ ├── class_Base.h │ │ │ │ │ │ └── get_return_type.h │ │ │ │ │ ├── platform │ │ │ │ │ │ ├── compiler.h │ │ │ │ │ │ └── solaris.h │ │ │ │ │ ├── print.h │ │ │ │ │ ├── protection │ │ │ │ │ │ ├── Armor.h │ │ │ │ │ │ ├── Shelter.h │ │ │ │ │ │ ├── Shield.h │ │ │ │ │ │ └── protection.h │ │ │ │ │ ├── proxy │ │ │ │ │ │ ├── AttributeProxy.h │ │ │ │ │ │ ├── Binding.h │ │ │ │ │ │ ├── DottedPairProxy.h │ │ │ │ │ │ ├── FieldProxy.h │ │ │ │ │ │ ├── GenericProxy.h │ │ │ │ │ │ ├── NamesProxy.h │ │ │ │ │ │ ├── ProtectedProxy.h │ │ │ │ │ │ ├── RObjectMethods.h │ │ │ │ │ │ ├── SlotProxy.h │ │ │ │ │ │ ├── TagProxy.h │ │ │ │ │ │ └── proxy.h │ │ │ │ │ ├── r │ │ │ │ │ │ ├── compat.h │ │ │ │ │ │ └── headers.h │ │ │ │ │ ├── r_cast.h │ │ │ │ │ ├── routines.h │ │ │ │ │ ├── sprintf.h │ │ │ │ │ ├── stats │ │ │ │ │ │ ├── beta.h │ │ │ │ │ │ ├── binom.h │ │ │ │ │ │ ├── cauchy.h │ │ │ │ │ │ ├── chisq.h │ │ │ │ │ │ ├── dpq │ │ │ │ │ │ │ ├── dpq.h │ │ │ │ │ │ │ └── macros.h │ │ │ │ │ │ ├── exp.h │ │ │ │ │ │ ├── f.h │ │ │ │ │ │ ├── gamma.h │ │ │ │ │ │ ├── geom.h │ │ │ │ │ │ ├── hyper.h │ │ │ │ │ │ ├── lnorm.h │ │ │ │ │ │ ├── logis.h │ │ │ │ │ │ ├── nbeta.h │ │ │ │ │ │ ├── nbinom.h │ │ │ │ │ │ ├── nbinom_mu.h │ │ │ │ │ │ ├── nchisq.h │ │ │ │ │ │ ├── nf.h │ │ │ │ │ │ ├── norm.h │ │ │ │ │ │ ├── nt.h │ │ │ │ │ │ ├── pois.h │ │ │ │ │ │ ├── random │ │ │ │ │ │ │ ├── random.h │ │ │ │ │ │ │ ├── rbeta.h │ │ │ │ │ │ │ ├── rbinom.h │ │ │ │ │ │ │ ├── rcauchy.h │ │ │ │ │ │ │ ├── rchisq.h │ │ │ │ │ │ │ ├── rexp.h │ │ │ │ │ │ │ ├── rf.h │ │ │ │ │ │ │ ├── rgamma.h │ │ │ │ │ │ │ ├── rgeom.h │ │ │ │ │ │ │ ├── rhyper.h │ │ │ │ │ │ │ ├── rlnorm.h │ │ │ │ │ │ │ ├── rlogis.h │ │ │ │ │ │ │ ├── rnbinom.h │ │ │ │ │ │ │ ├── rnbinom_mu.h │ │ │ │ │ │ │ ├── rnchisq.h │ │ │ │ │ │ │ ├── rnorm.h │ │ │ │ │ │ │ ├── rpois.h │ │ │ │ │ │ │ ├── rsignrank.h │ │ │ │ │ │ │ ├── rt.h │ │ │ │ │ │ │ ├── runif.h │ │ │ │ │ │ │ ├── rweibull.h │ │ │ │ │ │ │ └── rwilcox.h │ │ │ │ │ │ ├── stats.h │ │ │ │ │ │ ├── t.h │ │ │ │ │ │ ├── unif.h │ │ │ │ │ │ └── weibull.h │ │ │ │ │ ├── storage │ │ │ │ │ │ ├── NoProtectStorage.h │ │ │ │ │ │ ├── PreserveStorage.h │ │ │ │ │ │ └── storage.h │ │ │ │ │ ├── sugar │ │ │ │ │ │ ├── Range.h │ │ │ │ │ │ ├── block │ │ │ │ │ │ │ ├── SugarBlock_1.h │ │ │ │ │ │ │ ├── SugarBlock_2.h │ │ │ │ │ │ │ ├── SugarBlock_3.h │ │ │ │ │ │ │ ├── SugarMath.h │ │ │ │ │ │ │ ├── Vectorized_Math.h │ │ │ │ │ │ │ └── block.h │ │ │ │ │ │ ├── functions │ │ │ │ │ │ │ ├── Lazy.h │ │ │ │ │ │ │ ├── all.h │ │ │ │ │ │ │ ├── any.h │ │ │ │ │ │ │ ├── cbind.h │ │ │ │ │ │ │ ├── clamp.h │ │ │ │ │ │ │ ├── complex.h │ │ │ │ │ │ │ ├── cummax.h │ │ │ │ │ │ │ ├── cummin.h │ │ │ │ │ │ │ ├── cumprod.h │ │ │ │ │ │ │ ├── cumsum.h │ │ │ │ │ │ │ ├── diff.h │ │ │ │ │ │ │ ├── duplicated.h │ │ │ │ │ │ │ ├── functions.h │ │ │ │ │ │ │ ├── head.h │ │ │ │ │ │ │ ├── ifelse.h │ │ │ │ │ │ │ ├── is_finite.h │ │ │ │ │ │ │ ├── is_infinite.h │ │ │ │ │ │ │ ├── is_na.h │ │ │ │ │ │ │ ├── is_nan.h │ │ │ │ │ │ │ ├── lapply.h │ │ │ │ │ │ │ ├── mapply.h │ │ │ │ │ │ │ ├── mapply │ │ │ │ │ │ │ │ ├── mapply_2.h │ │ │ │ │ │ │ │ └── mapply_3.h │ │ │ │ │ │ │ ├── match.h │ │ │ │ │ │ │ ├── math.h │ │ │ │ │ │ │ ├── max.h │ │ │ │ │ │ │ ├── mean.h │ │ │ │ │ │ │ ├── median.h │ │ │ │ │ │ │ ├── min.h │ │ │ │ │ │ │ ├── na_omit.h │ │ │ │ │ │ │ ├── pmax.h │ │ │ │ │ │ │ ├── pmin.h │ │ │ │ │ │ │ ├── pow.h │ │ │ │ │ │ │ ├── range.h │ │ │ │ │ │ │ ├── rep.h │ │ │ │ │ │ │ ├── rep_each.h │ │ │ │ │ │ │ ├── rep_len.h │ │ │ │ │ │ │ ├── rev.h │ │ │ │ │ │ │ ├── rowSums.h │ │ │ │ │ │ │ ├── sample.h │ │ │ │ │ │ │ ├── sapply.h │ │ │ │ │ │ │ ├── sd.h │ │ │ │ │ │ │ ├── self_match.h │ │ │ │ │ │ │ ├── seq_along.h │ │ │ │ │ │ │ ├── setdiff.h │ │ │ │ │ │ │ ├── sign.h │ │ │ │ │ │ │ ├── strings │ │ │ │ │ │ │ │ ├── collapse.h │ │ │ │ │ │ │ │ ├── strings.h │ │ │ │ │ │ │ │ └── trimws.h │ │ │ │ │ │ │ ├── sum.h │ │ │ │ │ │ │ ├── table.h │ │ │ │ │ │ │ ├── tail.h │ │ │ │ │ │ │ ├── unique.h │ │ │ │ │ │ │ ├── var.h │ │ │ │ │ │ │ ├── which_max.h │ │ │ │ │ │ │ └── which_min.h │ │ │ │ │ │ ├── logical │ │ │ │ │ │ │ ├── SingleLogicalResult.h │ │ │ │ │ │ │ ├── and.h │ │ │ │ │ │ │ ├── can_have_na.h │ │ │ │ │ │ │ ├── is.h │ │ │ │ │ │ │ ├── logical.h │ │ │ │ │ │ │ ├── not.h │ │ │ │ │ │ │ └── or.h │ │ │ │ │ │ ├── matrix │ │ │ │ │ │ │ ├── as_vector.h │ │ │ │ │ │ │ ├── col.h │ │ │ │ │ │ │ ├── diag.h │ │ │ │ │ │ │ ├── lower_tri.h │ │ │ │ │ │ │ ├── matrix_functions.h │ │ │ │ │ │ │ ├── outer.h │ │ │ │ │ │ │ ├── row.h │ │ │ │ │ │ │ ├── tools.h │ │ │ │ │ │ │ └── upper_tri.h │ │ │ │ │ │ ├── nona │ │ │ │ │ │ │ └── nona.h │ │ │ │ │ │ ├── operators │ │ │ │ │ │ │ ├── Comparator.h │ │ │ │ │ │ │ ├── Comparator_With_One_Value.h │ │ │ │ │ │ │ ├── divides.h │ │ │ │ │ │ │ ├── logical_operators__Vector__Vector.h │ │ │ │ │ │ │ ├── logical_operators__Vector__primitive.h │ │ │ │ │ │ │ ├── minus.h │ │ │ │ │ │ │ ├── not.h │ │ │ │ │ │ │ ├── operators.h │ │ │ │ │ │ │ ├── plus.h │ │ │ │ │ │ │ ├── r_binary_op.h │ │ │ │ │ │ │ ├── times.h │ │ │ │ │ │ │ └── unary_minus.h │ │ │ │ │ │ ├── sets.h │ │ │ │ │ │ ├── sugar.h │ │ │ │ │ │ ├── sugar_forward.h │ │ │ │ │ │ ├── tools │ │ │ │ │ │ │ └── iterator.h │ │ │ │ │ │ └── undoRmath.h │ │ │ │ │ ├── traits │ │ │ │ │ │ ├── char_type.h │ │ │ │ │ │ ├── enable_if.h │ │ │ │ │ │ ├── expands_to_logical.h │ │ │ │ │ │ ├── get_na.h │ │ │ │ │ │ ├── has_iterator.h │ │ │ │ │ │ ├── has_na.h │ │ │ │ │ │ ├── if_.h │ │ │ │ │ │ ├── index_sequence.h │ │ │ │ │ │ ├── init_type.h │ │ │ │ │ │ ├── integral_constant.h │ │ │ │ │ │ ├── is_arithmetic.h │ │ │ │ │ │ ├── is_bool.h │ │ │ │ │ │ ├── is_const.h │ │ │ │ │ │ ├── is_convertible.h │ │ │ │ │ │ ├── is_eigen_base.h │ │ │ │ │ │ ├── is_finite.h │ │ │ │ │ │ ├── is_infinite.h │ │ │ │ │ │ ├── is_module_object.h │ │ │ │ │ │ ├── is_na.h │ │ │ │ │ │ ├── is_nan.h │ │ │ │ │ │ ├── is_pointer.h │ │ │ │ │ │ ├── is_primitive.h │ │ │ │ │ │ ├── is_reference.h │ │ │ │ │ │ ├── is_sugar_expression.h │ │ │ │ │ │ ├── is_trivial.h │ │ │ │ │ │ ├── is_wide_string.h │ │ │ │ │ │ ├── longlong.h │ │ │ │ │ │ ├── matrix_interface.h │ │ │ │ │ │ ├── module_wrap_traits.h │ │ │ │ │ │ ├── named_object.h │ │ │ │ │ │ ├── num2type.h │ │ │ │ │ │ ├── one_type.h │ │ │ │ │ │ ├── r_sexptype_traits.h │ │ │ │ │ │ ├── r_type_traits.h │ │ │ │ │ │ ├── remove_const.h │ │ │ │ │ │ ├── remove_const_and_reference.h │ │ │ │ │ │ ├── remove_reference.h │ │ │ │ │ │ ├── result_of.h │ │ │ │ │ │ ├── same_type.h │ │ │ │ │ │ ├── storage_type.h │ │ │ │ │ │ ├── traits.h │ │ │ │ │ │ ├── un_pointer.h │ │ │ │ │ │ └── wrap_type_traits.h │ │ │ │ │ ├── unwindProtect.h │ │ │ │ │ ├── utils │ │ │ │ │ │ ├── tinyformat.h │ │ │ │ │ │ └── tinyformat │ │ │ │ │ │ │ └── tinyformat.h │ │ │ │ │ └── vector │ │ │ │ │ │ ├── 00_forward_Vector.h │ │ │ │ │ │ ├── 00_forward_proxy.h │ │ │ │ │ │ ├── ChildVector.h │ │ │ │ │ │ ├── DimNameProxy.h │ │ │ │ │ │ ├── LazyVector.h │ │ │ │ │ │ ├── ListOf.h │ │ │ │ │ │ ├── Matrix.h │ │ │ │ │ │ ├── MatrixBase.h │ │ │ │ │ │ ├── MatrixColumn.h │ │ │ │ │ │ ├── MatrixRow.h │ │ │ │ │ │ ├── RangeIndexer.h │ │ │ │ │ │ ├── SubMatrix.h │ │ │ │ │ │ ├── Subsetter.h │ │ │ │ │ │ ├── Vector.h │ │ │ │ │ │ ├── VectorBase.h │ │ │ │ │ │ ├── const_generic_proxy.h │ │ │ │ │ │ ├── const_string_proxy.h │ │ │ │ │ │ ├── converter.h │ │ │ │ │ │ ├── generic_proxy.h │ │ │ │ │ │ ├── instantiation.h │ │ │ │ │ │ ├── no_init.h │ │ │ │ │ │ ├── proxy.h │ │ │ │ │ │ ├── string_proxy.h │ │ │ │ │ │ ├── swap.h │ │ │ │ │ │ ├── traits.h │ │ │ │ │ │ └── vector_from_string.h │ │ │ │ ├── RcppCommon.h │ │ │ │ └── doxygen │ │ │ │ │ └── Examples.h │ │ │ ├── libs │ │ │ │ └── x64 │ │ │ │ │ ├── Rcpp.dll │ │ │ │ │ └── symbols.rds │ │ │ ├── prompt │ │ │ │ └── module.Rd │ │ │ ├── skeleton │ │ │ │ ├── Num.cpp │ │ │ │ ├── Rcpp_modules_examples.Rd │ │ │ │ ├── manual-page-stub.Rd │ │ │ │ ├── rcpp_hello_world.R │ │ │ │ ├── rcpp_hello_world.Rd │ │ │ │ ├── rcpp_hello_world.cpp │ │ │ │ ├── rcpp_hello_world.h │ │ │ │ ├── rcpp_hello_world_attributes.cpp │ │ │ │ ├── rcpp_module.cpp │ │ │ │ ├── stdVector.cpp │ │ │ │ └── zzz.R │ │ │ └── tinytest │ │ │ │ ├── bin │ │ │ │ ├── amd64 │ │ │ │ │ └── r-cran-testrcpppackage_0.1.0-1_amd64.deb │ │ │ │ └── i386 │ │ │ │ │ └── r-cran-testrcpppackage_0.1.0-1_i386.deb │ │ │ │ ├── cpp │ │ │ │ ├── DataFrame.cpp │ │ │ │ ├── Environment.cpp │ │ │ │ ├── Exceptions_nocall.cpp │ │ │ │ ├── Function.cpp │ │ │ │ ├── InternalFunction.cpp │ │ │ │ ├── InternalFunctionCPP11.cpp │ │ │ │ ├── ListOf.cpp │ │ │ │ ├── Matrix.cpp │ │ │ │ ├── Module.cpp │ │ │ │ ├── RObject.cpp │ │ │ │ ├── Reference.cpp │ │ │ │ ├── S4.cpp │ │ │ │ ├── String.cpp │ │ │ │ ├── Subset.cpp │ │ │ │ ├── Vector.cpp │ │ │ │ ├── VectorOld.cpp │ │ │ │ ├── XPtr.cpp │ │ │ │ ├── algorithm.cpp │ │ │ │ ├── as.cpp │ │ │ │ ├── attributes.cpp │ │ │ │ ├── attributes.hpp │ │ │ │ ├── coerce.cpp │ │ │ │ ├── dates.cpp │ │ │ │ ├── dispatch.cpp │ │ │ │ ├── embeddedR.cpp │ │ │ │ ├── embeddedR2.cpp │ │ │ │ ├── exceptions.cpp │ │ │ │ ├── language.cpp │ │ │ │ ├── misc.cpp │ │ │ │ ├── modref.cpp │ │ │ │ ├── na.cpp │ │ │ │ ├── rcppversion.cpp │ │ │ │ ├── rmath.cpp │ │ │ │ ├── stack.cpp │ │ │ │ ├── stats.cpp │ │ │ │ ├── sugar.cpp │ │ │ │ ├── support.cpp │ │ │ │ ├── table.cpp │ │ │ │ ├── wrap.cpp │ │ │ │ └── wstring.cpp │ │ │ │ ├── src │ │ │ │ ├── r-cran-testrcpppackage_0.1.0-1.diff.gz │ │ │ │ ├── r-cran-testrcpppackage_0.1.0-1.dsc │ │ │ │ ├── r-cran-testrcpppackage_0.1.0-1_amd64.changes │ │ │ │ ├── r-cran-testrcpppackage_0.1.0-1_amd64.deb │ │ │ │ ├── r-cran-testrcpppackage_0.1.0-1_i386.changes │ │ │ │ └── r-cran-testrcpppackage_0.1.0-1_i386.deb │ │ │ │ ├── testRcppAttributePackage │ │ │ │ ├── DESCRIPTION │ │ │ │ ├── NAMESPACE │ │ │ │ └── src │ │ │ │ │ └── rcpp_test.cpp │ │ │ │ ├── testRcppClass │ │ │ │ ├── DESCRIPTION │ │ │ │ ├── NAMESPACE │ │ │ │ ├── R │ │ │ │ │ ├── load.R │ │ │ │ │ └── rcpp_hello_world.R │ │ │ │ ├── man │ │ │ │ │ ├── Rcpp_class_examples.Rd │ │ │ │ │ ├── rcpp_hello_world.Rd │ │ │ │ │ └── testRcppClass-package.Rd │ │ │ │ ├── src │ │ │ │ │ ├── Num.cpp │ │ │ │ │ ├── init.c │ │ │ │ │ ├── rcpp_hello_world.cpp │ │ │ │ │ ├── rcpp_hello_world.h │ │ │ │ │ ├── rcpp_module.cpp │ │ │ │ │ └── stdVector.cpp │ │ │ │ └── tests │ │ │ │ │ └── classes.R │ │ │ │ ├── testRcppInterfaceExporter │ │ │ │ ├── DESCRIPTION │ │ │ │ ├── NAMESPACE │ │ │ │ ├── R │ │ │ │ │ ├── RcppExports.R │ │ │ │ │ └── exporter.R │ │ │ │ ├── inst │ │ │ │ │ └── include │ │ │ │ │ │ ├── testRcppInterfaceExporter.h │ │ │ │ │ │ └── testRcppInterfaceExporter_RcppExports.h │ │ │ │ └── src │ │ │ │ │ ├── RcppExports.cpp │ │ │ │ │ ├── exporter.cpp │ │ │ │ │ └── unwound.h │ │ │ │ ├── testRcppInterfaceUser │ │ │ │ ├── DESCRIPTION │ │ │ │ ├── NAMESPACE │ │ │ │ ├── R │ │ │ │ │ └── user.R │ │ │ │ ├── src │ │ │ │ │ ├── config.h │ │ │ │ │ ├── unwound.h │ │ │ │ │ └── user.cpp │ │ │ │ └── tests │ │ │ │ │ └── tests.R │ │ │ │ ├── testRcppModule │ │ │ │ ├── DESCRIPTION │ │ │ │ ├── NAMESPACE │ │ │ │ ├── R │ │ │ │ │ ├── rcpp_hello_world.R │ │ │ │ │ └── zzz.R │ │ │ │ ├── man │ │ │ │ │ ├── Rcpp_modules_examples.Rd │ │ │ │ │ ├── rcpp_hello_world.Rd │ │ │ │ │ └── testRcppModule-package.Rd │ │ │ │ ├── src │ │ │ │ │ ├── Num.cpp │ │ │ │ │ ├── init.c │ │ │ │ │ ├── rcpp_hello_world.cpp │ │ │ │ │ ├── rcpp_hello_world.h │ │ │ │ │ ├── rcpp_module.cpp │ │ │ │ │ └── stdVector.cpp │ │ │ │ └── tests │ │ │ │ │ └── modules.R │ │ │ │ ├── testRcppPackage │ │ │ │ ├── DESCRIPTION │ │ │ │ ├── NAMESPACE │ │ │ │ ├── R │ │ │ │ │ └── rcpp_hello_world.R │ │ │ │ ├── man │ │ │ │ │ └── testRcppPackage-package.Rd │ │ │ │ └── src │ │ │ │ │ ├── rcpp_hello_world.cpp │ │ │ │ │ └── rcpp_hello_world.h │ │ │ │ ├── test_algorithm.R │ │ │ │ ├── test_as.R │ │ │ │ ├── test_attribute_package.R │ │ │ │ ├── test_attributes.R │ │ │ │ ├── test_binary_package.R │ │ │ │ ├── test_client_package.R │ │ │ │ ├── test_coerce.R │ │ │ │ ├── test_dataframe.R │ │ │ │ ├── test_date.R │ │ │ │ ├── test_dispatch.R │ │ │ │ ├── test_embedded_r.R │ │ │ │ ├── test_environments.R │ │ │ │ ├── test_exceptions.R │ │ │ │ ├── test_exceptions_nocall.R │ │ │ │ ├── test_expose_class.R │ │ │ │ ├── test_function.R │ │ │ │ ├── test_global_rostream.R │ │ │ │ ├── test_interface.R │ │ │ │ ├── test_internal_function.R │ │ │ │ ├── test_internal_function_cpp11.R │ │ │ │ ├── test_language.R │ │ │ │ ├── test_listof.R │ │ │ │ ├── test_matrix.R │ │ │ │ ├── test_misc.R │ │ │ │ ├── test_modref.R │ │ │ │ ├── test_module.R │ │ │ │ ├── test_module_client_package.R │ │ │ │ ├── test_na.R │ │ │ │ ├── test_packageversion.R │ │ │ │ ├── test_quickanddirty.R │ │ │ │ ├── test_rcpp_package_skeleton.R │ │ │ │ ├── test_reference.R │ │ │ │ ├── test_rmath.R │ │ │ │ ├── test_robject.R │ │ │ │ ├── test_s4.R │ │ │ │ ├── test_stack.R │ │ │ │ ├── test_stats.R │ │ │ │ ├── test_string.R │ │ │ │ ├── test_subset.R │ │ │ │ ├── test_sugar.R │ │ │ │ ├── test_sugar_var.R │ │ │ │ ├── test_support.R │ │ │ │ ├── test_system.R │ │ │ │ ├── test_table.R │ │ │ │ ├── test_vector.R │ │ │ │ ├── test_vector_old.R │ │ │ │ ├── test_wrap.R │ │ │ │ ├── test_wstring.R │ │ │ │ └── test_xptr.R │ │ ├── base64enc │ │ │ ├── DESCRIPTION │ │ │ ├── INDEX │ │ │ ├── MD5 │ │ │ ├── Meta │ │ │ │ ├── Rd.rds │ │ │ │ ├── features.rds │ │ │ │ ├── hsearch.rds │ │ │ │ ├── links.rds │ │ │ │ ├── nsInfo.rds │ │ │ │ └── package.rds │ │ │ ├── NAMESPACE │ │ │ ├── NEWS │ │ │ ├── R │ │ │ │ ├── base64enc │ │ │ │ ├── base64enc.rdb │ │ │ │ └── base64enc.rdx │ │ │ ├── help │ │ │ │ ├── AnIndex │ │ │ │ ├── aliases.rds │ │ │ │ ├── base64enc.rdb │ │ │ │ ├── base64enc.rdx │ │ │ │ └── paths.rds │ │ │ ├── html │ │ │ │ ├── 00Index.html │ │ │ │ └── R.css │ │ │ └── libs │ │ │ │ └── x64 │ │ │ │ ├── base64enc.dll │ │ │ │ └── symbols.rds │ │ ├── bslib │ │ │ ├── DESCRIPTION │ │ │ ├── INDEX │ │ │ ├── LICENSE │ │ │ ├── MD5 │ │ │ ├── Meta │ │ │ │ ├── Rd.rds │ │ │ │ ├── features.rds │ │ │ │ ├── hsearch.rds │ │ │ │ ├── links.rds │ │ │ │ ├── nsInfo.rds │ │ │ │ └── package.rds │ │ │ ├── NAMESPACE │ │ │ ├── NEWS.md │ │ │ ├── R │ │ │ │ ├── bslib │ │ │ │ ├── bslib.rdb │ │ │ │ ├── bslib.rdx │ │ │ │ ├── sysdata.rdb │ │ │ │ └── sysdata.rdx │ │ │ ├── bs3compat │ │ │ │ ├── _declarations.scss │ │ │ │ ├── _defaults.scss │ │ │ │ ├── _dropdown_compat.scss │ │ │ │ ├── _dt_compat.scss │ │ │ │ ├── _glyphicons.scss │ │ │ │ ├── _headers.scss │ │ │ │ ├── _help_text.scss │ │ │ │ ├── _nav_compat.scss │ │ │ │ ├── _navbar_compat.scss │ │ │ │ ├── _progress_compat.scss │ │ │ │ ├── _rules.scss │ │ │ │ ├── _shiny_input.scss │ │ │ │ ├── _shiny_misc.scss │ │ │ │ ├── _wells.scss │ │ │ │ ├── fonts │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ └── js │ │ │ │ │ ├── bs3compat.js │ │ │ │ │ ├── tabs.js │ │ │ │ │ └── transition.js │ │ │ ├── bslib-scss │ │ │ │ ├── bslib.scss │ │ │ │ ├── color-utilities.scss │ │ │ │ ├── functions.scss │ │ │ │ ├── spacer.scss │ │ │ │ └── tab-fill.scss │ │ │ ├── builtin │ │ │ │ └── bs5 │ │ │ │ │ └── shiny │ │ │ │ │ ├── _mixins.scss │ │ │ │ │ ├── _rules.scss │ │ │ │ │ ├── _variables.scss │ │ │ │ │ ├── font.css │ │ │ │ │ ├── ionrangeslider │ │ │ │ │ ├── _rules.scss │ │ │ │ │ └── _variables.scss │ │ │ │ │ └── tables │ │ │ │ │ └── _rules.scss │ │ │ ├── components │ │ │ │ ├── dist │ │ │ │ │ ├── components.css │ │ │ │ │ ├── components.js │ │ │ │ │ ├── components.js.map │ │ │ │ │ ├── components.min.js │ │ │ │ │ ├── components.min.js.map │ │ │ │ │ ├── web-components.js │ │ │ │ │ ├── web-components.js.map │ │ │ │ │ ├── web-components.min.js │ │ │ │ │ ├── web-components.min.js.map │ │ │ │ │ └── webComponents │ │ │ │ │ │ └── webComponents.min.js │ │ │ │ ├── scss │ │ │ │ │ ├── accordion.scss │ │ │ │ │ ├── card.scss │ │ │ │ │ ├── grid.scss │ │ │ │ │ ├── mixins │ │ │ │ │ │ └── _mixins.scss │ │ │ │ │ ├── nav_spacer.scss │ │ │ │ │ ├── page_fillable.scss │ │ │ │ │ ├── page_navbar.scss │ │ │ │ │ ├── page_sidebar.scss │ │ │ │ │ ├── sidebar.scss │ │ │ │ │ └── value_box.scss │ │ │ │ └── tag-require.js │ │ │ ├── css-precompiled │ │ │ │ ├── 3 │ │ │ │ │ └── bootstrap.min.css │ │ │ │ ├── 4 │ │ │ │ │ └── bootstrap.min.css │ │ │ │ └── 5 │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ └── bootstrap.scss │ │ │ ├── custom │ │ │ │ └── person.scss │ │ │ ├── examples-shiny │ │ │ │ ├── build-a-box │ │ │ │ │ ├── R │ │ │ │ │ │ ├── code_modal.R │ │ │ │ │ │ ├── colors.R │ │ │ │ │ │ ├── mod-global-controls.R │ │ │ │ │ │ ├── mod-selextra.R │ │ │ │ │ │ ├── mod-value-box-ui.R │ │ │ │ │ │ ├── random_plot.R │ │ │ │ │ │ ├── random_values.R │ │ │ │ │ │ └── shuffleButton.R │ │ │ │ │ ├── about-value-boxes.md │ │ │ │ │ ├── app.R │ │ │ │ │ ├── deploy.R │ │ │ │ │ └── www │ │ │ │ │ │ ├── build-a-box.js │ │ │ │ │ │ ├── build-a-box.scss │ │ │ │ │ │ ├── code-modal.js │ │ │ │ │ │ └── shiny.png │ │ │ │ ├── card │ │ │ │ │ ├── app.R │ │ │ │ │ ├── deploy.R │ │ │ │ │ └── www │ │ │ │ │ │ └── shiny-hex.svg │ │ │ │ ├── flights │ │ │ │ │ ├── app.R │ │ │ │ │ ├── deploy.R │ │ │ │ │ └── www │ │ │ │ │ │ └── logo.png │ │ │ │ └── value_box │ │ │ │ │ ├── app.R │ │ │ │ │ └── deploy.R │ │ │ ├── fonts │ │ │ │ ├── 07d40e985ad7c747025dabb9f22142c4.woff2 │ │ │ │ ├── 1Ptug8zYS_SKggPNyC0ITw.woff2 │ │ │ │ ├── 1Ptug8zYS_SKggPNyCAIT5lu.woff2 │ │ │ │ ├── 1Ptug8zYS_SKggPNyCIIT5lu.woff2 │ │ │ │ ├── 1Ptug8zYS_SKggPNyCMIT5lu.woff2 │ │ │ │ ├── 1Ptug8zYS_SKggPNyCkIT5lu.woff2 │ │ │ │ ├── 1f5e011d6aae0d98fc0518e1a303e99a.woff2 │ │ │ │ ├── 4iCs6KVjbNBYlgoKcQ72j00.woff2 │ │ │ │ ├── 4iCs6KVjbNBYlgoKcg72j00.woff2 │ │ │ │ ├── 4iCs6KVjbNBYlgoKcw72j00.woff2 │ │ │ │ ├── 4iCs6KVjbNBYlgoKew72j00.woff2 │ │ │ │ ├── 4iCs6KVjbNBYlgoKfA72j00.woff2 │ │ │ │ ├── 4iCs6KVjbNBYlgoKfw72.woff2 │ │ │ │ ├── 4iCv6KVjbNBYlgoCxCvjs2yNL4U.woff2 │ │ │ │ ├── 4iCv6KVjbNBYlgoCxCvjsGyN.woff2 │ │ │ │ ├── 4iCv6KVjbNBYlgoCxCvjtGyNL4U.woff2 │ │ │ │ ├── 4iCv6KVjbNBYlgoCxCvjvGyNL4U.woff2 │ │ │ │ ├── 4iCv6KVjbNBYlgoCxCvjvWyNL4U.woff2 │ │ │ │ ├── 4iCv6KVjbNBYlgoCxCvjvmyNL4U.woff2 │ │ │ │ ├── 626330658504e338ee86aec8e957426b.woff2 │ │ │ │ ├── 6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7jsDJT9g.woff2 │ │ │ │ ├── 6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7ksDJT9g.woff2 │ │ │ │ ├── 6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7nsDI.woff2 │ │ │ │ ├── 6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7osDJT9g.woff2 │ │ │ │ ├── 6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7psDJT9g.woff2 │ │ │ │ ├── 6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7qsDJT9g.woff2 │ │ │ │ ├── 6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7rsDJT9g.woff2 │ │ │ │ ├── 6xK3dSBYKcSV-LCoeQqfX1RYOo3qN67lqDY.woff2 │ │ │ │ ├── 6xK3dSBYKcSV-LCoeQqfX1RYOo3qNK7lqDY.woff2 │ │ │ │ ├── 6xK3dSBYKcSV-LCoeQqfX1RYOo3qNa7lqDY.woff2 │ │ │ │ ├── 6xK3dSBYKcSV-LCoeQqfX1RYOo3qNq7lqDY.woff2 │ │ │ │ ├── 6xK3dSBYKcSV-LCoeQqfX1RYOo3qO67lqDY.woff2 │ │ │ │ ├── 6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7l.woff2 │ │ │ │ ├── 6xK3dSBYKcSV-LCoeQqfX1RYOo3qPK7lqDY.woff2 │ │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwkxduz8A.woff2 │ │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwlBduz8A.woff2 │ │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwlxdu.woff2 │ │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwmBduz8A.woff2 │ │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwmRduz8A.woff2 │ │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwmhduz8A.woff2 │ │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwmxduz8A.woff2 │ │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwkxduz8A.woff2 │ │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlBduz8A.woff2 │ │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlxdu.woff2 │ │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmBduz8A.woff2 │ │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmRduz8A.woff2 │ │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmhduz8A.woff2 │ │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmxduz8A.woff2 │ │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwkxduz8A.woff2 │ │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlBduz8A.woff2 │ │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlxdu.woff2 │ │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmBduz8A.woff2 │ │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmRduz8A.woff2 │ │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmhduz8A.woff2 │ │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmxduz8A.woff2 │ │ │ │ ├── CSR54z1Qlv-GDxkbKVQ_dFsvWNReuQ.woff2 │ │ │ │ ├── CSR54z1Qlv-GDxkbKVQ_dFsvWNpeudwk.woff2 │ │ │ │ ├── CSR64z1Qlv-GDxkbKVQ_fO4KTet_.woff2 │ │ │ │ ├── CSR64z1Qlv-GDxkbKVQ_fOAKTQ.woff2 │ │ │ │ ├── HI_QiYsKILxRpg3hIP6sJ7fM7PqlONvQlMIXxw.woff2 │ │ │ │ ├── HI_QiYsKILxRpg3hIP6sJ7fM7PqlONvUlMI.woff2 │ │ │ │ ├── HI_QiYsKILxRpg3hIP6sJ7fM7PqlONvXlMIXxw.woff2 │ │ │ │ ├── HI_QiYsKILxRpg3hIP6sJ7fM7PqlONvYlMIXxw.woff2 │ │ │ │ ├── HI_QiYsKILxRpg3hIP6sJ7fM7PqlONvZlMIXxw.woff2 │ │ │ │ ├── HI_QiYsKILxRpg3hIP6sJ7fM7PqlONvalMIXxw.woff2 │ │ │ │ ├── HI_QiYsKILxRpg3hIP6sJ7fM7PqlONvblMIXxw.woff2 │ │ │ │ ├── HI_SiYsKILxRpg3hIP6sJ7fM7PqlM-vWjMY.woff2 │ │ │ │ ├── HI_SiYsKILxRpg3hIP6sJ7fM7PqlMOvWjMY.woff2 │ │ │ │ ├── HI_SiYsKILxRpg3hIP6sJ7fM7PqlMevWjMY.woff2 │ │ │ │ ├── HI_SiYsKILxRpg3hIP6sJ7fM7PqlMuvWjMY.woff2 │ │ │ │ ├── HI_SiYsKILxRpg3hIP6sJ7fM7PqlOevWjMY.woff2 │ │ │ │ ├── HI_SiYsKILxRpg3hIP6sJ7fM7PqlPevW.woff2 │ │ │ │ ├── HI_SiYsKILxRpg3hIP6sJ7fM7PqlPuvWjMY.woff2 │ │ │ │ ├── JTUSjIg1_i6t8kCHKm459W1hyzbi.woff2 │ │ │ │ ├── JTUSjIg1_i6t8kCHKm459WRhyzbi.woff2 │ │ │ │ ├── JTUSjIg1_i6t8kCHKm459WZhyzbi.woff2 │ │ │ │ ├── JTUSjIg1_i6t8kCHKm459Wdhyzbi.woff2 │ │ │ │ ├── JTUSjIg1_i6t8kCHKm459Wlhyw.woff2 │ │ │ │ ├── KFOlCnqEu92Fr1MmEU9fABc4EsA.woff2 │ │ │ │ ├── KFOlCnqEu92Fr1MmEU9fBBc4.woff2 │ │ │ │ ├── KFOlCnqEu92Fr1MmEU9fBxc4EsA.woff2 │ │ │ │ ├── KFOlCnqEu92Fr1MmEU9fCBc4EsA.woff2 │ │ │ │ ├── KFOlCnqEu92Fr1MmEU9fCRc4EsA.woff2 │ │ │ │ ├── KFOlCnqEu92Fr1MmEU9fChc4EsA.woff2 │ │ │ │ ├── KFOlCnqEu92Fr1MmEU9fCxc4EsA.woff2 │ │ │ │ ├── KFOlCnqEu92Fr1MmSU5fABc4EsA.woff2 │ │ │ │ ├── KFOlCnqEu92Fr1MmSU5fBBc4.woff2 │ │ │ │ ├── KFOlCnqEu92Fr1MmSU5fBxc4EsA.woff2 │ │ │ │ ├── KFOlCnqEu92Fr1MmSU5fCBc4EsA.woff2 │ │ │ │ ├── KFOlCnqEu92Fr1MmSU5fCRc4EsA.woff2 │ │ │ │ ├── KFOlCnqEu92Fr1MmSU5fChc4EsA.woff2 │ │ │ │ ├── KFOlCnqEu92Fr1MmSU5fCxc4EsA.woff2 │ │ │ │ ├── KFOlCnqEu92Fr1MmWUlfABc4EsA.woff2 │ │ │ │ ├── KFOlCnqEu92Fr1MmWUlfBBc4.woff2 │ │ │ │ ├── KFOlCnqEu92Fr1MmWUlfBxc4EsA.woff2 │ │ │ │ ├── KFOlCnqEu92Fr1MmWUlfCBc4EsA.woff2 │ │ │ │ ├── KFOlCnqEu92Fr1MmWUlfCRc4EsA.woff2 │ │ │ │ ├── KFOlCnqEu92Fr1MmWUlfChc4EsA.woff2 │ │ │ │ ├── KFOlCnqEu92Fr1MmWUlfCxc4EsA.woff2 │ │ │ │ ├── KFOmCnqEu92Fr1Mu4WxKOzY.woff2 │ │ │ │ ├── KFOmCnqEu92Fr1Mu4mxK.woff2 │ │ │ │ ├── KFOmCnqEu92Fr1Mu5mxKOzY.woff2 │ │ │ │ ├── KFOmCnqEu92Fr1Mu72xKOzY.woff2 │ │ │ │ ├── KFOmCnqEu92Fr1Mu7GxKOzY.woff2 │ │ │ │ ├── KFOmCnqEu92Fr1Mu7WxKOzY.woff2 │ │ │ │ ├── KFOmCnqEu92Fr1Mu7mxKOzY.woff2 │ │ │ │ ├── QGYpz_kZZAGCONcK2A4bGOj8mNhN.woff2 │ │ │ │ ├── S6u8w4BMUTPHjxsAUi-qJCY.woff2 │ │ │ │ ├── S6u8w4BMUTPHjxsAXC-q.woff2 │ │ │ │ ├── S6u9w4BMUTPHh6UVSwaPGR_p.woff2 │ │ │ │ ├── S6u9w4BMUTPHh6UVSwiPGQ.woff2 │ │ │ │ ├── S6u9w4BMUTPHh7USSwaPGR_p.woff2 │ │ │ │ ├── S6u9w4BMUTPHh7USSwiPGQ.woff2 │ │ │ │ ├── S6uyw4BMUTPHjx4wXg.woff2 │ │ │ │ ├── S6uyw4BMUTPHjxAwXjeu.woff2 │ │ │ │ ├── UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa0ZL7SUc.woff2 │ │ │ │ ├── UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1ZL7.woff2 │ │ │ │ ├── UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1pL7SUc.woff2 │ │ │ │ ├── UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa25L7SUc.woff2 │ │ │ │ ├── UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2JL7SUc.woff2 │ │ │ │ ├── UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2ZL7SUc.woff2 │ │ │ │ ├── UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2pL7SUc.woff2 │ │ │ │ ├── XRXV3I6Li01BKofIMeaBXso.woff2 │ │ │ │ ├── XRXV3I6Li01BKofINeaB.woff2 │ │ │ │ ├── XRXV3I6Li01BKofIO-aBXso.woff2 │ │ │ │ ├── XRXV3I6Li01BKofIOOaBXso.woff2 │ │ │ │ ├── XRXV3I6Li01BKofIOuaBXso.woff2 │ │ │ │ ├── c2f002b3a87d3f9bfeebb23d32cfd9f8.woff2 │ │ │ │ ├── ee91700cdbf7ce16c054c2bb8946c736.woff2 │ │ │ │ ├── memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqW106F15M.woff2 │ │ │ │ ├── memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWt06F15M.woff2 │ │ │ │ ├── memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWtE6F15M.woff2 │ │ │ │ ├── memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWtU6F15M.woff2 │ │ │ │ ├── memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWtk6F15M.woff2 │ │ │ │ ├── memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWu06F15M.woff2 │ │ │ │ ├── memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWuU6F.woff2 │ │ │ │ ├── memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWuk6F15M.woff2 │ │ │ │ ├── memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWvU6F15M.woff2 │ │ │ │ ├── memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWxU6F15M.woff2 │ │ │ │ ├── memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS-muw.woff2 │ │ │ │ ├── memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS2mu1aB.woff2 │ │ │ │ ├── memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSCmu1aB.woff2 │ │ │ │ ├── memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSGmu1aB.woff2 │ │ │ │ ├── memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSKmu1aB.woff2 │ │ │ │ ├── memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSOmu1aB.woff2 │ │ │ │ ├── memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSumu1aB.woff2 │ │ │ │ ├── memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSymu1aB.woff2 │ │ │ │ ├── memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTUGmu1aB.woff2 │ │ │ │ ├── memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTVOmu1aB.woff2 │ │ │ │ ├── q5uGsou0JOdh94bfuQltOxU.woff2 │ │ │ │ └── q5uGsou0JOdh94bfvQlt.woff2 │ │ │ ├── help │ │ │ │ ├── AnIndex │ │ │ │ ├── aliases.rds │ │ │ │ ├── bslib.rdb │ │ │ │ ├── bslib.rdx │ │ │ │ ├── figures │ │ │ │ │ ├── lifecycle-archived.svg │ │ │ │ │ ├── lifecycle-defunct.svg │ │ │ │ │ ├── lifecycle-deprecated.svg │ │ │ │ │ ├── lifecycle-experimental.svg │ │ │ │ │ ├── lifecycle-maturing.svg │ │ │ │ │ ├── lifecycle-questioning.svg │ │ │ │ │ ├── lifecycle-soft-deprecated.svg │ │ │ │ │ ├── lifecycle-stable.svg │ │ │ │ │ ├── lifecycle-superseded.svg │ │ │ │ │ ├── navset-card-pill.png │ │ │ │ │ ├── navset-card-underline.png │ │ │ │ │ ├── navset-pill-list.png │ │ │ │ │ ├── navset-pill.png │ │ │ │ │ ├── navset-tab-basic.png │ │ │ │ │ ├── navset-tab-card.png │ │ │ │ │ ├── navset-tab.png │ │ │ │ │ ├── navset-underline.png │ │ │ │ │ ├── navset_card_pill.png │ │ │ │ │ ├── page-navbar.png │ │ │ │ │ ├── value-box-background-color.png │ │ │ │ │ ├── value-box-background-theme.png │ │ │ │ │ ├── value-box-custom.png │ │ │ │ │ ├── value-box-gradient-1.png │ │ │ │ │ ├── value-box-named-color.png │ │ │ │ │ ├── value-box-named-theme.png │ │ │ │ │ ├── value-box-showcase-bottom.png │ │ │ │ │ ├── value-box-showcase-left-center.png │ │ │ │ │ ├── value-box-showcase-top-right.png │ │ │ │ │ ├── value-box-text-color.png │ │ │ │ │ ├── value-box-text-theme.png │ │ │ │ │ └── value-box-theme-class.png │ │ │ │ └── paths.rds │ │ │ ├── html │ │ │ │ ├── 00Index.html │ │ │ │ └── R.css │ │ │ ├── lib │ │ │ │ ├── bs-a11y-p │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ ├── package.json │ │ │ │ │ ├── plugins │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ └── bootstrap-accessibility.css │ │ │ │ │ │ └── js │ │ │ │ │ │ │ ├── bootstrap-accessibility.js │ │ │ │ │ │ │ └── bootstrap-accessibility.min.js │ │ │ │ │ └── src │ │ │ │ │ │ ├── js │ │ │ │ │ │ ├── carousel.js │ │ │ │ │ │ ├── collapse.js │ │ │ │ │ │ ├── dropdown.js │ │ │ │ │ │ ├── functions.js │ │ │ │ │ │ ├── modal.js │ │ │ │ │ │ └── tab.js │ │ │ │ │ │ ├── less │ │ │ │ │ │ ├── bootstrap-accessibility.less │ │ │ │ │ │ └── partials │ │ │ │ │ │ │ ├── alerts.less │ │ │ │ │ │ │ ├── buttons.less │ │ │ │ │ │ │ ├── carousel.less │ │ │ │ │ │ │ ├── close.less │ │ │ │ │ │ │ ├── divs.less │ │ │ │ │ │ │ ├── links.less │ │ │ │ │ │ │ ├── mixins.less │ │ │ │ │ │ │ ├── navigation.less │ │ │ │ │ │ │ └── variables.less │ │ │ │ │ │ ├── meteor │ │ │ │ │ │ └── package.js │ │ │ │ │ │ └── sass │ │ │ │ │ │ ├── bootstrap-accessibility.scss │ │ │ │ │ │ └── partials │ │ │ │ │ │ ├── _alerts.scss │ │ │ │ │ │ ├── _buttons.scss │ │ │ │ │ │ ├── _carousel.scss │ │ │ │ │ │ ├── _close.scss │ │ │ │ │ │ ├── _divs.scss │ │ │ │ │ │ ├── _links.scss │ │ │ │ │ │ ├── _mixins.scss │ │ │ │ │ │ ├── _navigation.scss │ │ │ │ │ │ └── _variables.scss │ │ │ │ ├── bs-colorpicker │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── css │ │ │ │ │ │ ├── bootstrap-colorpicker.css │ │ │ │ │ │ ├── bootstrap-colorpicker.css.map │ │ │ │ │ │ ├── bootstrap-colorpicker.min.css │ │ │ │ │ │ └── bootstrap-colorpicker.min.css.map │ │ │ │ │ ├── js │ │ │ │ │ │ ├── bootstrap-colorpicker.js │ │ │ │ │ │ ├── bootstrap-colorpicker.js.map │ │ │ │ │ │ └── bootstrap-colorpicker.min.js.map │ │ │ │ │ └── package.json │ │ │ │ ├── bs3 │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── fonts │ │ │ │ │ │ │ └── bootstrap │ │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ │ │ ├── javascripts │ │ │ │ │ │ │ ├── bootstrap-sprockets.js │ │ │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ │ │ └── bootstrap │ │ │ │ │ │ │ │ ├── affix.js │ │ │ │ │ │ │ │ ├── alert.js │ │ │ │ │ │ │ │ ├── button.js │ │ │ │ │ │ │ │ ├── carousel.js │ │ │ │ │ │ │ │ ├── collapse.js │ │ │ │ │ │ │ │ ├── dropdown.js │ │ │ │ │ │ │ │ ├── modal.js │ │ │ │ │ │ │ │ ├── popover.js │ │ │ │ │ │ │ │ ├── scrollspy.js │ │ │ │ │ │ │ │ ├── tab.js │ │ │ │ │ │ │ │ ├── tooltip.js │ │ │ │ │ │ │ │ └── transition.js │ │ │ │ │ │ └── stylesheets │ │ │ │ │ │ │ ├── _bootstrap-compass.scss │ │ │ │ │ │ │ ├── _bootstrap-mincer.scss │ │ │ │ │ │ │ ├── _bootstrap-sprockets.scss │ │ │ │ │ │ │ ├── _bootstrap.scss │ │ │ │ │ │ │ └── bootstrap │ │ │ │ │ │ │ ├── _alerts.scss │ │ │ │ │ │ │ ├── _badges.scss │ │ │ │ │ │ │ ├── _breadcrumbs.scss │ │ │ │ │ │ │ ├── _button-groups.scss │ │ │ │ │ │ │ ├── _buttons.scss │ │ │ │ │ │ │ ├── _carousel.scss │ │ │ │ │ │ │ ├── _close.scss │ │ │ │ │ │ │ ├── _code.scss │ │ │ │ │ │ │ ├── _component-animations.scss │ │ │ │ │ │ │ ├── _dropdowns.scss │ │ │ │ │ │ │ ├── _forms.scss │ │ │ │ │ │ │ ├── _glyphicons.scss │ │ │ │ │ │ │ ├── _grid.scss │ │ │ │ │ │ │ ├── _input-groups.scss │ │ │ │ │ │ │ ├── _jumbotron.scss │ │ │ │ │ │ │ ├── _labels.scss │ │ │ │ │ │ │ ├── _list-group.scss │ │ │ │ │ │ │ ├── _media.scss │ │ │ │ │ │ │ ├── _mixins.scss │ │ │ │ │ │ │ ├── _modals.scss │ │ │ │ │ │ │ ├── _navbar.scss │ │ │ │ │ │ │ ├── _navs.scss │ │ │ │ │ │ │ ├── _normalize.scss │ │ │ │ │ │ │ ├── _pager.scss │ │ │ │ │ │ │ ├── _pagination.scss │ │ │ │ │ │ │ ├── _panels.scss │ │ │ │ │ │ │ ├── _popovers.scss │ │ │ │ │ │ │ ├── _print.scss │ │ │ │ │ │ │ ├── _progress-bars.scss │ │ │ │ │ │ │ ├── _responsive-embed.scss │ │ │ │ │ │ │ ├── _responsive-utilities.scss │ │ │ │ │ │ │ ├── _scaffolding.scss │ │ │ │ │ │ │ ├── _tables.scss │ │ │ │ │ │ │ ├── _theme.scss │ │ │ │ │ │ │ ├── _thumbnails.scss │ │ │ │ │ │ │ ├── _tooltip.scss │ │ │ │ │ │ │ ├── _type.scss │ │ │ │ │ │ │ ├── _utilities.scss │ │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ │ ├── _wells.scss │ │ │ │ │ │ │ └── mixins │ │ │ │ │ │ │ ├── _alerts.scss │ │ │ │ │ │ │ ├── _background-variant.scss │ │ │ │ │ │ │ ├── _border-radius.scss │ │ │ │ │ │ │ ├── _buttons.scss │ │ │ │ │ │ │ ├── _center-block.scss │ │ │ │ │ │ │ ├── _clearfix.scss │ │ │ │ │ │ │ ├── _forms.scss │ │ │ │ │ │ │ ├── _gradients.scss │ │ │ │ │ │ │ ├── _grid-framework.scss │ │ │ │ │ │ │ ├── _grid.scss │ │ │ │ │ │ │ ├── _hide-text.scss │ │ │ │ │ │ │ ├── _image.scss │ │ │ │ │ │ │ ├── _labels.scss │ │ │ │ │ │ │ ├── _list-group.scss │ │ │ │ │ │ │ ├── _nav-divider.scss │ │ │ │ │ │ │ ├── _nav-vertical-align.scss │ │ │ │ │ │ │ ├── _opacity.scss │ │ │ │ │ │ │ ├── _pagination.scss │ │ │ │ │ │ │ ├── _panels.scss │ │ │ │ │ │ │ ├── _progress-bar.scss │ │ │ │ │ │ │ ├── _reset-filter.scss │ │ │ │ │ │ │ ├── _reset-text.scss │ │ │ │ │ │ │ ├── _resize.scss │ │ │ │ │ │ │ ├── _responsive-visibility.scss │ │ │ │ │ │ │ ├── _size.scss │ │ │ │ │ │ │ ├── _tab-focus.scss │ │ │ │ │ │ │ ├── _table-row.scss │ │ │ │ │ │ │ ├── _text-emphasis.scss │ │ │ │ │ │ │ ├── _text-overflow.scss │ │ │ │ │ │ │ └── _vendor-prefixes.scss │ │ │ │ │ ├── eyeglass-exports.js │ │ │ │ │ └── package.json │ │ │ │ ├── bs4 │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── dist │ │ │ │ │ │ └── js │ │ │ │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ │ │ │ └── bootstrap.bundle.min.js.map │ │ │ │ │ ├── package.json │ │ │ │ │ └── scss │ │ │ │ │ │ ├── _alert.scss │ │ │ │ │ │ ├── _badge.scss │ │ │ │ │ │ ├── _breadcrumb.scss │ │ │ │ │ │ ├── _button-group.scss │ │ │ │ │ │ ├── _buttons.scss │ │ │ │ │ │ ├── _card.scss │ │ │ │ │ │ ├── _carousel.scss │ │ │ │ │ │ ├── _close.scss │ │ │ │ │ │ ├── _code.scss │ │ │ │ │ │ ├── _custom-forms.scss │ │ │ │ │ │ ├── _deprecated.scss │ │ │ │ │ │ ├── _dropdown.scss │ │ │ │ │ │ ├── _forms.scss │ │ │ │ │ │ ├── _functions.scss │ │ │ │ │ │ ├── _grid.scss │ │ │ │ │ │ ├── _images.scss │ │ │ │ │ │ ├── _input-group.scss │ │ │ │ │ │ ├── _jumbotron.scss │ │ │ │ │ │ ├── _list-group.scss │ │ │ │ │ │ ├── _media.scss │ │ │ │ │ │ ├── _mixins.scss │ │ │ │ │ │ ├── _modal.scss │ │ │ │ │ │ ├── _nav.scss │ │ │ │ │ │ ├── _navbar.scss │ │ │ │ │ │ ├── _pagination.scss │ │ │ │ │ │ ├── _popover.scss │ │ │ │ │ │ ├── _print.scss │ │ │ │ │ │ ├── _progress.scss │ │ │ │ │ │ ├── _reboot.scss │ │ │ │ │ │ ├── _root.scss │ │ │ │ │ │ ├── _spinners.scss │ │ │ │ │ │ ├── _tables.scss │ │ │ │ │ │ ├── _toasts.scss │ │ │ │ │ │ ├── _tooltip.scss │ │ │ │ │ │ ├── _transitions.scss │ │ │ │ │ │ ├── _type.scss │ │ │ │ │ │ ├── _utilities.scss │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ ├── bootstrap-grid.scss │ │ │ │ │ │ ├── bootstrap-reboot.scss │ │ │ │ │ │ ├── bootstrap.scss │ │ │ │ │ │ ├── mixins │ │ │ │ │ │ ├── _alert.scss │ │ │ │ │ │ ├── _background-variant.scss │ │ │ │ │ │ ├── _badge.scss │ │ │ │ │ │ ├── _border-radius.scss │ │ │ │ │ │ ├── _box-shadow.scss │ │ │ │ │ │ ├── _breakpoints.scss │ │ │ │ │ │ ├── _buttons.scss │ │ │ │ │ │ ├── _caret.scss │ │ │ │ │ │ ├── _clearfix.scss │ │ │ │ │ │ ├── _deprecate.scss │ │ │ │ │ │ ├── _float.scss │ │ │ │ │ │ ├── _forms.scss │ │ │ │ │ │ ├── _gradients.scss │ │ │ │ │ │ ├── _grid-framework.scss │ │ │ │ │ │ ├── _grid.scss │ │ │ │ │ │ ├── _hover.scss │ │ │ │ │ │ ├── _image.scss │ │ │ │ │ │ ├── _list-group.scss │ │ │ │ │ │ ├── _lists.scss │ │ │ │ │ │ ├── _nav-divider.scss │ │ │ │ │ │ ├── _pagination.scss │ │ │ │ │ │ ├── _reset-text.scss │ │ │ │ │ │ ├── _resize.scss │ │ │ │ │ │ ├── _screen-reader.scss │ │ │ │ │ │ ├── _size.scss │ │ │ │ │ │ ├── _table-row.scss │ │ │ │ │ │ ├── _text-emphasis.scss │ │ │ │ │ │ ├── _text-hide.scss │ │ │ │ │ │ ├── _text-truncate.scss │ │ │ │ │ │ ├── _transition.scss │ │ │ │ │ │ └── _visibility.scss │ │ │ │ │ │ ├── utilities │ │ │ │ │ │ ├── _align.scss │ │ │ │ │ │ ├── _background.scss │ │ │ │ │ │ ├── _borders.scss │ │ │ │ │ │ ├── _clearfix.scss │ │ │ │ │ │ ├── _display.scss │ │ │ │ │ │ ├── _embed.scss │ │ │ │ │ │ ├── _flex.scss │ │ │ │ │ │ ├── _float.scss │ │ │ │ │ │ ├── _interactions.scss │ │ │ │ │ │ ├── _overflow.scss │ │ │ │ │ │ ├── _position.scss │ │ │ │ │ │ ├── _screenreaders.scss │ │ │ │ │ │ ├── _shadows.scss │ │ │ │ │ │ ├── _sizing.scss │ │ │ │ │ │ ├── _spacing.scss │ │ │ │ │ │ ├── _stretched-link.scss │ │ │ │ │ │ ├── _text.scss │ │ │ │ │ │ └── _visibility.scss │ │ │ │ │ │ └── vendor │ │ │ │ │ │ └── _rfs.scss │ │ │ │ ├── bs5 │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── dist │ │ │ │ │ │ └── js │ │ │ │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ │ │ │ └── bootstrap.bundle.min.js.map │ │ │ │ │ ├── package.json │ │ │ │ │ └── scss │ │ │ │ │ │ ├── _accordion.scss │ │ │ │ │ │ ├── _alert.scss │ │ │ │ │ │ ├── _badge.scss │ │ │ │ │ │ ├── _breadcrumb.scss │ │ │ │ │ │ ├── _button-group.scss │ │ │ │ │ │ ├── _buttons.scss │ │ │ │ │ │ ├── _card.scss │ │ │ │ │ │ ├── _carousel.scss │ │ │ │ │ │ ├── _close.scss │ │ │ │ │ │ ├── _containers.scss │ │ │ │ │ │ ├── _dropdown.scss │ │ │ │ │ │ ├── _forms.scss │ │ │ │ │ │ ├── _functions.scss │ │ │ │ │ │ ├── _grid.scss │ │ │ │ │ │ ├── _helpers.scss │ │ │ │ │ │ ├── _images.scss │ │ │ │ │ │ ├── _list-group.scss │ │ │ │ │ │ ├── _maps.scss │ │ │ │ │ │ ├── _mixins.scss │ │ │ │ │ │ ├── _modal.scss │ │ │ │ │ │ ├── _nav.scss │ │ │ │ │ │ ├── _navbar.scss │ │ │ │ │ │ ├── _offcanvas.scss │ │ │ │ │ │ ├── _pagination.scss │ │ │ │ │ │ ├── _placeholders.scss │ │ │ │ │ │ ├── _popover.scss │ │ │ │ │ │ ├── _progress.scss │ │ │ │ │ │ ├── _reboot.scss │ │ │ │ │ │ ├── _root.scss │ │ │ │ │ │ ├── _spinners.scss │ │ │ │ │ │ ├── _tables.scss │ │ │ │ │ │ ├── _toasts.scss │ │ │ │ │ │ ├── _tooltip.scss │ │ │ │ │ │ ├── _transitions.scss │ │ │ │ │ │ ├── _type.scss │ │ │ │ │ │ ├── _utilities.scss │ │ │ │ │ │ ├── _variables-dark.scss │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ ├── bootstrap-grid.scss │ │ │ │ │ │ ├── bootstrap-reboot.scss │ │ │ │ │ │ ├── bootstrap-utilities.scss │ │ │ │ │ │ ├── bootstrap.scss │ │ │ │ │ │ ├── forms │ │ │ │ │ │ ├── _floating-labels.scss │ │ │ │ │ │ ├── _form-check.scss │ │ │ │ │ │ ├── _form-control.scss │ │ │ │ │ │ ├── _form-range.scss │ │ │ │ │ │ ├── _form-select.scss │ │ │ │ │ │ ├── _form-text.scss │ │ │ │ │ │ ├── _input-group.scss │ │ │ │ │ │ ├── _labels.scss │ │ │ │ │ │ └── _validation.scss │ │ │ │ │ │ ├── helpers │ │ │ │ │ │ ├── _clearfix.scss │ │ │ │ │ │ ├── _color-bg.scss │ │ │ │ │ │ ├── _colored-links.scss │ │ │ │ │ │ ├── _focus-ring.scss │ │ │ │ │ │ ├── _icon-link.scss │ │ │ │ │ │ ├── _position.scss │ │ │ │ │ │ ├── _ratio.scss │ │ │ │ │ │ ├── _stacks.scss │ │ │ │ │ │ ├── _stretched-link.scss │ │ │ │ │ │ ├── _text-truncation.scss │ │ │ │ │ │ ├── _visually-hidden.scss │ │ │ │ │ │ └── _vr.scss │ │ │ │ │ │ ├── mixins │ │ │ │ │ │ ├── _alert.scss │ │ │ │ │ │ ├── _backdrop.scss │ │ │ │ │ │ ├── _banner.scss │ │ │ │ │ │ ├── _border-radius.scss │ │ │ │ │ │ ├── _box-shadow.scss │ │ │ │ │ │ ├── _breakpoints.scss │ │ │ │ │ │ ├── _buttons.scss │ │ │ │ │ │ ├── _caret.scss │ │ │ │ │ │ ├── _clearfix.scss │ │ │ │ │ │ ├── _color-mode.scss │ │ │ │ │ │ ├── _color-scheme.scss │ │ │ │ │ │ ├── _container.scss │ │ │ │ │ │ ├── _deprecate.scss │ │ │ │ │ │ ├── _forms.scss │ │ │ │ │ │ ├── _gradients.scss │ │ │ │ │ │ ├── _grid.scss │ │ │ │ │ │ ├── _image.scss │ │ │ │ │ │ ├── _list-group.scss │ │ │ │ │ │ ├── _lists.scss │ │ │ │ │ │ ├── _pagination.scss │ │ │ │ │ │ ├── _reset-text.scss │ │ │ │ │ │ ├── _resize.scss │ │ │ │ │ │ ├── _table-variants.scss │ │ │ │ │ │ ├── _text-truncate.scss │ │ │ │ │ │ ├── _transition.scss │ │ │ │ │ │ ├── _utilities.scss │ │ │ │ │ │ └── _visually-hidden.scss │ │ │ │ │ │ ├── utilities │ │ │ │ │ │ └── _api.scss │ │ │ │ │ │ └── vendor │ │ │ │ │ │ └── _rfs.scss │ │ │ │ ├── bsw3 │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── cerulean │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ └── _variables.scss │ │ │ │ │ ├── cosmo │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ └── font.css │ │ │ │ │ ├── cyborg │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ └── font.css │ │ │ │ │ ├── darkly │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ └── font.css │ │ │ │ │ ├── flatly │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ └── font.css │ │ │ │ │ ├── journal │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ └── font.css │ │ │ │ │ ├── lumen │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ └── font.css │ │ │ │ │ ├── package.json │ │ │ │ │ ├── paper │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ └── font.css │ │ │ │ │ ├── readable │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ └── font.css │ │ │ │ │ ├── sandstone │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ └── font.css │ │ │ │ │ ├── simplex │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ └── font.css │ │ │ │ │ ├── slate │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ └── _variables.scss │ │ │ │ │ ├── spacelab │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ └── font.css │ │ │ │ │ ├── superhero │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ └── font.css │ │ │ │ │ ├── united │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ └── font.css │ │ │ │ │ └── yeti │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ └── font.css │ │ │ │ ├── bsw4 │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── dist │ │ │ │ │ │ ├── cerulean │ │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ │ └── _variables.scss │ │ │ │ │ │ ├── cosmo │ │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ │ └── font.css │ │ │ │ │ │ ├── cyborg │ │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ │ └── font.css │ │ │ │ │ │ ├── darkly │ │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ │ └── font.css │ │ │ │ │ │ ├── flatly │ │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ │ └── font.css │ │ │ │ │ │ ├── journal │ │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ │ └── font.css │ │ │ │ │ │ ├── litera │ │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ │ └── _variables.scss │ │ │ │ │ │ ├── lumen │ │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ │ └── font.css │ │ │ │ │ │ ├── lux │ │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ │ └── font.css │ │ │ │ │ │ ├── materia │ │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ │ └── font.css │ │ │ │ │ │ ├── minty │ │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ │ └── font.css │ │ │ │ │ │ ├── pulse │ │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ │ └── _variables.scss │ │ │ │ │ │ ├── sandstone │ │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ │ └── font.css │ │ │ │ │ │ ├── simplex │ │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ │ └── font.css │ │ │ │ │ │ ├── sketchy │ │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ │ └── font.css │ │ │ │ │ │ ├── slate │ │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ │ └── _variables.scss │ │ │ │ │ │ ├── solar │ │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ │ └── font.css │ │ │ │ │ │ ├── spacelab │ │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ │ └── font.css │ │ │ │ │ │ ├── superhero │ │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ │ └── font.css │ │ │ │ │ │ ├── united │ │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ │ └── font.css │ │ │ │ │ │ └── yeti │ │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ │ └── font.css │ │ │ │ │ └── package.json │ │ │ │ └── bsw5 │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── dist │ │ │ │ │ ├── cerulean │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ └── _variables.scss │ │ │ │ │ ├── cosmo │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ └── font.css │ │ │ │ │ ├── cyborg │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ └── font.css │ │ │ │ │ ├── darkly │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ └── font.css │ │ │ │ │ ├── flatly │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ └── font.css │ │ │ │ │ ├── journal │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ └── font.css │ │ │ │ │ ├── litera │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ └── _variables.scss │ │ │ │ │ ├── lumen │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ └── font.css │ │ │ │ │ ├── lux │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ └── font.css │ │ │ │ │ ├── materia │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ └── font.css │ │ │ │ │ ├── minty │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ └── font.css │ │ │ │ │ ├── morph │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ └── font.css │ │ │ │ │ ├── pulse │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ └── _variables.scss │ │ │ │ │ ├── quartz │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ └── _variables.scss │ │ │ │ │ ├── sandstone │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ └── font.css │ │ │ │ │ ├── simplex │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ └── font.css │ │ │ │ │ ├── sketchy │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ └── font.css │ │ │ │ │ ├── slate │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ └── _variables.scss │ │ │ │ │ ├── solar │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ └── font.css │ │ │ │ │ ├── spacelab │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ └── font.css │ │ │ │ │ ├── superhero │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ └── font.css │ │ │ │ │ ├── united │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ └── font.css │ │ │ │ │ ├── vapor │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ └── font.css │ │ │ │ │ ├── yeti │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ └── font.css │ │ │ │ │ └── zephyr │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ └── font.css │ │ │ │ │ └── package.json │ │ │ ├── package.json │ │ │ ├── rmarkdown │ │ │ │ └── templates │ │ │ │ │ ├── legacy │ │ │ │ │ ├── skeleton │ │ │ │ │ │ └── skeleton.Rmd │ │ │ │ │ └── template.yaml │ │ │ │ │ ├── new │ │ │ │ │ ├── skeleton │ │ │ │ │ │ └── skeleton.Rmd │ │ │ │ │ └── template.yaml │ │ │ │ │ └── real-time │ │ │ │ │ ├── skeleton │ │ │ │ │ └── skeleton.Rmd │ │ │ │ │ └── template.yaml │ │ │ ├── sass-utils │ │ │ │ └── color-contrast.scss │ │ │ ├── themer-demo │ │ │ │ ├── R │ │ │ │ │ └── tips.R │ │ │ │ ├── app.R │ │ │ │ ├── deploy.R │ │ │ │ ├── deploy │ │ │ │ │ └── app.R │ │ │ │ └── global.R │ │ │ └── themer │ │ │ │ ├── options.json │ │ │ │ ├── themer.js │ │ │ │ └── themer.scss │ │ ├── cachem │ │ │ ├── DESCRIPTION │ │ │ ├── INDEX │ │ │ ├── LICENSE │ │ │ ├── MD5 │ │ │ ├── Meta │ │ │ │ ├── Rd.rds │ │ │ │ ├── features.rds │ │ │ │ ├── hsearch.rds │ │ │ │ ├── links.rds │ │ │ │ ├── nsInfo.rds │ │ │ │ └── package.rds │ │ │ ├── NAMESPACE │ │ │ ├── NEWS.md │ │ │ ├── R │ │ │ │ ├── cachem │ │ │ │ ├── cachem.rdb │ │ │ │ └── cachem.rdx │ │ │ ├── help │ │ │ │ ├── AnIndex │ │ │ │ ├── aliases.rds │ │ │ │ ├── cachem.rdb │ │ │ │ ├── cachem.rdx │ │ │ │ └── paths.rds │ │ │ ├── html │ │ │ │ ├── 00Index.html │ │ │ │ └── R.css │ │ │ └── libs │ │ │ │ └── x64 │ │ │ │ ├── cachem.dll │ │ │ │ └── symbols.rds │ │ ├── cli │ │ │ ├── DESCRIPTION │ │ │ ├── INDEX │ │ │ ├── LICENSE │ │ │ ├── MD5 │ │ │ ├── Meta │ │ │ │ ├── Rd.rds │ │ │ │ ├── features.rds │ │ │ │ ├── hsearch.rds │ │ │ │ ├── links.rds │ │ │ │ ├── nsInfo.rds │ │ │ │ └── package.rds │ │ │ ├── NAMESPACE │ │ │ ├── NEWS.md │ │ │ ├── R │ │ │ │ ├── cli │ │ │ │ ├── cli.rdb │ │ │ │ ├── cli.rdx │ │ │ │ ├── sysdata.rdb │ │ │ │ └── sysdata.rdx │ │ │ ├── examples │ │ │ │ └── apps │ │ │ │ │ ├── news.R │ │ │ │ │ ├── outdated.R │ │ │ │ │ ├── search.R │ │ │ │ │ └── up.R │ │ │ ├── exec │ │ │ │ ├── news.R │ │ │ │ ├── outdated.R │ │ │ │ ├── search.R │ │ │ │ └── up.R │ │ │ ├── help │ │ │ │ ├── AnIndex │ │ │ │ ├── aliases.rds │ │ │ │ ├── cli.rdb │ │ │ │ ├── cli.rdx │ │ │ │ ├── figures │ │ │ │ │ ├── demo-spinners.svg │ │ │ │ │ ├── get-spinner.svg │ │ │ │ │ ├── make-spinner-custom.svg │ │ │ │ │ ├── make-spinner-default.svg │ │ │ │ │ ├── make-spinner-template.svg │ │ │ │ │ ├── progress-1.svg │ │ │ │ │ ├── progress-after.svg │ │ │ │ │ ├── progress-along-1.svg │ │ │ │ │ ├── progress-along-2.svg │ │ │ │ │ ├── progress-along-3.svg │ │ │ │ │ ├── progress-clear.svg │ │ │ │ │ ├── progress-current.svg │ │ │ │ │ ├── progress-format.svg │ │ │ │ │ ├── progress-message.svg │ │ │ │ │ ├── progress-natotal.svg │ │ │ │ │ ├── progress-output.svg │ │ │ │ │ ├── progress-output2.svg │ │ │ │ │ ├── progress-step-dynamic.svg │ │ │ │ │ ├── progress-step-msg.svg │ │ │ │ │ ├── progress-step-spin.svg │ │ │ │ │ ├── progress-step.svg │ │ │ │ │ └── progress-tasks.svg │ │ │ │ └── paths.rds │ │ │ ├── html │ │ │ │ ├── 00Index.html │ │ │ │ └── R.css │ │ │ ├── include │ │ │ │ └── cli │ │ │ │ │ └── progress.h │ │ │ ├── libs │ │ │ │ └── x64 │ │ │ │ │ ├── cli.dll │ │ │ │ │ └── symbols.rds │ │ │ ├── logo.txt │ │ │ └── shiny │ │ │ │ ├── along │ │ │ │ └── app.R │ │ │ │ ├── format │ │ │ │ └── app.R │ │ │ │ ├── nested │ │ │ │ └── app.R │ │ │ │ ├── output │ │ │ │ └── app.R │ │ │ │ └── simple │ │ │ │ └── app.R │ │ ├── commonmark │ │ │ ├── DESCRIPTION │ │ │ ├── INDEX │ │ │ ├── LICENSE │ │ │ ├── MD5 │ │ │ ├── Meta │ │ │ │ ├── Rd.rds │ │ │ │ ├── features.rds │ │ │ │ ├── hsearch.rds │ │ │ │ ├── links.rds │ │ │ │ ├── nsInfo.rds │ │ │ │ └── package.rds │ │ │ ├── NAMESPACE │ │ │ ├── NEWS │ │ │ ├── R │ │ │ │ ├── commonmark │ │ │ │ ├── commonmark.rdb │ │ │ │ └── commonmark.rdx │ │ │ ├── help │ │ │ │ ├── AnIndex │ │ │ │ ├── aliases.rds │ │ │ │ ├── commonmark.rdb │ │ │ │ ├── commonmark.rdx │ │ │ │ └── paths.rds │ │ │ ├── html │ │ │ │ ├── 00Index.html │ │ │ │ └── R.css │ │ │ └── libs │ │ │ │ └── x64 │ │ │ │ ├── commonmark.dll │ │ │ │ └── symbols.rds │ │ ├── crayon │ │ │ ├── DESCRIPTION │ │ │ ├── INDEX │ │ │ ├── LICENSE │ │ │ ├── MD5 │ │ │ ├── Meta │ │ │ │ ├── Rd.rds │ │ │ │ ├── features.rds │ │ │ │ ├── hsearch.rds │ │ │ │ ├── links.rds │ │ │ │ ├── nsInfo.rds │ │ │ │ └── package.rds │ │ │ ├── NAMESPACE │ │ │ ├── NEWS.md │ │ │ ├── R │ │ │ │ ├── crayon │ │ │ │ ├── crayon.rdb │ │ │ │ └── crayon.rdx │ │ │ ├── help │ │ │ │ ├── AnIndex │ │ │ │ ├── aliases.rds │ │ │ │ ├── crayon.rdb │ │ │ │ ├── crayon.rdx │ │ │ │ └── paths.rds │ │ │ └── html │ │ │ │ ├── 00Index.html │ │ │ │ └── R.css │ │ ├── digest │ │ │ ├── DESCRIPTION │ │ │ ├── GPL-2 │ │ │ ├── INDEX │ │ │ ├── MD5 │ │ │ ├── Meta │ │ │ │ ├── Rd.rds │ │ │ │ ├── demo.rds │ │ │ │ ├── features.rds │ │ │ │ ├── hsearch.rds │ │ │ │ ├── links.rds │ │ │ │ ├── nsInfo.rds │ │ │ │ ├── package.rds │ │ │ │ └── vignette.rds │ │ │ ├── NAMESPACE │ │ │ ├── R │ │ │ │ ├── digest │ │ │ │ ├── digest.rdb │ │ │ │ └── digest.rdx │ │ │ ├── demo │ │ │ │ └── vectorised.R │ │ │ ├── doc │ │ │ │ ├── index.html │ │ │ │ ├── sha1.R │ │ │ │ ├── sha1.html │ │ │ │ └── sha1.md │ │ │ ├── help │ │ │ │ ├── AnIndex │ │ │ │ ├── aliases.rds │ │ │ │ ├── digest.rdb │ │ │ │ ├── digest.rdx │ │ │ │ └── paths.rds │ │ │ ├── html │ │ │ │ ├── 00Index.html │ │ │ │ └── R.css │ │ │ ├── include │ │ │ │ └── pmurhashAPI.h │ │ │ ├── libs │ │ │ │ └── x64 │ │ │ │ │ ├── digest.dll │ │ │ │ │ └── symbols.rds │ │ │ └── tinytest │ │ │ │ ├── test_aes.R │ │ │ │ ├── test_blake3.R │ │ │ │ ├── test_crc32.R │ │ │ │ ├── test_digest.R │ │ │ │ ├── test_digest2int.R │ │ │ │ ├── test_encoding.R │ │ │ │ ├── test_hmac.R │ │ │ │ ├── test_misc.R │ │ │ │ ├── test_new_matrix_behaviour.R │ │ │ │ ├── test_num2hex.R │ │ │ │ ├── test_raw.R │ │ │ │ └── test_sha1.R │ │ ├── fastmap │ │ │ ├── DESCRIPTION │ │ │ ├── INDEX │ │ │ ├── LICENSE │ │ │ ├── MD5 │ │ │ ├── Meta │ │ │ │ ├── Rd.rds │ │ │ │ ├── features.rds │ │ │ │ ├── hsearch.rds │ │ │ │ ├── links.rds │ │ │ │ ├── nsInfo.rds │ │ │ │ └── package.rds │ │ │ ├── NAMESPACE │ │ │ ├── NEWS.md │ │ │ ├── R │ │ │ │ ├── fastmap │ │ │ │ ├── fastmap.rdb │ │ │ │ └── fastmap.rdx │ │ │ ├── help │ │ │ │ ├── AnIndex │ │ │ │ ├── aliases.rds │ │ │ │ ├── fastmap.rdb │ │ │ │ ├── fastmap.rdx │ │ │ │ └── paths.rds │ │ │ ├── html │ │ │ │ ├── 00Index.html │ │ │ │ └── R.css │ │ │ └── libs │ │ │ │ └── x64 │ │ │ │ ├── fastmap.dll │ │ │ │ └── symbols.rds │ │ ├── fontawesome │ │ │ ├── DESCRIPTION │ │ │ ├── INDEX │ │ │ ├── LICENSE │ │ │ ├── MD5 │ │ │ ├── Meta │ │ │ │ ├── Rd.rds │ │ │ │ ├── features.rds │ │ │ │ ├── hsearch.rds │ │ │ │ ├── links.rds │ │ │ │ ├── nsInfo.rds │ │ │ │ └── package.rds │ │ │ ├── NAMESPACE │ │ │ ├── NEWS.md │ │ │ ├── R │ │ │ │ ├── fontawesome │ │ │ │ ├── fontawesome.rdb │ │ │ │ ├── fontawesome.rdx │ │ │ │ ├── sysdata.rdb │ │ │ │ └── sysdata.rdx │ │ │ ├── apps │ │ │ │ └── 138-icon-fontawesome │ │ │ │ │ └── app.R │ │ │ ├── fontawesome │ │ │ │ ├── css │ │ │ │ │ ├── all.css │ │ │ │ │ ├── all.min.css │ │ │ │ │ ├── v4-shims.css │ │ │ │ │ └── v4-shims.min.css │ │ │ │ └── webfonts │ │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ │ ├── fa-solid-900.woff2 │ │ │ │ │ ├── fa-v4compatibility.ttf │ │ │ │ │ └── fa-v4compatibility.woff2 │ │ │ ├── help │ │ │ │ ├── AnIndex │ │ │ │ ├── aliases.rds │ │ │ │ ├── figures │ │ │ │ │ ├── fontawesome_rmd.png │ │ │ │ │ ├── fontawesome_shiny_app.png │ │ │ │ │ └── logo.svg │ │ │ │ ├── fontawesome.rdb │ │ │ │ ├── fontawesome.rdx │ │ │ │ └── paths.rds │ │ │ └── html │ │ │ │ ├── 00Index.html │ │ │ │ └── R.css │ │ ├── fs │ │ │ ├── COPYRIGHTS │ │ │ ├── DESCRIPTION │ │ │ ├── INDEX │ │ │ ├── LICENSE │ │ │ ├── MD5 │ │ │ ├── Meta │ │ │ │ ├── Rd.rds │ │ │ │ ├── features.rds │ │ │ │ ├── hsearch.rds │ │ │ │ ├── links.rds │ │ │ │ ├── nsInfo.rds │ │ │ │ ├── package.rds │ │ │ │ └── vignette.rds │ │ │ ├── NAMESPACE │ │ │ ├── NEWS.md │ │ │ ├── R │ │ │ │ ├── fs │ │ │ │ ├── fs.rdb │ │ │ │ └── fs.rdx │ │ │ ├── WORDLIST │ │ │ ├── doc │ │ │ │ ├── function-comparisons.R │ │ │ │ ├── function-comparisons.Rmd │ │ │ │ ├── function-comparisons.html │ │ │ │ └── index.html │ │ │ ├── help │ │ │ │ ├── AnIndex │ │ │ │ ├── aliases.rds │ │ │ │ ├── figures │ │ │ │ │ └── logo.png │ │ │ │ ├── fs.rdb │ │ │ │ ├── fs.rdx │ │ │ │ └── paths.rds │ │ │ ├── html │ │ │ │ ├── 00Index.html │ │ │ │ └── R.css │ │ │ └── libs │ │ │ │ └── x64 │ │ │ │ ├── fs.dll │ │ │ │ └── symbols.rds │ │ ├── glue │ │ │ ├── DESCRIPTION │ │ │ ├── INDEX │ │ │ ├── LICENSE │ │ │ ├── MD5 │ │ │ ├── Meta │ │ │ │ ├── Rd.rds │ │ │ │ ├── features.rds │ │ │ │ ├── hsearch.rds │ │ │ │ ├── links.rds │ │ │ │ ├── nsInfo.rds │ │ │ │ ├── package.rds │ │ │ │ └── vignette.rds │ │ │ ├── NAMESPACE │ │ │ ├── NEWS.md │ │ │ ├── R │ │ │ │ ├── glue │ │ │ │ ├── glue.rdb │ │ │ │ └── glue.rdx │ │ │ ├── doc │ │ │ │ ├── engines.R │ │ │ │ ├── engines.Rmd │ │ │ │ ├── engines.html │ │ │ │ ├── glue.R │ │ │ │ ├── glue.Rmd │ │ │ │ ├── glue.html │ │ │ │ ├── index.html │ │ │ │ ├── transformers.R │ │ │ │ ├── transformers.Rmd │ │ │ │ ├── transformers.html │ │ │ │ ├── wrappers.R │ │ │ │ ├── wrappers.Rmd │ │ │ │ └── wrappers.html │ │ │ ├── help │ │ │ │ ├── AnIndex │ │ │ │ ├── aliases.rds │ │ │ │ ├── figures │ │ │ │ │ └── logo.png │ │ │ │ ├── glue.rdb │ │ │ │ ├── glue.rdx │ │ │ │ └── paths.rds │ │ │ ├── html │ │ │ │ ├── 00Index.html │ │ │ │ └── R.css │ │ │ └── libs │ │ │ │ └── x64 │ │ │ │ ├── glue.dll │ │ │ │ └── symbols.rds │ │ ├── htmltools │ │ │ ├── DESCRIPTION │ │ │ ├── INDEX │ │ │ ├── MD5 │ │ │ ├── Meta │ │ │ │ ├── Rd.rds │ │ │ │ ├── features.rds │ │ │ │ ├── hsearch.rds │ │ │ │ ├── links.rds │ │ │ │ ├── nsInfo.rds │ │ │ │ └── package.rds │ │ │ ├── NAMESPACE │ │ │ ├── NEWS.md │ │ │ ├── R │ │ │ │ ├── htmltools │ │ │ │ ├── htmltools.rdb │ │ │ │ └── htmltools.rdx │ │ │ ├── fill │ │ │ │ └── fill.css │ │ │ ├── help │ │ │ │ ├── AnIndex │ │ │ │ ├── aliases.rds │ │ │ │ ├── figures │ │ │ │ │ ├── lifecycle-deprecated.svg │ │ │ │ │ ├── lifecycle-experimental.svg │ │ │ │ │ ├── lifecycle-questioning.svg │ │ │ │ │ ├── lifecycle-superseded.svg │ │ │ │ │ ├── logo.png │ │ │ │ │ └── plotly-taglist.png │ │ │ │ ├── htmltools.rdb │ │ │ │ ├── htmltools.rdx │ │ │ │ └── paths.rds │ │ │ ├── html │ │ │ │ ├── 00Index.html │ │ │ │ └── R.css │ │ │ └── libs │ │ │ │ └── x64 │ │ │ │ ├── htmltools.dll │ │ │ │ └── symbols.rds │ │ ├── httpuv │ │ │ ├── DESCRIPTION │ │ │ ├── INDEX │ │ │ ├── LICENSE │ │ │ ├── MD5 │ │ │ ├── Meta │ │ │ │ ├── Rd.rds │ │ │ │ ├── demo.rds │ │ │ │ ├── features.rds │ │ │ │ ├── hsearch.rds │ │ │ │ ├── links.rds │ │ │ │ ├── nsInfo.rds │ │ │ │ └── package.rds │ │ │ ├── NAMESPACE │ │ │ ├── NEWS.md │ │ │ ├── R │ │ │ │ ├── httpuv │ │ │ │ ├── httpuv.rdb │ │ │ │ └── httpuv.rdx │ │ │ ├── demo │ │ │ │ ├── daemon-echo.R │ │ │ │ ├── echo.R │ │ │ │ └── json-server.R │ │ │ ├── example-static-site │ │ │ │ ├── index.html │ │ │ │ └── office.html │ │ │ ├── help │ │ │ │ ├── AnIndex │ │ │ │ ├── aliases.rds │ │ │ │ ├── httpuv.rdb │ │ │ │ ├── httpuv.rdx │ │ │ │ └── paths.rds │ │ │ ├── html │ │ │ │ ├── 00Index.html │ │ │ │ └── R.css │ │ │ └── libs │ │ │ │ └── x64 │ │ │ │ ├── httpuv.dll │ │ │ │ └── symbols.rds │ │ ├── jquerylib │ │ │ ├── DESCRIPTION │ │ │ ├── INDEX │ │ │ ├── LICENSE │ │ │ ├── MD5 │ │ │ ├── Meta │ │ │ │ ├── Rd.rds │ │ │ │ ├── features.rds │ │ │ │ ├── hsearch.rds │ │ │ │ ├── links.rds │ │ │ │ ├── nsInfo.rds │ │ │ │ └── package.rds │ │ │ ├── NAMESPACE │ │ │ ├── NEWS.md │ │ │ ├── R │ │ │ │ ├── jquerylib │ │ │ │ ├── jquerylib.rdb │ │ │ │ └── jquerylib.rdx │ │ │ ├── help │ │ │ │ ├── AnIndex │ │ │ │ ├── aliases.rds │ │ │ │ ├── jquerylib.rdb │ │ │ │ ├── jquerylib.rdx │ │ │ │ └── paths.rds │ │ │ ├── html │ │ │ │ ├── 00Index.html │ │ │ │ └── R.css │ │ │ └── lib │ │ │ │ ├── 1.12.4 │ │ │ │ ├── jquery-1.12.4.js │ │ │ │ ├── jquery-1.12.4.min.js │ │ │ │ └── jquery-1.12.4.min.map │ │ │ │ ├── 2.2.4 │ │ │ │ ├── jquery-2.2.4.js │ │ │ │ ├── jquery-2.2.4.min.js │ │ │ │ └── jquery-2.2.4.min.map │ │ │ │ ├── 3.6.0 │ │ │ │ ├── jquery-3.6.0.js │ │ │ │ ├── jquery-3.6.0.min.js │ │ │ │ └── jquery-3.6.0.min.map │ │ │ │ ├── AUTHORS.txt │ │ │ │ └── LICENSE.txt │ │ ├── jsonlite │ │ │ ├── CITATION │ │ │ ├── DESCRIPTION │ │ │ ├── INDEX │ │ │ ├── LICENSE │ │ │ ├── MD5 │ │ │ ├── Meta │ │ │ │ ├── Rd.rds │ │ │ │ ├── features.rds │ │ │ │ ├── hsearch.rds │ │ │ │ ├── links.rds │ │ │ │ ├── nsInfo.rds │ │ │ │ ├── package.rds │ │ │ │ └── vignette.rds │ │ │ ├── NAMESPACE │ │ │ ├── NEWS │ │ │ ├── R │ │ │ │ ├── jsonlite │ │ │ │ ├── jsonlite.rdb │ │ │ │ └── jsonlite.rdx │ │ │ ├── doc │ │ │ │ ├── index.html │ │ │ │ ├── json-aaquickstart.R │ │ │ │ ├── json-aaquickstart.Rmd │ │ │ │ ├── json-aaquickstart.html │ │ │ │ ├── json-apis.Rmd │ │ │ │ ├── json-apis.html │ │ │ │ ├── json-mapping.pdf │ │ │ │ ├── json-mapping.pdf.asis │ │ │ │ ├── json-opencpu.pdf │ │ │ │ ├── json-opencpu.pdf.asis │ │ │ │ ├── json-paging.Rmd │ │ │ │ └── json-paging.html │ │ │ ├── help │ │ │ │ ├── AnIndex │ │ │ │ ├── aliases.rds │ │ │ │ ├── jsonlite.rdb │ │ │ │ ├── jsonlite.rdx │ │ │ │ └── paths.rds │ │ │ ├── html │ │ │ │ ├── 00Index.html │ │ │ │ └── R.css │ │ │ └── libs │ │ │ │ └── x64 │ │ │ │ ├── jsonlite.dll │ │ │ │ └── symbols.rds │ │ ├── later │ │ │ ├── DESCRIPTION │ │ │ ├── INDEX │ │ │ ├── LICENSE │ │ │ ├── MD5 │ │ │ ├── Meta │ │ │ │ ├── Rd.rds │ │ │ │ ├── features.rds │ │ │ │ ├── hsearch.rds │ │ │ │ ├── links.rds │ │ │ │ ├── nsInfo.rds │ │ │ │ ├── package.rds │ │ │ │ └── vignette.rds │ │ │ ├── NAMESPACE │ │ │ ├── NEWS.md │ │ │ ├── R │ │ │ │ ├── later │ │ │ │ ├── later.rdb │ │ │ │ └── later.rdx │ │ │ ├── bgtest.cpp │ │ │ ├── doc │ │ │ │ ├── index.html │ │ │ │ ├── later-cpp.Rmd │ │ │ │ └── later-cpp.html │ │ │ ├── help │ │ │ │ ├── AnIndex │ │ │ │ ├── aliases.rds │ │ │ │ ├── later.rdb │ │ │ │ ├── later.rdx │ │ │ │ └── paths.rds │ │ │ ├── html │ │ │ │ ├── 00Index.html │ │ │ │ └── R.css │ │ │ ├── include │ │ │ │ ├── later.h │ │ │ │ └── later_api.h │ │ │ └── libs │ │ │ │ └── x64 │ │ │ │ ├── later.dll │ │ │ │ └── symbols.rds │ │ ├── lifecycle │ │ │ ├── DESCRIPTION │ │ │ ├── INDEX │ │ │ ├── LICENSE │ │ │ ├── MD5 │ │ │ ├── Meta │ │ │ │ ├── Rd.rds │ │ │ │ ├── features.rds │ │ │ │ ├── hsearch.rds │ │ │ │ ├── links.rds │ │ │ │ ├── nsInfo.rds │ │ │ │ ├── package.rds │ │ │ │ └── vignette.rds │ │ │ ├── NAMESPACE │ │ │ ├── NEWS.md │ │ │ ├── R │ │ │ │ ├── lifecycle │ │ │ │ ├── lifecycle.rdb │ │ │ │ └── lifecycle.rdx │ │ │ ├── doc │ │ │ │ ├── communicate.R │ │ │ │ ├── communicate.Rmd │ │ │ │ ├── communicate.html │ │ │ │ ├── index.html │ │ │ │ ├── manage.R │ │ │ │ ├── manage.Rmd │ │ │ │ ├── manage.html │ │ │ │ ├── stages.R │ │ │ │ ├── stages.Rmd │ │ │ │ └── stages.html │ │ │ ├── help │ │ │ │ ├── AnIndex │ │ │ │ ├── aliases.rds │ │ │ │ ├── figures │ │ │ │ │ ├── lifecycle-archived.svg │ │ │ │ │ ├── lifecycle-defunct.svg │ │ │ │ │ ├── lifecycle-deprecated.svg │ │ │ │ │ ├── lifecycle-experimental.svg │ │ │ │ │ ├── lifecycle-maturing.svg │ │ │ │ │ ├── lifecycle-questioning.svg │ │ │ │ │ ├── lifecycle-retired.svg │ │ │ │ │ ├── lifecycle-soft-deprecated.svg │ │ │ │ │ ├── lifecycle-stable.svg │ │ │ │ │ └── lifecycle-superseded.svg │ │ │ │ ├── lifecycle.rdb │ │ │ │ ├── lifecycle.rdx │ │ │ │ ├── macros │ │ │ │ │ └── lifecycle.Rd │ │ │ │ └── paths.rds │ │ │ └── html │ │ │ │ ├── 00Index.html │ │ │ │ └── R.css │ │ ├── magrittr │ │ │ ├── DESCRIPTION │ │ │ ├── INDEX │ │ │ ├── LICENSE │ │ │ ├── MD5 │ │ │ ├── Meta │ │ │ │ ├── Rd.rds │ │ │ │ ├── features.rds │ │ │ │ ├── hsearch.rds │ │ │ │ ├── links.rds │ │ │ │ ├── nsInfo.rds │ │ │ │ ├── package.rds │ │ │ │ └── vignette.rds │ │ │ ├── NAMESPACE │ │ │ ├── NEWS.md │ │ │ ├── R │ │ │ │ ├── magrittr │ │ │ │ ├── magrittr.rdb │ │ │ │ └── magrittr.rdx │ │ │ ├── doc │ │ │ │ ├── index.html │ │ │ │ ├── magrittr.R │ │ │ │ ├── magrittr.Rmd │ │ │ │ ├── magrittr.html │ │ │ │ ├── tradeoffs.R │ │ │ │ ├── tradeoffs.Rmd │ │ │ │ └── tradeoffs.html │ │ │ ├── help │ │ │ │ ├── AnIndex │ │ │ │ ├── aliases.rds │ │ │ │ ├── figures │ │ │ │ │ ├── exposition-1.png │ │ │ │ │ └── logo.png │ │ │ │ ├── magrittr.rdb │ │ │ │ ├── magrittr.rdx │ │ │ │ └── paths.rds │ │ │ ├── html │ │ │ │ ├── 00Index.html │ │ │ │ └── R.css │ │ │ ├── libs │ │ │ │ └── x64 │ │ │ │ │ ├── magrittr.dll │ │ │ │ │ └── symbols.rds │ │ │ ├── logo-hex.png │ │ │ ├── logo-hex.svg │ │ │ ├── logo.png │ │ │ └── logo.svg │ │ ├── memoise │ │ │ ├── DESCRIPTION │ │ │ ├── INDEX │ │ │ ├── LICENSE │ │ │ ├── MD5 │ │ │ ├── Meta │ │ │ │ ├── Rd.rds │ │ │ │ ├── features.rds │ │ │ │ ├── hsearch.rds │ │ │ │ ├── links.rds │ │ │ │ ├── nsInfo.rds │ │ │ │ └── package.rds │ │ │ ├── NAMESPACE │ │ │ ├── NEWS.md │ │ │ ├── R │ │ │ │ ├── memoise │ │ │ │ ├── memoise.rdb │ │ │ │ └── memoise.rdx │ │ │ ├── help │ │ │ │ ├── AnIndex │ │ │ │ ├── aliases.rds │ │ │ │ ├── memoise.rdb │ │ │ │ ├── memoise.rdx │ │ │ │ └── paths.rds │ │ │ └── html │ │ │ │ ├── 00Index.html │ │ │ │ └── R.css │ │ ├── mime │ │ │ ├── DESCRIPTION │ │ │ ├── INDEX │ │ │ ├── MD5 │ │ │ ├── Meta │ │ │ │ ├── Rd.rds │ │ │ │ ├── features.rds │ │ │ │ ├── hsearch.rds │ │ │ │ ├── links.rds │ │ │ │ ├── nsInfo.rds │ │ │ │ └── package.rds │ │ │ ├── NAMESPACE │ │ │ ├── NEWS.Rd │ │ │ ├── R │ │ │ │ ├── mime │ │ │ │ ├── mime.rdb │ │ │ │ └── mime.rdx │ │ │ ├── help │ │ │ │ ├── AnIndex │ │ │ │ ├── aliases.rds │ │ │ │ ├── mime.rdb │ │ │ │ ├── mime.rdx │ │ │ │ └── paths.rds │ │ │ ├── html │ │ │ │ ├── 00Index.html │ │ │ │ └── R.css │ │ │ └── libs │ │ │ │ └── x64 │ │ │ │ ├── mime.dll │ │ │ │ └── symbols.rds │ │ ├── promises │ │ │ ├── DESCRIPTION │ │ │ ├── INDEX │ │ │ ├── LICENSE │ │ │ ├── MD5 │ │ │ ├── Meta │ │ │ │ ├── Rd.rds │ │ │ │ ├── features.rds │ │ │ │ ├── hsearch.rds │ │ │ │ ├── links.rds │ │ │ │ ├── nsInfo.rds │ │ │ │ ├── package.rds │ │ │ │ └── vignette.rds │ │ │ ├── NAMESPACE │ │ │ ├── NEWS.md │ │ │ ├── R │ │ │ │ ├── promises │ │ │ │ ├── promises.rdb │ │ │ │ └── promises.rdx │ │ │ ├── WORDLIST │ │ │ ├── doc │ │ │ │ ├── index.html │ │ │ │ ├── promises_01_motivation.Rmd │ │ │ │ ├── promises_01_motivation.html │ │ │ │ ├── promises_02_intro.Rmd │ │ │ │ ├── promises_02_intro.html │ │ │ │ ├── promises_03_overview.Rmd │ │ │ │ ├── promises_03_overview.html │ │ │ │ ├── promises_04_futures.Rmd │ │ │ │ ├── promises_04_futures.html │ │ │ │ ├── promises_05_future_promise.R │ │ │ │ ├── promises_05_future_promise.Rmd │ │ │ │ ├── promises_05_future_promise.html │ │ │ │ ├── promises_06_shiny.Rmd │ │ │ │ ├── promises_06_shiny.html │ │ │ │ ├── promises_07_combining.Rmd │ │ │ │ ├── promises_07_combining.html │ │ │ │ ├── promises_08_casestudy.Rmd │ │ │ │ └── promises_08_casestudy.html │ │ │ ├── help │ │ │ │ ├── AnIndex │ │ │ │ ├── aliases.rds │ │ │ │ ├── figures │ │ │ │ │ ├── lifecycle-archived.svg │ │ │ │ │ ├── lifecycle-defunct.svg │ │ │ │ │ ├── lifecycle-deprecated.svg │ │ │ │ │ ├── lifecycle-experimental.svg │ │ │ │ │ ├── lifecycle-maturing.svg │ │ │ │ │ ├── lifecycle-questioning.svg │ │ │ │ │ ├── lifecycle-stable.svg │ │ │ │ │ └── lifecycle-superseded.svg │ │ │ │ ├── paths.rds │ │ │ │ ├── promises.rdb │ │ │ │ └── promises.rdx │ │ │ ├── html │ │ │ │ ├── 00Index.html │ │ │ │ └── R.css │ │ │ └── libs │ │ │ │ └── x64 │ │ │ │ ├── promises.dll │ │ │ │ └── symbols.rds │ │ ├── rappdirs │ │ │ ├── DESCRIPTION │ │ │ ├── INDEX │ │ │ ├── LICENSE │ │ │ ├── MD5 │ │ │ ├── Meta │ │ │ │ ├── Rd.rds │ │ │ │ ├── features.rds │ │ │ │ ├── hsearch.rds │ │ │ │ ├── links.rds │ │ │ │ ├── nsInfo.rds │ │ │ │ └── package.rds │ │ │ ├── NAMESPACE │ │ │ ├── NEWS.md │ │ │ ├── R │ │ │ │ ├── rappdirs │ │ │ │ ├── rappdirs.rdb │ │ │ │ └── rappdirs.rdx │ │ │ ├── help │ │ │ │ ├── AnIndex │ │ │ │ ├── aliases.rds │ │ │ │ ├── paths.rds │ │ │ │ ├── rappdirs.rdb │ │ │ │ └── rappdirs.rdx │ │ │ ├── html │ │ │ │ ├── 00Index.html │ │ │ │ └── R.css │ │ │ └── libs │ │ │ │ └── x64 │ │ │ │ ├── rappdirs.dll │ │ │ │ └── symbols.rds │ │ ├── rlang │ │ │ ├── DESCRIPTION │ │ │ ├── INDEX │ │ │ ├── LICENSE │ │ │ ├── MD5 │ │ │ ├── Meta │ │ │ │ ├── Rd.rds │ │ │ │ ├── features.rds │ │ │ │ ├── hsearch.rds │ │ │ │ ├── links.rds │ │ │ │ ├── nsInfo.rds │ │ │ │ └── package.rds │ │ │ ├── NAMESPACE │ │ │ ├── NEWS.md │ │ │ ├── R │ │ │ │ ├── rlang │ │ │ │ ├── rlang.rdb │ │ │ │ └── rlang.rdx │ │ │ ├── backtrace-ver │ │ │ ├── help │ │ │ │ ├── AnIndex │ │ │ │ ├── aliases.rds │ │ │ │ ├── figures │ │ │ │ │ ├── lifecycle-archived.svg │ │ │ │ │ ├── lifecycle-defunct.svg │ │ │ │ │ ├── lifecycle-deprecated.svg │ │ │ │ │ ├── lifecycle-experimental.svg │ │ │ │ │ ├── lifecycle-maturing.svg │ │ │ │ │ ├── lifecycle-questioning.svg │ │ │ │ │ ├── lifecycle-retired.svg │ │ │ │ │ ├── lifecycle-soft-deprecated.svg │ │ │ │ │ ├── lifecycle-stable.svg │ │ │ │ │ ├── lifecycle-superseded.svg │ │ │ │ │ └── logo.png │ │ │ │ ├── paths.rds │ │ │ │ ├── rlang.rdb │ │ │ │ └── rlang.rdx │ │ │ ├── html │ │ │ │ ├── 00Index.html │ │ │ │ └── R.css │ │ │ └── libs │ │ │ │ └── x64 │ │ │ │ ├── rlang.dll │ │ │ │ └── symbols.rds │ │ ├── sass │ │ │ ├── DESCRIPTION │ │ │ ├── INDEX │ │ │ ├── LICENSE │ │ │ ├── MD5 │ │ │ ├── Meta │ │ │ │ ├── Rd.rds │ │ │ │ ├── features.rds │ │ │ │ ├── hsearch.rds │ │ │ │ ├── links.rds │ │ │ │ ├── nsInfo.rds │ │ │ │ ├── package.rds │ │ │ │ └── vignette.rds │ │ │ ├── NAMESPACE │ │ │ ├── NEWS.md │ │ │ ├── R │ │ │ │ ├── sass │ │ │ │ ├── sass.rdb │ │ │ │ └── sass.rdx │ │ │ ├── doc │ │ │ │ ├── index.html │ │ │ │ ├── sass.R │ │ │ │ ├── sass.Rmd │ │ │ │ └── sass.html │ │ │ ├── examples │ │ │ │ ├── example-full.scss │ │ │ │ ├── rules.scss │ │ │ │ └── variables.scss │ │ │ ├── help │ │ │ │ ├── AnIndex │ │ │ │ ├── aliases.rds │ │ │ │ ├── figures │ │ │ │ │ ├── logo.svg │ │ │ │ │ └── sass-logo-color.png │ │ │ │ ├── paths.rds │ │ │ │ ├── sass.rdb │ │ │ │ └── sass.rdx │ │ │ ├── html │ │ │ │ ├── 00Index.html │ │ │ │ └── R.css │ │ │ ├── libs │ │ │ │ └── x64 │ │ │ │ │ ├── sass.dll │ │ │ │ │ └── symbols.rds │ │ │ ├── sass-color │ │ │ │ ├── DESCRIPTION │ │ │ │ ├── README.md │ │ │ │ ├── app.R │ │ │ │ └── rsconnect │ │ │ │ │ └── shinyapps.io │ │ │ │ │ └── gallery │ │ │ │ │ └── sass-color.dcf │ │ │ ├── sass-font │ │ │ │ ├── DESCRIPTION │ │ │ │ ├── README.md │ │ │ │ ├── app.R │ │ │ │ ├── rsconnect │ │ │ │ │ └── shinyapps.io │ │ │ │ │ │ └── gallery │ │ │ │ │ │ └── sass-font.dcf │ │ │ │ └── sass-font.scss │ │ │ ├── sass-size │ │ │ │ ├── DESCRIPTION │ │ │ │ ├── README.md │ │ │ │ ├── app.R │ │ │ │ ├── rsconnect │ │ │ │ │ └── shinyapps.io │ │ │ │ │ │ └── gallery │ │ │ │ │ │ └── sass-size.dcf │ │ │ │ └── sass-size.scss │ │ │ └── sass-theme │ │ │ │ ├── DESCRIPTION │ │ │ │ ├── README.md │ │ │ │ ├── app.R │ │ │ │ └── rsconnect │ │ │ │ └── shinyapps.io │ │ │ │ └── gallery │ │ │ │ └── sass-theme.dcf │ │ ├── shiny │ │ │ ├── DESCRIPTION │ │ │ ├── INDEX │ │ │ ├── LICENSE │ │ │ ├── MD5 │ │ │ ├── Meta │ │ │ │ ├── Rd.rds │ │ │ │ ├── features.rds │ │ │ │ ├── hsearch.rds │ │ │ │ ├── links.rds │ │ │ │ ├── nsInfo.rds │ │ │ │ └── package.rds │ │ │ ├── NAMESPACE │ │ │ ├── NEWS.md │ │ │ ├── R │ │ │ │ ├── shiny │ │ │ │ ├── shiny.rdb │ │ │ │ └── shiny.rdx │ │ │ ├── app_template │ │ │ │ ├── R │ │ │ │ │ ├── example-module.R │ │ │ │ │ └── example.R │ │ │ │ ├── app.R │ │ │ │ └── tests │ │ │ │ │ ├── testthat.R │ │ │ │ │ └── testthat │ │ │ │ │ ├── setup-shinytest2.R │ │ │ │ │ ├── test-examplemodule.R │ │ │ │ │ ├── test-server.R │ │ │ │ │ ├── test-shinytest2.R │ │ │ │ │ └── test-sort.R │ │ │ ├── diagrams │ │ │ │ ├── outputProgressStateMachine.drawio │ │ │ │ └── outputProgressStateMachine.svg │ │ │ ├── examples-shiny │ │ │ │ ├── 01_hello │ │ │ │ │ ├── DESCRIPTION │ │ │ │ │ ├── Readme.md │ │ │ │ │ └── app.R │ │ │ │ ├── 02_text │ │ │ │ │ ├── DESCRIPTION │ │ │ │ │ ├── Readme.md │ │ │ │ │ └── app.R │ │ │ │ ├── 03_reactivity │ │ │ │ │ ├── DESCRIPTION │ │ │ │ │ ├── Readme.md │ │ │ │ │ └── app.R │ │ │ │ ├── 04_mpg │ │ │ │ │ ├── DESCRIPTION │ │ │ │ │ ├── Readme.md │ │ │ │ │ └── app.R │ │ │ │ ├── 05_sliders │ │ │ │ │ ├── DESCRIPTION │ │ │ │ │ ├── Readme.md │ │ │ │ │ └── app.R │ │ │ │ ├── 06_tabsets │ │ │ │ │ ├── DESCRIPTION │ │ │ │ │ ├── Readme.md │ │ │ │ │ └── app.R │ │ │ │ ├── 07_widgets │ │ │ │ │ ├── DESCRIPTION │ │ │ │ │ ├── Readme.md │ │ │ │ │ └── app.R │ │ │ │ ├── 08_html │ │ │ │ │ ├── DESCRIPTION │ │ │ │ │ ├── Readme.md │ │ │ │ │ ├── app.R │ │ │ │ │ └── www │ │ │ │ │ │ └── index.html │ │ │ │ ├── 09_upload │ │ │ │ │ ├── DESCRIPTION │ │ │ │ │ ├── Readme.md │ │ │ │ │ └── app.R │ │ │ │ ├── 10_download │ │ │ │ │ ├── DESCRIPTION │ │ │ │ │ ├── Readme.md │ │ │ │ │ └── app.R │ │ │ │ └── 11_timer │ │ │ │ │ ├── DESCRIPTION │ │ │ │ │ ├── Readme.md │ │ │ │ │ └── app.R │ │ │ ├── examples │ │ │ │ ├── 01_hello │ │ │ │ │ ├── DESCRIPTION │ │ │ │ │ ├── Readme.md │ │ │ │ │ └── app.R │ │ │ │ ├── 02_text │ │ │ │ │ ├── DESCRIPTION │ │ │ │ │ ├── Readme.md │ │ │ │ │ └── app.R │ │ │ │ ├── 03_reactivity │ │ │ │ │ ├── DESCRIPTION │ │ │ │ │ ├── Readme.md │ │ │ │ │ └── app.R │ │ │ │ ├── 04_mpg │ │ │ │ │ ├── DESCRIPTION │ │ │ │ │ ├── Readme.md │ │ │ │ │ └── app.R │ │ │ │ ├── 05_sliders │ │ │ │ │ ├── DESCRIPTION │ │ │ │ │ ├── Readme.md │ │ │ │ │ └── app.R │ │ │ │ ├── 06_tabsets │ │ │ │ │ ├── DESCRIPTION │ │ │ │ │ ├── Readme.md │ │ │ │ │ └── app.R │ │ │ │ ├── 07_widgets │ │ │ │ │ ├── DESCRIPTION │ │ │ │ │ ├── Readme.md │ │ │ │ │ └── app.R │ │ │ │ ├── 09_upload │ │ │ │ │ ├── DESCRIPTION │ │ │ │ │ ├── Readme.md │ │ │ │ │ └── app.R │ │ │ │ ├── 10_download │ │ │ │ │ ├── DESCRIPTION │ │ │ │ │ ├── Readme.md │ │ │ │ │ └── app.R │ │ │ │ └── 11_timer │ │ │ │ │ ├── DESCRIPTION │ │ │ │ │ ├── Readme.md │ │ │ │ │ └── app.R │ │ │ ├── help │ │ │ │ ├── AnIndex │ │ │ │ ├── aliases.rds │ │ │ │ ├── figures │ │ │ │ │ ├── lifecycle-archived.svg │ │ │ │ │ ├── lifecycle-defunct.svg │ │ │ │ │ ├── lifecycle-deprecated.svg │ │ │ │ │ ├── lifecycle-experimental.svg │ │ │ │ │ ├── lifecycle-maturing.svg │ │ │ │ │ ├── lifecycle-questioning.svg │ │ │ │ │ ├── lifecycle-soft-deprecated.svg │ │ │ │ │ ├── lifecycle-stable.svg │ │ │ │ │ ├── lifecycle-superseded.svg │ │ │ │ │ └── logo.png │ │ │ │ ├── paths.rds │ │ │ │ ├── shiny.rdb │ │ │ │ └── shiny.rdx │ │ │ ├── html │ │ │ │ ├── 00Index.html │ │ │ │ └── R.css │ │ │ ├── template │ │ │ │ ├── default.html │ │ │ │ └── error.html │ │ │ ├── www-dir │ │ │ │ └── index.html │ │ │ └── www │ │ │ │ └── shared │ │ │ │ ├── bootstrap │ │ │ │ ├── accessibility │ │ │ │ │ ├── css │ │ │ │ │ │ └── bootstrap-accessibility.min.css │ │ │ │ │ └── js │ │ │ │ │ │ └── bootstrap-accessibility.min.js │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-theme.css │ │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ │ ├── bootstrap-theme.min.css.map │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ └── bootstrap.min.css.map │ │ │ │ ├── fonts │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ └── npm.js │ │ │ │ ├── busy-indicators │ │ │ │ ├── busy-indicators.css │ │ │ │ └── spinners │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── bars.svg │ │ │ │ │ ├── bars2.svg │ │ │ │ │ ├── bars3.svg │ │ │ │ │ ├── dots.svg │ │ │ │ │ ├── dots2.svg │ │ │ │ │ ├── dots3.svg │ │ │ │ │ ├── pulse.svg │ │ │ │ │ ├── pulse2.svg │ │ │ │ │ ├── pulse3.svg │ │ │ │ │ ├── ring.svg │ │ │ │ │ ├── ring2.svg │ │ │ │ │ └── ring3.svg │ │ │ │ ├── datatables │ │ │ │ ├── css │ │ │ │ │ └── dataTables.bootstrap.css │ │ │ │ ├── images │ │ │ │ │ ├── sort_asc.png │ │ │ │ │ ├── sort_asc_disabled.png │ │ │ │ │ ├── sort_both.png │ │ │ │ │ ├── sort_desc.png │ │ │ │ │ └── sort_desc_disabled.png │ │ │ │ ├── js │ │ │ │ │ ├── dataTables.bootstrap.js │ │ │ │ │ └── jquery.dataTables.min.js │ │ │ │ └── upgrade1.10.txt │ │ │ │ ├── datepicker │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-datepicker3.css │ │ │ │ │ └── bootstrap-datepicker3.min.css │ │ │ │ ├── js │ │ │ │ │ ├── bootstrap-datepicker.js │ │ │ │ │ ├── bootstrap-datepicker.min.js │ │ │ │ │ └── locales │ │ │ │ │ │ ├── bootstrap-datepicker-en-CA.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.ar-tn.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.ar.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.az.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.bg.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.bm.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.bn.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.br.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.bs.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.ca.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.cs.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.cy.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.da.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.de.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.el.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.en-AU.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.en-CA.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.en-GB.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.en-IE.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.en-NZ.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.en-ZA.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.eo.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.es.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.et.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.eu.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.fa.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.fi.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.fo.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.fr-CH.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.fr.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.gl.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.he.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.hi.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.hr.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.hu.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.hy.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.id.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.is.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.it-CH.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.it.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.ja.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.ka.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.kh.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.kk.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.km.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.ko.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.kr.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.lt.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.lv.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.me.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.mk.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.mn.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.ms.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.nl-BE.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.nl.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.no.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.oc.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.pl.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.pt-BR.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.pt.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.ro.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.rs-latin.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.rs.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.ru.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.si.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.sk.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.sl.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.sq.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.sr-latin.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.sr.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.sv.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.sw.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.ta.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.tg.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.th.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.tk.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.tr.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.uk.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.uz-cyrl.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.uz-latn.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.vi.min.js │ │ │ │ │ │ ├── bootstrap-datepicker.zh-CN.min.js │ │ │ │ │ │ └── bootstrap-datepicker.zh-TW.min.js │ │ │ │ └── scss │ │ │ │ │ ├── build3.scss │ │ │ │ │ └── datepicker3.scss │ │ │ │ ├── highlight │ │ │ │ ├── LICENSE │ │ │ │ ├── classref.txt │ │ │ │ ├── highlight.pack.js │ │ │ │ └── rstudio.css │ │ │ │ ├── ionrangeslider │ │ │ │ ├── css │ │ │ │ │ └── ion.rangeSlider.css │ │ │ │ ├── js │ │ │ │ │ ├── ion.rangeSlider.js │ │ │ │ │ └── ion.rangeSlider.min.js │ │ │ │ └── scss │ │ │ │ │ ├── _base.scss │ │ │ │ │ ├── _mixins.scss │ │ │ │ │ └── shiny.scss │ │ │ │ ├── jquery-AUTHORS.txt │ │ │ │ ├── jquery.js │ │ │ │ ├── jquery.min.js │ │ │ │ ├── jquery.min.js.map │ │ │ │ ├── jqueryui │ │ │ │ ├── AUTHORS.txt │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── images │ │ │ │ │ ├── ui-icons_444444_256x240.png │ │ │ │ │ ├── ui-icons_555555_256x240.png │ │ │ │ │ ├── ui-icons_777620_256x240.png │ │ │ │ │ ├── ui-icons_777777_256x240.png │ │ │ │ │ ├── ui-icons_cc0000_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── index.html │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.js │ │ │ │ ├── jquery-ui.min.css │ │ │ │ ├── jquery-ui.min.js │ │ │ │ ├── jquery-ui.structure.css │ │ │ │ ├── jquery-ui.structure.min.css │ │ │ │ ├── jquery-ui.theme.css │ │ │ │ └── jquery-ui.theme.min.css │ │ │ │ ├── legacy │ │ │ │ ├── jquery-AUTHORS.txt │ │ │ │ ├── jquery.js │ │ │ │ ├── jquery.min.js │ │ │ │ └── jquery.min.map │ │ │ │ ├── selectize │ │ │ │ ├── accessibility │ │ │ │ │ └── js │ │ │ │ │ │ ├── selectize-plugin-a11y.js │ │ │ │ │ │ └── selectize-plugin-a11y.min.js │ │ │ │ ├── css │ │ │ │ │ └── selectize.bootstrap3.css │ │ │ │ ├── js │ │ │ │ │ ├── selectize.js │ │ │ │ │ └── selectize.min.js │ │ │ │ └── scss │ │ │ │ │ ├── plugins │ │ │ │ │ ├── auto_position.scss │ │ │ │ │ ├── clear_button.scss │ │ │ │ │ ├── drag_drop.scss │ │ │ │ │ ├── dropdown_header.scss │ │ │ │ │ ├── optgroup_columns.scss │ │ │ │ │ └── remove_button.scss │ │ │ │ │ ├── selectize.bootstrap3.scss │ │ │ │ │ ├── selectize.bootstrap4.scss │ │ │ │ │ ├── selectize.bootstrap5.scss │ │ │ │ │ ├── selectize.default.scss │ │ │ │ │ └── selectize.scss │ │ │ │ ├── shiny-autoreload.js │ │ │ │ ├── shiny-autoreload.js.map │ │ │ │ ├── shiny-showcase.css │ │ │ │ ├── shiny-showcase.js │ │ │ │ ├── shiny-showcase.js.map │ │ │ │ ├── shiny-testmode.js │ │ │ │ ├── shiny-testmode.js.map │ │ │ │ ├── shiny.js │ │ │ │ ├── shiny.js.map │ │ │ │ ├── shiny.min.css │ │ │ │ ├── shiny.min.js │ │ │ │ ├── shiny.min.js.map │ │ │ │ ├── shiny_scss │ │ │ │ ├── shiny.bootstrap3.scss │ │ │ │ ├── shiny.bootstrap4.scss │ │ │ │ ├── shiny.bootstrap5.scss │ │ │ │ └── shiny.scss │ │ │ │ ├── showdown │ │ │ │ ├── compressed │ │ │ │ │ └── showdown.js │ │ │ │ ├── license.txt │ │ │ │ └── src │ │ │ │ │ └── showdown.js │ │ │ │ └── strftime │ │ │ │ └── strftime-min.js │ │ ├── sourcetools │ │ │ ├── DESCRIPTION │ │ │ ├── INDEX │ │ │ ├── LICENSE │ │ │ ├── MD5 │ │ │ ├── Meta │ │ │ │ ├── Rd.rds │ │ │ │ ├── features.rds │ │ │ │ ├── hsearch.rds │ │ │ │ ├── links.rds │ │ │ │ ├── nsInfo.rds │ │ │ │ └── package.rds │ │ │ ├── NAMESPACE │ │ │ ├── NEWS.md │ │ │ ├── R │ │ │ │ ├── sourcetools │ │ │ │ ├── sourcetools.rdb │ │ │ │ └── sourcetools.rdx │ │ │ ├── help │ │ │ │ ├── AnIndex │ │ │ │ ├── aliases.rds │ │ │ │ ├── paths.rds │ │ │ │ ├── sourcetools.rdb │ │ │ │ └── sourcetools.rdx │ │ │ ├── html │ │ │ │ ├── 00Index.html │ │ │ │ └── R.css │ │ │ ├── include │ │ │ │ ├── sourcetools.h │ │ │ │ └── sourcetools │ │ │ │ │ ├── collection │ │ │ │ │ ├── Position.h │ │ │ │ │ ├── Range.h │ │ │ │ │ └── collection.h │ │ │ │ │ ├── core │ │ │ │ │ ├── core.h │ │ │ │ │ ├── macros.h │ │ │ │ │ └── util.h │ │ │ │ │ ├── cursor │ │ │ │ │ ├── TextCursor.h │ │ │ │ │ ├── TokenCursor.h │ │ │ │ │ └── cursor.h │ │ │ │ │ ├── multibyte │ │ │ │ │ └── multibyte.h │ │ │ │ │ ├── platform │ │ │ │ │ └── platform.h │ │ │ │ │ ├── r │ │ │ │ │ ├── RCallRecurser.h │ │ │ │ │ ├── RConverter.h │ │ │ │ │ ├── RFunctions.h │ │ │ │ │ ├── RHeaders.h │ │ │ │ │ ├── RNonStandardEvaluation.h │ │ │ │ │ ├── RUtils.h │ │ │ │ │ └── r.h │ │ │ │ │ ├── read │ │ │ │ │ ├── MemoryMappedReader.h │ │ │ │ │ ├── posix │ │ │ │ │ │ ├── FileConnection.h │ │ │ │ │ │ └── MemoryMappedConnection.h │ │ │ │ │ ├── read.h │ │ │ │ │ └── windows │ │ │ │ │ │ ├── FileConnection.h │ │ │ │ │ │ └── MemoryMappedConnection.h │ │ │ │ │ ├── tests │ │ │ │ │ └── testthat.h │ │ │ │ │ ├── tokenization │ │ │ │ │ ├── Registration.h │ │ │ │ │ ├── Token.h │ │ │ │ │ ├── Tokenizer.h │ │ │ │ │ └── tokenization.h │ │ │ │ │ └── utf8 │ │ │ │ │ └── utf8.h │ │ │ └── libs │ │ │ │ └── x64 │ │ │ │ ├── sourcetools.dll │ │ │ │ └── symbols.rds │ │ ├── withr │ │ │ ├── DESCRIPTION │ │ │ ├── INDEX │ │ │ ├── LICENSE │ │ │ ├── MD5 │ │ │ ├── Meta │ │ │ │ ├── Rd.rds │ │ │ │ ├── features.rds │ │ │ │ ├── hsearch.rds │ │ │ │ ├── links.rds │ │ │ │ ├── nsInfo.rds │ │ │ │ ├── package.rds │ │ │ │ └── vignette.rds │ │ │ ├── NAMESPACE │ │ │ ├── NEWS.md │ │ │ ├── R │ │ │ │ ├── withr │ │ │ │ ├── withr.rdb │ │ │ │ └── withr.rdx │ │ │ ├── doc │ │ │ │ ├── index.html │ │ │ │ ├── withr.R │ │ │ │ ├── withr.Rmd │ │ │ │ └── withr.html │ │ │ ├── help │ │ │ │ ├── AnIndex │ │ │ │ ├── aliases.rds │ │ │ │ ├── figures │ │ │ │ │ ├── README-unnamed-chunk-3-1.png │ │ │ │ │ ├── lifecycle-archived.svg │ │ │ │ │ ├── lifecycle-defunct.svg │ │ │ │ │ ├── lifecycle-deprecated.svg │ │ │ │ │ ├── lifecycle-experimental.svg │ │ │ │ │ ├── lifecycle-maturing.svg │ │ │ │ │ ├── lifecycle-questioning.svg │ │ │ │ │ ├── lifecycle-soft-deprecated.svg │ │ │ │ │ ├── lifecycle-stable.svg │ │ │ │ │ ├── lifecycle-superseded.svg │ │ │ │ │ └── logo.png │ │ │ │ ├── paths.rds │ │ │ │ ├── withr.rdb │ │ │ │ └── withr.rdx │ │ │ └── html │ │ │ │ ├── 00Index.html │ │ │ │ └── R.css │ │ ├── xplorerr │ │ │ ├── DESCRIPTION │ │ │ ├── INDEX │ │ │ ├── LICENSE │ │ │ ├── Meta │ │ │ │ ├── Rd.rds │ │ │ │ ├── data.rds │ │ │ │ ├── features.rds │ │ │ │ ├── hsearch.rds │ │ │ │ ├── links.rds │ │ │ │ ├── nsInfo.rds │ │ │ │ └── package.rds │ │ │ ├── NAMESPACE │ │ │ ├── NEWS.md │ │ │ ├── R │ │ │ │ ├── xplorerr │ │ │ │ ├── xplorerr.rdb │ │ │ │ └── xplorerr.rdx │ │ │ ├── app-blorr │ │ │ │ ├── logic │ │ │ │ │ ├── logic_bivar.R │ │ │ │ │ ├── logic_dataoptions.R │ │ │ │ │ ├── logic_exit_button.R │ │ │ │ │ ├── logic_filter.R │ │ │ │ │ ├── logic_home.R │ │ │ │ │ ├── logic_partition.R │ │ │ │ │ ├── logic_regress.R │ │ │ │ │ ├── logic_residual_diagnostics.R │ │ │ │ │ ├── logic_sample.R │ │ │ │ │ ├── logic_screen.R │ │ │ │ │ ├── logic_select.R │ │ │ │ │ ├── logic_transform2.R │ │ │ │ │ ├── logic_upload.R │ │ │ │ │ ├── logic_validation.R │ │ │ │ │ ├── logic_varsel.R │ │ │ │ │ └── logic_view.R │ │ │ │ ├── mystyle.css │ │ │ │ ├── server.R │ │ │ │ ├── styles.css │ │ │ │ ├── ui.R │ │ │ │ ├── ui │ │ │ │ │ ├── ui_2way_segment.R │ │ │ │ │ ├── ui_analyze.R │ │ │ │ │ ├── ui_bivar.R │ │ │ │ │ ├── ui_bivar_analysis.R │ │ │ │ │ ├── ui_conf_matrix.R │ │ │ │ │ ├── ui_data.R │ │ │ │ │ ├── ui_datafiles.R │ │ │ │ │ ├── ui_dataoptions.R │ │ │ │ │ ├── ui_datasamples.R │ │ │ │ │ ├── ui_dfbetas_panel.R │ │ │ │ │ ├── ui_diag_fit.R │ │ │ │ │ ├── ui_diag_influence.R │ │ │ │ │ ├── ui_diag_leverage.R │ │ │ │ │ ├── ui_exit_button.R │ │ │ │ │ ├── ui_filter.R │ │ │ │ │ ├── ui_gains_table.R │ │ │ │ │ ├── ui_homes.R │ │ │ │ │ ├── ui_hoslem_test.R │ │ │ │ │ ├── ui_ks_chart.R │ │ │ │ │ ├── ui_lorenz_curve.R │ │ │ │ │ ├── ui_mlr.R │ │ │ │ │ ├── ui_model_fit_stats.R │ │ │ │ │ ├── ui_model_home.R │ │ │ │ │ ├── ui_multi_model_fit_stats.R │ │ │ │ │ ├── ui_partition.R │ │ │ │ │ ├── ui_regress.R │ │ │ │ │ ├── ui_resid_diag.R │ │ │ │ │ ├── ui_roc_curve.R │ │ │ │ │ ├── ui_sample.R │ │ │ │ │ ├── ui_scr.R │ │ │ │ │ ├── ui_screen.R │ │ │ │ │ ├── ui_segment.R │ │ │ │ │ ├── ui_segment_dist.R │ │ │ │ │ ├── ui_seldata.R │ │ │ │ │ ├── ui_select.R │ │ │ │ │ ├── ui_trans.R │ │ │ │ │ ├── ui_transform2.R │ │ │ │ │ ├── ui_up.R │ │ │ │ │ ├── ui_valid.R │ │ │ │ │ ├── ui_varsel.R │ │ │ │ │ ├── ui_varsel_backward.R │ │ │ │ │ ├── ui_varsel_forward.R │ │ │ │ │ ├── ui_varsel_stepwise.R │ │ │ │ │ ├── ui_vi.R │ │ │ │ │ ├── ui_view.R │ │ │ │ │ ├── ui_woe_iv.R │ │ │ │ │ └── ui_woe_iv_stats.R │ │ │ │ └── www │ │ │ │ │ └── main.png │ │ │ ├── app-descriptr │ │ │ │ ├── logic │ │ │ │ │ ├── logic_cross.R │ │ │ │ │ ├── logic_dataoptions.R │ │ │ │ │ ├── logic_exit_button.R │ │ │ │ │ ├── logic_filter.R │ │ │ │ │ ├── logic_freq_qual.R │ │ │ │ │ ├── logic_freq_quant.R │ │ │ │ │ ├── logic_group_summary.R │ │ │ │ │ ├── logic_home.R │ │ │ │ │ ├── logic_mult1.R │ │ │ │ │ ├── logic_mult2.R │ │ │ │ │ ├── logic_screen.R │ │ │ │ │ ├── logic_select.R │ │ │ │ │ ├── logic_summary.R │ │ │ │ │ ├── logic_transform2.R │ │ │ │ │ ├── logic_upload.R │ │ │ │ │ └── logic_view.R │ │ │ │ ├── mystyle.css │ │ │ │ ├── server.R │ │ │ │ ├── styles.css │ │ │ │ ├── ui.R │ │ │ │ ├── ui │ │ │ │ │ ├── ui_analyze.R │ │ │ │ │ ├── ui_cross.R │ │ │ │ │ ├── ui_data.R │ │ │ │ │ ├── ui_datafiles.R │ │ │ │ │ ├── ui_dataoptions.R │ │ │ │ │ ├── ui_datasamples.R │ │ │ │ │ ├── ui_eda.R │ │ │ │ │ ├── ui_eda_home.R │ │ │ │ │ ├── ui_exit_button.R │ │ │ │ │ ├── ui_f.R │ │ │ │ │ ├── ui_filter.R │ │ │ │ │ ├── ui_freq_qual.R │ │ │ │ │ ├── ui_freq_quant.R │ │ │ │ │ ├── ui_group_summary.R │ │ │ │ │ ├── ui_mult1.R │ │ │ │ │ ├── ui_mult2.R │ │ │ │ │ ├── ui_scr.R │ │ │ │ │ ├── ui_screen.R │ │ │ │ │ ├── ui_sel.R │ │ │ │ │ ├── ui_seldata.R │ │ │ │ │ ├── ui_select.R │ │ │ │ │ ├── ui_summary.R │ │ │ │ │ ├── ui_trans.R │ │ │ │ │ ├── ui_transform2.R │ │ │ │ │ ├── ui_up.R │ │ │ │ │ ├── ui_vi.R │ │ │ │ │ └── ui_view.R │ │ │ │ └── www │ │ │ │ │ ├── normal.png │ │ │ │ │ └── summary1.png │ │ │ ├── app-inferr │ │ │ │ ├── logic │ │ │ │ │ ├── logic_anova.R │ │ │ │ │ ├── logic_binomtest.R │ │ │ │ │ ├── logic_chict.R │ │ │ │ │ ├── logic_chigof.R │ │ │ │ │ ├── logic_cochran.R │ │ │ │ │ ├── logic_dataoptions.R │ │ │ │ │ ├── logic_exit_button.R │ │ │ │ │ ├── logic_filter.R │ │ │ │ │ ├── logic_home.R │ │ │ │ │ ├── logic_itest.R │ │ │ │ │ ├── logic_levene.R │ │ │ │ │ ├── logic_mcnemar.R │ │ │ │ │ ├── logic_osprop.R │ │ │ │ │ ├── logic_osvar.R │ │ │ │ │ ├── logic_ptest.R │ │ │ │ │ ├── logic_runs.R │ │ │ │ │ ├── logic_screen.R │ │ │ │ │ ├── logic_select.R │ │ │ │ │ ├── logic_transform2.R │ │ │ │ │ ├── logic_tsprop.R │ │ │ │ │ ├── logic_tsvar.R │ │ │ │ │ ├── logic_ttest.R │ │ │ │ │ ├── logic_upload.R │ │ │ │ │ └── logic_view.R │ │ │ │ ├── mystyle.css │ │ │ │ ├── server.R │ │ │ │ ├── styles.css │ │ │ │ ├── ui.R │ │ │ │ ├── ui │ │ │ │ │ ├── ui_analyze.R │ │ │ │ │ ├── ui_anova.R │ │ │ │ │ ├── ui_binomtest.R │ │ │ │ │ ├── ui_chict.R │ │ │ │ │ ├── ui_chigof.R │ │ │ │ │ ├── ui_cochran.R │ │ │ │ │ ├── ui_data.R │ │ │ │ │ ├── ui_datafiles.R │ │ │ │ │ ├── ui_dataoptions.R │ │ │ │ │ ├── ui_datasamples.R │ │ │ │ │ ├── ui_exit_button.R │ │ │ │ │ ├── ui_filter.R │ │ │ │ │ ├── ui_homes.R │ │ │ │ │ ├── ui_indttest.R │ │ │ │ │ ├── ui_infer1_home.R │ │ │ │ │ ├── ui_infer2_home.R │ │ │ │ │ ├── ui_infer3_home.R │ │ │ │ │ ├── ui_infer_home.R │ │ │ │ │ ├── ui_inference.R │ │ │ │ │ ├── ui_levene.R │ │ │ │ │ ├── ui_mcnemar.R │ │ │ │ │ ├── ui_osprop.R │ │ │ │ │ ├── ui_osvar.R │ │ │ │ │ ├── ui_ptest.R │ │ │ │ │ ├── ui_runs.R │ │ │ │ │ ├── ui_scr.R │ │ │ │ │ ├── ui_screen.R │ │ │ │ │ ├── ui_sel.R │ │ │ │ │ ├── ui_seldata.R │ │ │ │ │ ├── ui_select.R │ │ │ │ │ ├── ui_trans.R │ │ │ │ │ ├── ui_transform2.R │ │ │ │ │ ├── ui_tsprop.R │ │ │ │ │ ├── ui_tsvar.R │ │ │ │ │ ├── ui_ttest.R │ │ │ │ │ ├── ui_up.R │ │ │ │ │ ├── ui_vi.R │ │ │ │ │ └── ui_view.R │ │ │ │ ├── xpl-format.R │ │ │ │ ├── xpl-helpers.R │ │ │ │ └── xpl-output.R │ │ │ ├── app-olsrr │ │ │ │ ├── logic │ │ │ │ │ ├── logic_collin.R │ │ │ │ │ ├── logic_dataoptions.R │ │ │ │ │ ├── logic_exit_button.R │ │ │ │ │ ├── logic_filter.R │ │ │ │ │ ├── logic_hetero.R │ │ │ │ │ ├── logic_home.R │ │ │ │ │ ├── logic_inflobs2.R │ │ │ │ │ ├── logic_mfit2.R │ │ │ │ │ ├── logic_mselection2.R │ │ │ │ │ ├── logic_partition.R │ │ │ │ │ ├── logic_regdiag.R │ │ │ │ │ ├── logic_regress.R │ │ │ │ │ ├── logic_resdiagtrial.R │ │ │ │ │ ├── logic_sample.R │ │ │ │ │ ├── logic_screen.R │ │ │ │ │ ├── logic_select.R │ │ │ │ │ ├── logic_transform2.R │ │ │ │ │ ├── logic_upload.R │ │ │ │ │ └── logic_view.R │ │ │ │ ├── mystyle.css │ │ │ │ ├── server.R │ │ │ │ ├── styles.css │ │ │ │ ├── ui.R │ │ │ │ └── ui │ │ │ │ │ ├── ui_analyze.R │ │ │ │ │ ├── ui_collin.R │ │ │ │ │ ├── ui_data.R │ │ │ │ │ ├── ui_datafiles.R │ │ │ │ │ ├── ui_dataoptions.R │ │ │ │ │ ├── ui_datasamples.R │ │ │ │ │ ├── ui_exit_button.R │ │ │ │ │ ├── ui_filter.R │ │ │ │ │ ├── ui_hetero.R │ │ │ │ │ ├── ui_home.R │ │ │ │ │ ├── ui_homes.R │ │ │ │ │ ├── ui_inflobs2.R │ │ │ │ │ ├── ui_mfit2.R │ │ │ │ │ ├── ui_mlr.R │ │ │ │ │ ├── ui_model_home.R │ │ │ │ │ ├── ui_mselection2.R │ │ │ │ │ ├── ui_partition.R │ │ │ │ │ ├── ui_regdiag.R │ │ │ │ │ ├── ui_regress.R │ │ │ │ │ ├── ui_resdiagtrial.R │ │ │ │ │ ├── ui_sample.R │ │ │ │ │ ├── ui_scr.R │ │ │ │ │ ├── ui_screen.R │ │ │ │ │ ├── ui_sel.R │ │ │ │ │ ├── ui_seldata.R │ │ │ │ │ ├── ui_select.R │ │ │ │ │ ├── ui_trans.R │ │ │ │ │ ├── ui_transform2.R │ │ │ │ │ ├── ui_up.R │ │ │ │ │ ├── ui_vi.R │ │ │ │ │ └── ui_view.R │ │ │ ├── app-rfm │ │ │ │ ├── logic │ │ │ │ │ ├── logic_dataoptions.R │ │ │ │ │ ├── logic_exit_button.R │ │ │ │ │ ├── logic_home.R │ │ │ │ │ ├── logic_rfm_score.R │ │ │ │ │ ├── logic_screen.R │ │ │ │ │ ├── logic_segments.R │ │ │ │ │ ├── logic_select.R │ │ │ │ │ ├── logic_transform2.R │ │ │ │ │ ├── logic_upload.R │ │ │ │ │ ├── logic_view.R │ │ │ │ │ └── ui_rfm_home.R │ │ │ │ ├── mystyle.css │ │ │ │ ├── server.R │ │ │ │ ├── styles.css │ │ │ │ ├── ui.R │ │ │ │ ├── ui │ │ │ │ │ ├── ui_analyze.R │ │ │ │ │ ├── ui_average_frequency.R │ │ │ │ │ ├── ui_average_monetary.R │ │ │ │ │ ├── ui_average_recency.R │ │ │ │ │ ├── ui_data.R │ │ │ │ │ ├── ui_datafiles.R │ │ │ │ │ ├── ui_dataoptions.R │ │ │ │ │ ├── ui_datasamples.R │ │ │ │ │ ├── ui_exit_button.R │ │ │ │ │ ├── ui_home.R │ │ │ │ │ ├── ui_rfm.R │ │ │ │ │ ├── ui_rfm_bar_chart.R │ │ │ │ │ ├── ui_rfm_customer_1.R │ │ │ │ │ ├── ui_rfm_customer_2.R │ │ │ │ │ ├── ui_rfm_heat_map.R │ │ │ │ │ ├── ui_rfm_histogram.R │ │ │ │ │ ├── ui_rfm_home.R │ │ │ │ │ ├── ui_rfm_scatter_plot.R │ │ │ │ │ ├── ui_rfm_score_transaction.R │ │ │ │ │ ├── ui_scr.R │ │ │ │ │ ├── ui_screen.R │ │ │ │ │ ├── ui_segment.R │ │ │ │ │ ├── ui_segment_size.R │ │ │ │ │ ├── ui_segments.R │ │ │ │ │ ├── ui_seldata.R │ │ │ │ │ ├── ui_select.R │ │ │ │ │ ├── ui_trans.R │ │ │ │ │ ├── ui_transform2.R │ │ │ │ │ ├── ui_up.R │ │ │ │ │ ├── ui_vi.R │ │ │ │ │ ├── ui_view.R │ │ │ │ │ └── ui_welcome.R │ │ │ │ └── www │ │ │ │ │ ├── rfm_main.jpg │ │ │ │ │ └── rfm_main.png │ │ │ ├── app-vistributions │ │ │ │ ├── logic │ │ │ │ │ ├── logic_binom.R │ │ │ │ │ ├── logic_chisq.R │ │ │ │ │ ├── logic_exit_button.R │ │ │ │ │ ├── logic_f.R │ │ │ │ │ ├── logic_home.R │ │ │ │ │ ├── logic_norm.R │ │ │ │ │ └── logic_t.R │ │ │ │ ├── mystyle.css │ │ │ │ ├── server.R │ │ │ │ ├── styles.css │ │ │ │ ├── ui.R │ │ │ │ ├── ui │ │ │ │ │ ├── ui_analyze.R │ │ │ │ │ ├── ui_binom.R │ │ │ │ │ ├── ui_chisq.R │ │ │ │ │ ├── ui_dist.R │ │ │ │ │ ├── ui_dist_home.R │ │ │ │ │ ├── ui_exit_button.R │ │ │ │ │ ├── ui_f.R │ │ │ │ │ ├── ui_homes.R │ │ │ │ │ ├── ui_normal.R │ │ │ │ │ └── ui_t.R │ │ │ │ └── www │ │ │ │ │ ├── normal.png │ │ │ │ │ └── summary1.png │ │ │ ├── app-visualize │ │ │ │ ├── helper │ │ │ │ │ ├── barly1.R │ │ │ │ │ ├── barly2.R │ │ │ │ │ ├── bbar-plot.R │ │ │ │ │ ├── bbox-plot.R │ │ │ │ │ ├── bibar.R │ │ │ │ │ ├── boxly1.R │ │ │ │ │ ├── boxly2.R │ │ │ │ │ ├── freq-cont.R │ │ │ │ │ ├── ggbibar.R │ │ │ │ │ ├── ggbox1.R │ │ │ │ │ ├── ggbox2.R │ │ │ │ │ ├── gghist.R │ │ │ │ │ ├── ggline.R │ │ │ │ │ ├── ggline2.R │ │ │ │ │ ├── ggpie.R │ │ │ │ │ ├── ggscatter.R │ │ │ │ │ ├── ggunibar.R │ │ │ │ │ ├── hibox2.R │ │ │ │ │ ├── highhist.R │ │ │ │ │ ├── highline.R │ │ │ │ │ ├── highpie.R │ │ │ │ │ ├── histly.R │ │ │ │ │ ├── histogram.R │ │ │ │ │ ├── hscatter.R │ │ │ │ │ ├── line-plot.R │ │ │ │ │ ├── linely.R │ │ │ │ │ ├── output.R │ │ │ │ │ ├── pie-plot.R │ │ │ │ │ ├── pie3d-plot.R │ │ │ │ │ ├── piely.R │ │ │ │ │ ├── scatter-plot.R │ │ │ │ │ ├── scatterly.R │ │ │ │ │ ├── ubar_plot.R │ │ │ │ │ ├── ubox-plot.R │ │ │ │ │ ├── unibar.R │ │ │ │ │ └── utils.R │ │ │ │ ├── logic │ │ │ │ │ ├── logic_bar.R │ │ │ │ │ ├── logic_bar2.R │ │ │ │ │ ├── logic_bar_plot_1.R │ │ │ │ │ ├── logic_bar_plot_2.R │ │ │ │ │ ├── logic_box.R │ │ │ │ │ ├── logic_box2.R │ │ │ │ │ ├── logic_box_plot_1.R │ │ │ │ │ ├── logic_box_plot_2.R │ │ │ │ │ ├── logic_dataoptions.R │ │ │ │ │ ├── logic_exit_button.R │ │ │ │ │ ├── logic_filter.R │ │ │ │ │ ├── logic_gbar.R │ │ │ │ │ ├── logic_gbar2.R │ │ │ │ │ ├── logic_gbox.R │ │ │ │ │ ├── logic_gbox2.R │ │ │ │ │ ├── logic_ghist.R │ │ │ │ │ ├── logic_gline.R │ │ │ │ │ ├── logic_gline2.R │ │ │ │ │ ├── logic_gpie.R │ │ │ │ │ ├── logic_gscatter.R │ │ │ │ │ ├── logic_hist.R │ │ │ │ │ ├── logic_hist_prh.R │ │ │ │ │ ├── logic_home.R │ │ │ │ │ ├── logic_line.R │ │ │ │ │ ├── logic_line_prh.R │ │ │ │ │ ├── logic_pie.R │ │ │ │ │ ├── logic_pie3d.R │ │ │ │ │ ├── logic_pie_prh.R │ │ │ │ │ ├── logic_scatter.R │ │ │ │ │ ├── logic_scatter_prh.R │ │ │ │ │ ├── logic_screen.R │ │ │ │ │ ├── logic_select.R │ │ │ │ │ ├── logic_transform2.R │ │ │ │ │ ├── logic_upload.R │ │ │ │ │ ├── logic_view.R │ │ │ │ │ └── logic_vizlib.R │ │ │ │ ├── mystyle.css │ │ │ │ ├── server.R │ │ │ │ ├── styles.css │ │ │ │ ├── ui.R │ │ │ │ ├── ui │ │ │ │ │ ├── ui_bar.R │ │ │ │ │ ├── ui_bar2.R │ │ │ │ │ ├── ui_bar_plot_1.R │ │ │ │ │ ├── ui_bar_plot_2.R │ │ │ │ │ ├── ui_base.R │ │ │ │ │ ├── ui_box.R │ │ │ │ │ ├── ui_box2.R │ │ │ │ │ ├── ui_box_plot_1.R │ │ │ │ │ ├── ui_box_plot_2.R │ │ │ │ │ ├── ui_data.R │ │ │ │ │ ├── ui_datafiles.R │ │ │ │ │ ├── ui_dataoptions.R │ │ │ │ │ ├── ui_datasamples.R │ │ │ │ │ ├── ui_exit_button.R │ │ │ │ │ ├── ui_filter.R │ │ │ │ │ ├── ui_gbar.R │ │ │ │ │ ├── ui_gbar2.R │ │ │ │ │ ├── ui_gbox.R │ │ │ │ │ ├── ui_gbox2.R │ │ │ │ │ ├── ui_ggplot.R │ │ │ │ │ ├── ui_ghist.R │ │ │ │ │ ├── ui_gline.R │ │ │ │ │ ├── ui_gline2.R │ │ │ │ │ ├── ui_gpie.R │ │ │ │ │ ├── ui_gscatter.R │ │ │ │ │ ├── ui_hist.R │ │ │ │ │ ├── ui_hist_prh.R │ │ │ │ │ ├── ui_home.R │ │ │ │ │ ├── ui_homes.R │ │ │ │ │ ├── ui_line.R │ │ │ │ │ ├── ui_line_prh.R │ │ │ │ │ ├── ui_others.R │ │ │ │ │ ├── ui_pie.R │ │ │ │ │ ├── ui_pie3d.R │ │ │ │ │ ├── ui_pie_prh.R │ │ │ │ │ ├── ui_scatter.R │ │ │ │ │ ├── ui_scatter_prh.R │ │ │ │ │ ├── ui_scr.R │ │ │ │ │ ├── ui_screen.R │ │ │ │ │ ├── ui_sel.R │ │ │ │ │ ├── ui_seldata.R │ │ │ │ │ ├── ui_select.R │ │ │ │ │ ├── ui_trans.R │ │ │ │ │ ├── ui_transform2.R │ │ │ │ │ ├── ui_up.R │ │ │ │ │ ├── ui_vi.R │ │ │ │ │ ├── ui_view.R │ │ │ │ │ ├── ui_visualize.R │ │ │ │ │ ├── ui_viz_base.R │ │ │ │ │ ├── ui_viz_gg.R │ │ │ │ │ ├── ui_viz_others.R │ │ │ │ │ ├── ui_vizhome.R │ │ │ │ │ ├── ui_vizlib.R │ │ │ │ │ └── ui_vizmenu.R │ │ │ │ └── www │ │ │ │ │ ├── Rlogonew.png │ │ │ │ │ ├── bokeh_logo.png │ │ │ │ │ ├── ggplot2_logo.png │ │ │ │ │ ├── highcharts_logo.png │ │ │ │ │ └── plotly_logo.png │ │ │ ├── data │ │ │ │ ├── Rdata.rdb │ │ │ │ ├── Rdata.rds │ │ │ │ └── Rdata.rdx │ │ │ ├── help │ │ │ │ ├── AnIndex │ │ │ │ ├── aliases.rds │ │ │ │ ├── paths.rds │ │ │ │ ├── xplorerr.rdb │ │ │ │ └── xplorerr.rdx │ │ │ ├── html │ │ │ │ ├── 00Index.html │ │ │ │ └── R.css │ │ │ └── libs │ │ │ │ └── x64 │ │ │ │ └── xplorerr.dll │ │ └── xtable │ │ │ ├── DESCRIPTION │ │ │ ├── INDEX │ │ │ ├── MD5 │ │ │ ├── Meta │ │ │ ├── Rd.rds │ │ │ ├── data.rds │ │ │ ├── features.rds │ │ │ ├── hsearch.rds │ │ │ ├── links.rds │ │ │ ├── nsInfo.rds │ │ │ ├── package.rds │ │ │ └── vignette.rds │ │ │ ├── NAMESPACE │ │ │ ├── NEWS │ │ │ ├── R │ │ │ ├── xtable │ │ │ ├── xtable.rdb │ │ │ └── xtable.rdx │ │ │ ├── data │ │ │ └── tli.txt.gz │ │ │ ├── doc │ │ │ ├── OtherPackagesGallery.R │ │ │ ├── OtherPackagesGallery.Rnw │ │ │ ├── OtherPackagesGallery.pdf │ │ │ ├── index.html │ │ │ ├── listOfTablesGallery.R │ │ │ ├── listOfTablesGallery.Rnw │ │ │ ├── listOfTablesGallery.pdf │ │ │ ├── margintable.R │ │ │ ├── margintable.Rnw │ │ │ ├── margintable.pdf │ │ │ ├── xtableGallery.R │ │ │ ├── xtableGallery.Rnw │ │ │ └── xtableGallery.pdf │ │ │ ├── help │ │ │ ├── AnIndex │ │ │ ├── aliases.rds │ │ │ ├── paths.rds │ │ │ ├── xtable.rdb │ │ │ └── xtable.rdx │ │ │ └── html │ │ │ ├── 00Index.html │ │ │ └── R.css │ │ └── old │ │ ├── R6 │ │ ├── DESCRIPTION │ │ ├── INDEX │ │ ├── LICENSE │ │ ├── MD5 │ │ ├── Meta │ │ │ ├── Rd.rds │ │ │ ├── features.rds │ │ │ ├── hsearch.rds │ │ │ ├── links.rds │ │ │ ├── nsInfo.rds │ │ │ └── package.rds │ │ ├── NAMESPACE │ │ ├── NEWS.md │ │ ├── R │ │ │ ├── R6 │ │ │ ├── R6.rdb │ │ │ └── R6.rdx │ │ ├── help │ │ │ ├── AnIndex │ │ │ ├── R6.rdb │ │ │ ├── R6.rdx │ │ │ ├── aliases.rds │ │ │ ├── figures │ │ │ │ ├── logo.png │ │ │ │ └── logo.svg │ │ │ └── paths.rds │ │ └── html │ │ │ ├── 00Index.html │ │ │ └── R.css │ │ ├── Rcpp │ │ ├── CITATION │ │ ├── DESCRIPTION │ │ ├── INDEX │ │ ├── MD5 │ │ ├── Meta │ │ │ ├── Rd.rds │ │ │ ├── features.rds │ │ │ ├── hsearch.rds │ │ │ ├── links.rds │ │ │ ├── nsInfo.rds │ │ │ ├── package.rds │ │ │ └── vignette.rds │ │ ├── NAMESPACE │ │ ├── NEWS.Rd │ │ ├── R │ │ │ ├── Rcpp │ │ │ ├── Rcpp.rdb │ │ │ └── Rcpp.rdx │ │ ├── announce │ │ │ ├── ANNOUNCE-0.10.0.txt │ │ │ ├── ANNOUNCE-0.11.0.txt │ │ │ ├── ANNOUNCE-0.6.0.txt │ │ │ ├── ANNOUNCE-0.7.0.txt │ │ │ ├── ANNOUNCE-0.8.0.txt │ │ │ └── ANNOUNCE-0.9.0.txt │ │ ├── bib │ │ │ └── Rcpp.bib │ │ ├── discovery │ │ │ └── cxx0x.R │ │ ├── doc │ │ │ ├── Rcpp-FAQ.Rnw │ │ │ ├── Rcpp-FAQ.pdf │ │ │ ├── Rcpp-attributes.Rnw │ │ │ ├── Rcpp-attributes.pdf │ │ │ ├── Rcpp-extending.Rnw │ │ │ ├── Rcpp-extending.pdf │ │ │ ├── Rcpp-introduction.Rnw │ │ │ ├── Rcpp-introduction.pdf │ │ │ ├── Rcpp-jss-2011.Rnw │ │ │ ├── Rcpp-jss-2011.pdf │ │ │ ├── Rcpp-libraries.Rnw │ │ │ ├── Rcpp-libraries.pdf │ │ │ ├── Rcpp-modules.Rnw │ │ │ ├── Rcpp-modules.pdf │ │ │ ├── Rcpp-package.Rnw │ │ │ ├── Rcpp-package.pdf │ │ │ ├── Rcpp-quickref.Rnw │ │ │ ├── Rcpp-quickref.pdf │ │ │ ├── Rcpp-sugar.Rnw │ │ │ ├── Rcpp-sugar.pdf │ │ │ └── index.html │ │ ├── examples │ │ │ ├── Attributes │ │ │ │ ├── Depends.cpp │ │ │ │ ├── Export.cpp │ │ │ │ ├── cppFunction.R │ │ │ │ └── sourceCpp.R │ │ │ ├── ConvolveBenchmarks │ │ │ │ ├── GNUmakefile │ │ │ │ ├── buildAndRun.sh │ │ │ │ ├── convolve10_cpp.cpp │ │ │ │ ├── convolve10_cpp.h │ │ │ │ ├── convolve11_cpp.cpp │ │ │ │ ├── convolve12_cpp.cpp │ │ │ │ ├── convolve13_cpp.cpp │ │ │ │ ├── convolve14_cpp.cpp │ │ │ │ ├── convolve2_c.c │ │ │ │ ├── convolve3_cpp.cpp │ │ │ │ ├── convolve4_cpp.cpp │ │ │ │ ├── convolve5_cpp.cpp │ │ │ │ ├── convolve7_c.c │ │ │ │ ├── convolve8_cpp.cpp │ │ │ │ ├── convolve9_cpp.cpp │ │ │ │ ├── exampleRCode.r │ │ │ │ ├── loopmacro.h │ │ │ │ ├── overhead.r │ │ │ │ ├── overhead.sh │ │ │ │ ├── overhead_1.cpp │ │ │ │ └── overhead_2.c │ │ │ ├── FastLM │ │ │ │ ├── benchmark.r │ │ │ │ ├── benchmarkLongley.r │ │ │ │ ├── fastLMviaArmadillo.r │ │ │ │ ├── fastLMviaGSL.r │ │ │ │ ├── lmArmadillo.R │ │ │ │ └── lmGSL.R │ │ │ ├── Misc │ │ │ │ ├── fibonacci.r │ │ │ │ ├── ifelseLooped.r │ │ │ │ ├── newFib.r │ │ │ │ ├── piBySimulation.r │ │ │ │ └── piSugar.cpp │ │ │ ├── OpenMP │ │ │ │ ├── GNUmakefile │ │ │ │ ├── OpenMPandInline.r │ │ │ │ ├── check.R │ │ │ │ └── piWithInterrupts.cpp │ │ │ ├── RcppGibbs │ │ │ │ ├── RcppGibbs.R │ │ │ │ ├── RcppGibbs_Updated.R │ │ │ │ └── timeRNGs.R │ │ │ ├── RcppInline │ │ │ │ ├── RObject.r │ │ │ │ ├── RcppInlineExample.r │ │ │ │ ├── RcppInlineWithLibsExamples.r │ │ │ │ ├── RcppSimpleExample.r │ │ │ │ ├── UncaughtExceptions.r │ │ │ │ └── external_pointer.r │ │ │ ├── SugarPerformance │ │ │ │ ├── Timer.h │ │ │ │ ├── Timertest.cpp │ │ │ │ └── sugarBenchmarks.R │ │ │ ├── functionCallback │ │ │ │ ├── README │ │ │ │ └── newApiExample.r │ │ │ └── performance │ │ │ │ ├── extractors.R │ │ │ │ └── performance.R │ │ ├── help │ │ │ ├── AnIndex │ │ │ ├── Rcpp.rdb │ │ │ ├── Rcpp.rdx │ │ │ ├── aliases.rds │ │ │ └── paths.rds │ │ ├── html │ │ │ ├── 00Index.html │ │ │ └── R.css │ │ ├── include │ │ │ ├── Rcpp.h │ │ │ ├── Rcpp │ │ │ │ ├── Benchmark │ │ │ │ │ └── Timer.h │ │ │ │ ├── DataFrame.h │ │ │ │ ├── Dimension.h │ │ │ │ ├── DottedPair.h │ │ │ │ ├── DottedPairImpl.h │ │ │ │ ├── Environment.h │ │ │ │ ├── Extractor.h │ │ │ │ ├── Fast.h │ │ │ │ ├── Formula.h │ │ │ │ ├── Function.h │ │ │ │ ├── InputParameter.h │ │ │ │ ├── InternalFunction.h │ │ │ │ ├── InternalFunctionWithStdFunction.h │ │ │ │ ├── Interrupt.h │ │ │ │ ├── Language.h │ │ │ │ ├── Light │ │ │ │ ├── Lighter │ │ │ │ ├── Lightest │ │ │ │ ├── Module.h │ │ │ │ ├── Na_Proxy.h │ │ │ │ ├── Named.h │ │ │ │ ├── Nullable.h │ │ │ │ ├── Pairlist.h │ │ │ │ ├── Promise.h │ │ │ │ ├── RNGScope.h │ │ │ │ ├── RObject.h │ │ │ │ ├── Rcpp │ │ │ │ ├── Reference.h │ │ │ │ ├── Rmath.h │ │ │ │ ├── S4.h │ │ │ │ ├── StretchyList.h │ │ │ │ ├── String.h │ │ │ │ ├── StringTransformer.h │ │ │ │ ├── Symbol.h │ │ │ │ ├── Vector.h │ │ │ │ ├── WeakReference.h │ │ │ │ ├── XPtr.h │ │ │ │ ├── algo.h │ │ │ │ ├── algorithm.h │ │ │ │ ├── api │ │ │ │ │ ├── bones │ │ │ │ │ │ ├── Date.h │ │ │ │ │ │ ├── Datetime.h │ │ │ │ │ │ ├── bones.h │ │ │ │ │ │ └── wrap_extra_steps.h │ │ │ │ │ └── meat │ │ │ │ │ │ ├── DataFrame.h │ │ │ │ │ │ ├── Date.h │ │ │ │ │ │ ├── Datetime.h │ │ │ │ │ │ ├── Dimension.h │ │ │ │ │ │ ├── DottedPairImpl.h │ │ │ │ │ │ ├── Environment.h │ │ │ │ │ │ ├── Rcpp_eval.h │ │ │ │ │ │ ├── S4.h │ │ │ │ │ │ ├── StretchyList.h │ │ │ │ │ │ ├── Vector.h │ │ │ │ │ │ ├── as.h │ │ │ │ │ │ ├── export.h │ │ │ │ │ │ ├── is.h │ │ │ │ │ │ ├── meat.h │ │ │ │ │ │ ├── message.h │ │ │ │ │ │ ├── module │ │ │ │ │ │ └── Module.h │ │ │ │ │ │ ├── protection.h │ │ │ │ │ │ ├── proxy.h │ │ │ │ │ │ └── wrap.h │ │ │ │ ├── as.h │ │ │ │ ├── barrier.h │ │ │ │ ├── clone.h │ │ │ │ ├── complex.h │ │ │ │ ├── config.h │ │ │ │ ├── date_datetime │ │ │ │ │ ├── Date.h │ │ │ │ │ ├── Datetime.h │ │ │ │ │ ├── date_datetime.h │ │ │ │ │ ├── newDateVector.h │ │ │ │ │ ├── newDatetimeVector.h │ │ │ │ │ ├── oldDateVector.h │ │ │ │ │ └── oldDatetimeVector.h │ │ │ │ ├── exceptions.h │ │ │ │ ├── exceptions │ │ │ │ │ ├── cpp11 │ │ │ │ │ │ └── exceptions.h │ │ │ │ │ └── cpp98 │ │ │ │ │ │ └── exceptions.h │ │ │ │ ├── exceptions_impl.h │ │ │ │ ├── generated │ │ │ │ │ ├── DataFrame_generated.h │ │ │ │ │ ├── DottedPair__ctors.h │ │ │ │ │ ├── Function__operator.h │ │ │ │ │ ├── InternalFunctionWithStdFunction_call.h │ │ │ │ │ ├── InternalFunction__ctors.h │ │ │ │ │ ├── Language__ctors.h │ │ │ │ │ ├── Pairlist__ctors.h │ │ │ │ │ ├── Vector__create.h │ │ │ │ │ └── grow__pairlist.h │ │ │ │ ├── grow.h │ │ │ │ ├── hash │ │ │ │ │ ├── IndexHash.h │ │ │ │ │ ├── SelfHash.h │ │ │ │ │ └── hash.h │ │ │ │ ├── internal │ │ │ │ │ ├── Exporter.h │ │ │ │ │ ├── GreedyVector.h │ │ │ │ │ ├── ListInitialization.h │ │ │ │ │ ├── NAComparator.h │ │ │ │ │ ├── NAEquals.h │ │ │ │ │ ├── Proxy_Iterator.h │ │ │ │ │ ├── SEXP_Iterator.h │ │ │ │ │ ├── call.h │ │ │ │ │ ├── caster.h │ │ │ │ │ ├── converter.h │ │ │ │ │ ├── export.h │ │ │ │ │ ├── na.h │ │ │ │ │ ├── r_coerce.h │ │ │ │ │ ├── r_vector.h │ │ │ │ │ ├── wrap.h │ │ │ │ │ └── wrap_end.h │ │ │ │ ├── iostream │ │ │ │ │ └── Rstreambuf.h │ │ │ │ ├── is.h │ │ │ │ ├── lang.h │ │ │ │ ├── longlong.h │ │ │ │ ├── macros │ │ │ │ │ ├── cat.hpp │ │ │ │ │ ├── config.hpp │ │ │ │ │ ├── debug.h │ │ │ │ │ ├── dispatch.h │ │ │ │ │ ├── interface.h │ │ │ │ │ ├── macros.h │ │ │ │ │ ├── module.h │ │ │ │ │ ├── traits.h │ │ │ │ │ ├── unroll.h │ │ │ │ │ └── xp.h │ │ │ │ ├── module │ │ │ │ │ ├── CppFunction.h │ │ │ │ │ ├── Module.h │ │ │ │ │ ├── Module_Add_Property.h │ │ │ │ │ ├── Module_Field.h │ │ │ │ │ ├── Module_Property.h │ │ │ │ │ ├── Module_generated_Constructor.h │ │ │ │ │ ├── Module_generated_CppFunction.h │ │ │ │ │ ├── Module_generated_CppMethod.h │ │ │ │ │ ├── Module_generated_Factory.h │ │ │ │ │ ├── Module_generated_Pointer_CppMethod.h │ │ │ │ │ ├── Module_generated_Pointer_method.h │ │ │ │ │ ├── Module_generated_class_constructor.h │ │ │ │ │ ├── Module_generated_class_factory.h │ │ │ │ │ ├── Module_generated_class_signature.h │ │ │ │ │ ├── Module_generated_ctor_signature.h │ │ │ │ │ ├── Module_generated_function.h │ │ │ │ │ ├── Module_generated_get_signature.h │ │ │ │ │ ├── Module_generated_method.h │ │ │ │ │ ├── class.h │ │ │ │ │ ├── class_Base.h │ │ │ │ │ └── get_return_type.h │ │ │ │ ├── platform │ │ │ │ │ ├── compiler.h │ │ │ │ │ └── solaris.h │ │ │ │ ├── print.h │ │ │ │ ├── protection │ │ │ │ │ ├── Armor.h │ │ │ │ │ ├── Shelter.h │ │ │ │ │ ├── Shield.h │ │ │ │ │ └── protection.h │ │ │ │ ├── proxy │ │ │ │ │ ├── AttributeProxy.h │ │ │ │ │ ├── Binding.h │ │ │ │ │ ├── DottedPairProxy.h │ │ │ │ │ ├── FieldProxy.h │ │ │ │ │ ├── GenericProxy.h │ │ │ │ │ ├── NamesProxy.h │ │ │ │ │ ├── ProtectedProxy.h │ │ │ │ │ ├── RObjectMethods.h │ │ │ │ │ ├── SlotProxy.h │ │ │ │ │ ├── TagProxy.h │ │ │ │ │ └── proxy.h │ │ │ │ ├── r │ │ │ │ │ ├── compat.h │ │ │ │ │ └── headers.h │ │ │ │ ├── r_cast.h │ │ │ │ ├── routines.h │ │ │ │ ├── sprintf.h │ │ │ │ ├── stats │ │ │ │ │ ├── beta.h │ │ │ │ │ ├── binom.h │ │ │ │ │ ├── cauchy.h │ │ │ │ │ ├── chisq.h │ │ │ │ │ ├── dpq │ │ │ │ │ │ ├── dpq.h │ │ │ │ │ │ └── macros.h │ │ │ │ │ ├── exp.h │ │ │ │ │ ├── f.h │ │ │ │ │ ├── gamma.h │ │ │ │ │ ├── geom.h │ │ │ │ │ ├── hyper.h │ │ │ │ │ ├── lnorm.h │ │ │ │ │ ├── logis.h │ │ │ │ │ ├── nbeta.h │ │ │ │ │ ├── nbinom.h │ │ │ │ │ ├── nbinom_mu.h │ │ │ │ │ ├── nchisq.h │ │ │ │ │ ├── nf.h │ │ │ │ │ ├── norm.h │ │ │ │ │ ├── nt.h │ │ │ │ │ ├── pois.h │ │ │ │ │ ├── random │ │ │ │ │ │ ├── random.h │ │ │ │ │ │ ├── rbeta.h │ │ │ │ │ │ ├── rbinom.h │ │ │ │ │ │ ├── rcauchy.h │ │ │ │ │ │ ├── rchisq.h │ │ │ │ │ │ ├── rexp.h │ │ │ │ │ │ ├── rf.h │ │ │ │ │ │ ├── rgamma.h │ │ │ │ │ │ ├── rgeom.h │ │ │ │ │ │ ├── rhyper.h │ │ │ │ │ │ ├── rlnorm.h │ │ │ │ │ │ ├── rlogis.h │ │ │ │ │ │ ├── rnbinom.h │ │ │ │ │ │ ├── rnbinom_mu.h │ │ │ │ │ │ ├── rnchisq.h │ │ │ │ │ │ ├── rnorm.h │ │ │ │ │ │ ├── rpois.h │ │ │ │ │ │ ├── rsignrank.h │ │ │ │ │ │ ├── rt.h │ │ │ │ │ │ ├── runif.h │ │ │ │ │ │ ├── rweibull.h │ │ │ │ │ │ └── rwilcox.h │ │ │ │ │ ├── stats.h │ │ │ │ │ ├── t.h │ │ │ │ │ ├── unif.h │ │ │ │ │ └── weibull.h │ │ │ │ ├── storage │ │ │ │ │ ├── NoProtectStorage.h │ │ │ │ │ ├── PreserveStorage.h │ │ │ │ │ └── storage.h │ │ │ │ ├── sugar │ │ │ │ │ ├── Range.h │ │ │ │ │ ├── block │ │ │ │ │ │ ├── SugarBlock_1.h │ │ │ │ │ │ ├── SugarBlock_2.h │ │ │ │ │ │ ├── SugarBlock_3.h │ │ │ │ │ │ ├── SugarMath.h │ │ │ │ │ │ ├── Vectorized_Math.h │ │ │ │ │ │ └── block.h │ │ │ │ │ ├── functions │ │ │ │ │ │ ├── Lazy.h │ │ │ │ │ │ ├── all.h │ │ │ │ │ │ ├── any.h │ │ │ │ │ │ ├── cbind.h │ │ │ │ │ │ ├── clamp.h │ │ │ │ │ │ ├── complex.h │ │ │ │ │ │ ├── cummax.h │ │ │ │ │ │ ├── cummin.h │ │ │ │ │ │ ├── cumprod.h │ │ │ │ │ │ ├── cumsum.h │ │ │ │ │ │ ├── diff.h │ │ │ │ │ │ ├── duplicated.h │ │ │ │ │ │ ├── functions.h │ │ │ │ │ │ ├── head.h │ │ │ │ │ │ ├── ifelse.h │ │ │ │ │ │ ├── is_finite.h │ │ │ │ │ │ ├── is_infinite.h │ │ │ │ │ │ ├── is_na.h │ │ │ │ │ │ ├── is_nan.h │ │ │ │ │ │ ├── lapply.h │ │ │ │ │ │ ├── mapply.h │ │ │ │ │ │ ├── mapply │ │ │ │ │ │ │ ├── mapply_2.h │ │ │ │ │ │ │ └── mapply_3.h │ │ │ │ │ │ ├── match.h │ │ │ │ │ │ ├── math.h │ │ │ │ │ │ ├── max.h │ │ │ │ │ │ ├── mean.h │ │ │ │ │ │ ├── median.h │ │ │ │ │ │ ├── min.h │ │ │ │ │ │ ├── na_omit.h │ │ │ │ │ │ ├── pmax.h │ │ │ │ │ │ ├── pmin.h │ │ │ │ │ │ ├── pow.h │ │ │ │ │ │ ├── range.h │ │ │ │ │ │ ├── rep.h │ │ │ │ │ │ ├── rep_each.h │ │ │ │ │ │ ├── rep_len.h │ │ │ │ │ │ ├── rev.h │ │ │ │ │ │ ├── rowSums.h │ │ │ │ │ │ ├── sample.h │ │ │ │ │ │ ├── sapply.h │ │ │ │ │ │ ├── sd.h │ │ │ │ │ │ ├── self_match.h │ │ │ │ │ │ ├── seq_along.h │ │ │ │ │ │ ├── setdiff.h │ │ │ │ │ │ ├── sign.h │ │ │ │ │ │ ├── strings │ │ │ │ │ │ │ ├── collapse.h │ │ │ │ │ │ │ ├── strings.h │ │ │ │ │ │ │ └── trimws.h │ │ │ │ │ │ ├── sum.h │ │ │ │ │ │ ├── table.h │ │ │ │ │ │ ├── tail.h │ │ │ │ │ │ ├── unique.h │ │ │ │ │ │ ├── var.h │ │ │ │ │ │ ├── which_max.h │ │ │ │ │ │ └── which_min.h │ │ │ │ │ ├── logical │ │ │ │ │ │ ├── SingleLogicalResult.h │ │ │ │ │ │ ├── and.h │ │ │ │ │ │ ├── can_have_na.h │ │ │ │ │ │ ├── is.h │ │ │ │ │ │ ├── logical.h │ │ │ │ │ │ ├── not.h │ │ │ │ │ │ └── or.h │ │ │ │ │ ├── matrix │ │ │ │ │ │ ├── as_vector.h │ │ │ │ │ │ ├── col.h │ │ │ │ │ │ ├── diag.h │ │ │ │ │ │ ├── lower_tri.h │ │ │ │ │ │ ├── matrix_functions.h │ │ │ │ │ │ ├── outer.h │ │ │ │ │ │ ├── row.h │ │ │ │ │ │ ├── tools.h │ │ │ │ │ │ └── upper_tri.h │ │ │ │ │ ├── nona │ │ │ │ │ │ └── nona.h │ │ │ │ │ ├── operators │ │ │ │ │ │ ├── Comparator.h │ │ │ │ │ │ ├── Comparator_With_One_Value.h │ │ │ │ │ │ ├── divides.h │ │ │ │ │ │ ├── logical_operators__Vector__Vector.h │ │ │ │ │ │ ├── logical_operators__Vector__primitive.h │ │ │ │ │ │ ├── minus.h │ │ │ │ │ │ ├── not.h │ │ │ │ │ │ ├── operators.h │ │ │ │ │ │ ├── plus.h │ │ │ │ │ │ ├── r_binary_op.h │ │ │ │ │ │ ├── times.h │ │ │ │ │ │ └── unary_minus.h │ │ │ │ │ ├── sets.h │ │ │ │ │ ├── sugar.h │ │ │ │ │ ├── sugar_forward.h │ │ │ │ │ ├── tools │ │ │ │ │ │ └── iterator.h │ │ │ │ │ └── undoRmath.h │ │ │ │ ├── traits │ │ │ │ │ ├── char_type.h │ │ │ │ │ ├── enable_if.h │ │ │ │ │ ├── expands_to_logical.h │ │ │ │ │ ├── get_na.h │ │ │ │ │ ├── has_iterator.h │ │ │ │ │ ├── has_na.h │ │ │ │ │ ├── if_.h │ │ │ │ │ ├── index_sequence.h │ │ │ │ │ ├── init_type.h │ │ │ │ │ ├── integral_constant.h │ │ │ │ │ ├── is_arithmetic.h │ │ │ │ │ ├── is_bool.h │ │ │ │ │ ├── is_const.h │ │ │ │ │ ├── is_convertible.h │ │ │ │ │ ├── is_eigen_base.h │ │ │ │ │ ├── is_finite.h │ │ │ │ │ ├── is_infinite.h │ │ │ │ │ ├── is_module_object.h │ │ │ │ │ ├── is_na.h │ │ │ │ │ ├── is_nan.h │ │ │ │ │ ├── is_pointer.h │ │ │ │ │ ├── is_primitive.h │ │ │ │ │ ├── is_reference.h │ │ │ │ │ ├── is_sugar_expression.h │ │ │ │ │ ├── is_trivial.h │ │ │ │ │ ├── is_wide_string.h │ │ │ │ │ ├── longlong.h │ │ │ │ │ ├── matrix_interface.h │ │ │ │ │ ├── module_wrap_traits.h │ │ │ │ │ ├── named_object.h │ │ │ │ │ ├── num2type.h │ │ │ │ │ ├── one_type.h │ │ │ │ │ ├── r_sexptype_traits.h │ │ │ │ │ ├── r_type_traits.h │ │ │ │ │ ├── remove_const.h │ │ │ │ │ ├── remove_const_and_reference.h │ │ │ │ │ ├── remove_reference.h │ │ │ │ │ ├── result_of.h │ │ │ │ │ ├── same_type.h │ │ │ │ │ ├── storage_type.h │ │ │ │ │ ├── traits.h │ │ │ │ │ ├── un_pointer.h │ │ │ │ │ └── wrap_type_traits.h │ │ │ │ ├── unwindProtect.h │ │ │ │ ├── utils │ │ │ │ │ ├── tinyformat.h │ │ │ │ │ └── tinyformat │ │ │ │ │ │ └── tinyformat.h │ │ │ │ └── vector │ │ │ │ │ ├── 00_forward_Vector.h │ │ │ │ │ ├── 00_forward_proxy.h │ │ │ │ │ ├── ChildVector.h │ │ │ │ │ ├── DimNameProxy.h │ │ │ │ │ ├── LazyVector.h │ │ │ │ │ ├── ListOf.h │ │ │ │ │ ├── Matrix.h │ │ │ │ │ ├── MatrixBase.h │ │ │ │ │ ├── MatrixColumn.h │ │ │ │ │ ├── MatrixRow.h │ │ │ │ │ ├── RangeIndexer.h │ │ │ │ │ ├── SubMatrix.h │ │ │ │ │ ├── Subsetter.h │ │ │ │ │ ├── Vector.h │ │ │ │ │ ├── VectorBase.h │ │ │ │ │ ├── const_generic_proxy.h │ │ │ │ │ ├── const_string_proxy.h │ │ │ │ │ ├── converter.h │ │ │ │ │ ├── generic_proxy.h │ │ │ │ │ ├── instantiation.h │ │ │ │ │ ├── no_init.h │ │ │ │ │ ├── proxy.h │ │ │ │ │ ├── string_proxy.h │ │ │ │ │ ├── swap.h │ │ │ │ │ ├── traits.h │ │ │ │ │ └── vector_from_string.h │ │ │ ├── RcppCommon.h │ │ │ └── doxygen │ │ │ │ └── Examples.h │ │ ├── libs │ │ │ └── x64 │ │ │ │ ├── Rcpp.dll │ │ │ │ └── symbols.rds │ │ ├── prompt │ │ │ └── module.Rd │ │ ├── skeleton │ │ │ ├── Num.cpp │ │ │ ├── Rcpp_modules_examples.Rd │ │ │ ├── manual-page-stub.Rd │ │ │ ├── rcpp_hello_world.R │ │ │ ├── rcpp_hello_world.Rd │ │ │ ├── rcpp_hello_world.cpp │ │ │ ├── rcpp_hello_world.h │ │ │ ├── rcpp_hello_world_attributes.cpp │ │ │ ├── rcpp_module.cpp │ │ │ ├── stdVector.cpp │ │ │ └── zzz.R │ │ └── tinytest │ │ │ ├── bin │ │ │ ├── amd64 │ │ │ │ └── r-cran-testrcpppackage_0.1.0-1_amd64.deb │ │ │ └── i386 │ │ │ │ └── r-cran-testrcpppackage_0.1.0-1_i386.deb │ │ │ ├── cpp │ │ │ ├── DataFrame.cpp │ │ │ ├── Environment.cpp │ │ │ ├── Exceptions_nocall.cpp │ │ │ ├── Function.cpp │ │ │ ├── InternalFunction.cpp │ │ │ ├── InternalFunctionCPP11.cpp │ │ │ ├── ListOf.cpp │ │ │ ├── Matrix.cpp │ │ │ ├── Module.cpp │ │ │ ├── RObject.cpp │ │ │ ├── Reference.cpp │ │ │ ├── S4.cpp │ │ │ ├── String.cpp │ │ │ ├── Subset.cpp │ │ │ ├── Vector.cpp │ │ │ ├── VectorOld.cpp │ │ │ ├── XPtr.cpp │ │ │ ├── algorithm.cpp │ │ │ ├── as.cpp │ │ │ ├── attributes.cpp │ │ │ ├── attributes.hpp │ │ │ ├── coerce.cpp │ │ │ ├── dates.cpp │ │ │ ├── dispatch.cpp │ │ │ ├── embeddedR.cpp │ │ │ ├── embeddedR2.cpp │ │ │ ├── exceptions.cpp │ │ │ ├── language.cpp │ │ │ ├── misc.cpp │ │ │ ├── modref.cpp │ │ │ ├── na.cpp │ │ │ ├── rcppversion.cpp │ │ │ ├── rmath.cpp │ │ │ ├── stack.cpp │ │ │ ├── stats.cpp │ │ │ ├── sugar.cpp │ │ │ ├── support.cpp │ │ │ ├── table.cpp │ │ │ ├── wrap.cpp │ │ │ └── wstring.cpp │ │ │ ├── src │ │ │ ├── r-cran-testrcpppackage_0.1.0-1.diff.gz │ │ │ ├── r-cran-testrcpppackage_0.1.0-1.dsc │ │ │ ├── r-cran-testrcpppackage_0.1.0-1_amd64.changes │ │ │ ├── r-cran-testrcpppackage_0.1.0-1_amd64.deb │ │ │ ├── r-cran-testrcpppackage_0.1.0-1_i386.changes │ │ │ └── r-cran-testrcpppackage_0.1.0-1_i386.deb │ │ │ ├── testRcppAttributePackage │ │ │ ├── DESCRIPTION │ │ │ ├── NAMESPACE │ │ │ └── src │ │ │ │ └── rcpp_test.cpp │ │ │ ├── testRcppClass │ │ │ ├── DESCRIPTION │ │ │ ├── NAMESPACE │ │ │ ├── R │ │ │ │ ├── load.R │ │ │ │ └── rcpp_hello_world.R │ │ │ ├── man │ │ │ │ ├── Rcpp_class_examples.Rd │ │ │ │ ├── rcpp_hello_world.Rd │ │ │ │ └── testRcppClass-package.Rd │ │ │ ├── src │ │ │ │ ├── Num.cpp │ │ │ │ ├── init.c │ │ │ │ ├── rcpp_hello_world.cpp │ │ │ │ ├── rcpp_hello_world.h │ │ │ │ ├── rcpp_module.cpp │ │ │ │ └── stdVector.cpp │ │ │ └── tests │ │ │ │ └── classes.R │ │ │ ├── testRcppInterfaceExporter │ │ │ ├── DESCRIPTION │ │ │ ├── NAMESPACE │ │ │ ├── R │ │ │ │ ├── RcppExports.R │ │ │ │ └── exporter.R │ │ │ ├── inst │ │ │ │ └── include │ │ │ │ │ ├── testRcppInterfaceExporter.h │ │ │ │ │ └── testRcppInterfaceExporter_RcppExports.h │ │ │ └── src │ │ │ │ ├── RcppExports.cpp │ │ │ │ ├── exporter.cpp │ │ │ │ └── unwound.h │ │ │ ├── testRcppInterfaceUser │ │ │ ├── DESCRIPTION │ │ │ ├── NAMESPACE │ │ │ ├── R │ │ │ │ └── user.R │ │ │ ├── src │ │ │ │ ├── config.h │ │ │ │ ├── unwound.h │ │ │ │ └── user.cpp │ │ │ └── tests │ │ │ │ └── tests.R │ │ │ ├── testRcppModule │ │ │ ├── DESCRIPTION │ │ │ ├── NAMESPACE │ │ │ ├── R │ │ │ │ ├── rcpp_hello_world.R │ │ │ │ └── zzz.R │ │ │ ├── man │ │ │ │ ├── Rcpp_modules_examples.Rd │ │ │ │ ├── rcpp_hello_world.Rd │ │ │ │ └── testRcppModule-package.Rd │ │ │ ├── src │ │ │ │ ├── Num.cpp │ │ │ │ ├── init.c │ │ │ │ ├── rcpp_hello_world.cpp │ │ │ │ ├── rcpp_hello_world.h │ │ │ │ ├── rcpp_module.cpp │ │ │ │ └── stdVector.cpp │ │ │ └── tests │ │ │ │ └── modules.R │ │ │ ├── testRcppPackage │ │ │ ├── DESCRIPTION │ │ │ ├── NAMESPACE │ │ │ ├── R │ │ │ │ └── rcpp_hello_world.R │ │ │ ├── man │ │ │ │ └── testRcppPackage-package.Rd │ │ │ └── src │ │ │ │ ├── rcpp_hello_world.cpp │ │ │ │ └── rcpp_hello_world.h │ │ │ ├── test_algorithm.R │ │ │ ├── test_as.R │ │ │ ├── test_attribute_package.R │ │ │ ├── test_attributes.R │ │ │ ├── test_binary_package.R │ │ │ ├── test_client_package.R │ │ │ ├── test_coerce.R │ │ │ ├── test_dataframe.R │ │ │ ├── test_date.R │ │ │ ├── test_dispatch.R │ │ │ ├── test_embedded_r.R │ │ │ ├── test_environments.R │ │ │ ├── test_exceptions.R │ │ │ ├── test_exceptions_nocall.R │ │ │ ├── test_expose_class.R │ │ │ ├── test_function.R │ │ │ ├── test_global_rostream.R │ │ │ ├── test_interface.R │ │ │ ├── test_internal_function.R │ │ │ ├── test_internal_function_cpp11.R │ │ │ ├── test_language.R │ │ │ ├── test_listof.R │ │ │ ├── test_matrix.R │ │ │ ├── test_misc.R │ │ │ ├── test_modref.R │ │ │ ├── test_module.R │ │ │ ├── test_module_client_package.R │ │ │ ├── test_na.R │ │ │ ├── test_packageversion.R │ │ │ ├── test_quickanddirty.R │ │ │ ├── test_rcpp_package_skeleton.R │ │ │ ├── test_reference.R │ │ │ ├── test_rmath.R │ │ │ ├── test_robject.R │ │ │ ├── test_s4.R │ │ │ ├── test_stack.R │ │ │ ├── test_stats.R │ │ │ ├── test_string.R │ │ │ ├── test_subset.R │ │ │ ├── test_sugar.R │ │ │ ├── test_sugar_var.R │ │ │ ├── test_support.R │ │ │ ├── test_system.R │ │ │ ├── test_table.R │ │ │ ├── test_vector.R │ │ │ ├── test_vector_old.R │ │ │ ├── test_wrap.R │ │ │ ├── test_wstring.R │ │ │ └── test_xptr.R │ │ ├── base64enc │ │ ├── DESCRIPTION │ │ ├── INDEX │ │ ├── MD5 │ │ ├── Meta │ │ │ ├── Rd.rds │ │ │ ├── features.rds │ │ │ ├── hsearch.rds │ │ │ ├── links.rds │ │ │ ├── nsInfo.rds │ │ │ └── package.rds │ │ ├── NAMESPACE │ │ ├── NEWS │ │ ├── R │ │ │ ├── base64enc │ │ │ ├── base64enc.rdb │ │ │ └── base64enc.rdx │ │ ├── help │ │ │ ├── AnIndex │ │ │ ├── aliases.rds │ │ │ ├── base64enc.rdb │ │ │ ├── base64enc.rdx │ │ │ └── paths.rds │ │ ├── html │ │ │ ├── 00Index.html │ │ │ └── R.css │ │ └── libs │ │ │ └── x64 │ │ │ ├── base64enc.dll │ │ │ └── symbols.rds │ │ ├── bslib │ │ ├── DESCRIPTION │ │ ├── INDEX │ │ ├── LICENSE │ │ ├── MD5 │ │ ├── Meta │ │ │ ├── Rd.rds │ │ │ ├── features.rds │ │ │ ├── hsearch.rds │ │ │ ├── links.rds │ │ │ ├── nsInfo.rds │ │ │ └── package.rds │ │ ├── NAMESPACE │ │ ├── NEWS.md │ │ ├── R │ │ │ ├── bslib │ │ │ ├── bslib.rdb │ │ │ ├── bslib.rdx │ │ │ ├── sysdata.rdb │ │ │ └── sysdata.rdx │ │ ├── bs3compat │ │ │ ├── _declarations.scss │ │ │ ├── _defaults.scss │ │ │ ├── _dropdown_compat.scss │ │ │ ├── _dt_compat.scss │ │ │ ├── _glyphicons.scss │ │ │ ├── _headers.scss │ │ │ ├── _help_text.scss │ │ │ ├── _nav_compat.scss │ │ │ ├── _navbar_compat.scss │ │ │ ├── _progress_compat.scss │ │ │ ├── _rules.scss │ │ │ ├── _shiny_input.scss │ │ │ ├── _shiny_misc.scss │ │ │ ├── _wells.scss │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ └── js │ │ │ │ ├── bs3compat.js │ │ │ │ ├── tabs.js │ │ │ │ └── transition.js │ │ ├── bslib-scss │ │ │ ├── bslib.scss │ │ │ ├── color-utilities.scss │ │ │ ├── functions.scss │ │ │ ├── spacer.scss │ │ │ └── tab-fill.scss │ │ ├── builtin │ │ │ └── bs5 │ │ │ │ └── shiny │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _rules.scss │ │ │ │ ├── _variables.scss │ │ │ │ ├── font.css │ │ │ │ ├── ionrangeslider │ │ │ │ ├── _rules.scss │ │ │ │ └── _variables.scss │ │ │ │ └── tables │ │ │ │ └── _rules.scss │ │ ├── components │ │ │ ├── dist │ │ │ │ ├── components.css │ │ │ │ ├── components.js │ │ │ │ ├── components.js.map │ │ │ │ ├── components.min.js │ │ │ │ ├── components.min.js.map │ │ │ │ ├── web-components.js │ │ │ │ ├── web-components.js.map │ │ │ │ ├── web-components.min.js │ │ │ │ ├── web-components.min.js.map │ │ │ │ └── webComponents │ │ │ │ │ └── webComponents.min.js │ │ │ ├── scss │ │ │ │ ├── accordion.scss │ │ │ │ ├── card.scss │ │ │ │ ├── grid.scss │ │ │ │ ├── mixins │ │ │ │ │ └── _mixins.scss │ │ │ │ ├── nav_spacer.scss │ │ │ │ ├── page_fillable.scss │ │ │ │ ├── page_navbar.scss │ │ │ │ ├── page_sidebar.scss │ │ │ │ ├── sidebar.scss │ │ │ │ └── value_box.scss │ │ │ └── tag-require.js │ │ ├── css-precompiled │ │ │ ├── 3 │ │ │ │ └── bootstrap.min.css │ │ │ ├── 4 │ │ │ │ └── bootstrap.min.css │ │ │ └── 5 │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── bootstrap.scss │ │ ├── custom │ │ │ └── person.scss │ │ ├── examples-shiny │ │ │ ├── build-a-box │ │ │ │ ├── R │ │ │ │ │ ├── code_modal.R │ │ │ │ │ ├── colors.R │ │ │ │ │ ├── mod-global-controls.R │ │ │ │ │ ├── mod-selextra.R │ │ │ │ │ ├── mod-value-box-ui.R │ │ │ │ │ ├── random_plot.R │ │ │ │ │ ├── random_values.R │ │ │ │ │ └── shuffleButton.R │ │ │ │ ├── about-value-boxes.md │ │ │ │ ├── app.R │ │ │ │ ├── deploy.R │ │ │ │ └── www │ │ │ │ │ ├── build-a-box.js │ │ │ │ │ ├── build-a-box.scss │ │ │ │ │ ├── code-modal.js │ │ │ │ │ └── shiny.png │ │ │ ├── card │ │ │ │ ├── app.R │ │ │ │ ├── deploy.R │ │ │ │ └── www │ │ │ │ │ └── shiny-hex.svg │ │ │ ├── flights │ │ │ │ ├── app.R │ │ │ │ ├── deploy.R │ │ │ │ └── www │ │ │ │ │ └── logo.png │ │ │ └── value_box │ │ │ │ ├── app.R │ │ │ │ └── deploy.R │ │ ├── fonts │ │ │ ├── 07d40e985ad7c747025dabb9f22142c4.woff2 │ │ │ ├── 1Ptug8zYS_SKggPNyC0ITw.woff2 │ │ │ ├── 1Ptug8zYS_SKggPNyCAIT5lu.woff2 │ │ │ ├── 1Ptug8zYS_SKggPNyCIIT5lu.woff2 │ │ │ ├── 1Ptug8zYS_SKggPNyCMIT5lu.woff2 │ │ │ ├── 1Ptug8zYS_SKggPNyCkIT5lu.woff2 │ │ │ ├── 1f5e011d6aae0d98fc0518e1a303e99a.woff2 │ │ │ ├── 4iCs6KVjbNBYlgoKcQ72j00.woff2 │ │ │ ├── 4iCs6KVjbNBYlgoKcg72j00.woff2 │ │ │ ├── 4iCs6KVjbNBYlgoKcw72j00.woff2 │ │ │ ├── 4iCs6KVjbNBYlgoKew72j00.woff2 │ │ │ ├── 4iCs6KVjbNBYlgoKfA72j00.woff2 │ │ │ ├── 4iCs6KVjbNBYlgoKfw72.woff2 │ │ │ ├── 4iCv6KVjbNBYlgoCxCvjs2yNL4U.woff2 │ │ │ ├── 4iCv6KVjbNBYlgoCxCvjsGyN.woff2 │ │ │ ├── 4iCv6KVjbNBYlgoCxCvjtGyNL4U.woff2 │ │ │ ├── 4iCv6KVjbNBYlgoCxCvjvGyNL4U.woff2 │ │ │ ├── 4iCv6KVjbNBYlgoCxCvjvWyNL4U.woff2 │ │ │ ├── 4iCv6KVjbNBYlgoCxCvjvmyNL4U.woff2 │ │ │ ├── 626330658504e338ee86aec8e957426b.woff2 │ │ │ ├── 6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7jsDJT9g.woff2 │ │ │ ├── 6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7ksDJT9g.woff2 │ │ │ ├── 6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7nsDI.woff2 │ │ │ ├── 6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7osDJT9g.woff2 │ │ │ ├── 6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7psDJT9g.woff2 │ │ │ ├── 6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7qsDJT9g.woff2 │ │ │ ├── 6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7rsDJT9g.woff2 │ │ │ ├── 6xK3dSBYKcSV-LCoeQqfX1RYOo3qN67lqDY.woff2 │ │ │ ├── 6xK3dSBYKcSV-LCoeQqfX1RYOo3qNK7lqDY.woff2 │ │ │ ├── 6xK3dSBYKcSV-LCoeQqfX1RYOo3qNa7lqDY.woff2 │ │ │ ├── 6xK3dSBYKcSV-LCoeQqfX1RYOo3qNq7lqDY.woff2 │ │ │ ├── 6xK3dSBYKcSV-LCoeQqfX1RYOo3qO67lqDY.woff2 │ │ │ ├── 6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7l.woff2 │ │ │ ├── 6xK3dSBYKcSV-LCoeQqfX1RYOo3qPK7lqDY.woff2 │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwkxduz8A.woff2 │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwlBduz8A.woff2 │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwlxdu.woff2 │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwmBduz8A.woff2 │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwmRduz8A.woff2 │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwmhduz8A.woff2 │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwmxduz8A.woff2 │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwkxduz8A.woff2 │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlBduz8A.woff2 │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlxdu.woff2 │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmBduz8A.woff2 │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmRduz8A.woff2 │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmhduz8A.woff2 │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmxduz8A.woff2 │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwkxduz8A.woff2 │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlBduz8A.woff2 │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlxdu.woff2 │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmBduz8A.woff2 │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmRduz8A.woff2 │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmhduz8A.woff2 │ │ │ ├── 6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmxduz8A.woff2 │ │ │ ├── CSR54z1Qlv-GDxkbKVQ_dFsvWNReuQ.woff2 │ │ │ ├── CSR54z1Qlv-GDxkbKVQ_dFsvWNpeudwk.woff2 │ │ │ ├── CSR64z1Qlv-GDxkbKVQ_fO4KTet_.woff2 │ │ │ ├── CSR64z1Qlv-GDxkbKVQ_fOAKTQ.woff2 │ │ │ ├── HI_QiYsKILxRpg3hIP6sJ7fM7PqlONvQlMIXxw.woff2 │ │ │ ├── HI_QiYsKILxRpg3hIP6sJ7fM7PqlONvUlMI.woff2 │ │ │ ├── HI_QiYsKILxRpg3hIP6sJ7fM7PqlONvXlMIXxw.woff2 │ │ │ ├── HI_QiYsKILxRpg3hIP6sJ7fM7PqlONvYlMIXxw.woff2 │ │ │ ├── HI_QiYsKILxRpg3hIP6sJ7fM7PqlONvZlMIXxw.woff2 │ │ │ ├── HI_QiYsKILxRpg3hIP6sJ7fM7PqlONvalMIXxw.woff2 │ │ │ ├── HI_QiYsKILxRpg3hIP6sJ7fM7PqlONvblMIXxw.woff2 │ │ │ ├── HI_SiYsKILxRpg3hIP6sJ7fM7PqlM-vWjMY.woff2 │ │ │ ├── HI_SiYsKILxRpg3hIP6sJ7fM7PqlMOvWjMY.woff2 │ │ │ ├── HI_SiYsKILxRpg3hIP6sJ7fM7PqlMevWjMY.woff2 │ │ │ ├── HI_SiYsKILxRpg3hIP6sJ7fM7PqlMuvWjMY.woff2 │ │ │ ├── HI_SiYsKILxRpg3hIP6sJ7fM7PqlOevWjMY.woff2 │ │ │ ├── HI_SiYsKILxRpg3hIP6sJ7fM7PqlPevW.woff2 │ │ │ ├── HI_SiYsKILxRpg3hIP6sJ7fM7PqlPuvWjMY.woff2 │ │ │ ├── JTUSjIg1_i6t8kCHKm459W1hyzbi.woff2 │ │ │ ├── JTUSjIg1_i6t8kCHKm459WRhyzbi.woff2 │ │ │ ├── JTUSjIg1_i6t8kCHKm459WZhyzbi.woff2 │ │ │ ├── JTUSjIg1_i6t8kCHKm459Wdhyzbi.woff2 │ │ │ ├── JTUSjIg1_i6t8kCHKm459Wlhyw.woff2 │ │ │ ├── KFOlCnqEu92Fr1MmEU9fABc4EsA.woff2 │ │ │ ├── KFOlCnqEu92Fr1MmEU9fBBc4.woff2 │ │ │ ├── KFOlCnqEu92Fr1MmEU9fBxc4EsA.woff2 │ │ │ ├── KFOlCnqEu92Fr1MmEU9fCBc4EsA.woff2 │ │ │ ├── KFOlCnqEu92Fr1MmEU9fCRc4EsA.woff2 │ │ │ ├── KFOlCnqEu92Fr1MmEU9fChc4EsA.woff2 │ │ │ ├── KFOlCnqEu92Fr1MmEU9fCxc4EsA.woff2 │ │ │ ├── KFOlCnqEu92Fr1MmSU5fABc4EsA.woff2 │ │ │ ├── KFOlCnqEu92Fr1MmSU5fBBc4.woff2 │ │ │ ├── KFOlCnqEu92Fr1MmSU5fBxc4EsA.woff2 │ │ │ ├── KFOlCnqEu92Fr1MmSU5fCBc4EsA.woff2 │ │ │ ├── KFOlCnqEu92Fr1MmSU5fCRc4EsA.woff2 │ │ │ ├── KFOlCnqEu92Fr1MmSU5fChc4EsA.woff2 │ │ │ ├── KFOlCnqEu92Fr1MmSU5fCxc4EsA.woff2 │ │ │ ├── KFOlCnqEu92Fr1MmWUlfABc4EsA.woff2 │ │ │ ├── KFOlCnqEu92Fr1MmWUlfBBc4.woff2 │ │ │ ├── KFOlCnqEu92Fr1MmWUlfBxc4EsA.woff2 │ │ │ ├── KFOlCnqEu92Fr1MmWUlfCBc4EsA.woff2 │ │ │ ├── KFOlCnqEu92Fr1MmWUlfCRc4EsA.woff2 │ │ │ ├── KFOlCnqEu92Fr1MmWUlfChc4EsA.woff2 │ │ │ ├── KFOlCnqEu92Fr1MmWUlfCxc4EsA.woff2 │ │ │ ├── KFOmCnqEu92Fr1Mu4WxKOzY.woff2 │ │ │ ├── KFOmCnqEu92Fr1Mu4mxK.woff2 │ │ │ ├── KFOmCnqEu92Fr1Mu5mxKOzY.woff2 │ │ │ ├── KFOmCnqEu92Fr1Mu72xKOzY.woff2 │ │ │ ├── KFOmCnqEu92Fr1Mu7GxKOzY.woff2 │ │ │ ├── KFOmCnqEu92Fr1Mu7WxKOzY.woff2 │ │ │ ├── KFOmCnqEu92Fr1Mu7mxKOzY.woff2 │ │ │ ├── QGYpz_kZZAGCONcK2A4bGOj8mNhN.woff2 │ │ │ ├── S6u8w4BMUTPHjxsAUi-qJCY.woff2 │ │ │ ├── S6u8w4BMUTPHjxsAXC-q.woff2 │ │ │ ├── S6u9w4BMUTPHh6UVSwaPGR_p.woff2 │ │ │ ├── S6u9w4BMUTPHh6UVSwiPGQ.woff2 │ │ │ ├── S6u9w4BMUTPHh7USSwaPGR_p.woff2 │ │ │ ├── S6u9w4BMUTPHh7USSwiPGQ.woff2 │ │ │ ├── S6uyw4BMUTPHjx4wXg.woff2 │ │ │ ├── S6uyw4BMUTPHjxAwXjeu.woff2 │ │ │ ├── UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa0ZL7SUc.woff2 │ │ │ ├── UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1ZL7.woff2 │ │ │ ├── UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1pL7SUc.woff2 │ │ │ ├── UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa25L7SUc.woff2 │ │ │ ├── UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2JL7SUc.woff2 │ │ │ ├── UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2ZL7SUc.woff2 │ │ │ ├── UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2pL7SUc.woff2 │ │ │ ├── XRXV3I6Li01BKofIMeaBXso.woff2 │ │ │ ├── XRXV3I6Li01BKofINeaB.woff2 │ │ │ ├── XRXV3I6Li01BKofIO-aBXso.woff2 │ │ │ ├── XRXV3I6Li01BKofIOOaBXso.woff2 │ │ │ ├── XRXV3I6Li01BKofIOuaBXso.woff2 │ │ │ ├── c2f002b3a87d3f9bfeebb23d32cfd9f8.woff2 │ │ │ ├── ee91700cdbf7ce16c054c2bb8946c736.woff2 │ │ │ ├── memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqW106F15M.woff2 │ │ │ ├── memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWt06F15M.woff2 │ │ │ ├── memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWtE6F15M.woff2 │ │ │ ├── memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWtU6F15M.woff2 │ │ │ ├── memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWtk6F15M.woff2 │ │ │ ├── memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWu06F15M.woff2 │ │ │ ├── memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWuU6F.woff2 │ │ │ ├── memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWuk6F15M.woff2 │ │ │ ├── memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWvU6F15M.woff2 │ │ │ ├── memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWxU6F15M.woff2 │ │ │ ├── memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS-muw.woff2 │ │ │ ├── memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS2mu1aB.woff2 │ │ │ ├── memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSCmu1aB.woff2 │ │ │ ├── memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSGmu1aB.woff2 │ │ │ ├── memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSKmu1aB.woff2 │ │ │ ├── memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSOmu1aB.woff2 │ │ │ ├── memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSumu1aB.woff2 │ │ │ ├── memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSymu1aB.woff2 │ │ │ ├── memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTUGmu1aB.woff2 │ │ │ ├── memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTVOmu1aB.woff2 │ │ │ ├── q5uGsou0JOdh94bfuQltOxU.woff2 │ │ │ └── q5uGsou0JOdh94bfvQlt.woff2 │ │ ├── help │ │ │ ├── AnIndex │ │ │ ├── aliases.rds │ │ │ ├── bslib.rdb │ │ │ ├── bslib.rdx │ │ │ ├── figures │ │ │ │ ├── lifecycle-archived.svg │ │ │ │ ├── lifecycle-defunct.svg │ │ │ │ ├── lifecycle-deprecated.svg │ │ │ │ ├── lifecycle-experimental.svg │ │ │ │ ├── lifecycle-maturing.svg │ │ │ │ ├── lifecycle-questioning.svg │ │ │ │ ├── lifecycle-soft-deprecated.svg │ │ │ │ ├── lifecycle-stable.svg │ │ │ │ ├── lifecycle-superseded.svg │ │ │ │ ├── navset-card-pill.png │ │ │ │ ├── navset-card-underline.png │ │ │ │ ├── navset-pill-list.png │ │ │ │ ├── navset-pill.png │ │ │ │ ├── navset-tab-basic.png │ │ │ │ ├── navset-tab-card.png │ │ │ │ ├── navset-tab.png │ │ │ │ ├── navset-underline.png │ │ │ │ ├── navset_card_pill.png │ │ │ │ ├── page-navbar.png │ │ │ │ ├── value-box-background-color.png │ │ │ │ ├── value-box-background-theme.png │ │ │ │ ├── value-box-custom.png │ │ │ │ ├── value-box-gradient-1.png │ │ │ │ ├── value-box-named-color.png │ │ │ │ ├── value-box-named-theme.png │ │ │ │ ├── value-box-showcase-bottom.png │ │ │ │ ├── value-box-showcase-left-center.png │ │ │ │ ├── value-box-showcase-top-right.png │ │ │ │ ├── value-box-text-color.png │ │ │ │ ├── value-box-text-theme.png │ │ │ │ └── value-box-theme-class.png │ │ │ └── paths.rds │ │ ├── html │ │ │ ├── 00Index.html │ │ │ └── R.css │ │ ├── lib │ │ │ ├── bs-a11y-p │ │ │ │ ├── LICENSE.md │ │ │ │ ├── package.json │ │ │ │ ├── plugins │ │ │ │ │ ├── css │ │ │ │ │ │ └── bootstrap-accessibility.css │ │ │ │ │ └── js │ │ │ │ │ │ ├── bootstrap-accessibility.js │ │ │ │ │ │ └── bootstrap-accessibility.min.js │ │ │ │ └── src │ │ │ │ │ ├── js │ │ │ │ │ ├── carousel.js │ │ │ │ │ ├── collapse.js │ │ │ │ │ ├── dropdown.js │ │ │ │ │ ├── functions.js │ │ │ │ │ ├── modal.js │ │ │ │ │ └── tab.js │ │ │ │ │ ├── less │ │ │ │ │ ├── bootstrap-accessibility.less │ │ │ │ │ └── partials │ │ │ │ │ │ ├── alerts.less │ │ │ │ │ │ ├── buttons.less │ │ │ │ │ │ ├── carousel.less │ │ │ │ │ │ ├── close.less │ │ │ │ │ │ ├── divs.less │ │ │ │ │ │ ├── links.less │ │ │ │ │ │ ├── mixins.less │ │ │ │ │ │ ├── navigation.less │ │ │ │ │ │ └── variables.less │ │ │ │ │ ├── meteor │ │ │ │ │ └── package.js │ │ │ │ │ └── sass │ │ │ │ │ ├── bootstrap-accessibility.scss │ │ │ │ │ └── partials │ │ │ │ │ ├── _alerts.scss │ │ │ │ │ ├── _buttons.scss │ │ │ │ │ ├── _carousel.scss │ │ │ │ │ ├── _close.scss │ │ │ │ │ ├── _divs.scss │ │ │ │ │ ├── _links.scss │ │ │ │ │ ├── _mixins.scss │ │ │ │ │ ├── _navigation.scss │ │ │ │ │ └── _variables.scss │ │ │ ├── bs-colorpicker │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-colorpicker.css │ │ │ │ │ ├── bootstrap-colorpicker.css.map │ │ │ │ │ ├── bootstrap-colorpicker.min.css │ │ │ │ │ └── bootstrap-colorpicker.min.css.map │ │ │ │ ├── js │ │ │ │ │ ├── bootstrap-colorpicker.js │ │ │ │ │ ├── bootstrap-colorpicker.js.map │ │ │ │ │ └── bootstrap-colorpicker.min.js.map │ │ │ │ └── package.json │ │ │ ├── bs3 │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── assets │ │ │ │ │ ├── fonts │ │ │ │ │ │ └── bootstrap │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ │ ├── javascripts │ │ │ │ │ │ ├── bootstrap-sprockets.js │ │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ │ └── bootstrap │ │ │ │ │ │ │ ├── affix.js │ │ │ │ │ │ │ ├── alert.js │ │ │ │ │ │ │ ├── button.js │ │ │ │ │ │ │ ├── carousel.js │ │ │ │ │ │ │ ├── collapse.js │ │ │ │ │ │ │ ├── dropdown.js │ │ │ │ │ │ │ ├── modal.js │ │ │ │ │ │ │ ├── popover.js │ │ │ │ │ │ │ ├── scrollspy.js │ │ │ │ │ │ │ ├── tab.js │ │ │ │ │ │ │ ├── tooltip.js │ │ │ │ │ │ │ └── transition.js │ │ │ │ │ └── stylesheets │ │ │ │ │ │ ├── _bootstrap-compass.scss │ │ │ │ │ │ ├── _bootstrap-mincer.scss │ │ │ │ │ │ ├── _bootstrap-sprockets.scss │ │ │ │ │ │ ├── _bootstrap.scss │ │ │ │ │ │ └── bootstrap │ │ │ │ │ │ ├── _alerts.scss │ │ │ │ │ │ ├── _badges.scss │ │ │ │ │ │ ├── _breadcrumbs.scss │ │ │ │ │ │ ├── _button-groups.scss │ │ │ │ │ │ ├── _buttons.scss │ │ │ │ │ │ ├── _carousel.scss │ │ │ │ │ │ ├── _close.scss │ │ │ │ │ │ ├── _code.scss │ │ │ │ │ │ ├── _component-animations.scss │ │ │ │ │ │ ├── _dropdowns.scss │ │ │ │ │ │ ├── _forms.scss │ │ │ │ │ │ ├── _glyphicons.scss │ │ │ │ │ │ ├── _grid.scss │ │ │ │ │ │ ├── _input-groups.scss │ │ │ │ │ │ ├── _jumbotron.scss │ │ │ │ │ │ ├── _labels.scss │ │ │ │ │ │ ├── _list-group.scss │ │ │ │ │ │ ├── _media.scss │ │ │ │ │ │ ├── _mixins.scss │ │ │ │ │ │ ├── _modals.scss │ │ │ │ │ │ ├── _navbar.scss │ │ │ │ │ │ ├── _navs.scss │ │ │ │ │ │ ├── _normalize.scss │ │ │ │ │ │ ├── _pager.scss │ │ │ │ │ │ ├── _pagination.scss │ │ │ │ │ │ ├── _panels.scss │ │ │ │ │ │ ├── _popovers.scss │ │ │ │ │ │ ├── _print.scss │ │ │ │ │ │ ├── _progress-bars.scss │ │ │ │ │ │ ├── _responsive-embed.scss │ │ │ │ │ │ ├── _responsive-utilities.scss │ │ │ │ │ │ ├── _scaffolding.scss │ │ │ │ │ │ ├── _tables.scss │ │ │ │ │ │ ├── _theme.scss │ │ │ │ │ │ ├── _thumbnails.scss │ │ │ │ │ │ ├── _tooltip.scss │ │ │ │ │ │ ├── _type.scss │ │ │ │ │ │ ├── _utilities.scss │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ ├── _wells.scss │ │ │ │ │ │ └── mixins │ │ │ │ │ │ ├── _alerts.scss │ │ │ │ │ │ ├── _background-variant.scss │ │ │ │ │ │ ├── _border-radius.scss │ │ │ │ │ │ ├── _buttons.scss │ │ │ │ │ │ ├── _center-block.scss │ │ │ │ │ │ ├── _clearfix.scss │ │ │ │ │ │ ├── _forms.scss │ │ │ │ │ │ ├── _gradients.scss │ │ │ │ │ │ ├── _grid-framework.scss │ │ │ │ │ │ ├── _grid.scss │ │ │ │ │ │ ├── _hide-text.scss │ │ │ │ │ │ ├── _image.scss │ │ │ │ │ │ ├── _labels.scss │ │ │ │ │ │ ├── _list-group.scss │ │ │ │ │ │ ├── _nav-divider.scss │ │ │ │ │ │ ├── _nav-vertical-align.scss │ │ │ │ │ │ ├── _opacity.scss │ │ │ │ │ │ ├── _pagination.scss │ │ │ │ │ │ ├── _panels.scss │ │ │ │ │ │ ├── _progress-bar.scss │ │ │ │ │ │ ├── _reset-filter.scss │ │ │ │ │ │ ├── _reset-text.scss │ │ │ │ │ │ ├── _resize.scss │ │ │ │ │ │ ├── _responsive-visibility.scss │ │ │ │ │ │ ├── _size.scss │ │ │ │ │ │ ├── _tab-focus.scss │ │ │ │ │ │ ├── _table-row.scss │ │ │ │ │ │ ├── _text-emphasis.scss │ │ │ │ │ │ ├── _text-overflow.scss │ │ │ │ │ │ └── _vendor-prefixes.scss │ │ │ │ ├── eyeglass-exports.js │ │ │ │ └── package.json │ │ │ ├── bs4 │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dist │ │ │ │ │ └── js │ │ │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ │ │ └── bootstrap.bundle.min.js.map │ │ │ │ ├── package.json │ │ │ │ └── scss │ │ │ │ │ ├── _alert.scss │ │ │ │ │ ├── _badge.scss │ │ │ │ │ ├── _breadcrumb.scss │ │ │ │ │ ├── _button-group.scss │ │ │ │ │ ├── _buttons.scss │ │ │ │ │ ├── _card.scss │ │ │ │ │ ├── _carousel.scss │ │ │ │ │ ├── _close.scss │ │ │ │ │ ├── _code.scss │ │ │ │ │ ├── _custom-forms.scss │ │ │ │ │ ├── _deprecated.scss │ │ │ │ │ ├── _dropdown.scss │ │ │ │ │ ├── _forms.scss │ │ │ │ │ ├── _functions.scss │ │ │ │ │ ├── _grid.scss │ │ │ │ │ ├── _images.scss │ │ │ │ │ ├── _input-group.scss │ │ │ │ │ ├── _jumbotron.scss │ │ │ │ │ ├── _list-group.scss │ │ │ │ │ ├── _media.scss │ │ │ │ │ ├── _mixins.scss │ │ │ │ │ ├── _modal.scss │ │ │ │ │ ├── _nav.scss │ │ │ │ │ ├── _navbar.scss │ │ │ │ │ ├── _pagination.scss │ │ │ │ │ ├── _popover.scss │ │ │ │ │ ├── _print.scss │ │ │ │ │ ├── _progress.scss │ │ │ │ │ ├── _reboot.scss │ │ │ │ │ ├── _root.scss │ │ │ │ │ ├── _spinners.scss │ │ │ │ │ ├── _tables.scss │ │ │ │ │ ├── _toasts.scss │ │ │ │ │ ├── _tooltip.scss │ │ │ │ │ ├── _transitions.scss │ │ │ │ │ ├── _type.scss │ │ │ │ │ ├── _utilities.scss │ │ │ │ │ ├── _variables.scss │ │ │ │ │ ├── bootstrap-grid.scss │ │ │ │ │ ├── bootstrap-reboot.scss │ │ │ │ │ ├── bootstrap.scss │ │ │ │ │ ├── mixins │ │ │ │ │ ├── _alert.scss │ │ │ │ │ ├── _background-variant.scss │ │ │ │ │ ├── _badge.scss │ │ │ │ │ ├── _border-radius.scss │ │ │ │ │ ├── _box-shadow.scss │ │ │ │ │ ├── _breakpoints.scss │ │ │ │ │ ├── _buttons.scss │ │ │ │ │ ├── _caret.scss │ │ │ │ │ ├── _clearfix.scss │ │ │ │ │ ├── _deprecate.scss │ │ │ │ │ ├── _float.scss │ │ │ │ │ ├── _forms.scss │ │ │ │ │ ├── _gradients.scss │ │ │ │ │ ├── _grid-framework.scss │ │ │ │ │ ├── _grid.scss │ │ │ │ │ ├── _hover.scss │ │ │ │ │ ├── _image.scss │ │ │ │ │ ├── _list-group.scss │ │ │ │ │ ├── _lists.scss │ │ │ │ │ ├── _nav-divider.scss │ │ │ │ │ ├── _pagination.scss │ │ │ │ │ ├── _reset-text.scss │ │ │ │ │ ├── _resize.scss │ │ │ │ │ ├── _screen-reader.scss │ │ │ │ │ ├── _size.scss │ │ │ │ │ ├── _table-row.scss │ │ │ │ │ ├── _text-emphasis.scss │ │ │ │ │ ├── _text-hide.scss │ │ │ │ │ ├── _text-truncate.scss │ │ │ │ │ ├── _transition.scss │ │ │ │ │ └── _visibility.scss │ │ │ │ │ ├── utilities │ │ │ │ │ ├── _align.scss │ │ │ │ │ ├── _background.scss │ │ │ │ │ ├── _borders.scss │ │ │ │ │ ├── _clearfix.scss │ │ │ │ │ ├── _display.scss │ │ │ │ │ ├── _embed.scss │ │ │ │ │ ├── _flex.scss │ │ │ │ │ ├── _float.scss │ │ │ │ │ ├── _interactions.scss │ │ │ │ │ ├── _overflow.scss │ │ │ │ │ ├── _position.scss │ │ │ │ │ ├── _screenreaders.scss │ │ │ │ │ ├── _shadows.scss │ │ │ │ │ ├── _sizing.scss │ │ │ │ │ ├── _spacing.scss │ │ │ │ │ ├── _stretched-link.scss │ │ │ │ │ ├── _text.scss │ │ │ │ │ └── _visibility.scss │ │ │ │ │ └── vendor │ │ │ │ │ └── _rfs.scss │ │ │ ├── bs5 │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dist │ │ │ │ │ └── js │ │ │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ │ │ └── bootstrap.bundle.min.js.map │ │ │ │ ├── package.json │ │ │ │ └── scss │ │ │ │ │ ├── _accordion.scss │ │ │ │ │ ├── _alert.scss │ │ │ │ │ ├── _badge.scss │ │ │ │ │ ├── _breadcrumb.scss │ │ │ │ │ ├── _button-group.scss │ │ │ │ │ ├── _buttons.scss │ │ │ │ │ ├── _card.scss │ │ │ │ │ ├── _carousel.scss │ │ │ │ │ ├── _close.scss │ │ │ │ │ ├── _containers.scss │ │ │ │ │ ├── _dropdown.scss │ │ │ │ │ ├── _forms.scss │ │ │ │ │ ├── _functions.scss │ │ │ │ │ ├── _grid.scss │ │ │ │ │ ├── _helpers.scss │ │ │ │ │ ├── _images.scss │ │ │ │ │ ├── _list-group.scss │ │ │ │ │ ├── _maps.scss │ │ │ │ │ ├── _mixins.scss │ │ │ │ │ ├── _modal.scss │ │ │ │ │ ├── _nav.scss │ │ │ │ │ ├── _navbar.scss │ │ │ │ │ ├── _offcanvas.scss │ │ │ │ │ ├── _pagination.scss │ │ │ │ │ ├── _placeholders.scss │ │ │ │ │ ├── _popover.scss │ │ │ │ │ ├── _progress.scss │ │ │ │ │ ├── _reboot.scss │ │ │ │ │ ├── _root.scss │ │ │ │ │ ├── _spinners.scss │ │ │ │ │ ├── _tables.scss │ │ │ │ │ ├── _toasts.scss │ │ │ │ │ ├── _tooltip.scss │ │ │ │ │ ├── _transitions.scss │ │ │ │ │ ├── _type.scss │ │ │ │ │ ├── _utilities.scss │ │ │ │ │ ├── _variables-dark.scss │ │ │ │ │ ├── _variables.scss │ │ │ │ │ ├── bootstrap-grid.scss │ │ │ │ │ ├── bootstrap-reboot.scss │ │ │ │ │ ├── bootstrap-utilities.scss │ │ │ │ │ ├── bootstrap.scss │ │ │ │ │ ├── forms │ │ │ │ │ ├── _floating-labels.scss │ │ │ │ │ ├── _form-check.scss │ │ │ │ │ ├── _form-control.scss │ │ │ │ │ ├── _form-range.scss │ │ │ │ │ ├── _form-select.scss │ │ │ │ │ ├── _form-text.scss │ │ │ │ │ ├── _input-group.scss │ │ │ │ │ ├── _labels.scss │ │ │ │ │ └── _validation.scss │ │ │ │ │ ├── helpers │ │ │ │ │ ├── _clearfix.scss │ │ │ │ │ ├── _color-bg.scss │ │ │ │ │ ├── _colored-links.scss │ │ │ │ │ ├── _focus-ring.scss │ │ │ │ │ ├── _icon-link.scss │ │ │ │ │ ├── _position.scss │ │ │ │ │ ├── _ratio.scss │ │ │ │ │ ├── _stacks.scss │ │ │ │ │ ├── _stretched-link.scss │ │ │ │ │ ├── _text-truncation.scss │ │ │ │ │ ├── _visually-hidden.scss │ │ │ │ │ └── _vr.scss │ │ │ │ │ ├── mixins │ │ │ │ │ ├── _alert.scss │ │ │ │ │ ├── _backdrop.scss │ │ │ │ │ ├── _banner.scss │ │ │ │ │ ├── _border-radius.scss │ │ │ │ │ ├── _box-shadow.scss │ │ │ │ │ ├── _breakpoints.scss │ │ │ │ │ ├── _buttons.scss │ │ │ │ │ ├── _caret.scss │ │ │ │ │ ├── _clearfix.scss │ │ │ │ │ ├── _color-mode.scss │ │ │ │ │ ├── _color-scheme.scss │ │ │ │ │ ├── _container.scss │ │ │ │ │ ├── _deprecate.scss │ │ │ │ │ ├── _forms.scss │ │ │ │ │ ├── _gradients.scss │ │ │ │ │ ├── _grid.scss │ │ │ │ │ ├── _image.scss │ │ │ │ │ ├── _list-group.scss │ │ │ │ │ ├── _lists.scss │ │ │ │ │ ├── _pagination.scss │ │ │ │ │ ├── _reset-text.scss │ │ │ │ │ ├── _resize.scss │ │ │ │ │ ├── _table-variants.scss │ │ │ │ │ ├── _text-truncate.scss │ │ │ │ │ ├── _transition.scss │ │ │ │ │ ├── _utilities.scss │ │ │ │ │ └── _visually-hidden.scss │ │ │ │ │ ├── utilities │ │ │ │ │ └── _api.scss │ │ │ │ │ └── vendor │ │ │ │ │ └── _rfs.scss │ │ │ ├── bsw3 │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── cerulean │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ └── _variables.scss │ │ │ │ ├── cosmo │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ ├── _variables.scss │ │ │ │ │ └── font.css │ │ │ │ ├── cyborg │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ ├── _variables.scss │ │ │ │ │ └── font.css │ │ │ │ ├── darkly │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ ├── _variables.scss │ │ │ │ │ └── font.css │ │ │ │ ├── flatly │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ ├── _variables.scss │ │ │ │ │ └── font.css │ │ │ │ ├── journal │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ ├── _variables.scss │ │ │ │ │ └── font.css │ │ │ │ ├── lumen │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ ├── _variables.scss │ │ │ │ │ └── font.css │ │ │ │ ├── package.json │ │ │ │ ├── paper │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ ├── _variables.scss │ │ │ │ │ └── font.css │ │ │ │ ├── readable │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ ├── _variables.scss │ │ │ │ │ └── font.css │ │ │ │ ├── sandstone │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ ├── _variables.scss │ │ │ │ │ └── font.css │ │ │ │ ├── simplex │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ ├── _variables.scss │ │ │ │ │ └── font.css │ │ │ │ ├── slate │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ └── _variables.scss │ │ │ │ ├── spacelab │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ ├── _variables.scss │ │ │ │ │ └── font.css │ │ │ │ ├── superhero │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ ├── _variables.scss │ │ │ │ │ └── font.css │ │ │ │ ├── united │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ ├── _variables.scss │ │ │ │ │ └── font.css │ │ │ │ └── yeti │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ ├── _variables.scss │ │ │ │ │ └── font.css │ │ │ ├── bsw4 │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dist │ │ │ │ │ ├── cerulean │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ └── _variables.scss │ │ │ │ │ ├── cosmo │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ └── font.css │ │ │ │ │ ├── cyborg │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ └── font.css │ │ │ │ │ ├── darkly │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ └── font.css │ │ │ │ │ ├── flatly │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ └── font.css │ │ │ │ │ ├── journal │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ └── font.css │ │ │ │ │ ├── litera │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ └── _variables.scss │ │ │ │ │ ├── lumen │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ └── font.css │ │ │ │ │ ├── lux │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ └── font.css │ │ │ │ │ ├── materia │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ └── font.css │ │ │ │ │ ├── minty │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ └── font.css │ │ │ │ │ ├── pulse │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ └── _variables.scss │ │ │ │ │ ├── sandstone │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ └── font.css │ │ │ │ │ ├── simplex │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ └── font.css │ │ │ │ │ ├── sketchy │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ └── font.css │ │ │ │ │ ├── slate │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ └── _variables.scss │ │ │ │ │ ├── solar │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ └── font.css │ │ │ │ │ ├── spacelab │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ └── font.css │ │ │ │ │ ├── superhero │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ └── font.css │ │ │ │ │ ├── united │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ └── font.css │ │ │ │ │ └── yeti │ │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ └── font.css │ │ │ │ └── package.json │ │ │ └── bsw5 │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dist │ │ │ │ ├── cerulean │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ └── _variables.scss │ │ │ │ ├── cosmo │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ ├── _variables.scss │ │ │ │ │ └── font.css │ │ │ │ ├── cyborg │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ ├── _variables.scss │ │ │ │ │ └── font.css │ │ │ │ ├── darkly │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ ├── _variables.scss │ │ │ │ │ └── font.css │ │ │ │ ├── flatly │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ ├── _variables.scss │ │ │ │ │ └── font.css │ │ │ │ ├── journal │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ ├── _variables.scss │ │ │ │ │ └── font.css │ │ │ │ ├── litera │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ └── _variables.scss │ │ │ │ ├── lumen │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ ├── _variables.scss │ │ │ │ │ └── font.css │ │ │ │ ├── lux │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ ├── _variables.scss │ │ │ │ │ └── font.css │ │ │ │ ├── materia │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ ├── _variables.scss │ │ │ │ │ └── font.css │ │ │ │ ├── minty │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ ├── _variables.scss │ │ │ │ │ └── font.css │ │ │ │ ├── morph │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ ├── _variables.scss │ │ │ │ │ └── font.css │ │ │ │ ├── pulse │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ └── _variables.scss │ │ │ │ ├── quartz │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ └── _variables.scss │ │ │ │ ├── sandstone │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ ├── _variables.scss │ │ │ │ │ └── font.css │ │ │ │ ├── simplex │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ ├── _variables.scss │ │ │ │ │ └── font.css │ │ │ │ ├── sketchy │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ ├── _variables.scss │ │ │ │ │ └── font.css │ │ │ │ ├── slate │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ └── _variables.scss │ │ │ │ ├── solar │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ ├── _variables.scss │ │ │ │ │ └── font.css │ │ │ │ ├── spacelab │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ ├── _variables.scss │ │ │ │ │ └── font.css │ │ │ │ ├── superhero │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ ├── _variables.scss │ │ │ │ │ └── font.css │ │ │ │ ├── united │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ ├── _variables.scss │ │ │ │ │ └── font.css │ │ │ │ ├── vapor │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ ├── _variables.scss │ │ │ │ │ └── font.css │ │ │ │ ├── yeti │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ ├── _variables.scss │ │ │ │ │ └── font.css │ │ │ │ └── zephyr │ │ │ │ │ ├── _bootswatch.scss │ │ │ │ │ ├── _variables.scss │ │ │ │ │ └── font.css │ │ │ │ └── package.json │ │ ├── package.json │ │ ├── rmarkdown │ │ │ └── templates │ │ │ │ ├── legacy │ │ │ │ ├── skeleton │ │ │ │ │ └── skeleton.Rmd │ │ │ │ └── template.yaml │ │ │ │ ├── new │ │ │ │ ├── skeleton │ │ │ │ │ └── skeleton.Rmd │ │ │ │ └── template.yaml │ │ │ │ └── real-time │ │ │ │ ├── skeleton │ │ │ │ └── skeleton.Rmd │ │ │ │ └── template.yaml │ │ ├── sass-utils │ │ │ └── color-contrast.scss │ │ ├── themer-demo │ │ │ ├── R │ │ │ │ └── tips.R │ │ │ ├── app.R │ │ │ ├── deploy.R │ │ │ ├── deploy │ │ │ │ └── app.R │ │ │ └── global.R │ │ └── themer │ │ │ ├── options.json │ │ │ ├── themer.js │ │ │ └── themer.scss │ │ ├── cachem │ │ ├── DESCRIPTION │ │ ├── INDEX │ │ ├── LICENSE │ │ ├── MD5 │ │ ├── Meta │ │ │ ├── Rd.rds │ │ │ ├── features.rds │ │ │ ├── hsearch.rds │ │ │ ├── links.rds │ │ │ ├── nsInfo.rds │ │ │ └── package.rds │ │ ├── NAMESPACE │ │ ├── NEWS.md │ │ ├── R │ │ │ ├── cachem │ │ │ ├── cachem.rdb │ │ │ └── cachem.rdx │ │ ├── help │ │ │ ├── AnIndex │ │ │ ├── aliases.rds │ │ │ ├── cachem.rdb │ │ │ ├── cachem.rdx │ │ │ └── paths.rds │ │ ├── html │ │ │ ├── 00Index.html │ │ │ └── R.css │ │ └── libs │ │ │ └── x64 │ │ │ ├── cachem.dll │ │ │ └── symbols.rds │ │ ├── cli │ │ ├── DESCRIPTION │ │ ├── INDEX │ │ ├── LICENSE │ │ ├── MD5 │ │ ├── Meta │ │ │ ├── Rd.rds │ │ │ ├── features.rds │ │ │ ├── hsearch.rds │ │ │ ├── links.rds │ │ │ ├── nsInfo.rds │ │ │ └── package.rds │ │ ├── NAMESPACE │ │ ├── NEWS.md │ │ ├── R │ │ │ ├── cli │ │ │ ├── cli.rdb │ │ │ ├── cli.rdx │ │ │ ├── sysdata.rdb │ │ │ └── sysdata.rdx │ │ ├── examples │ │ │ └── apps │ │ │ │ ├── news.R │ │ │ │ ├── outdated.R │ │ │ │ ├── search.R │ │ │ │ └── up.R │ │ ├── exec │ │ │ ├── news.R │ │ │ ├── outdated.R │ │ │ ├── search.R │ │ │ └── up.R │ │ ├── help │ │ │ ├── AnIndex │ │ │ ├── aliases.rds │ │ │ ├── cli.rdb │ │ │ ├── cli.rdx │ │ │ ├── figures │ │ │ │ ├── demo-spinners.svg │ │ │ │ ├── get-spinner.svg │ │ │ │ ├── make-spinner-custom.svg │ │ │ │ ├── make-spinner-default.svg │ │ │ │ ├── make-spinner-template.svg │ │ │ │ ├── progress-1.svg │ │ │ │ ├── progress-after.svg │ │ │ │ ├── progress-along-1.svg │ │ │ │ ├── progress-along-2.svg │ │ │ │ ├── progress-along-3.svg │ │ │ │ ├── progress-clear.svg │ │ │ │ ├── progress-current.svg │ │ │ │ ├── progress-format.svg │ │ │ │ ├── progress-message.svg │ │ │ │ ├── progress-natotal.svg │ │ │ │ ├── progress-output.svg │ │ │ │ ├── progress-output2.svg │ │ │ │ ├── progress-step-dynamic.svg │ │ │ │ ├── progress-step-msg.svg │ │ │ │ ├── progress-step-spin.svg │ │ │ │ ├── progress-step.svg │ │ │ │ └── progress-tasks.svg │ │ │ └── paths.rds │ │ ├── html │ │ │ ├── 00Index.html │ │ │ └── R.css │ │ ├── include │ │ │ └── cli │ │ │ │ └── progress.h │ │ ├── libs │ │ │ └── x64 │ │ │ │ ├── cli.dll │ │ │ │ └── symbols.rds │ │ ├── logo.txt │ │ └── shiny │ │ │ ├── along │ │ │ └── app.R │ │ │ ├── format │ │ │ └── app.R │ │ │ ├── nested │ │ │ └── app.R │ │ │ ├── output │ │ │ └── app.R │ │ │ └── simple │ │ │ └── app.R │ │ ├── commonmark │ │ ├── DESCRIPTION │ │ ├── INDEX │ │ ├── LICENSE │ │ ├── MD5 │ │ ├── Meta │ │ │ ├── Rd.rds │ │ │ ├── features.rds │ │ │ ├── hsearch.rds │ │ │ ├── links.rds │ │ │ ├── nsInfo.rds │ │ │ └── package.rds │ │ ├── NAMESPACE │ │ ├── NEWS │ │ ├── R │ │ │ ├── commonmark │ │ │ ├── commonmark.rdb │ │ │ └── commonmark.rdx │ │ ├── help │ │ │ ├── AnIndex │ │ │ ├── aliases.rds │ │ │ ├── commonmark.rdb │ │ │ ├── commonmark.rdx │ │ │ └── paths.rds │ │ ├── html │ │ │ ├── 00Index.html │ │ │ └── R.css │ │ └── libs │ │ │ └── x64 │ │ │ ├── commonmark.dll │ │ │ └── symbols.rds │ │ ├── crayon │ │ ├── DESCRIPTION │ │ ├── INDEX │ │ ├── LICENSE │ │ ├── MD5 │ │ ├── Meta │ │ │ ├── Rd.rds │ │ │ ├── features.rds │ │ │ ├── hsearch.rds │ │ │ ├── links.rds │ │ │ ├── nsInfo.rds │ │ │ └── package.rds │ │ ├── NAMESPACE │ │ ├── NEWS.md │ │ ├── R │ │ │ ├── crayon │ │ │ ├── crayon.rdb │ │ │ └── crayon.rdx │ │ ├── help │ │ │ ├── AnIndex │ │ │ ├── aliases.rds │ │ │ ├── crayon.rdb │ │ │ ├── crayon.rdx │ │ │ └── paths.rds │ │ └── html │ │ │ ├── 00Index.html │ │ │ └── R.css │ │ ├── digest │ │ ├── DESCRIPTION │ │ ├── GPL-2 │ │ ├── INDEX │ │ ├── MD5 │ │ ├── Meta │ │ │ ├── Rd.rds │ │ │ ├── demo.rds │ │ │ ├── features.rds │ │ │ ├── hsearch.rds │ │ │ ├── links.rds │ │ │ ├── nsInfo.rds │ │ │ ├── package.rds │ │ │ └── vignette.rds │ │ ├── NAMESPACE │ │ ├── R │ │ │ ├── digest │ │ │ ├── digest.rdb │ │ │ └── digest.rdx │ │ ├── demo │ │ │ └── vectorised.R │ │ ├── doc │ │ │ ├── index.html │ │ │ ├── sha1.R │ │ │ ├── sha1.html │ │ │ └── sha1.md │ │ ├── help │ │ │ ├── AnIndex │ │ │ ├── aliases.rds │ │ │ ├── digest.rdb │ │ │ ├── digest.rdx │ │ │ └── paths.rds │ │ ├── html │ │ │ ├── 00Index.html │ │ │ └── R.css │ │ ├── include │ │ │ └── pmurhashAPI.h │ │ ├── libs │ │ │ └── x64 │ │ │ │ ├── digest.dll │ │ │ │ └── symbols.rds │ │ └── tinytest │ │ │ ├── test_aes.R │ │ │ ├── test_blake3.R │ │ │ ├── test_crc32.R │ │ │ ├── test_digest.R │ │ │ ├── test_digest2int.R │ │ │ ├── test_encoding.R │ │ │ ├── test_hmac.R │ │ │ ├── test_misc.R │ │ │ ├── test_new_matrix_behaviour.R │ │ │ ├── test_num2hex.R │ │ │ ├── test_raw.R │ │ │ └── test_sha1.R │ │ ├── fastmap │ │ ├── DESCRIPTION │ │ ├── INDEX │ │ ├── LICENSE │ │ ├── MD5 │ │ ├── Meta │ │ │ ├── Rd.rds │ │ │ ├── features.rds │ │ │ ├── hsearch.rds │ │ │ ├── links.rds │ │ │ ├── nsInfo.rds │ │ │ └── package.rds │ │ ├── NAMESPACE │ │ ├── NEWS.md │ │ ├── R │ │ │ ├── fastmap │ │ │ ├── fastmap.rdb │ │ │ └── fastmap.rdx │ │ ├── help │ │ │ ├── AnIndex │ │ │ ├── aliases.rds │ │ │ ├── fastmap.rdb │ │ │ ├── fastmap.rdx │ │ │ └── paths.rds │ │ ├── html │ │ │ ├── 00Index.html │ │ │ └── R.css │ │ └── libs │ │ │ └── x64 │ │ │ ├── fastmap.dll │ │ │ └── symbols.rds │ │ ├── fontawesome │ │ ├── DESCRIPTION │ │ ├── INDEX │ │ ├── LICENSE │ │ ├── MD5 │ │ ├── Meta │ │ │ ├── Rd.rds │ │ │ ├── features.rds │ │ │ ├── hsearch.rds │ │ │ ├── links.rds │ │ │ ├── nsInfo.rds │ │ │ └── package.rds │ │ ├── NAMESPACE │ │ ├── NEWS.md │ │ ├── R │ │ │ ├── fontawesome │ │ │ ├── fontawesome.rdb │ │ │ ├── fontawesome.rdx │ │ │ ├── sysdata.rdb │ │ │ └── sysdata.rdx │ │ ├── apps │ │ │ └── 138-icon-fontawesome │ │ │ │ └── app.R │ │ ├── fontawesome │ │ │ ├── css │ │ │ │ ├── all.css │ │ │ │ ├── all.min.css │ │ │ │ ├── v4-shims.css │ │ │ │ └── v4-shims.min.css │ │ │ └── webfonts │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ ├── fa-solid-900.woff2 │ │ │ │ ├── fa-v4compatibility.ttf │ │ │ │ └── fa-v4compatibility.woff2 │ │ ├── help │ │ │ ├── AnIndex │ │ │ ├── aliases.rds │ │ │ ├── figures │ │ │ │ ├── fontawesome_rmd.png │ │ │ │ ├── fontawesome_shiny_app.png │ │ │ │ └── logo.svg │ │ │ ├── fontawesome.rdb │ │ │ ├── fontawesome.rdx │ │ │ └── paths.rds │ │ └── html │ │ │ ├── 00Index.html │ │ │ └── R.css │ │ ├── fs │ │ ├── COPYRIGHTS │ │ ├── DESCRIPTION │ │ ├── INDEX │ │ ├── LICENSE │ │ ├── MD5 │ │ ├── Meta │ │ │ ├── Rd.rds │ │ │ ├── features.rds │ │ │ ├── hsearch.rds │ │ │ ├── links.rds │ │ │ ├── nsInfo.rds │ │ │ ├── package.rds │ │ │ └── vignette.rds │ │ ├── NAMESPACE │ │ ├── NEWS.md │ │ ├── R │ │ │ ├── fs │ │ │ ├── fs.rdb │ │ │ └── fs.rdx │ │ ├── WORDLIST │ │ ├── doc │ │ │ ├── function-comparisons.R │ │ │ ├── function-comparisons.Rmd │ │ │ ├── function-comparisons.html │ │ │ └── index.html │ │ ├── help │ │ │ ├── AnIndex │ │ │ ├── aliases.rds │ │ │ ├── figures │ │ │ │ └── logo.png │ │ │ ├── fs.rdb │ │ │ ├── fs.rdx │ │ │ └── paths.rds │ │ ├── html │ │ │ ├── 00Index.html │ │ │ └── R.css │ │ └── libs │ │ │ └── x64 │ │ │ ├── fs.dll │ │ │ └── symbols.rds │ │ ├── glue │ │ ├── DESCRIPTION │ │ ├── INDEX │ │ ├── LICENSE │ │ ├── MD5 │ │ ├── Meta │ │ │ ├── Rd.rds │ │ │ ├── features.rds │ │ │ ├── hsearch.rds │ │ │ ├── links.rds │ │ │ ├── nsInfo.rds │ │ │ ├── package.rds │ │ │ └── vignette.rds │ │ ├── NAMESPACE │ │ ├── NEWS.md │ │ ├── R │ │ │ ├── glue │ │ │ ├── glue.rdb │ │ │ └── glue.rdx │ │ ├── doc │ │ │ ├── engines.R │ │ │ ├── engines.Rmd │ │ │ ├── engines.html │ │ │ ├── glue.R │ │ │ ├── glue.Rmd │ │ │ ├── glue.html │ │ │ ├── index.html │ │ │ ├── transformers.R │ │ │ ├── transformers.Rmd │ │ │ ├── transformers.html │ │ │ ├── wrappers.R │ │ │ ├── wrappers.Rmd │ │ │ └── wrappers.html │ │ ├── help │ │ │ ├── AnIndex │ │ │ ├── aliases.rds │ │ │ ├── figures │ │ │ │ └── logo.png │ │ │ ├── glue.rdb │ │ │ ├── glue.rdx │ │ │ └── paths.rds │ │ ├── html │ │ │ ├── 00Index.html │ │ │ └── R.css │ │ └── libs │ │ │ └── x64 │ │ │ ├── glue.dll │ │ │ └── symbols.rds │ │ ├── htmltools │ │ ├── DESCRIPTION │ │ ├── INDEX │ │ ├── MD5 │ │ ├── Meta │ │ │ ├── Rd.rds │ │ │ ├── features.rds │ │ │ ├── hsearch.rds │ │ │ ├── links.rds │ │ │ ├── nsInfo.rds │ │ │ └── package.rds │ │ ├── NAMESPACE │ │ ├── NEWS.md │ │ ├── R │ │ │ ├── htmltools │ │ │ ├── htmltools.rdb │ │ │ └── htmltools.rdx │ │ ├── fill │ │ │ └── fill.css │ │ ├── help │ │ │ ├── AnIndex │ │ │ ├── aliases.rds │ │ │ ├── figures │ │ │ │ ├── lifecycle-deprecated.svg │ │ │ │ ├── lifecycle-experimental.svg │ │ │ │ ├── lifecycle-questioning.svg │ │ │ │ ├── lifecycle-superseded.svg │ │ │ │ ├── logo.png │ │ │ │ └── plotly-taglist.png │ │ │ ├── htmltools.rdb │ │ │ ├── htmltools.rdx │ │ │ └── paths.rds │ │ ├── html │ │ │ ├── 00Index.html │ │ │ └── R.css │ │ └── libs │ │ │ └── x64 │ │ │ ├── htmltools.dll │ │ │ └── symbols.rds │ │ ├── httpuv │ │ ├── DESCRIPTION │ │ ├── INDEX │ │ ├── LICENSE │ │ ├── MD5 │ │ ├── Meta │ │ │ ├── Rd.rds │ │ │ ├── demo.rds │ │ │ ├── features.rds │ │ │ ├── hsearch.rds │ │ │ ├── links.rds │ │ │ ├── nsInfo.rds │ │ │ └── package.rds │ │ ├── NAMESPACE │ │ ├── NEWS.md │ │ ├── R │ │ │ ├── httpuv │ │ │ ├── httpuv.rdb │ │ │ └── httpuv.rdx │ │ ├── demo │ │ │ ├── daemon-echo.R │ │ │ ├── echo.R │ │ │ └── json-server.R │ │ ├── example-static-site │ │ │ ├── index.html │ │ │ └── office.html │ │ ├── help │ │ │ ├── AnIndex │ │ │ ├── aliases.rds │ │ │ ├── httpuv.rdb │ │ │ ├── httpuv.rdx │ │ │ └── paths.rds │ │ ├── html │ │ │ ├── 00Index.html │ │ │ └── R.css │ │ └── libs │ │ │ └── x64 │ │ │ ├── httpuv.dll │ │ │ └── symbols.rds │ │ ├── jquerylib │ │ ├── DESCRIPTION │ │ ├── INDEX │ │ ├── LICENSE │ │ ├── MD5 │ │ ├── Meta │ │ │ ├── Rd.rds │ │ │ ├── features.rds │ │ │ ├── hsearch.rds │ │ │ ├── links.rds │ │ │ ├── nsInfo.rds │ │ │ └── package.rds │ │ ├── NAMESPACE │ │ ├── NEWS.md │ │ ├── R │ │ │ ├── jquerylib │ │ │ ├── jquerylib.rdb │ │ │ └── jquerylib.rdx │ │ ├── help │ │ │ ├── AnIndex │ │ │ ├── aliases.rds │ │ │ ├── jquerylib.rdb │ │ │ ├── jquerylib.rdx │ │ │ └── paths.rds │ │ ├── html │ │ │ ├── 00Index.html │ │ │ └── R.css │ │ └── lib │ │ │ ├── 1.12.4 │ │ │ ├── jquery-1.12.4.js │ │ │ ├── jquery-1.12.4.min.js │ │ │ └── jquery-1.12.4.min.map │ │ │ ├── 2.2.4 │ │ │ ├── jquery-2.2.4.js │ │ │ ├── jquery-2.2.4.min.js │ │ │ └── jquery-2.2.4.min.map │ │ │ ├── 3.6.0 │ │ │ ├── jquery-3.6.0.js │ │ │ ├── jquery-3.6.0.min.js │ │ │ └── jquery-3.6.0.min.map │ │ │ ├── AUTHORS.txt │ │ │ └── LICENSE.txt │ │ ├── jsonlite │ │ ├── CITATION │ │ ├── DESCRIPTION │ │ ├── INDEX │ │ ├── LICENSE │ │ ├── MD5 │ │ ├── Meta │ │ │ ├── Rd.rds │ │ │ ├── features.rds │ │ │ ├── hsearch.rds │ │ │ ├── links.rds │ │ │ ├── nsInfo.rds │ │ │ ├── package.rds │ │ │ └── vignette.rds │ │ ├── NAMESPACE │ │ ├── NEWS │ │ ├── R │ │ │ ├── jsonlite │ │ │ ├── jsonlite.rdb │ │ │ └── jsonlite.rdx │ │ ├── doc │ │ │ ├── index.html │ │ │ ├── json-aaquickstart.R │ │ │ ├── json-aaquickstart.Rmd │ │ │ ├── json-aaquickstart.html │ │ │ ├── json-apis.Rmd │ │ │ ├── json-apis.html │ │ │ ├── json-mapping.pdf │ │ │ ├── json-mapping.pdf.asis │ │ │ ├── json-opencpu.pdf │ │ │ ├── json-opencpu.pdf.asis │ │ │ ├── json-paging.Rmd │ │ │ └── json-paging.html │ │ ├── help │ │ │ ├── AnIndex │ │ │ ├── aliases.rds │ │ │ ├── jsonlite.rdb │ │ │ ├── jsonlite.rdx │ │ │ └── paths.rds │ │ ├── html │ │ │ ├── 00Index.html │ │ │ └── R.css │ │ └── libs │ │ │ └── x64 │ │ │ ├── jsonlite.dll │ │ │ └── symbols.rds │ │ ├── later │ │ ├── DESCRIPTION │ │ ├── INDEX │ │ ├── LICENSE │ │ ├── MD5 │ │ ├── Meta │ │ │ ├── Rd.rds │ │ │ ├── features.rds │ │ │ ├── hsearch.rds │ │ │ ├── links.rds │ │ │ ├── nsInfo.rds │ │ │ ├── package.rds │ │ │ └── vignette.rds │ │ ├── NAMESPACE │ │ ├── NEWS.md │ │ ├── R │ │ │ ├── later │ │ │ ├── later.rdb │ │ │ └── later.rdx │ │ ├── bgtest.cpp │ │ ├── doc │ │ │ ├── index.html │ │ │ ├── later-cpp.Rmd │ │ │ └── later-cpp.html │ │ ├── help │ │ │ ├── AnIndex │ │ │ ├── aliases.rds │ │ │ ├── later.rdb │ │ │ ├── later.rdx │ │ │ └── paths.rds │ │ ├── html │ │ │ ├── 00Index.html │ │ │ └── R.css │ │ ├── include │ │ │ ├── later.h │ │ │ └── later_api.h │ │ └── libs │ │ │ └── x64 │ │ │ ├── later.dll │ │ │ └── symbols.rds │ │ ├── lifecycle │ │ ├── DESCRIPTION │ │ ├── INDEX │ │ ├── LICENSE │ │ ├── MD5 │ │ ├── Meta │ │ │ ├── Rd.rds │ │ │ ├── features.rds │ │ │ ├── hsearch.rds │ │ │ ├── links.rds │ │ │ ├── nsInfo.rds │ │ │ ├── package.rds │ │ │ └── vignette.rds │ │ ├── NAMESPACE │ │ ├── NEWS.md │ │ ├── R │ │ │ ├── lifecycle │ │ │ ├── lifecycle.rdb │ │ │ └── lifecycle.rdx │ │ ├── doc │ │ │ ├── communicate.R │ │ │ ├── communicate.Rmd │ │ │ ├── communicate.html │ │ │ ├── index.html │ │ │ ├── manage.R │ │ │ ├── manage.Rmd │ │ │ ├── manage.html │ │ │ ├── stages.R │ │ │ ├── stages.Rmd │ │ │ └── stages.html │ │ ├── help │ │ │ ├── AnIndex │ │ │ ├── aliases.rds │ │ │ ├── figures │ │ │ │ ├── lifecycle-archived.svg │ │ │ │ ├── lifecycle-defunct.svg │ │ │ │ ├── lifecycle-deprecated.svg │ │ │ │ ├── lifecycle-experimental.svg │ │ │ │ ├── lifecycle-maturing.svg │ │ │ │ ├── lifecycle-questioning.svg │ │ │ │ ├── lifecycle-retired.svg │ │ │ │ ├── lifecycle-soft-deprecated.svg │ │ │ │ ├── lifecycle-stable.svg │ │ │ │ └── lifecycle-superseded.svg │ │ │ ├── lifecycle.rdb │ │ │ ├── lifecycle.rdx │ │ │ ├── macros │ │ │ │ └── lifecycle.Rd │ │ │ └── paths.rds │ │ └── html │ │ │ ├── 00Index.html │ │ │ └── R.css │ │ ├── magrittr │ │ ├── DESCRIPTION │ │ ├── INDEX │ │ ├── LICENSE │ │ ├── MD5 │ │ ├── Meta │ │ │ ├── Rd.rds │ │ │ ├── features.rds │ │ │ ├── hsearch.rds │ │ │ ├── links.rds │ │ │ ├── nsInfo.rds │ │ │ ├── package.rds │ │ │ └── vignette.rds │ │ ├── NAMESPACE │ │ ├── NEWS.md │ │ ├── R │ │ │ ├── magrittr │ │ │ ├── magrittr.rdb │ │ │ └── magrittr.rdx │ │ ├── doc │ │ │ ├── index.html │ │ │ ├── magrittr.R │ │ │ ├── magrittr.Rmd │ │ │ ├── magrittr.html │ │ │ ├── tradeoffs.R │ │ │ ├── tradeoffs.Rmd │ │ │ └── tradeoffs.html │ │ ├── help │ │ │ ├── AnIndex │ │ │ ├── aliases.rds │ │ │ ├── figures │ │ │ │ ├── exposition-1.png │ │ │ │ └── logo.png │ │ │ ├── magrittr.rdb │ │ │ ├── magrittr.rdx │ │ │ └── paths.rds │ │ ├── html │ │ │ ├── 00Index.html │ │ │ └── R.css │ │ ├── libs │ │ │ └── x64 │ │ │ │ ├── magrittr.dll │ │ │ │ └── symbols.rds │ │ ├── logo-hex.png │ │ ├── logo-hex.svg │ │ ├── logo.png │ │ └── logo.svg │ │ ├── memoise │ │ ├── DESCRIPTION │ │ ├── INDEX │ │ ├── LICENSE │ │ ├── MD5 │ │ ├── Meta │ │ │ ├── Rd.rds │ │ │ ├── features.rds │ │ │ ├── hsearch.rds │ │ │ ├── links.rds │ │ │ ├── nsInfo.rds │ │ │ └── package.rds │ │ ├── NAMESPACE │ │ ├── NEWS.md │ │ ├── R │ │ │ ├── memoise │ │ │ ├── memoise.rdb │ │ │ └── memoise.rdx │ │ ├── help │ │ │ ├── AnIndex │ │ │ ├── aliases.rds │ │ │ ├── memoise.rdb │ │ │ ├── memoise.rdx │ │ │ └── paths.rds │ │ └── html │ │ │ ├── 00Index.html │ │ │ └── R.css │ │ ├── mime │ │ ├── DESCRIPTION │ │ ├── INDEX │ │ ├── MD5 │ │ ├── Meta │ │ │ ├── Rd.rds │ │ │ ├── features.rds │ │ │ ├── hsearch.rds │ │ │ ├── links.rds │ │ │ ├── nsInfo.rds │ │ │ └── package.rds │ │ ├── NAMESPACE │ │ ├── NEWS.Rd │ │ ├── R │ │ │ ├── mime │ │ │ ├── mime.rdb │ │ │ └── mime.rdx │ │ ├── help │ │ │ ├── AnIndex │ │ │ ├── aliases.rds │ │ │ ├── mime.rdb │ │ │ ├── mime.rdx │ │ │ └── paths.rds │ │ ├── html │ │ │ ├── 00Index.html │ │ │ └── R.css │ │ └── libs │ │ │ └── x64 │ │ │ ├── mime.dll │ │ │ └── symbols.rds │ │ ├── promises │ │ ├── DESCRIPTION │ │ ├── INDEX │ │ ├── LICENSE │ │ ├── MD5 │ │ ├── Meta │ │ │ ├── Rd.rds │ │ │ ├── features.rds │ │ │ ├── hsearch.rds │ │ │ ├── links.rds │ │ │ ├── nsInfo.rds │ │ │ ├── package.rds │ │ │ └── vignette.rds │ │ ├── NAMESPACE │ │ ├── NEWS.md │ │ ├── R │ │ │ ├── promises │ │ │ ├── promises.rdb │ │ │ └── promises.rdx │ │ ├── WORDLIST │ │ ├── doc │ │ │ ├── index.html │ │ │ ├── promises_01_motivation.Rmd │ │ │ ├── promises_01_motivation.html │ │ │ ├── promises_02_intro.Rmd │ │ │ ├── promises_02_intro.html │ │ │ ├── promises_03_overview.Rmd │ │ │ ├── promises_03_overview.html │ │ │ ├── promises_04_futures.Rmd │ │ │ ├── promises_04_futures.html │ │ │ ├── promises_05_future_promise.R │ │ │ ├── promises_05_future_promise.Rmd │ │ │ ├── promises_05_future_promise.html │ │ │ ├── promises_06_shiny.Rmd │ │ │ ├── promises_06_shiny.html │ │ │ ├── promises_07_combining.Rmd │ │ │ ├── promises_07_combining.html │ │ │ ├── promises_08_casestudy.Rmd │ │ │ └── promises_08_casestudy.html │ │ ├── help │ │ │ ├── AnIndex │ │ │ ├── aliases.rds │ │ │ ├── figures │ │ │ │ ├── lifecycle-archived.svg │ │ │ │ ├── lifecycle-defunct.svg │ │ │ │ ├── lifecycle-deprecated.svg │ │ │ │ ├── lifecycle-experimental.svg │ │ │ │ ├── lifecycle-maturing.svg │ │ │ │ ├── lifecycle-questioning.svg │ │ │ │ ├── lifecycle-stable.svg │ │ │ │ └── lifecycle-superseded.svg │ │ │ ├── paths.rds │ │ │ ├── promises.rdb │ │ │ └── promises.rdx │ │ ├── html │ │ │ ├── 00Index.html │ │ │ └── R.css │ │ └── libs │ │ │ └── x64 │ │ │ ├── promises.dll │ │ │ └── symbols.rds │ │ ├── rappdirs │ │ ├── DESCRIPTION │ │ ├── INDEX │ │ ├── LICENSE │ │ ├── MD5 │ │ ├── Meta │ │ │ ├── Rd.rds │ │ │ ├── features.rds │ │ │ ├── hsearch.rds │ │ │ ├── links.rds │ │ │ ├── nsInfo.rds │ │ │ └── package.rds │ │ ├── NAMESPACE │ │ ├── NEWS.md │ │ ├── R │ │ │ ├── rappdirs │ │ │ ├── rappdirs.rdb │ │ │ └── rappdirs.rdx │ │ ├── help │ │ │ ├── AnIndex │ │ │ ├── aliases.rds │ │ │ ├── paths.rds │ │ │ ├── rappdirs.rdb │ │ │ └── rappdirs.rdx │ │ ├── html │ │ │ ├── 00Index.html │ │ │ └── R.css │ │ └── libs │ │ │ └── x64 │ │ │ ├── rappdirs.dll │ │ │ └── symbols.rds │ │ ├── rlang │ │ ├── DESCRIPTION │ │ ├── INDEX │ │ ├── LICENSE │ │ ├── MD5 │ │ ├── Meta │ │ │ ├── Rd.rds │ │ │ ├── features.rds │ │ │ ├── hsearch.rds │ │ │ ├── links.rds │ │ │ ├── nsInfo.rds │ │ │ └── package.rds │ │ ├── NAMESPACE │ │ ├── NEWS.md │ │ ├── R │ │ │ ├── rlang │ │ │ ├── rlang.rdb │ │ │ └── rlang.rdx │ │ ├── backtrace-ver │ │ ├── help │ │ │ ├── AnIndex │ │ │ ├── aliases.rds │ │ │ ├── figures │ │ │ │ ├── lifecycle-archived.svg │ │ │ │ ├── lifecycle-defunct.svg │ │ │ │ ├── lifecycle-deprecated.svg │ │ │ │ ├── lifecycle-experimental.svg │ │ │ │ ├── lifecycle-maturing.svg │ │ │ │ ├── lifecycle-questioning.svg │ │ │ │ ├── lifecycle-retired.svg │ │ │ │ ├── lifecycle-soft-deprecated.svg │ │ │ │ ├── lifecycle-stable.svg │ │ │ │ ├── lifecycle-superseded.svg │ │ │ │ └── logo.png │ │ │ ├── paths.rds │ │ │ ├── rlang.rdb │ │ │ └── rlang.rdx │ │ ├── html │ │ │ ├── 00Index.html │ │ │ └── R.css │ │ └── libs │ │ │ └── x64 │ │ │ ├── rlang.dll │ │ │ └── symbols.rds │ │ ├── sass │ │ ├── DESCRIPTION │ │ ├── INDEX │ │ ├── LICENSE │ │ ├── MD5 │ │ ├── Meta │ │ │ ├── Rd.rds │ │ │ ├── features.rds │ │ │ ├── hsearch.rds │ │ │ ├── links.rds │ │ │ ├── nsInfo.rds │ │ │ ├── package.rds │ │ │ └── vignette.rds │ │ ├── NAMESPACE │ │ ├── NEWS.md │ │ ├── R │ │ │ ├── sass │ │ │ ├── sass.rdb │ │ │ └── sass.rdx │ │ ├── doc │ │ │ ├── index.html │ │ │ ├── sass.R │ │ │ ├── sass.Rmd │ │ │ └── sass.html │ │ ├── examples │ │ │ ├── example-full.scss │ │ │ ├── rules.scss │ │ │ └── variables.scss │ │ ├── help │ │ │ ├── AnIndex │ │ │ ├── aliases.rds │ │ │ ├── figures │ │ │ │ ├── logo.svg │ │ │ │ └── sass-logo-color.png │ │ │ ├── paths.rds │ │ │ ├── sass.rdb │ │ │ └── sass.rdx │ │ ├── html │ │ │ ├── 00Index.html │ │ │ └── R.css │ │ ├── libs │ │ │ └── x64 │ │ │ │ ├── sass.dll │ │ │ │ └── symbols.rds │ │ ├── sass-color │ │ │ ├── DESCRIPTION │ │ │ ├── README.md │ │ │ ├── app.R │ │ │ └── rsconnect │ │ │ │ └── shinyapps.io │ │ │ │ └── gallery │ │ │ │ └── sass-color.dcf │ │ ├── sass-font │ │ │ ├── DESCRIPTION │ │ │ ├── README.md │ │ │ ├── app.R │ │ │ ├── rsconnect │ │ │ │ └── shinyapps.io │ │ │ │ │ └── gallery │ │ │ │ │ └── sass-font.dcf │ │ │ └── sass-font.scss │ │ ├── sass-size │ │ │ ├── DESCRIPTION │ │ │ ├── README.md │ │ │ ├── app.R │ │ │ ├── rsconnect │ │ │ │ └── shinyapps.io │ │ │ │ │ └── gallery │ │ │ │ │ └── sass-size.dcf │ │ │ └── sass-size.scss │ │ └── sass-theme │ │ │ ├── DESCRIPTION │ │ │ ├── README.md │ │ │ ├── app.R │ │ │ └── rsconnect │ │ │ └── shinyapps.io │ │ │ └── gallery │ │ │ └── sass-theme.dcf │ │ ├── shiny │ │ ├── DESCRIPTION │ │ ├── INDEX │ │ ├── LICENSE │ │ ├── MD5 │ │ ├── Meta │ │ │ ├── Rd.rds │ │ │ ├── features.rds │ │ │ ├── hsearch.rds │ │ │ ├── links.rds │ │ │ ├── nsInfo.rds │ │ │ └── package.rds │ │ ├── NAMESPACE │ │ ├── NEWS.md │ │ ├── R │ │ │ ├── shiny │ │ │ ├── shiny.rdb │ │ │ └── shiny.rdx │ │ ├── app_template │ │ │ ├── R │ │ │ │ ├── example-module.R │ │ │ │ └── example.R │ │ │ ├── app.R │ │ │ └── tests │ │ │ │ ├── testthat.R │ │ │ │ └── testthat │ │ │ │ ├── setup-shinytest2.R │ │ │ │ ├── test-examplemodule.R │ │ │ │ ├── test-server.R │ │ │ │ ├── test-shinytest2.R │ │ │ │ └── test-sort.R │ │ ├── diagrams │ │ │ ├── outputProgressStateMachine.drawio │ │ │ └── outputProgressStateMachine.svg │ │ ├── examples-shiny │ │ │ ├── 01_hello │ │ │ │ ├── DESCRIPTION │ │ │ │ ├── Readme.md │ │ │ │ └── app.R │ │ │ ├── 02_text │ │ │ │ ├── DESCRIPTION │ │ │ │ ├── Readme.md │ │ │ │ └── app.R │ │ │ ├── 03_reactivity │ │ │ │ ├── DESCRIPTION │ │ │ │ ├── Readme.md │ │ │ │ └── app.R │ │ │ ├── 04_mpg │ │ │ │ ├── DESCRIPTION │ │ │ │ ├── Readme.md │ │ │ │ └── app.R │ │ │ ├── 05_sliders │ │ │ │ ├── DESCRIPTION │ │ │ │ ├── Readme.md │ │ │ │ └── app.R │ │ │ ├── 06_tabsets │ │ │ │ ├── DESCRIPTION │ │ │ │ ├── Readme.md │ │ │ │ └── app.R │ │ │ ├── 07_widgets │ │ │ │ ├── DESCRIPTION │ │ │ │ ├── Readme.md │ │ │ │ └── app.R │ │ │ ├── 08_html │ │ │ │ ├── DESCRIPTION │ │ │ │ ├── Readme.md │ │ │ │ ├── app.R │ │ │ │ └── www │ │ │ │ │ └── index.html │ │ │ ├── 09_upload │ │ │ │ ├── DESCRIPTION │ │ │ │ ├── Readme.md │ │ │ │ └── app.R │ │ │ ├── 10_download │ │ │ │ ├── DESCRIPTION │ │ │ │ ├── Readme.md │ │ │ │ └── app.R │ │ │ └── 11_timer │ │ │ │ ├── DESCRIPTION │ │ │ │ ├── Readme.md │ │ │ │ └── app.R │ │ ├── examples │ │ │ ├── 01_hello │ │ │ │ ├── DESCRIPTION │ │ │ │ ├── Readme.md │ │ │ │ └── app.R │ │ │ ├── 02_text │ │ │ │ ├── DESCRIPTION │ │ │ │ ├── Readme.md │ │ │ │ └── app.R │ │ │ ├── 03_reactivity │ │ │ │ ├── DESCRIPTION │ │ │ │ ├── Readme.md │ │ │ │ └── app.R │ │ │ ├── 04_mpg │ │ │ │ ├── DESCRIPTION │ │ │ │ ├── Readme.md │ │ │ │ └── app.R │ │ │ ├── 05_sliders │ │ │ │ ├── DESCRIPTION │ │ │ │ ├── Readme.md │ │ │ │ └── app.R │ │ │ ├── 06_tabsets │ │ │ │ ├── DESCRIPTION │ │ │ │ ├── Readme.md │ │ │ │ └── app.R │ │ │ ├── 07_widgets │ │ │ │ ├── DESCRIPTION │ │ │ │ ├── Readme.md │ │ │ │ └── app.R │ │ │ ├── 09_upload │ │ │ │ ├── DESCRIPTION │ │ │ │ ├── Readme.md │ │ │ │ └── app.R │ │ │ ├── 10_download │ │ │ │ ├── DESCRIPTION │ │ │ │ ├── Readme.md │ │ │ │ └── app.R │ │ │ └── 11_timer │ │ │ │ ├── DESCRIPTION │ │ │ │ ├── Readme.md │ │ │ │ └── app.R │ │ ├── help │ │ │ ├── AnIndex │ │ │ ├── aliases.rds │ │ │ ├── figures │ │ │ │ ├── lifecycle-archived.svg │ │ │ │ ├── lifecycle-defunct.svg │ │ │ │ ├── lifecycle-deprecated.svg │ │ │ │ ├── lifecycle-experimental.svg │ │ │ │ ├── lifecycle-maturing.svg │ │ │ │ ├── lifecycle-questioning.svg │ │ │ │ ├── lifecycle-soft-deprecated.svg │ │ │ │ ├── lifecycle-stable.svg │ │ │ │ ├── lifecycle-superseded.svg │ │ │ │ └── logo.png │ │ │ ├── paths.rds │ │ │ ├── shiny.rdb │ │ │ └── shiny.rdx │ │ ├── html │ │ │ ├── 00Index.html │ │ │ └── R.css │ │ ├── template │ │ │ ├── default.html │ │ │ └── error.html │ │ ├── www-dir │ │ │ └── index.html │ │ └── www │ │ │ └── shared │ │ │ ├── bootstrap │ │ │ ├── accessibility │ │ │ │ ├── css │ │ │ │ │ └── bootstrap-accessibility.min.css │ │ │ │ └── js │ │ │ │ │ └── bootstrap-accessibility.min.js │ │ │ ├── css │ │ │ │ ├── bootstrap-theme.css │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ ├── bootstrap-theme.min.css.map │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── bootstrap.min.css.map │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── npm.js │ │ │ ├── busy-indicators │ │ │ ├── busy-indicators.css │ │ │ └── spinners │ │ │ │ ├── LICENSE │ │ │ │ ├── bars.svg │ │ │ │ ├── bars2.svg │ │ │ │ ├── bars3.svg │ │ │ │ ├── dots.svg │ │ │ │ ├── dots2.svg │ │ │ │ ├── dots3.svg │ │ │ │ ├── pulse.svg │ │ │ │ ├── pulse2.svg │ │ │ │ ├── pulse3.svg │ │ │ │ ├── ring.svg │ │ │ │ ├── ring2.svg │ │ │ │ └── ring3.svg │ │ │ ├── datatables │ │ │ ├── css │ │ │ │ └── dataTables.bootstrap.css │ │ │ ├── images │ │ │ │ ├── sort_asc.png │ │ │ │ ├── sort_asc_disabled.png │ │ │ │ ├── sort_both.png │ │ │ │ ├── sort_desc.png │ │ │ │ └── sort_desc_disabled.png │ │ │ ├── js │ │ │ │ ├── dataTables.bootstrap.js │ │ │ │ └── jquery.dataTables.min.js │ │ │ └── upgrade1.10.txt │ │ │ ├── datepicker │ │ │ ├── css │ │ │ │ ├── bootstrap-datepicker3.css │ │ │ │ └── bootstrap-datepicker3.min.css │ │ │ ├── js │ │ │ │ ├── bootstrap-datepicker.js │ │ │ │ ├── bootstrap-datepicker.min.js │ │ │ │ └── locales │ │ │ │ │ ├── bootstrap-datepicker-en-CA.min.js │ │ │ │ │ ├── bootstrap-datepicker.ar-tn.min.js │ │ │ │ │ ├── bootstrap-datepicker.ar.min.js │ │ │ │ │ ├── bootstrap-datepicker.az.min.js │ │ │ │ │ ├── bootstrap-datepicker.bg.min.js │ │ │ │ │ ├── bootstrap-datepicker.bm.min.js │ │ │ │ │ ├── bootstrap-datepicker.bn.min.js │ │ │ │ │ ├── bootstrap-datepicker.br.min.js │ │ │ │ │ ├── bootstrap-datepicker.bs.min.js │ │ │ │ │ ├── bootstrap-datepicker.ca.min.js │ │ │ │ │ ├── bootstrap-datepicker.cs.min.js │ │ │ │ │ ├── bootstrap-datepicker.cy.min.js │ │ │ │ │ ├── bootstrap-datepicker.da.min.js │ │ │ │ │ ├── bootstrap-datepicker.de.min.js │ │ │ │ │ ├── bootstrap-datepicker.el.min.js │ │ │ │ │ ├── bootstrap-datepicker.en-AU.min.js │ │ │ │ │ ├── bootstrap-datepicker.en-CA.min.js │ │ │ │ │ ├── bootstrap-datepicker.en-GB.min.js │ │ │ │ │ ├── bootstrap-datepicker.en-IE.min.js │ │ │ │ │ ├── bootstrap-datepicker.en-NZ.min.js │ │ │ │ │ ├── bootstrap-datepicker.en-ZA.min.js │ │ │ │ │ ├── bootstrap-datepicker.eo.min.js │ │ │ │ │ ├── bootstrap-datepicker.es.min.js │ │ │ │ │ ├── bootstrap-datepicker.et.min.js │ │ │ │ │ ├── bootstrap-datepicker.eu.min.js │ │ │ │ │ ├── bootstrap-datepicker.fa.min.js │ │ │ │ │ ├── bootstrap-datepicker.fi.min.js │ │ │ │ │ ├── bootstrap-datepicker.fo.min.js │ │ │ │ │ ├── bootstrap-datepicker.fr-CH.min.js │ │ │ │ │ ├── bootstrap-datepicker.fr.min.js │ │ │ │ │ ├── bootstrap-datepicker.gl.min.js │ │ │ │ │ ├── bootstrap-datepicker.he.min.js │ │ │ │ │ ├── bootstrap-datepicker.hi.min.js │ │ │ │ │ ├── bootstrap-datepicker.hr.min.js │ │ │ │ │ ├── bootstrap-datepicker.hu.min.js │ │ │ │ │ ├── bootstrap-datepicker.hy.min.js │ │ │ │ │ ├── bootstrap-datepicker.id.min.js │ │ │ │ │ ├── bootstrap-datepicker.is.min.js │ │ │ │ │ ├── bootstrap-datepicker.it-CH.min.js │ │ │ │ │ ├── bootstrap-datepicker.it.min.js │ │ │ │ │ ├── bootstrap-datepicker.ja.min.js │ │ │ │ │ ├── bootstrap-datepicker.ka.min.js │ │ │ │ │ ├── bootstrap-datepicker.kh.min.js │ │ │ │ │ ├── bootstrap-datepicker.kk.min.js │ │ │ │ │ ├── bootstrap-datepicker.km.min.js │ │ │ │ │ ├── bootstrap-datepicker.ko.min.js │ │ │ │ │ ├── bootstrap-datepicker.kr.min.js │ │ │ │ │ ├── bootstrap-datepicker.lt.min.js │ │ │ │ │ ├── bootstrap-datepicker.lv.min.js │ │ │ │ │ ├── bootstrap-datepicker.me.min.js │ │ │ │ │ ├── bootstrap-datepicker.mk.min.js │ │ │ │ │ ├── bootstrap-datepicker.mn.min.js │ │ │ │ │ ├── bootstrap-datepicker.ms.min.js │ │ │ │ │ ├── bootstrap-datepicker.nl-BE.min.js │ │ │ │ │ ├── bootstrap-datepicker.nl.min.js │ │ │ │ │ ├── bootstrap-datepicker.no.min.js │ │ │ │ │ ├── bootstrap-datepicker.oc.min.js │ │ │ │ │ ├── bootstrap-datepicker.pl.min.js │ │ │ │ │ ├── bootstrap-datepicker.pt-BR.min.js │ │ │ │ │ ├── bootstrap-datepicker.pt.min.js │ │ │ │ │ ├── bootstrap-datepicker.ro.min.js │ │ │ │ │ ├── bootstrap-datepicker.rs-latin.min.js │ │ │ │ │ ├── bootstrap-datepicker.rs.min.js │ │ │ │ │ ├── bootstrap-datepicker.ru.min.js │ │ │ │ │ ├── bootstrap-datepicker.si.min.js │ │ │ │ │ ├── bootstrap-datepicker.sk.min.js │ │ │ │ │ ├── bootstrap-datepicker.sl.min.js │ │ │ │ │ ├── bootstrap-datepicker.sq.min.js │ │ │ │ │ ├── bootstrap-datepicker.sr-latin.min.js │ │ │ │ │ ├── bootstrap-datepicker.sr.min.js │ │ │ │ │ ├── bootstrap-datepicker.sv.min.js │ │ │ │ │ ├── bootstrap-datepicker.sw.min.js │ │ │ │ │ ├── bootstrap-datepicker.ta.min.js │ │ │ │ │ ├── bootstrap-datepicker.tg.min.js │ │ │ │ │ ├── bootstrap-datepicker.th.min.js │ │ │ │ │ ├── bootstrap-datepicker.tk.min.js │ │ │ │ │ ├── bootstrap-datepicker.tr.min.js │ │ │ │ │ ├── bootstrap-datepicker.uk.min.js │ │ │ │ │ ├── bootstrap-datepicker.uz-cyrl.min.js │ │ │ │ │ ├── bootstrap-datepicker.uz-latn.min.js │ │ │ │ │ ├── bootstrap-datepicker.vi.min.js │ │ │ │ │ ├── bootstrap-datepicker.zh-CN.min.js │ │ │ │ │ └── bootstrap-datepicker.zh-TW.min.js │ │ │ └── scss │ │ │ │ ├── build3.scss │ │ │ │ └── datepicker3.scss │ │ │ ├── highlight │ │ │ ├── LICENSE │ │ │ ├── classref.txt │ │ │ ├── highlight.pack.js │ │ │ └── rstudio.css │ │ │ ├── ionrangeslider │ │ │ ├── css │ │ │ │ └── ion.rangeSlider.css │ │ │ ├── js │ │ │ │ ├── ion.rangeSlider.js │ │ │ │ └── ion.rangeSlider.min.js │ │ │ └── scss │ │ │ │ ├── _base.scss │ │ │ │ ├── _mixins.scss │ │ │ │ └── shiny.scss │ │ │ ├── jquery-AUTHORS.txt │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ ├── jquery.min.js.map │ │ │ ├── jqueryui │ │ │ ├── AUTHORS.txt │ │ │ ├── LICENSE.txt │ │ │ ├── images │ │ │ │ ├── ui-icons_444444_256x240.png │ │ │ │ ├── ui-icons_555555_256x240.png │ │ │ │ ├── ui-icons_777620_256x240.png │ │ │ │ ├── ui-icons_777777_256x240.png │ │ │ │ ├── ui-icons_cc0000_256x240.png │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ ├── index.html │ │ │ ├── jquery-ui.css │ │ │ ├── jquery-ui.js │ │ │ ├── jquery-ui.min.css │ │ │ ├── jquery-ui.min.js │ │ │ ├── jquery-ui.structure.css │ │ │ ├── jquery-ui.structure.min.css │ │ │ ├── jquery-ui.theme.css │ │ │ └── jquery-ui.theme.min.css │ │ │ ├── legacy │ │ │ ├── jquery-AUTHORS.txt │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ └── jquery.min.map │ │ │ ├── selectize │ │ │ ├── accessibility │ │ │ │ └── js │ │ │ │ │ ├── selectize-plugin-a11y.js │ │ │ │ │ └── selectize-plugin-a11y.min.js │ │ │ ├── css │ │ │ │ └── selectize.bootstrap3.css │ │ │ ├── js │ │ │ │ ├── selectize.js │ │ │ │ └── selectize.min.js │ │ │ └── scss │ │ │ │ ├── plugins │ │ │ │ ├── auto_position.scss │ │ │ │ ├── clear_button.scss │ │ │ │ ├── drag_drop.scss │ │ │ │ ├── dropdown_header.scss │ │ │ │ ├── optgroup_columns.scss │ │ │ │ └── remove_button.scss │ │ │ │ ├── selectize.bootstrap3.scss │ │ │ │ ├── selectize.bootstrap4.scss │ │ │ │ ├── selectize.bootstrap5.scss │ │ │ │ ├── selectize.default.scss │ │ │ │ └── selectize.scss │ │ │ ├── shiny-autoreload.js │ │ │ ├── shiny-autoreload.js.map │ │ │ ├── shiny-showcase.css │ │ │ ├── shiny-showcase.js │ │ │ ├── shiny-showcase.js.map │ │ │ ├── shiny-testmode.js │ │ │ ├── shiny-testmode.js.map │ │ │ ├── shiny.js │ │ │ ├── shiny.js.map │ │ │ ├── shiny.min.css │ │ │ ├── shiny.min.js │ │ │ ├── shiny.min.js.map │ │ │ ├── shiny_scss │ │ │ ├── shiny.bootstrap3.scss │ │ │ ├── shiny.bootstrap4.scss │ │ │ ├── shiny.bootstrap5.scss │ │ │ └── shiny.scss │ │ │ ├── showdown │ │ │ ├── compressed │ │ │ │ └── showdown.js │ │ │ ├── license.txt │ │ │ └── src │ │ │ │ └── showdown.js │ │ │ └── strftime │ │ │ └── strftime-min.js │ │ ├── sourcetools │ │ ├── DESCRIPTION │ │ ├── INDEX │ │ ├── LICENSE │ │ ├── MD5 │ │ ├── Meta │ │ │ ├── Rd.rds │ │ │ ├── features.rds │ │ │ ├── hsearch.rds │ │ │ ├── links.rds │ │ │ ├── nsInfo.rds │ │ │ └── package.rds │ │ ├── NAMESPACE │ │ ├── NEWS.md │ │ ├── R │ │ │ ├── sourcetools │ │ │ ├── sourcetools.rdb │ │ │ └── sourcetools.rdx │ │ ├── help │ │ │ ├── AnIndex │ │ │ ├── aliases.rds │ │ │ ├── paths.rds │ │ │ ├── sourcetools.rdb │ │ │ └── sourcetools.rdx │ │ ├── html │ │ │ ├── 00Index.html │ │ │ └── R.css │ │ ├── include │ │ │ ├── sourcetools.h │ │ │ └── sourcetools │ │ │ │ ├── collection │ │ │ │ ├── Position.h │ │ │ │ ├── Range.h │ │ │ │ └── collection.h │ │ │ │ ├── core │ │ │ │ ├── core.h │ │ │ │ ├── macros.h │ │ │ │ └── util.h │ │ │ │ ├── cursor │ │ │ │ ├── TextCursor.h │ │ │ │ ├── TokenCursor.h │ │ │ │ └── cursor.h │ │ │ │ ├── multibyte │ │ │ │ └── multibyte.h │ │ │ │ ├── platform │ │ │ │ └── platform.h │ │ │ │ ├── r │ │ │ │ ├── RCallRecurser.h │ │ │ │ ├── RConverter.h │ │ │ │ ├── RFunctions.h │ │ │ │ ├── RHeaders.h │ │ │ │ ├── RNonStandardEvaluation.h │ │ │ │ ├── RUtils.h │ │ │ │ └── r.h │ │ │ │ ├── read │ │ │ │ ├── MemoryMappedReader.h │ │ │ │ ├── posix │ │ │ │ │ ├── FileConnection.h │ │ │ │ │ └── MemoryMappedConnection.h │ │ │ │ ├── read.h │ │ │ │ └── windows │ │ │ │ │ ├── FileConnection.h │ │ │ │ │ └── MemoryMappedConnection.h │ │ │ │ ├── tests │ │ │ │ └── testthat.h │ │ │ │ ├── tokenization │ │ │ │ ├── Registration.h │ │ │ │ ├── Token.h │ │ │ │ ├── Tokenizer.h │ │ │ │ └── tokenization.h │ │ │ │ └── utf8 │ │ │ │ └── utf8.h │ │ └── libs │ │ │ └── x64 │ │ │ ├── sourcetools.dll │ │ │ └── symbols.rds │ │ ├── withr │ │ ├── DESCRIPTION │ │ ├── INDEX │ │ ├── LICENSE │ │ ├── MD5 │ │ ├── Meta │ │ │ ├── Rd.rds │ │ │ ├── features.rds │ │ │ ├── hsearch.rds │ │ │ ├── links.rds │ │ │ ├── nsInfo.rds │ │ │ ├── package.rds │ │ │ └── vignette.rds │ │ ├── NAMESPACE │ │ ├── NEWS.md │ │ ├── R │ │ │ ├── withr │ │ │ ├── withr.rdb │ │ │ └── withr.rdx │ │ ├── doc │ │ │ ├── index.html │ │ │ ├── withr.R │ │ │ ├── withr.Rmd │ │ │ └── withr.html │ │ ├── help │ │ │ ├── AnIndex │ │ │ ├── aliases.rds │ │ │ ├── figures │ │ │ │ ├── README-unnamed-chunk-3-1.png │ │ │ │ ├── lifecycle-archived.svg │ │ │ │ ├── lifecycle-defunct.svg │ │ │ │ ├── lifecycle-deprecated.svg │ │ │ │ ├── lifecycle-experimental.svg │ │ │ │ ├── lifecycle-maturing.svg │ │ │ │ ├── lifecycle-questioning.svg │ │ │ │ ├── lifecycle-soft-deprecated.svg │ │ │ │ ├── lifecycle-stable.svg │ │ │ │ ├── lifecycle-superseded.svg │ │ │ │ └── logo.png │ │ │ ├── paths.rds │ │ │ ├── withr.rdb │ │ │ └── withr.rdx │ │ └── html │ │ │ ├── 00Index.html │ │ │ └── R.css │ │ ├── xplorerr │ │ ├── DESCRIPTION │ │ ├── INDEX │ │ ├── LICENSE │ │ ├── MD5 │ │ ├── Meta │ │ │ ├── Rd.rds │ │ │ ├── data.rds │ │ │ ├── features.rds │ │ │ ├── hsearch.rds │ │ │ ├── links.rds │ │ │ ├── nsInfo.rds │ │ │ └── package.rds │ │ ├── NAMESPACE │ │ ├── NEWS.md │ │ ├── R │ │ │ ├── xplorerr │ │ │ ├── xplorerr.rdb │ │ │ └── xplorerr.rdx │ │ ├── app-blorr │ │ │ ├── logic │ │ │ │ ├── logic_bivar.R │ │ │ │ ├── logic_dataoptions.R │ │ │ │ ├── logic_exit_button.R │ │ │ │ ├── logic_filter.R │ │ │ │ ├── logic_home.R │ │ │ │ ├── logic_partition.R │ │ │ │ ├── logic_regress.R │ │ │ │ ├── logic_residual_diagnostics.R │ │ │ │ ├── logic_sample.R │ │ │ │ ├── logic_screen.R │ │ │ │ ├── logic_select.R │ │ │ │ ├── logic_transform2.R │ │ │ │ ├── logic_upload.R │ │ │ │ ├── logic_validation.R │ │ │ │ ├── logic_varsel.R │ │ │ │ └── logic_view.R │ │ │ ├── mystyle.css │ │ │ ├── server.R │ │ │ ├── styles.css │ │ │ ├── ui.R │ │ │ ├── ui │ │ │ │ ├── ui_2way_segment.R │ │ │ │ ├── ui_analyze.R │ │ │ │ ├── ui_bivar.R │ │ │ │ ├── ui_bivar_analysis.R │ │ │ │ ├── ui_conf_matrix.R │ │ │ │ ├── ui_data.R │ │ │ │ ├── ui_datafiles.R │ │ │ │ ├── ui_dataoptions.R │ │ │ │ ├── ui_datasamples.R │ │ │ │ ├── ui_dfbetas_panel.R │ │ │ │ ├── ui_diag_fit.R │ │ │ │ ├── ui_diag_influence.R │ │ │ │ ├── ui_diag_leverage.R │ │ │ │ ├── ui_exit_button.R │ │ │ │ ├── ui_filter.R │ │ │ │ ├── ui_gains_table.R │ │ │ │ ├── ui_homes.R │ │ │ │ ├── ui_hoslem_test.R │ │ │ │ ├── ui_ks_chart.R │ │ │ │ ├── ui_lorenz_curve.R │ │ │ │ ├── ui_mlr.R │ │ │ │ ├── ui_model_fit_stats.R │ │ │ │ ├── ui_model_home.R │ │ │ │ ├── ui_multi_model_fit_stats.R │ │ │ │ ├── ui_partition.R │ │ │ │ ├── ui_regress.R │ │ │ │ ├── ui_resid_diag.R │ │ │ │ ├── ui_roc_curve.R │ │ │ │ ├── ui_sample.R │ │ │ │ ├── ui_scr.R │ │ │ │ ├── ui_screen.R │ │ │ │ ├── ui_segment.R │ │ │ │ ├── ui_segment_dist.R │ │ │ │ ├── ui_seldata.R │ │ │ │ ├── ui_select.R │ │ │ │ ├── ui_trans.R │ │ │ │ ├── ui_transform2.R │ │ │ │ ├── ui_up.R │ │ │ │ ├── ui_valid.R │ │ │ │ ├── ui_varsel.R │ │ │ │ ├── ui_varsel_backward.R │ │ │ │ ├── ui_varsel_forward.R │ │ │ │ ├── ui_varsel_stepwise.R │ │ │ │ ├── ui_vi.R │ │ │ │ ├── ui_view.R │ │ │ │ ├── ui_woe_iv.R │ │ │ │ └── ui_woe_iv_stats.R │ │ │ └── www │ │ │ │ └── main.png │ │ ├── app-descriptr │ │ │ ├── logic │ │ │ │ ├── logic_cross.R │ │ │ │ ├── logic_dataoptions.R │ │ │ │ ├── logic_exit_button.R │ │ │ │ ├── logic_filter.R │ │ │ │ ├── logic_freq_qual.R │ │ │ │ ├── logic_freq_quant.R │ │ │ │ ├── logic_group_summary.R │ │ │ │ ├── logic_home.R │ │ │ │ ├── logic_mult1.R │ │ │ │ ├── logic_mult2.R │ │ │ │ ├── logic_screen.R │ │ │ │ ├── logic_select.R │ │ │ │ ├── logic_summary.R │ │ │ │ ├── logic_transform2.R │ │ │ │ ├── logic_upload.R │ │ │ │ └── logic_view.R │ │ │ ├── mystyle.css │ │ │ ├── server.R │ │ │ ├── styles.css │ │ │ ├── ui.R │ │ │ ├── ui │ │ │ │ ├── ui_analyze.R │ │ │ │ ├── ui_cross.R │ │ │ │ ├── ui_data.R │ │ │ │ ├── ui_datafiles.R │ │ │ │ ├── ui_dataoptions.R │ │ │ │ ├── ui_datasamples.R │ │ │ │ ├── ui_eda.R │ │ │ │ ├── ui_eda_home.R │ │ │ │ ├── ui_exit_button.R │ │ │ │ ├── ui_f.R │ │ │ │ ├── ui_filter.R │ │ │ │ ├── ui_freq_qual.R │ │ │ │ ├── ui_freq_quant.R │ │ │ │ ├── ui_group_summary.R │ │ │ │ ├── ui_mult1.R │ │ │ │ ├── ui_mult2.R │ │ │ │ ├── ui_scr.R │ │ │ │ ├── ui_screen.R │ │ │ │ ├── ui_sel.R │ │ │ │ ├── ui_seldata.R │ │ │ │ ├── ui_select.R │ │ │ │ ├── ui_summary.R │ │ │ │ ├── ui_trans.R │ │ │ │ ├── ui_transform2.R │ │ │ │ ├── ui_up.R │ │ │ │ ├── ui_vi.R │ │ │ │ └── ui_view.R │ │ │ └── www │ │ │ │ ├── normal.png │ │ │ │ └── summary1.png │ │ ├── app-inferr │ │ │ ├── logic │ │ │ │ ├── logic_anova.R │ │ │ │ ├── logic_binomtest.R │ │ │ │ ├── logic_chict.R │ │ │ │ ├── logic_chigof.R │ │ │ │ ├── logic_cochran.R │ │ │ │ ├── logic_dataoptions.R │ │ │ │ ├── logic_exit_button.R │ │ │ │ ├── logic_filter.R │ │ │ │ ├── logic_home.R │ │ │ │ ├── logic_itest.R │ │ │ │ ├── logic_levene.R │ │ │ │ ├── logic_mcnemar.R │ │ │ │ ├── logic_osprop.R │ │ │ │ ├── logic_osvar.R │ │ │ │ ├── logic_ptest.R │ │ │ │ ├── logic_runs.R │ │ │ │ ├── logic_screen.R │ │ │ │ ├── logic_select.R │ │ │ │ ├── logic_transform2.R │ │ │ │ ├── logic_tsprop.R │ │ │ │ ├── logic_tsvar.R │ │ │ │ ├── logic_ttest.R │ │ │ │ ├── logic_upload.R │ │ │ │ └── logic_view.R │ │ │ ├── mystyle.css │ │ │ ├── server.R │ │ │ ├── styles.css │ │ │ ├── ui.R │ │ │ ├── ui │ │ │ │ ├── ui_analyze.R │ │ │ │ ├── ui_anova.R │ │ │ │ ├── ui_binomtest.R │ │ │ │ ├── ui_chict.R │ │ │ │ ├── ui_chigof.R │ │ │ │ ├── ui_cochran.R │ │ │ │ ├── ui_data.R │ │ │ │ ├── ui_datafiles.R │ │ │ │ ├── ui_dataoptions.R │ │ │ │ ├── ui_datasamples.R │ │ │ │ ├── ui_exit_button.R │ │ │ │ ├── ui_filter.R │ │ │ │ ├── ui_homes.R │ │ │ │ ├── ui_indttest.R │ │ │ │ ├── ui_infer1_home.R │ │ │ │ ├── ui_infer2_home.R │ │ │ │ ├── ui_infer3_home.R │ │ │ │ ├── ui_infer_home.R │ │ │ │ ├── ui_inference.R │ │ │ │ ├── ui_levene.R │ │ │ │ ├── ui_mcnemar.R │ │ │ │ ├── ui_osprop.R │ │ │ │ ├── ui_osvar.R │ │ │ │ ├── ui_ptest.R │ │ │ │ ├── ui_runs.R │ │ │ │ ├── ui_scr.R │ │ │ │ ├── ui_screen.R │ │ │ │ ├── ui_sel.R │ │ │ │ ├── ui_seldata.R │ │ │ │ ├── ui_select.R │ │ │ │ ├── ui_trans.R │ │ │ │ ├── ui_transform2.R │ │ │ │ ├── ui_tsprop.R │ │ │ │ ├── ui_tsvar.R │ │ │ │ ├── ui_ttest.R │ │ │ │ ├── ui_up.R │ │ │ │ ├── ui_vi.R │ │ │ │ └── ui_view.R │ │ │ ├── xpl-format.R │ │ │ ├── xpl-helpers.R │ │ │ └── xpl-output.R │ │ ├── app-olsrr │ │ │ ├── logic │ │ │ │ ├── logic_collin.R │ │ │ │ ├── logic_dataoptions.R │ │ │ │ ├── logic_exit_button.R │ │ │ │ ├── logic_filter.R │ │ │ │ ├── logic_hetero.R │ │ │ │ ├── logic_home.R │ │ │ │ ├── logic_inflobs2.R │ │ │ │ ├── logic_mfit2.R │ │ │ │ ├── logic_mselection2.R │ │ │ │ ├── logic_partition.R │ │ │ │ ├── logic_regdiag.R │ │ │ │ ├── logic_regress.R │ │ │ │ ├── logic_resdiagtrial.R │ │ │ │ ├── logic_sample.R │ │ │ │ ├── logic_screen.R │ │ │ │ ├── logic_select.R │ │ │ │ ├── logic_transform2.R │ │ │ │ ├── logic_upload.R │ │ │ │ └── logic_view.R │ │ │ ├── mystyle.css │ │ │ ├── server.R │ │ │ ├── styles.css │ │ │ ├── ui.R │ │ │ └── ui │ │ │ │ ├── ui_analyze.R │ │ │ │ ├── ui_collin.R │ │ │ │ ├── ui_data.R │ │ │ │ ├── ui_datafiles.R │ │ │ │ ├── ui_dataoptions.R │ │ │ │ ├── ui_datasamples.R │ │ │ │ ├── ui_exit_button.R │ │ │ │ ├── ui_filter.R │ │ │ │ ├── ui_hetero.R │ │ │ │ ├── ui_home.R │ │ │ │ ├── ui_homes.R │ │ │ │ ├── ui_inflobs2.R │ │ │ │ ├── ui_mfit2.R │ │ │ │ ├── ui_mlr.R │ │ │ │ ├── ui_model_home.R │ │ │ │ ├── ui_mselection2.R │ │ │ │ ├── ui_partition.R │ │ │ │ ├── ui_regdiag.R │ │ │ │ ├── ui_regress.R │ │ │ │ ├── ui_resdiagtrial.R │ │ │ │ ├── ui_sample.R │ │ │ │ ├── ui_scr.R │ │ │ │ ├── ui_screen.R │ │ │ │ ├── ui_sel.R │ │ │ │ ├── ui_seldata.R │ │ │ │ ├── ui_select.R │ │ │ │ ├── ui_trans.R │ │ │ │ ├── ui_transform2.R │ │ │ │ ├── ui_up.R │ │ │ │ ├── ui_vi.R │ │ │ │ └── ui_view.R │ │ ├── app-rfm │ │ │ ├── logic │ │ │ │ ├── logic_dataoptions.R │ │ │ │ ├── logic_exit_button.R │ │ │ │ ├── logic_home.R │ │ │ │ ├── logic_rfm_score.R │ │ │ │ ├── logic_screen.R │ │ │ │ ├── logic_segments.R │ │ │ │ ├── logic_select.R │ │ │ │ ├── logic_transform2.R │ │ │ │ ├── logic_upload.R │ │ │ │ ├── logic_view.R │ │ │ │ └── ui_rfm_home.R │ │ │ ├── mystyle.css │ │ │ ├── server.R │ │ │ ├── styles.css │ │ │ ├── ui.R │ │ │ ├── ui │ │ │ │ ├── ui_analyze.R │ │ │ │ ├── ui_average_frequency.R │ │ │ │ ├── ui_average_monetary.R │ │ │ │ ├── ui_average_recency.R │ │ │ │ ├── ui_data.R │ │ │ │ ├── ui_datafiles.R │ │ │ │ ├── ui_dataoptions.R │ │ │ │ ├── ui_datasamples.R │ │ │ │ ├── ui_exit_button.R │ │ │ │ ├── ui_home.R │ │ │ │ ├── ui_rfm.R │ │ │ │ ├── ui_rfm_bar_chart.R │ │ │ │ ├── ui_rfm_customer_1.R │ │ │ │ ├── ui_rfm_customer_2.R │ │ │ │ ├── ui_rfm_heat_map.R │ │ │ │ ├── ui_rfm_histogram.R │ │ │ │ ├── ui_rfm_home.R │ │ │ │ ├── ui_rfm_scatter_plot.R │ │ │ │ ├── ui_rfm_score_transaction.R │ │ │ │ ├── ui_scr.R │ │ │ │ ├── ui_screen.R │ │ │ │ ├── ui_segment.R │ │ │ │ ├── ui_segment_size.R │ │ │ │ ├── ui_segments.R │ │ │ │ ├── ui_seldata.R │ │ │ │ ├── ui_select.R │ │ │ │ ├── ui_trans.R │ │ │ │ ├── ui_transform2.R │ │ │ │ ├── ui_up.R │ │ │ │ ├── ui_vi.R │ │ │ │ ├── ui_view.R │ │ │ │ └── ui_welcome.R │ │ │ └── www │ │ │ │ ├── rfm_main.jpg │ │ │ │ └── rfm_main.png │ │ ├── app-vistributions │ │ │ ├── logic │ │ │ │ ├── logic_binom.R │ │ │ │ ├── logic_chisq.R │ │ │ │ ├── logic_exit_button.R │ │ │ │ ├── logic_f.R │ │ │ │ ├── logic_home.R │ │ │ │ ├── logic_norm.R │ │ │ │ └── logic_t.R │ │ │ ├── mystyle.css │ │ │ ├── server.R │ │ │ ├── styles.css │ │ │ ├── ui.R │ │ │ ├── ui │ │ │ │ ├── ui_analyze.R │ │ │ │ ├── ui_binom.R │ │ │ │ ├── ui_chisq.R │ │ │ │ ├── ui_dist.R │ │ │ │ ├── ui_dist_home.R │ │ │ │ ├── ui_exit_button.R │ │ │ │ ├── ui_f.R │ │ │ │ ├── ui_homes.R │ │ │ │ ├── ui_normal.R │ │ │ │ └── ui_t.R │ │ │ └── www │ │ │ │ ├── normal.png │ │ │ │ └── summary1.png │ │ ├── app-visualize │ │ │ ├── helper │ │ │ │ ├── barly1.R │ │ │ │ ├── barly2.R │ │ │ │ ├── bbar-plot.R │ │ │ │ ├── bbox-plot.R │ │ │ │ ├── bibar.R │ │ │ │ ├── bobar.R │ │ │ │ ├── bobar2.R │ │ │ │ ├── bobox.R │ │ │ │ ├── bobox2.R │ │ │ │ ├── bohist.R │ │ │ │ ├── boline.R │ │ │ │ ├── boscatter.R │ │ │ │ ├── boxly1.R │ │ │ │ ├── boxly2.R │ │ │ │ ├── freq-cont.R │ │ │ │ ├── ggbibar.R │ │ │ │ ├── ggbox1.R │ │ │ │ ├── ggbox2.R │ │ │ │ ├── gghist.R │ │ │ │ ├── ggline.R │ │ │ │ ├── ggline2.R │ │ │ │ ├── ggpie.R │ │ │ │ ├── ggscatter.R │ │ │ │ ├── ggunibar.R │ │ │ │ ├── hibox2.R │ │ │ │ ├── highhist.R │ │ │ │ ├── highline.R │ │ │ │ ├── highpie.R │ │ │ │ ├── histly.R │ │ │ │ ├── histogram.R │ │ │ │ ├── hscatter.R │ │ │ │ ├── line-plot.R │ │ │ │ ├── linely.R │ │ │ │ ├── output.R │ │ │ │ ├── pie-plot.R │ │ │ │ ├── pie3d-plot.R │ │ │ │ ├── piely.R │ │ │ │ ├── scatter-plot.R │ │ │ │ ├── scatterly.R │ │ │ │ ├── ubar_plot.R │ │ │ │ ├── ubox-plot.R │ │ │ │ ├── unibar.R │ │ │ │ └── utils.R │ │ │ ├── logic │ │ │ │ ├── logic_bar.R │ │ │ │ ├── logic_bar2.R │ │ │ │ ├── logic_bar_plot_1.R │ │ │ │ ├── logic_bar_plot_2.R │ │ │ │ ├── logic_box.R │ │ │ │ ├── logic_box2.R │ │ │ │ ├── logic_box_plot_1.R │ │ │ │ ├── logic_box_plot_2.R │ │ │ │ ├── logic_dataoptions.R │ │ │ │ ├── logic_exit_button.R │ │ │ │ ├── logic_filter.R │ │ │ │ ├── logic_gbar.R │ │ │ │ ├── logic_gbar2.R │ │ │ │ ├── logic_gbox.R │ │ │ │ ├── logic_gbox2.R │ │ │ │ ├── logic_ghist.R │ │ │ │ ├── logic_gline.R │ │ │ │ ├── logic_gline2.R │ │ │ │ ├── logic_gpie.R │ │ │ │ ├── logic_gscatter.R │ │ │ │ ├── logic_hist.R │ │ │ │ ├── logic_hist_prh.R │ │ │ │ ├── logic_home.R │ │ │ │ ├── logic_line.R │ │ │ │ ├── logic_line_prh.R │ │ │ │ ├── logic_pie.R │ │ │ │ ├── logic_pie3d.R │ │ │ │ ├── logic_pie_prh.R │ │ │ │ ├── logic_scatter.R │ │ │ │ ├── logic_scatter_prh.R │ │ │ │ ├── logic_screen.R │ │ │ │ ├── logic_select.R │ │ │ │ ├── logic_transform2.R │ │ │ │ ├── logic_upload.R │ │ │ │ ├── logic_view.R │ │ │ │ └── logic_vizlib.R │ │ │ ├── mystyle.css │ │ │ ├── server.R │ │ │ ├── styles.css │ │ │ ├── ui.R │ │ │ ├── ui │ │ │ │ ├── ui_bar.R │ │ │ │ ├── ui_bar2.R │ │ │ │ ├── ui_bar_plot_1.R │ │ │ │ ├── ui_bar_plot_2.R │ │ │ │ ├── ui_base.R │ │ │ │ ├── ui_box.R │ │ │ │ ├── ui_box2.R │ │ │ │ ├── ui_box_plot_1.R │ │ │ │ ├── ui_box_plot_2.R │ │ │ │ ├── ui_data.R │ │ │ │ ├── ui_datafiles.R │ │ │ │ ├── ui_dataoptions.R │ │ │ │ ├── ui_datasamples.R │ │ │ │ ├── ui_exit_button.R │ │ │ │ ├── ui_filter.R │ │ │ │ ├── ui_gbar.R │ │ │ │ ├── ui_gbar2.R │ │ │ │ ├── ui_gbox.R │ │ │ │ ├── ui_gbox2.R │ │ │ │ ├── ui_ggplot.R │ │ │ │ ├── ui_ghist.R │ │ │ │ ├── ui_gline.R │ │ │ │ ├── ui_gline2.R │ │ │ │ ├── ui_gpie.R │ │ │ │ ├── ui_gscatter.R │ │ │ │ ├── ui_hist.R │ │ │ │ ├── ui_hist_prh.R │ │ │ │ ├── ui_home.R │ │ │ │ ├── ui_homes.R │ │ │ │ ├── ui_line.R │ │ │ │ ├── ui_line_prh.R │ │ │ │ ├── ui_others.R │ │ │ │ ├── ui_pie.R │ │ │ │ ├── ui_pie3d.R │ │ │ │ ├── ui_pie_prh.R │ │ │ │ ├── ui_scatter.R │ │ │ │ ├── ui_scatter_prh.R │ │ │ │ ├── ui_scr.R │ │ │ │ ├── ui_screen.R │ │ │ │ ├── ui_sel.R │ │ │ │ ├── ui_seldata.R │ │ │ │ ├── ui_select.R │ │ │ │ ├── ui_trans.R │ │ │ │ ├── ui_transform2.R │ │ │ │ ├── ui_up.R │ │ │ │ ├── ui_vi.R │ │ │ │ ├── ui_view.R │ │ │ │ ├── ui_visualize.R │ │ │ │ ├── ui_viz_base.R │ │ │ │ ├── ui_viz_gg.R │ │ │ │ ├── ui_viz_others.R │ │ │ │ ├── ui_vizhome.R │ │ │ │ ├── ui_vizlib.R │ │ │ │ └── ui_vizmenu.R │ │ │ └── www │ │ │ │ ├── Rlogonew.png │ │ │ │ ├── bokeh_logo.png │ │ │ │ ├── ggplot2_logo.png │ │ │ │ ├── highcharts_logo.png │ │ │ │ └── plotly_logo.png │ │ ├── data │ │ │ ├── Rdata.rdb │ │ │ ├── Rdata.rds │ │ │ └── Rdata.rdx │ │ ├── help │ │ │ ├── AnIndex │ │ │ ├── aliases.rds │ │ │ ├── paths.rds │ │ │ ├── xplorerr.rdb │ │ │ └── xplorerr.rdx │ │ ├── html │ │ │ ├── 00Index.html │ │ │ └── R.css │ │ └── libs │ │ │ └── x64 │ │ │ ├── symbols.rds │ │ │ └── xplorerr.dll │ │ └── xtable │ │ ├── DESCRIPTION │ │ ├── INDEX │ │ ├── MD5 │ │ ├── Meta │ │ ├── Rd.rds │ │ ├── data.rds │ │ ├── features.rds │ │ ├── hsearch.rds │ │ ├── links.rds │ │ ├── nsInfo.rds │ │ ├── package.rds │ │ └── vignette.rds │ │ ├── NAMESPACE │ │ ├── NEWS │ │ ├── R │ │ ├── xtable │ │ ├── xtable.rdb │ │ └── xtable.rdx │ │ ├── data │ │ └── tli.txt.gz │ │ ├── doc │ │ ├── OtherPackagesGallery.R │ │ ├── OtherPackagesGallery.Rnw │ │ ├── OtherPackagesGallery.pdf │ │ ├── index.html │ │ ├── listOfTablesGallery.R │ │ ├── listOfTablesGallery.Rnw │ │ ├── listOfTablesGallery.pdf │ │ ├── margintable.R │ │ ├── margintable.Rnw │ │ ├── margintable.pdf │ │ ├── xtableGallery.R │ │ ├── xtableGallery.Rnw │ │ └── xtableGallery.pdf │ │ ├── help │ │ ├── AnIndex │ │ ├── aliases.rds │ │ ├── paths.rds │ │ ├── xtable.rdb │ │ └── xtable.rdx │ │ └── html │ │ ├── 00Index.html │ │ └── R.css └── problems.md ├── src ├── .gitignore ├── RcppExports.cpp ├── xpl-nsign.cpp └── xpl-tvar.cpp └── xplorerr.Rproj /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/rhub.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/.github/workflows/rhub.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/.gitignore -------------------------------------------------------------------------------- /CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/CONDUCT.md -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2017 2 | COPYRIGHT HOLDER: Aravind Hebbali 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/RcppExports.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/R/RcppExports.R -------------------------------------------------------------------------------- /R/launch.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/R/launch.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/R/utils.R -------------------------------------------------------------------------------- /R/xpl-data-exam.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/R/xpl-data-exam.R -------------------------------------------------------------------------------- /R/xpl-data-hsb.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/R/xpl-data-hsb.R -------------------------------------------------------------------------------- /R/xpl-data-treatment.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/R/xpl-data-treatment.R -------------------------------------------------------------------------------- /R/xplorerr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/R/xplorerr.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/cran-comments.md -------------------------------------------------------------------------------- /data/exam.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/data/exam.rda -------------------------------------------------------------------------------- /data/hsb.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/data/hsb.rda -------------------------------------------------------------------------------- /data/treatment.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/data/treatment.rda -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | xplorerr.rsquaredacademy.com 2 | -------------------------------------------------------------------------------- /docs/CONDUCT.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/docs/CONDUCT.html -------------------------------------------------------------------------------- /docs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/docs/LICENSE -------------------------------------------------------------------------------- /docs/LICENSE-text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/docs/LICENSE-text.html -------------------------------------------------------------------------------- /docs/LICENSE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/docs/LICENSE.html -------------------------------------------------------------------------------- /docs/_headers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/docs/_headers -------------------------------------------------------------------------------- /docs/authors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/docs/authors.html -------------------------------------------------------------------------------- /docs/bootstrap-toc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/docs/bootstrap-toc.css -------------------------------------------------------------------------------- /docs/bootstrap-toc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/docs/bootstrap-toc.js -------------------------------------------------------------------------------- /docs/docsearch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/docs/docsearch.css -------------------------------------------------------------------------------- /docs/docsearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/docs/docsearch.js -------------------------------------------------------------------------------- /docs/google02e424888b5e2def.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/docs/google02e424888b5e2def.html -------------------------------------------------------------------------------- /docs/hex_xplorerr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/docs/hex_xplorerr.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/jquery.sticky-kit.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/docs/jquery.sticky-kit.min.js -------------------------------------------------------------------------------- /docs/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/docs/link.svg -------------------------------------------------------------------------------- /docs/news/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/docs/news/index.html -------------------------------------------------------------------------------- /docs/pkgdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/docs/pkgdown.css -------------------------------------------------------------------------------- /docs/pkgdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/docs/pkgdown.js -------------------------------------------------------------------------------- /docs/pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/docs/pkgdown.yml -------------------------------------------------------------------------------- /docs/reference/Rplot001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/docs/reference/Rplot001.png -------------------------------------------------------------------------------- /docs/reference/app_descriptive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/docs/reference/app_descriptive.html -------------------------------------------------------------------------------- /docs/reference/app_inference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/docs/reference/app_inference.html -------------------------------------------------------------------------------- /docs/reference/app_linear_regression.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/docs/reference/app_linear_regression.html -------------------------------------------------------------------------------- /docs/reference/app_logistic_regression.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/docs/reference/app_logistic_regression.html -------------------------------------------------------------------------------- /docs/reference/app_rfm_analysis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/docs/reference/app_rfm_analysis.html -------------------------------------------------------------------------------- /docs/reference/app_vistributions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/docs/reference/app_vistributions.html -------------------------------------------------------------------------------- /docs/reference/app_visualizer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/docs/reference/app_visualizer.html -------------------------------------------------------------------------------- /docs/reference/exam.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/docs/reference/exam.html -------------------------------------------------------------------------------- /docs/reference/hsb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/docs/reference/hsb.html -------------------------------------------------------------------------------- /docs/reference/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/docs/reference/index.html -------------------------------------------------------------------------------- /docs/reference/launch_app_blorr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/docs/reference/launch_app_blorr.html -------------------------------------------------------------------------------- /docs/reference/launch_app_descriptr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/docs/reference/launch_app_descriptr.html -------------------------------------------------------------------------------- /docs/reference/launch_app_inferr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/docs/reference/launch_app_inferr.html -------------------------------------------------------------------------------- /docs/reference/launch_app_olsrr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/docs/reference/launch_app_olsrr.html -------------------------------------------------------------------------------- /docs/reference/launch_app_visualizer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/docs/reference/launch_app_visualizer.html -------------------------------------------------------------------------------- /docs/reference/launch_app_xplorerr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/docs/reference/launch_app_xplorerr.html -------------------------------------------------------------------------------- /docs/reference/treatment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/docs/reference/treatment.html -------------------------------------------------------------------------------- /docs/reference/xpl_gvar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/docs/reference/xpl_gvar.html -------------------------------------------------------------------------------- /docs/reference/xpl_nsignC.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/docs/reference/xpl_nsignC.html -------------------------------------------------------------------------------- /docs/reference/xplorerr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/docs/reference/xplorerr.html -------------------------------------------------------------------------------- /docs/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/docs/sitemap.xml -------------------------------------------------------------------------------- /hex_xplorerr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/hex_xplorerr.png -------------------------------------------------------------------------------- /inst/app-blorr/logic/logic_bivar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-blorr/logic/logic_bivar.R -------------------------------------------------------------------------------- /inst/app-blorr/logic/logic_dataoptions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-blorr/logic/logic_dataoptions.R -------------------------------------------------------------------------------- /inst/app-blorr/logic/logic_exit_button.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-blorr/logic/logic_exit_button.R -------------------------------------------------------------------------------- /inst/app-blorr/logic/logic_filter.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-blorr/logic/logic_filter.R -------------------------------------------------------------------------------- /inst/app-blorr/logic/logic_home.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-blorr/logic/logic_home.R -------------------------------------------------------------------------------- /inst/app-blorr/logic/logic_partition.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-blorr/logic/logic_partition.R -------------------------------------------------------------------------------- /inst/app-blorr/logic/logic_regress.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-blorr/logic/logic_regress.R -------------------------------------------------------------------------------- /inst/app-blorr/logic/logic_sample.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-blorr/logic/logic_sample.R -------------------------------------------------------------------------------- /inst/app-blorr/logic/logic_screen.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-blorr/logic/logic_screen.R -------------------------------------------------------------------------------- /inst/app-blorr/logic/logic_select.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-blorr/logic/logic_select.R -------------------------------------------------------------------------------- /inst/app-blorr/logic/logic_transform2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-blorr/logic/logic_transform2.R -------------------------------------------------------------------------------- /inst/app-blorr/logic/logic_upload.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-blorr/logic/logic_upload.R -------------------------------------------------------------------------------- /inst/app-blorr/logic/logic_validation.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-blorr/logic/logic_validation.R -------------------------------------------------------------------------------- /inst/app-blorr/logic/logic_varsel.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-blorr/logic/logic_varsel.R -------------------------------------------------------------------------------- /inst/app-blorr/logic/logic_view.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-blorr/logic/logic_view.R -------------------------------------------------------------------------------- /inst/app-blorr/mystyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-blorr/mystyle.css -------------------------------------------------------------------------------- /inst/app-blorr/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-blorr/server.R -------------------------------------------------------------------------------- /inst/app-blorr/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-blorr/styles.css -------------------------------------------------------------------------------- /inst/app-blorr/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-blorr/ui.R -------------------------------------------------------------------------------- /inst/app-blorr/ui/ui_2way_segment.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-blorr/ui/ui_2way_segment.R -------------------------------------------------------------------------------- /inst/app-blorr/ui/ui_analyze.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-blorr/ui/ui_analyze.R -------------------------------------------------------------------------------- /inst/app-blorr/ui/ui_bivar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-blorr/ui/ui_bivar.R -------------------------------------------------------------------------------- /inst/app-blorr/ui/ui_bivar_analysis.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-blorr/ui/ui_bivar_analysis.R -------------------------------------------------------------------------------- /inst/app-blorr/ui/ui_conf_matrix.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-blorr/ui/ui_conf_matrix.R -------------------------------------------------------------------------------- /inst/app-blorr/ui/ui_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-blorr/ui/ui_data.R -------------------------------------------------------------------------------- /inst/app-blorr/ui/ui_datafiles.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-blorr/ui/ui_datafiles.R -------------------------------------------------------------------------------- /inst/app-blorr/ui/ui_dataoptions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-blorr/ui/ui_dataoptions.R -------------------------------------------------------------------------------- /inst/app-blorr/ui/ui_datasamples.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-blorr/ui/ui_datasamples.R -------------------------------------------------------------------------------- /inst/app-blorr/ui/ui_dfbetas_panel.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-blorr/ui/ui_dfbetas_panel.R -------------------------------------------------------------------------------- /inst/app-blorr/ui/ui_diag_fit.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-blorr/ui/ui_diag_fit.R -------------------------------------------------------------------------------- /inst/app-blorr/ui/ui_diag_influence.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-blorr/ui/ui_diag_influence.R -------------------------------------------------------------------------------- /inst/app-blorr/ui/ui_diag_leverage.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-blorr/ui/ui_diag_leverage.R -------------------------------------------------------------------------------- /inst/app-blorr/ui/ui_exit_button.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-blorr/ui/ui_exit_button.R -------------------------------------------------------------------------------- /inst/app-blorr/ui/ui_filter.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-blorr/ui/ui_filter.R -------------------------------------------------------------------------------- /inst/app-blorr/ui/ui_gains_table.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-blorr/ui/ui_gains_table.R -------------------------------------------------------------------------------- /inst/app-blorr/ui/ui_homes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-blorr/ui/ui_homes.R -------------------------------------------------------------------------------- /inst/app-blorr/ui/ui_hoslem_test.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-blorr/ui/ui_hoslem_test.R -------------------------------------------------------------------------------- /inst/app-blorr/ui/ui_ks_chart.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-blorr/ui/ui_ks_chart.R -------------------------------------------------------------------------------- /inst/app-blorr/ui/ui_lorenz_curve.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-blorr/ui/ui_lorenz_curve.R -------------------------------------------------------------------------------- /inst/app-blorr/ui/ui_mlr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-blorr/ui/ui_mlr.R -------------------------------------------------------------------------------- /inst/app-blorr/ui/ui_model_fit_stats.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-blorr/ui/ui_model_fit_stats.R -------------------------------------------------------------------------------- /inst/app-blorr/ui/ui_model_home.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-blorr/ui/ui_model_home.R -------------------------------------------------------------------------------- /inst/app-blorr/ui/ui_multi_model_fit_stats.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-blorr/ui/ui_multi_model_fit_stats.R -------------------------------------------------------------------------------- /inst/app-blorr/ui/ui_partition.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-blorr/ui/ui_partition.R -------------------------------------------------------------------------------- /inst/app-blorr/ui/ui_regress.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-blorr/ui/ui_regress.R -------------------------------------------------------------------------------- /inst/app-blorr/ui/ui_resid_diag.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-blorr/ui/ui_resid_diag.R -------------------------------------------------------------------------------- /inst/app-blorr/ui/ui_roc_curve.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-blorr/ui/ui_roc_curve.R -------------------------------------------------------------------------------- /inst/app-blorr/ui/ui_sample.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-blorr/ui/ui_sample.R -------------------------------------------------------------------------------- /inst/app-blorr/ui/ui_scr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-blorr/ui/ui_scr.R -------------------------------------------------------------------------------- /inst/app-blorr/ui/ui_screen.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-blorr/ui/ui_screen.R -------------------------------------------------------------------------------- /inst/app-blorr/ui/ui_segment.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-blorr/ui/ui_segment.R -------------------------------------------------------------------------------- /inst/app-blorr/ui/ui_segment_dist.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-blorr/ui/ui_segment_dist.R -------------------------------------------------------------------------------- /inst/app-blorr/ui/ui_seldata.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-blorr/ui/ui_seldata.R -------------------------------------------------------------------------------- /inst/app-blorr/ui/ui_select.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-blorr/ui/ui_select.R -------------------------------------------------------------------------------- /inst/app-blorr/ui/ui_trans.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-blorr/ui/ui_trans.R -------------------------------------------------------------------------------- /inst/app-blorr/ui/ui_transform2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-blorr/ui/ui_transform2.R -------------------------------------------------------------------------------- /inst/app-blorr/ui/ui_up.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-blorr/ui/ui_up.R -------------------------------------------------------------------------------- /inst/app-blorr/ui/ui_valid.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-blorr/ui/ui_valid.R -------------------------------------------------------------------------------- /inst/app-blorr/ui/ui_varsel.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-blorr/ui/ui_varsel.R -------------------------------------------------------------------------------- /inst/app-blorr/ui/ui_varsel_backward.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-blorr/ui/ui_varsel_backward.R -------------------------------------------------------------------------------- /inst/app-blorr/ui/ui_varsel_forward.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-blorr/ui/ui_varsel_forward.R -------------------------------------------------------------------------------- /inst/app-blorr/ui/ui_varsel_stepwise.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-blorr/ui/ui_varsel_stepwise.R -------------------------------------------------------------------------------- /inst/app-blorr/ui/ui_vi.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-blorr/ui/ui_vi.R -------------------------------------------------------------------------------- /inst/app-blorr/ui/ui_view.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-blorr/ui/ui_view.R -------------------------------------------------------------------------------- /inst/app-blorr/ui/ui_woe_iv.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-blorr/ui/ui_woe_iv.R -------------------------------------------------------------------------------- /inst/app-blorr/ui/ui_woe_iv_stats.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-blorr/ui/ui_woe_iv_stats.R -------------------------------------------------------------------------------- /inst/app-blorr/www/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-blorr/www/main.png -------------------------------------------------------------------------------- /inst/app-descriptr/logic/logic_cross.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-descriptr/logic/logic_cross.R -------------------------------------------------------------------------------- /inst/app-descriptr/logic/logic_dataoptions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-descriptr/logic/logic_dataoptions.R -------------------------------------------------------------------------------- /inst/app-descriptr/logic/logic_exit_button.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-descriptr/logic/logic_exit_button.R -------------------------------------------------------------------------------- /inst/app-descriptr/logic/logic_filter.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-descriptr/logic/logic_filter.R -------------------------------------------------------------------------------- /inst/app-descriptr/logic/logic_freq_qual.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-descriptr/logic/logic_freq_qual.R -------------------------------------------------------------------------------- /inst/app-descriptr/logic/logic_freq_quant.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-descriptr/logic/logic_freq_quant.R -------------------------------------------------------------------------------- /inst/app-descriptr/logic/logic_home.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-descriptr/logic/logic_home.R -------------------------------------------------------------------------------- /inst/app-descriptr/logic/logic_mult1.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-descriptr/logic/logic_mult1.R -------------------------------------------------------------------------------- /inst/app-descriptr/logic/logic_mult2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-descriptr/logic/logic_mult2.R -------------------------------------------------------------------------------- /inst/app-descriptr/logic/logic_screen.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-descriptr/logic/logic_screen.R -------------------------------------------------------------------------------- /inst/app-descriptr/logic/logic_select.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-descriptr/logic/logic_select.R -------------------------------------------------------------------------------- /inst/app-descriptr/logic/logic_summary.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-descriptr/logic/logic_summary.R -------------------------------------------------------------------------------- /inst/app-descriptr/logic/logic_transform2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-descriptr/logic/logic_transform2.R -------------------------------------------------------------------------------- /inst/app-descriptr/logic/logic_upload.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-descriptr/logic/logic_upload.R -------------------------------------------------------------------------------- /inst/app-descriptr/logic/logic_view.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-descriptr/logic/logic_view.R -------------------------------------------------------------------------------- /inst/app-descriptr/mystyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-descriptr/mystyle.css -------------------------------------------------------------------------------- /inst/app-descriptr/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-descriptr/server.R -------------------------------------------------------------------------------- /inst/app-descriptr/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-descriptr/styles.css -------------------------------------------------------------------------------- /inst/app-descriptr/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-descriptr/ui.R -------------------------------------------------------------------------------- /inst/app-descriptr/ui/ui_analyze.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-descriptr/ui/ui_analyze.R -------------------------------------------------------------------------------- /inst/app-descriptr/ui/ui_cross.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-descriptr/ui/ui_cross.R -------------------------------------------------------------------------------- /inst/app-descriptr/ui/ui_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-descriptr/ui/ui_data.R -------------------------------------------------------------------------------- /inst/app-descriptr/ui/ui_datafiles.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-descriptr/ui/ui_datafiles.R -------------------------------------------------------------------------------- /inst/app-descriptr/ui/ui_dataoptions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-descriptr/ui/ui_dataoptions.R -------------------------------------------------------------------------------- /inst/app-descriptr/ui/ui_datasamples.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-descriptr/ui/ui_datasamples.R -------------------------------------------------------------------------------- /inst/app-descriptr/ui/ui_eda.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-descriptr/ui/ui_eda.R -------------------------------------------------------------------------------- /inst/app-descriptr/ui/ui_eda_home.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-descriptr/ui/ui_eda_home.R -------------------------------------------------------------------------------- /inst/app-descriptr/ui/ui_exit_button.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-descriptr/ui/ui_exit_button.R -------------------------------------------------------------------------------- /inst/app-descriptr/ui/ui_f.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-descriptr/ui/ui_f.R -------------------------------------------------------------------------------- /inst/app-descriptr/ui/ui_filter.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-descriptr/ui/ui_filter.R -------------------------------------------------------------------------------- /inst/app-descriptr/ui/ui_freq_qual.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-descriptr/ui/ui_freq_qual.R -------------------------------------------------------------------------------- /inst/app-descriptr/ui/ui_freq_quant.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-descriptr/ui/ui_freq_quant.R -------------------------------------------------------------------------------- /inst/app-descriptr/ui/ui_group_summary.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-descriptr/ui/ui_group_summary.R -------------------------------------------------------------------------------- /inst/app-descriptr/ui/ui_mult1.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-descriptr/ui/ui_mult1.R -------------------------------------------------------------------------------- /inst/app-descriptr/ui/ui_mult2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-descriptr/ui/ui_mult2.R -------------------------------------------------------------------------------- /inst/app-descriptr/ui/ui_scr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-descriptr/ui/ui_scr.R -------------------------------------------------------------------------------- /inst/app-descriptr/ui/ui_screen.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-descriptr/ui/ui_screen.R -------------------------------------------------------------------------------- /inst/app-descriptr/ui/ui_sel.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-descriptr/ui/ui_sel.R -------------------------------------------------------------------------------- /inst/app-descriptr/ui/ui_seldata.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-descriptr/ui/ui_seldata.R -------------------------------------------------------------------------------- /inst/app-descriptr/ui/ui_select.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-descriptr/ui/ui_select.R -------------------------------------------------------------------------------- /inst/app-descriptr/ui/ui_summary.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-descriptr/ui/ui_summary.R -------------------------------------------------------------------------------- /inst/app-descriptr/ui/ui_trans.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-descriptr/ui/ui_trans.R -------------------------------------------------------------------------------- /inst/app-descriptr/ui/ui_transform2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-descriptr/ui/ui_transform2.R -------------------------------------------------------------------------------- /inst/app-descriptr/ui/ui_up.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-descriptr/ui/ui_up.R -------------------------------------------------------------------------------- /inst/app-descriptr/ui/ui_vi.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-descriptr/ui/ui_vi.R -------------------------------------------------------------------------------- /inst/app-descriptr/ui/ui_view.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-descriptr/ui/ui_view.R -------------------------------------------------------------------------------- /inst/app-descriptr/www/normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-descriptr/www/normal.png -------------------------------------------------------------------------------- /inst/app-descriptr/www/summary1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-descriptr/www/summary1.png -------------------------------------------------------------------------------- /inst/app-inferr/logic/logic_anova.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-inferr/logic/logic_anova.R -------------------------------------------------------------------------------- /inst/app-inferr/logic/logic_binomtest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-inferr/logic/logic_binomtest.R -------------------------------------------------------------------------------- /inst/app-inferr/logic/logic_chict.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-inferr/logic/logic_chict.R -------------------------------------------------------------------------------- /inst/app-inferr/logic/logic_chigof.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-inferr/logic/logic_chigof.R -------------------------------------------------------------------------------- /inst/app-inferr/logic/logic_cochran.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-inferr/logic/logic_cochran.R -------------------------------------------------------------------------------- /inst/app-inferr/logic/logic_dataoptions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-inferr/logic/logic_dataoptions.R -------------------------------------------------------------------------------- /inst/app-inferr/logic/logic_exit_button.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-inferr/logic/logic_exit_button.R -------------------------------------------------------------------------------- /inst/app-inferr/logic/logic_filter.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-inferr/logic/logic_filter.R -------------------------------------------------------------------------------- /inst/app-inferr/logic/logic_home.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-inferr/logic/logic_home.R -------------------------------------------------------------------------------- /inst/app-inferr/logic/logic_itest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-inferr/logic/logic_itest.R -------------------------------------------------------------------------------- /inst/app-inferr/logic/logic_levene.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-inferr/logic/logic_levene.R -------------------------------------------------------------------------------- /inst/app-inferr/logic/logic_mcnemar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-inferr/logic/logic_mcnemar.R -------------------------------------------------------------------------------- /inst/app-inferr/logic/logic_osprop.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-inferr/logic/logic_osprop.R -------------------------------------------------------------------------------- /inst/app-inferr/logic/logic_osvar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-inferr/logic/logic_osvar.R -------------------------------------------------------------------------------- /inst/app-inferr/logic/logic_ptest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-inferr/logic/logic_ptest.R -------------------------------------------------------------------------------- /inst/app-inferr/logic/logic_runs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-inferr/logic/logic_runs.R -------------------------------------------------------------------------------- /inst/app-inferr/logic/logic_screen.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-inferr/logic/logic_screen.R -------------------------------------------------------------------------------- /inst/app-inferr/logic/logic_select.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-inferr/logic/logic_select.R -------------------------------------------------------------------------------- /inst/app-inferr/logic/logic_transform2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-inferr/logic/logic_transform2.R -------------------------------------------------------------------------------- /inst/app-inferr/logic/logic_tsprop.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-inferr/logic/logic_tsprop.R -------------------------------------------------------------------------------- /inst/app-inferr/logic/logic_tsvar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-inferr/logic/logic_tsvar.R -------------------------------------------------------------------------------- /inst/app-inferr/logic/logic_ttest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-inferr/logic/logic_ttest.R -------------------------------------------------------------------------------- /inst/app-inferr/logic/logic_upload.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-inferr/logic/logic_upload.R -------------------------------------------------------------------------------- /inst/app-inferr/logic/logic_view.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-inferr/logic/logic_view.R -------------------------------------------------------------------------------- /inst/app-inferr/mystyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-inferr/mystyle.css -------------------------------------------------------------------------------- /inst/app-inferr/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-inferr/server.R -------------------------------------------------------------------------------- /inst/app-inferr/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-inferr/styles.css -------------------------------------------------------------------------------- /inst/app-inferr/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-inferr/ui.R -------------------------------------------------------------------------------- /inst/app-inferr/ui/ui_analyze.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-inferr/ui/ui_analyze.R -------------------------------------------------------------------------------- /inst/app-inferr/ui/ui_anova.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-inferr/ui/ui_anova.R -------------------------------------------------------------------------------- /inst/app-inferr/ui/ui_binomtest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-inferr/ui/ui_binomtest.R -------------------------------------------------------------------------------- /inst/app-inferr/ui/ui_chict.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-inferr/ui/ui_chict.R -------------------------------------------------------------------------------- /inst/app-inferr/ui/ui_chigof.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-inferr/ui/ui_chigof.R -------------------------------------------------------------------------------- /inst/app-inferr/ui/ui_cochran.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-inferr/ui/ui_cochran.R -------------------------------------------------------------------------------- /inst/app-inferr/ui/ui_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-inferr/ui/ui_data.R -------------------------------------------------------------------------------- /inst/app-inferr/ui/ui_datafiles.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-inferr/ui/ui_datafiles.R -------------------------------------------------------------------------------- /inst/app-inferr/ui/ui_dataoptions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-inferr/ui/ui_dataoptions.R -------------------------------------------------------------------------------- /inst/app-inferr/ui/ui_datasamples.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-inferr/ui/ui_datasamples.R -------------------------------------------------------------------------------- /inst/app-inferr/ui/ui_exit_button.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-inferr/ui/ui_exit_button.R -------------------------------------------------------------------------------- /inst/app-inferr/ui/ui_filter.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-inferr/ui/ui_filter.R -------------------------------------------------------------------------------- /inst/app-inferr/ui/ui_homes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-inferr/ui/ui_homes.R -------------------------------------------------------------------------------- /inst/app-inferr/ui/ui_indttest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-inferr/ui/ui_indttest.R -------------------------------------------------------------------------------- /inst/app-inferr/ui/ui_infer1_home.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-inferr/ui/ui_infer1_home.R -------------------------------------------------------------------------------- /inst/app-inferr/ui/ui_infer2_home.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-inferr/ui/ui_infer2_home.R -------------------------------------------------------------------------------- /inst/app-inferr/ui/ui_infer3_home.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-inferr/ui/ui_infer3_home.R -------------------------------------------------------------------------------- /inst/app-inferr/ui/ui_infer_home.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-inferr/ui/ui_infer_home.R -------------------------------------------------------------------------------- /inst/app-inferr/ui/ui_inference.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-inferr/ui/ui_inference.R -------------------------------------------------------------------------------- /inst/app-inferr/ui/ui_levene.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-inferr/ui/ui_levene.R -------------------------------------------------------------------------------- /inst/app-inferr/ui/ui_mcnemar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-inferr/ui/ui_mcnemar.R -------------------------------------------------------------------------------- /inst/app-inferr/ui/ui_osprop.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-inferr/ui/ui_osprop.R -------------------------------------------------------------------------------- /inst/app-inferr/ui/ui_osvar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-inferr/ui/ui_osvar.R -------------------------------------------------------------------------------- /inst/app-inferr/ui/ui_ptest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-inferr/ui/ui_ptest.R -------------------------------------------------------------------------------- /inst/app-inferr/ui/ui_runs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-inferr/ui/ui_runs.R -------------------------------------------------------------------------------- /inst/app-inferr/ui/ui_scr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-inferr/ui/ui_scr.R -------------------------------------------------------------------------------- /inst/app-inferr/ui/ui_screen.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-inferr/ui/ui_screen.R -------------------------------------------------------------------------------- /inst/app-inferr/ui/ui_sel.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-inferr/ui/ui_sel.R -------------------------------------------------------------------------------- /inst/app-inferr/ui/ui_seldata.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-inferr/ui/ui_seldata.R -------------------------------------------------------------------------------- /inst/app-inferr/ui/ui_select.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-inferr/ui/ui_select.R -------------------------------------------------------------------------------- /inst/app-inferr/ui/ui_trans.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-inferr/ui/ui_trans.R -------------------------------------------------------------------------------- /inst/app-inferr/ui/ui_transform2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-inferr/ui/ui_transform2.R -------------------------------------------------------------------------------- /inst/app-inferr/ui/ui_tsprop.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-inferr/ui/ui_tsprop.R -------------------------------------------------------------------------------- /inst/app-inferr/ui/ui_tsvar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-inferr/ui/ui_tsvar.R -------------------------------------------------------------------------------- /inst/app-inferr/ui/ui_ttest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-inferr/ui/ui_ttest.R -------------------------------------------------------------------------------- /inst/app-inferr/ui/ui_up.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-inferr/ui/ui_up.R -------------------------------------------------------------------------------- /inst/app-inferr/ui/ui_vi.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-inferr/ui/ui_vi.R -------------------------------------------------------------------------------- /inst/app-inferr/ui/ui_view.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-inferr/ui/ui_view.R -------------------------------------------------------------------------------- /inst/app-inferr/xpl-format.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-inferr/xpl-format.R -------------------------------------------------------------------------------- /inst/app-inferr/xpl-helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-inferr/xpl-helpers.R -------------------------------------------------------------------------------- /inst/app-inferr/xpl-output.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-inferr/xpl-output.R -------------------------------------------------------------------------------- /inst/app-olsrr/logic/logic_collin.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-olsrr/logic/logic_collin.R -------------------------------------------------------------------------------- /inst/app-olsrr/logic/logic_dataoptions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-olsrr/logic/logic_dataoptions.R -------------------------------------------------------------------------------- /inst/app-olsrr/logic/logic_exit_button.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-olsrr/logic/logic_exit_button.R -------------------------------------------------------------------------------- /inst/app-olsrr/logic/logic_filter.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-olsrr/logic/logic_filter.R -------------------------------------------------------------------------------- /inst/app-olsrr/logic/logic_hetero.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-olsrr/logic/logic_hetero.R -------------------------------------------------------------------------------- /inst/app-olsrr/logic/logic_home.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-olsrr/logic/logic_home.R -------------------------------------------------------------------------------- /inst/app-olsrr/logic/logic_inflobs2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-olsrr/logic/logic_inflobs2.R -------------------------------------------------------------------------------- /inst/app-olsrr/logic/logic_mfit2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-olsrr/logic/logic_mfit2.R -------------------------------------------------------------------------------- /inst/app-olsrr/logic/logic_mselection2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-olsrr/logic/logic_mselection2.R -------------------------------------------------------------------------------- /inst/app-olsrr/logic/logic_partition.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-olsrr/logic/logic_partition.R -------------------------------------------------------------------------------- /inst/app-olsrr/logic/logic_regdiag.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-olsrr/logic/logic_regdiag.R -------------------------------------------------------------------------------- /inst/app-olsrr/logic/logic_regress.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-olsrr/logic/logic_regress.R -------------------------------------------------------------------------------- /inst/app-olsrr/logic/logic_resdiagtrial.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-olsrr/logic/logic_resdiagtrial.R -------------------------------------------------------------------------------- /inst/app-olsrr/logic/logic_sample.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-olsrr/logic/logic_sample.R -------------------------------------------------------------------------------- /inst/app-olsrr/logic/logic_screen.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-olsrr/logic/logic_screen.R -------------------------------------------------------------------------------- /inst/app-olsrr/logic/logic_select.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-olsrr/logic/logic_select.R -------------------------------------------------------------------------------- /inst/app-olsrr/logic/logic_transform2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-olsrr/logic/logic_transform2.R -------------------------------------------------------------------------------- /inst/app-olsrr/logic/logic_upload.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-olsrr/logic/logic_upload.R -------------------------------------------------------------------------------- /inst/app-olsrr/logic/logic_view.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-olsrr/logic/logic_view.R -------------------------------------------------------------------------------- /inst/app-olsrr/mystyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-olsrr/mystyle.css -------------------------------------------------------------------------------- /inst/app-olsrr/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-olsrr/server.R -------------------------------------------------------------------------------- /inst/app-olsrr/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-olsrr/styles.css -------------------------------------------------------------------------------- /inst/app-olsrr/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-olsrr/ui.R -------------------------------------------------------------------------------- /inst/app-olsrr/ui/ui_analyze.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-olsrr/ui/ui_analyze.R -------------------------------------------------------------------------------- /inst/app-olsrr/ui/ui_collin.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-olsrr/ui/ui_collin.R -------------------------------------------------------------------------------- /inst/app-olsrr/ui/ui_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-olsrr/ui/ui_data.R -------------------------------------------------------------------------------- /inst/app-olsrr/ui/ui_datafiles.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-olsrr/ui/ui_datafiles.R -------------------------------------------------------------------------------- /inst/app-olsrr/ui/ui_dataoptions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-olsrr/ui/ui_dataoptions.R -------------------------------------------------------------------------------- /inst/app-olsrr/ui/ui_datasamples.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-olsrr/ui/ui_datasamples.R -------------------------------------------------------------------------------- /inst/app-olsrr/ui/ui_exit_button.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-olsrr/ui/ui_exit_button.R -------------------------------------------------------------------------------- /inst/app-olsrr/ui/ui_filter.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-olsrr/ui/ui_filter.R -------------------------------------------------------------------------------- /inst/app-olsrr/ui/ui_hetero.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-olsrr/ui/ui_hetero.R -------------------------------------------------------------------------------- /inst/app-olsrr/ui/ui_home.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-olsrr/ui/ui_home.R -------------------------------------------------------------------------------- /inst/app-olsrr/ui/ui_homes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-olsrr/ui/ui_homes.R -------------------------------------------------------------------------------- /inst/app-olsrr/ui/ui_inflobs2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-olsrr/ui/ui_inflobs2.R -------------------------------------------------------------------------------- /inst/app-olsrr/ui/ui_mfit2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-olsrr/ui/ui_mfit2.R -------------------------------------------------------------------------------- /inst/app-olsrr/ui/ui_mlr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-olsrr/ui/ui_mlr.R -------------------------------------------------------------------------------- /inst/app-olsrr/ui/ui_model_home.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-olsrr/ui/ui_model_home.R -------------------------------------------------------------------------------- /inst/app-olsrr/ui/ui_mselection2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-olsrr/ui/ui_mselection2.R -------------------------------------------------------------------------------- /inst/app-olsrr/ui/ui_partition.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-olsrr/ui/ui_partition.R -------------------------------------------------------------------------------- /inst/app-olsrr/ui/ui_regdiag.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-olsrr/ui/ui_regdiag.R -------------------------------------------------------------------------------- /inst/app-olsrr/ui/ui_regress.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-olsrr/ui/ui_regress.R -------------------------------------------------------------------------------- /inst/app-olsrr/ui/ui_resdiagtrial.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-olsrr/ui/ui_resdiagtrial.R -------------------------------------------------------------------------------- /inst/app-olsrr/ui/ui_sample.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-olsrr/ui/ui_sample.R -------------------------------------------------------------------------------- /inst/app-olsrr/ui/ui_scr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-olsrr/ui/ui_scr.R -------------------------------------------------------------------------------- /inst/app-olsrr/ui/ui_screen.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-olsrr/ui/ui_screen.R -------------------------------------------------------------------------------- /inst/app-olsrr/ui/ui_sel.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-olsrr/ui/ui_sel.R -------------------------------------------------------------------------------- /inst/app-olsrr/ui/ui_seldata.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-olsrr/ui/ui_seldata.R -------------------------------------------------------------------------------- /inst/app-olsrr/ui/ui_select.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-olsrr/ui/ui_select.R -------------------------------------------------------------------------------- /inst/app-olsrr/ui/ui_trans.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-olsrr/ui/ui_trans.R -------------------------------------------------------------------------------- /inst/app-olsrr/ui/ui_transform2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-olsrr/ui/ui_transform2.R -------------------------------------------------------------------------------- /inst/app-olsrr/ui/ui_up.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-olsrr/ui/ui_up.R -------------------------------------------------------------------------------- /inst/app-olsrr/ui/ui_vi.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-olsrr/ui/ui_vi.R -------------------------------------------------------------------------------- /inst/app-olsrr/ui/ui_view.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-olsrr/ui/ui_view.R -------------------------------------------------------------------------------- /inst/app-rfm/logic/logic_dataoptions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-rfm/logic/logic_dataoptions.R -------------------------------------------------------------------------------- /inst/app-rfm/logic/logic_exit_button.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-rfm/logic/logic_exit_button.R -------------------------------------------------------------------------------- /inst/app-rfm/logic/logic_home.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-rfm/logic/logic_home.R -------------------------------------------------------------------------------- /inst/app-rfm/logic/logic_rfm_score.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-rfm/logic/logic_rfm_score.R -------------------------------------------------------------------------------- /inst/app-rfm/logic/logic_screen.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-rfm/logic/logic_screen.R -------------------------------------------------------------------------------- /inst/app-rfm/logic/logic_segments.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-rfm/logic/logic_segments.R -------------------------------------------------------------------------------- /inst/app-rfm/logic/logic_select.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-rfm/logic/logic_select.R -------------------------------------------------------------------------------- /inst/app-rfm/logic/logic_transform2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-rfm/logic/logic_transform2.R -------------------------------------------------------------------------------- /inst/app-rfm/logic/logic_upload.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-rfm/logic/logic_upload.R -------------------------------------------------------------------------------- /inst/app-rfm/logic/logic_view.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-rfm/logic/logic_view.R -------------------------------------------------------------------------------- /inst/app-rfm/logic/ui_rfm_home.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-rfm/logic/ui_rfm_home.R -------------------------------------------------------------------------------- /inst/app-rfm/mystyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-rfm/mystyle.css -------------------------------------------------------------------------------- /inst/app-rfm/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-rfm/server.R -------------------------------------------------------------------------------- /inst/app-rfm/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-rfm/styles.css -------------------------------------------------------------------------------- /inst/app-rfm/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-rfm/ui.R -------------------------------------------------------------------------------- /inst/app-rfm/ui/ui_analyze.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-rfm/ui/ui_analyze.R -------------------------------------------------------------------------------- /inst/app-rfm/ui/ui_average_frequency.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-rfm/ui/ui_average_frequency.R -------------------------------------------------------------------------------- /inst/app-rfm/ui/ui_average_monetary.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-rfm/ui/ui_average_monetary.R -------------------------------------------------------------------------------- /inst/app-rfm/ui/ui_average_recency.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-rfm/ui/ui_average_recency.R -------------------------------------------------------------------------------- /inst/app-rfm/ui/ui_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-rfm/ui/ui_data.R -------------------------------------------------------------------------------- /inst/app-rfm/ui/ui_datafiles.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-rfm/ui/ui_datafiles.R -------------------------------------------------------------------------------- /inst/app-rfm/ui/ui_dataoptions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-rfm/ui/ui_dataoptions.R -------------------------------------------------------------------------------- /inst/app-rfm/ui/ui_datasamples.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-rfm/ui/ui_datasamples.R -------------------------------------------------------------------------------- /inst/app-rfm/ui/ui_exit_button.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-rfm/ui/ui_exit_button.R -------------------------------------------------------------------------------- /inst/app-rfm/ui/ui_home.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-rfm/ui/ui_home.R -------------------------------------------------------------------------------- /inst/app-rfm/ui/ui_rfm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-rfm/ui/ui_rfm.R -------------------------------------------------------------------------------- /inst/app-rfm/ui/ui_rfm_bar_chart.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-rfm/ui/ui_rfm_bar_chart.R -------------------------------------------------------------------------------- /inst/app-rfm/ui/ui_rfm_customer_1.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-rfm/ui/ui_rfm_customer_1.R -------------------------------------------------------------------------------- /inst/app-rfm/ui/ui_rfm_customer_2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-rfm/ui/ui_rfm_customer_2.R -------------------------------------------------------------------------------- /inst/app-rfm/ui/ui_rfm_heat_map.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-rfm/ui/ui_rfm_heat_map.R -------------------------------------------------------------------------------- /inst/app-rfm/ui/ui_rfm_histogram.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-rfm/ui/ui_rfm_histogram.R -------------------------------------------------------------------------------- /inst/app-rfm/ui/ui_rfm_home.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-rfm/ui/ui_rfm_home.R -------------------------------------------------------------------------------- /inst/app-rfm/ui/ui_rfm_scatter_plot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-rfm/ui/ui_rfm_scatter_plot.R -------------------------------------------------------------------------------- /inst/app-rfm/ui/ui_rfm_score_transaction.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-rfm/ui/ui_rfm_score_transaction.R -------------------------------------------------------------------------------- /inst/app-rfm/ui/ui_scr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-rfm/ui/ui_scr.R -------------------------------------------------------------------------------- /inst/app-rfm/ui/ui_screen.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-rfm/ui/ui_screen.R -------------------------------------------------------------------------------- /inst/app-rfm/ui/ui_segment.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-rfm/ui/ui_segment.R -------------------------------------------------------------------------------- /inst/app-rfm/ui/ui_segment_size.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-rfm/ui/ui_segment_size.R -------------------------------------------------------------------------------- /inst/app-rfm/ui/ui_segments.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-rfm/ui/ui_segments.R -------------------------------------------------------------------------------- /inst/app-rfm/ui/ui_seldata.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-rfm/ui/ui_seldata.R -------------------------------------------------------------------------------- /inst/app-rfm/ui/ui_select.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-rfm/ui/ui_select.R -------------------------------------------------------------------------------- /inst/app-rfm/ui/ui_trans.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-rfm/ui/ui_trans.R -------------------------------------------------------------------------------- /inst/app-rfm/ui/ui_transform2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-rfm/ui/ui_transform2.R -------------------------------------------------------------------------------- /inst/app-rfm/ui/ui_up.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-rfm/ui/ui_up.R -------------------------------------------------------------------------------- /inst/app-rfm/ui/ui_vi.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-rfm/ui/ui_vi.R -------------------------------------------------------------------------------- /inst/app-rfm/ui/ui_view.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-rfm/ui/ui_view.R -------------------------------------------------------------------------------- /inst/app-rfm/ui/ui_welcome.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-rfm/ui/ui_welcome.R -------------------------------------------------------------------------------- /inst/app-rfm/www/rfm_main.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-rfm/www/rfm_main.jpg -------------------------------------------------------------------------------- /inst/app-rfm/www/rfm_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-rfm/www/rfm_main.png -------------------------------------------------------------------------------- /inst/app-vistributions/logic/logic_binom.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-vistributions/logic/logic_binom.R -------------------------------------------------------------------------------- /inst/app-vistributions/logic/logic_chisq.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-vistributions/logic/logic_chisq.R -------------------------------------------------------------------------------- /inst/app-vistributions/logic/logic_f.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-vistributions/logic/logic_f.R -------------------------------------------------------------------------------- /inst/app-vistributions/logic/logic_home.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-vistributions/logic/logic_home.R -------------------------------------------------------------------------------- /inst/app-vistributions/logic/logic_norm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-vistributions/logic/logic_norm.R -------------------------------------------------------------------------------- /inst/app-vistributions/logic/logic_t.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-vistributions/logic/logic_t.R -------------------------------------------------------------------------------- /inst/app-vistributions/mystyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-vistributions/mystyle.css -------------------------------------------------------------------------------- /inst/app-vistributions/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-vistributions/server.R -------------------------------------------------------------------------------- /inst/app-vistributions/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-vistributions/styles.css -------------------------------------------------------------------------------- /inst/app-vistributions/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-vistributions/ui.R -------------------------------------------------------------------------------- /inst/app-vistributions/ui/ui_analyze.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-vistributions/ui/ui_analyze.R -------------------------------------------------------------------------------- /inst/app-vistributions/ui/ui_binom.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-vistributions/ui/ui_binom.R -------------------------------------------------------------------------------- /inst/app-vistributions/ui/ui_chisq.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-vistributions/ui/ui_chisq.R -------------------------------------------------------------------------------- /inst/app-vistributions/ui/ui_dist.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-vistributions/ui/ui_dist.R -------------------------------------------------------------------------------- /inst/app-vistributions/ui/ui_dist_home.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-vistributions/ui/ui_dist_home.R -------------------------------------------------------------------------------- /inst/app-vistributions/ui/ui_exit_button.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-vistributions/ui/ui_exit_button.R -------------------------------------------------------------------------------- /inst/app-vistributions/ui/ui_f.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-vistributions/ui/ui_f.R -------------------------------------------------------------------------------- /inst/app-vistributions/ui/ui_homes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-vistributions/ui/ui_homes.R -------------------------------------------------------------------------------- /inst/app-vistributions/ui/ui_normal.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-vistributions/ui/ui_normal.R -------------------------------------------------------------------------------- /inst/app-vistributions/ui/ui_t.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-vistributions/ui/ui_t.R -------------------------------------------------------------------------------- /inst/app-vistributions/www/normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-vistributions/www/normal.png -------------------------------------------------------------------------------- /inst/app-vistributions/www/summary1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-vistributions/www/summary1.png -------------------------------------------------------------------------------- /inst/app-visualize/helper/barly1.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/helper/barly1.R -------------------------------------------------------------------------------- /inst/app-visualize/helper/barly2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/helper/barly2.R -------------------------------------------------------------------------------- /inst/app-visualize/helper/bbar-plot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/helper/bbar-plot.R -------------------------------------------------------------------------------- /inst/app-visualize/helper/bbox-plot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/helper/bbox-plot.R -------------------------------------------------------------------------------- /inst/app-visualize/helper/bibar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/helper/bibar.R -------------------------------------------------------------------------------- /inst/app-visualize/helper/boxly1.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/helper/boxly1.R -------------------------------------------------------------------------------- /inst/app-visualize/helper/boxly2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/helper/boxly2.R -------------------------------------------------------------------------------- /inst/app-visualize/helper/freq-cont.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/helper/freq-cont.R -------------------------------------------------------------------------------- /inst/app-visualize/helper/ggbibar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/helper/ggbibar.R -------------------------------------------------------------------------------- /inst/app-visualize/helper/ggbox1.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/helper/ggbox1.R -------------------------------------------------------------------------------- /inst/app-visualize/helper/ggbox2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/helper/ggbox2.R -------------------------------------------------------------------------------- /inst/app-visualize/helper/gghist.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/helper/gghist.R -------------------------------------------------------------------------------- /inst/app-visualize/helper/ggline.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/helper/ggline.R -------------------------------------------------------------------------------- /inst/app-visualize/helper/ggline2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/helper/ggline2.R -------------------------------------------------------------------------------- /inst/app-visualize/helper/ggpie.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/helper/ggpie.R -------------------------------------------------------------------------------- /inst/app-visualize/helper/ggscatter.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/helper/ggscatter.R -------------------------------------------------------------------------------- /inst/app-visualize/helper/ggunibar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/helper/ggunibar.R -------------------------------------------------------------------------------- /inst/app-visualize/helper/hibox2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/helper/hibox2.R -------------------------------------------------------------------------------- /inst/app-visualize/helper/highhist.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/helper/highhist.R -------------------------------------------------------------------------------- /inst/app-visualize/helper/highline.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/helper/highline.R -------------------------------------------------------------------------------- /inst/app-visualize/helper/highpie.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/helper/highpie.R -------------------------------------------------------------------------------- /inst/app-visualize/helper/histly.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/helper/histly.R -------------------------------------------------------------------------------- /inst/app-visualize/helper/histogram.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/helper/histogram.R -------------------------------------------------------------------------------- /inst/app-visualize/helper/hscatter.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/helper/hscatter.R -------------------------------------------------------------------------------- /inst/app-visualize/helper/line-plot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/helper/line-plot.R -------------------------------------------------------------------------------- /inst/app-visualize/helper/linely.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/helper/linely.R -------------------------------------------------------------------------------- /inst/app-visualize/helper/output.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/helper/output.R -------------------------------------------------------------------------------- /inst/app-visualize/helper/pie-plot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/helper/pie-plot.R -------------------------------------------------------------------------------- /inst/app-visualize/helper/pie3d-plot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/helper/pie3d-plot.R -------------------------------------------------------------------------------- /inst/app-visualize/helper/piely.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/helper/piely.R -------------------------------------------------------------------------------- /inst/app-visualize/helper/scatter-plot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/helper/scatter-plot.R -------------------------------------------------------------------------------- /inst/app-visualize/helper/scatterly.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/helper/scatterly.R -------------------------------------------------------------------------------- /inst/app-visualize/helper/ubar_plot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/helper/ubar_plot.R -------------------------------------------------------------------------------- /inst/app-visualize/helper/ubox-plot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/helper/ubox-plot.R -------------------------------------------------------------------------------- /inst/app-visualize/helper/unibar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/helper/unibar.R -------------------------------------------------------------------------------- /inst/app-visualize/helper/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/helper/utils.R -------------------------------------------------------------------------------- /inst/app-visualize/logic/logic_bar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/logic/logic_bar.R -------------------------------------------------------------------------------- /inst/app-visualize/logic/logic_bar2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/logic/logic_bar2.R -------------------------------------------------------------------------------- /inst/app-visualize/logic/logic_bar_plot_1.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/logic/logic_bar_plot_1.R -------------------------------------------------------------------------------- /inst/app-visualize/logic/logic_bar_plot_2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/logic/logic_bar_plot_2.R -------------------------------------------------------------------------------- /inst/app-visualize/logic/logic_box.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/logic/logic_box.R -------------------------------------------------------------------------------- /inst/app-visualize/logic/logic_box2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/logic/logic_box2.R -------------------------------------------------------------------------------- /inst/app-visualize/logic/logic_box_plot_1.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/logic/logic_box_plot_1.R -------------------------------------------------------------------------------- /inst/app-visualize/logic/logic_box_plot_2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/logic/logic_box_plot_2.R -------------------------------------------------------------------------------- /inst/app-visualize/logic/logic_dataoptions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/logic/logic_dataoptions.R -------------------------------------------------------------------------------- /inst/app-visualize/logic/logic_exit_button.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/logic/logic_exit_button.R -------------------------------------------------------------------------------- /inst/app-visualize/logic/logic_filter.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/logic/logic_filter.R -------------------------------------------------------------------------------- /inst/app-visualize/logic/logic_gbar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/logic/logic_gbar.R -------------------------------------------------------------------------------- /inst/app-visualize/logic/logic_gbar2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/logic/logic_gbar2.R -------------------------------------------------------------------------------- /inst/app-visualize/logic/logic_gbox.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/logic/logic_gbox.R -------------------------------------------------------------------------------- /inst/app-visualize/logic/logic_gbox2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/logic/logic_gbox2.R -------------------------------------------------------------------------------- /inst/app-visualize/logic/logic_ghist.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/logic/logic_ghist.R -------------------------------------------------------------------------------- /inst/app-visualize/logic/logic_gline.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/logic/logic_gline.R -------------------------------------------------------------------------------- /inst/app-visualize/logic/logic_gline2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/logic/logic_gline2.R -------------------------------------------------------------------------------- /inst/app-visualize/logic/logic_gpie.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/logic/logic_gpie.R -------------------------------------------------------------------------------- /inst/app-visualize/logic/logic_gscatter.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/logic/logic_gscatter.R -------------------------------------------------------------------------------- /inst/app-visualize/logic/logic_hist.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/logic/logic_hist.R -------------------------------------------------------------------------------- /inst/app-visualize/logic/logic_hist_prh.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/logic/logic_hist_prh.R -------------------------------------------------------------------------------- /inst/app-visualize/logic/logic_home.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/logic/logic_home.R -------------------------------------------------------------------------------- /inst/app-visualize/logic/logic_line.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/logic/logic_line.R -------------------------------------------------------------------------------- /inst/app-visualize/logic/logic_line_prh.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/logic/logic_line_prh.R -------------------------------------------------------------------------------- /inst/app-visualize/logic/logic_pie.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/logic/logic_pie.R -------------------------------------------------------------------------------- /inst/app-visualize/logic/logic_pie3d.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/logic/logic_pie3d.R -------------------------------------------------------------------------------- /inst/app-visualize/logic/logic_pie_prh.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/logic/logic_pie_prh.R -------------------------------------------------------------------------------- /inst/app-visualize/logic/logic_scatter.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/logic/logic_scatter.R -------------------------------------------------------------------------------- /inst/app-visualize/logic/logic_scatter_prh.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/logic/logic_scatter_prh.R -------------------------------------------------------------------------------- /inst/app-visualize/logic/logic_screen.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/logic/logic_screen.R -------------------------------------------------------------------------------- /inst/app-visualize/logic/logic_select.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/logic/logic_select.R -------------------------------------------------------------------------------- /inst/app-visualize/logic/logic_transform2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/logic/logic_transform2.R -------------------------------------------------------------------------------- /inst/app-visualize/logic/logic_upload.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/logic/logic_upload.R -------------------------------------------------------------------------------- /inst/app-visualize/logic/logic_view.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/logic/logic_view.R -------------------------------------------------------------------------------- /inst/app-visualize/logic/logic_vizlib.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/logic/logic_vizlib.R -------------------------------------------------------------------------------- /inst/app-visualize/mystyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/mystyle.css -------------------------------------------------------------------------------- /inst/app-visualize/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/server.R -------------------------------------------------------------------------------- /inst/app-visualize/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/styles.css -------------------------------------------------------------------------------- /inst/app-visualize/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/ui.R -------------------------------------------------------------------------------- /inst/app-visualize/ui/ui_bar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/ui/ui_bar.R -------------------------------------------------------------------------------- /inst/app-visualize/ui/ui_bar2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/ui/ui_bar2.R -------------------------------------------------------------------------------- /inst/app-visualize/ui/ui_bar_plot_1.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/ui/ui_bar_plot_1.R -------------------------------------------------------------------------------- /inst/app-visualize/ui/ui_bar_plot_2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/ui/ui_bar_plot_2.R -------------------------------------------------------------------------------- /inst/app-visualize/ui/ui_base.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/ui/ui_base.R -------------------------------------------------------------------------------- /inst/app-visualize/ui/ui_box.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/ui/ui_box.R -------------------------------------------------------------------------------- /inst/app-visualize/ui/ui_box2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/ui/ui_box2.R -------------------------------------------------------------------------------- /inst/app-visualize/ui/ui_box_plot_1.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/ui/ui_box_plot_1.R -------------------------------------------------------------------------------- /inst/app-visualize/ui/ui_box_plot_2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/ui/ui_box_plot_2.R -------------------------------------------------------------------------------- /inst/app-visualize/ui/ui_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/ui/ui_data.R -------------------------------------------------------------------------------- /inst/app-visualize/ui/ui_datafiles.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/ui/ui_datafiles.R -------------------------------------------------------------------------------- /inst/app-visualize/ui/ui_dataoptions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/ui/ui_dataoptions.R -------------------------------------------------------------------------------- /inst/app-visualize/ui/ui_datasamples.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/ui/ui_datasamples.R -------------------------------------------------------------------------------- /inst/app-visualize/ui/ui_exit_button.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/ui/ui_exit_button.R -------------------------------------------------------------------------------- /inst/app-visualize/ui/ui_filter.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/ui/ui_filter.R -------------------------------------------------------------------------------- /inst/app-visualize/ui/ui_gbar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/ui/ui_gbar.R -------------------------------------------------------------------------------- /inst/app-visualize/ui/ui_gbar2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/ui/ui_gbar2.R -------------------------------------------------------------------------------- /inst/app-visualize/ui/ui_gbox.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/ui/ui_gbox.R -------------------------------------------------------------------------------- /inst/app-visualize/ui/ui_gbox2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/ui/ui_gbox2.R -------------------------------------------------------------------------------- /inst/app-visualize/ui/ui_ggplot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/ui/ui_ggplot.R -------------------------------------------------------------------------------- /inst/app-visualize/ui/ui_ghist.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/ui/ui_ghist.R -------------------------------------------------------------------------------- /inst/app-visualize/ui/ui_gline.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/ui/ui_gline.R -------------------------------------------------------------------------------- /inst/app-visualize/ui/ui_gline2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/ui/ui_gline2.R -------------------------------------------------------------------------------- /inst/app-visualize/ui/ui_gpie.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/ui/ui_gpie.R -------------------------------------------------------------------------------- /inst/app-visualize/ui/ui_gscatter.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/ui/ui_gscatter.R -------------------------------------------------------------------------------- /inst/app-visualize/ui/ui_hist.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/ui/ui_hist.R -------------------------------------------------------------------------------- /inst/app-visualize/ui/ui_hist_prh.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/ui/ui_hist_prh.R -------------------------------------------------------------------------------- /inst/app-visualize/ui/ui_home.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/ui/ui_home.R -------------------------------------------------------------------------------- /inst/app-visualize/ui/ui_homes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/ui/ui_homes.R -------------------------------------------------------------------------------- /inst/app-visualize/ui/ui_line.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/ui/ui_line.R -------------------------------------------------------------------------------- /inst/app-visualize/ui/ui_line_prh.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/ui/ui_line_prh.R -------------------------------------------------------------------------------- /inst/app-visualize/ui/ui_others.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/ui/ui_others.R -------------------------------------------------------------------------------- /inst/app-visualize/ui/ui_pie.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/ui/ui_pie.R -------------------------------------------------------------------------------- /inst/app-visualize/ui/ui_pie3d.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/ui/ui_pie3d.R -------------------------------------------------------------------------------- /inst/app-visualize/ui/ui_pie_prh.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/ui/ui_pie_prh.R -------------------------------------------------------------------------------- /inst/app-visualize/ui/ui_scatter.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/ui/ui_scatter.R -------------------------------------------------------------------------------- /inst/app-visualize/ui/ui_scatter_prh.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/ui/ui_scatter_prh.R -------------------------------------------------------------------------------- /inst/app-visualize/ui/ui_scr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/ui/ui_scr.R -------------------------------------------------------------------------------- /inst/app-visualize/ui/ui_screen.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/ui/ui_screen.R -------------------------------------------------------------------------------- /inst/app-visualize/ui/ui_sel.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/ui/ui_sel.R -------------------------------------------------------------------------------- /inst/app-visualize/ui/ui_seldata.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/ui/ui_seldata.R -------------------------------------------------------------------------------- /inst/app-visualize/ui/ui_select.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/ui/ui_select.R -------------------------------------------------------------------------------- /inst/app-visualize/ui/ui_trans.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/ui/ui_trans.R -------------------------------------------------------------------------------- /inst/app-visualize/ui/ui_transform2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/ui/ui_transform2.R -------------------------------------------------------------------------------- /inst/app-visualize/ui/ui_up.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/ui/ui_up.R -------------------------------------------------------------------------------- /inst/app-visualize/ui/ui_vi.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/ui/ui_vi.R -------------------------------------------------------------------------------- /inst/app-visualize/ui/ui_view.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/ui/ui_view.R -------------------------------------------------------------------------------- /inst/app-visualize/ui/ui_visualize.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/ui/ui_visualize.R -------------------------------------------------------------------------------- /inst/app-visualize/ui/ui_viz_base.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/ui/ui_viz_base.R -------------------------------------------------------------------------------- /inst/app-visualize/ui/ui_viz_gg.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/ui/ui_viz_gg.R -------------------------------------------------------------------------------- /inst/app-visualize/ui/ui_viz_others.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/ui/ui_viz_others.R -------------------------------------------------------------------------------- /inst/app-visualize/ui/ui_vizhome.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/ui/ui_vizhome.R -------------------------------------------------------------------------------- /inst/app-visualize/ui/ui_vizlib.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/ui/ui_vizlib.R -------------------------------------------------------------------------------- /inst/app-visualize/ui/ui_vizmenu.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/ui/ui_vizmenu.R -------------------------------------------------------------------------------- /inst/app-visualize/www/Rlogonew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/www/Rlogonew.png -------------------------------------------------------------------------------- /inst/app-visualize/www/bokeh_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/www/bokeh_logo.png -------------------------------------------------------------------------------- /inst/app-visualize/www/ggplot2_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/www/ggplot2_logo.png -------------------------------------------------------------------------------- /inst/app-visualize/www/highcharts_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/www/highcharts_logo.png -------------------------------------------------------------------------------- /inst/app-visualize/www/plotly_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/inst/app-visualize/www/plotly_logo.png -------------------------------------------------------------------------------- /man/app_descriptive.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/man/app_descriptive.Rd -------------------------------------------------------------------------------- /man/app_inference.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/man/app_inference.Rd -------------------------------------------------------------------------------- /man/app_linear_regression.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/man/app_linear_regression.Rd -------------------------------------------------------------------------------- /man/app_logistic_regression.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/man/app_logistic_regression.Rd -------------------------------------------------------------------------------- /man/app_rfm_analysis.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/man/app_rfm_analysis.Rd -------------------------------------------------------------------------------- /man/app_vistributions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/man/app_vistributions.Rd -------------------------------------------------------------------------------- /man/app_visualizer.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/man/app_visualizer.Rd -------------------------------------------------------------------------------- /man/exam.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/man/exam.Rd -------------------------------------------------------------------------------- /man/hsb.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/man/hsb.Rd -------------------------------------------------------------------------------- /man/treatment.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/man/treatment.Rd -------------------------------------------------------------------------------- /man/xpl_gvar.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/man/xpl_gvar.Rd -------------------------------------------------------------------------------- /man/xpl_nsignC.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/man/xpl_nsignC.Rd -------------------------------------------------------------------------------- /man/xplorerr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/man/xplorerr.Rd -------------------------------------------------------------------------------- /revdep/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/README.md -------------------------------------------------------------------------------- /revdep/checks/blorr/blorr_0.3.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/checks/blorr/blorr_0.3.0.tar.gz -------------------------------------------------------------------------------- /revdep/checks/blorr/new/blorr.Rcheck/tests/figs/test-blr-plots-r/forward-selection-plot.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /revdep/checks/blorr/new/blorr.Rcheck/tests/figs/test-blr-plots-r/stepwise-backward-selection-plot.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /revdep/checks/blorr/new/blorr.Rcheck/tests/figs/test-blr-plots-r/stepwise-selection-plot.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /revdep/checks/blorr/new/libraries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/checks/blorr/new/libraries.txt -------------------------------------------------------------------------------- /revdep/checks/blorr/old/blorr.Rcheck/tests/figs/test-blr-plots-r/forward-selection-plot.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /revdep/checks/blorr/old/blorr.Rcheck/tests/figs/test-blr-plots-r/stepwise-backward-selection-plot.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /revdep/checks/blorr/old/blorr.Rcheck/tests/figs/test-blr-plots-r/stepwise-selection-plot.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /revdep/checks/blorr/old/libraries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/checks/blorr/old/libraries.txt -------------------------------------------------------------------------------- /revdep/checks/descriptr/new/descriptr.Rcheck/tests/figs/ds-cross-table/cross-bar-proportional.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /revdep/checks/descriptr/new/descriptr.Rcheck/tests/figs/ds-cross-table/cross-bar-stacked.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /revdep/checks/descriptr/new/descriptr.Rcheck/tests/figs/ds-cross-table/cross-bar.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /revdep/checks/descriptr/new/descriptr.Rcheck/tests/figs/ds-group-summary/group-summary.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /revdep/checks/descriptr/new/descriptr.Rcheck/tests/figs/freq-table/ds-freq-bar.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /revdep/checks/descriptr/new/descriptr.Rcheck/tests/figs/freq-table/ds-freq-cont.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /revdep/checks/descriptr/new/descriptr.Rcheck/tests/figs/test-plots/ds-screener-1.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /revdep/checks/descriptr/new/libraries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/checks/descriptr/new/libraries.txt -------------------------------------------------------------------------------- /revdep/checks/descriptr/old/descriptr.Rcheck/tests/figs/ds-cross-table/cross-bar-proportional.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /revdep/checks/descriptr/old/descriptr.Rcheck/tests/figs/ds-cross-table/cross-bar-stacked.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /revdep/checks/descriptr/old/descriptr.Rcheck/tests/figs/ds-cross-table/cross-bar.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /revdep/checks/descriptr/old/descriptr.Rcheck/tests/figs/ds-group-summary/group-summary.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /revdep/checks/descriptr/old/descriptr.Rcheck/tests/figs/freq-table/ds-freq-bar.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /revdep/checks/descriptr/old/descriptr.Rcheck/tests/figs/freq-table/ds-freq-cont.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /revdep/checks/descriptr/old/descriptr.Rcheck/tests/figs/test-plots/ds-screener-1.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /revdep/checks/descriptr/old/libraries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/checks/descriptr/old/libraries.txt -------------------------------------------------------------------------------- /revdep/checks/inferr/inferr_0.3.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/checks/inferr/inferr_0.3.1.tar.gz -------------------------------------------------------------------------------- /revdep/checks/inferr/new/libraries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/checks/inferr/new/libraries.txt -------------------------------------------------------------------------------- /revdep/checks/inferr/old/libraries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/checks/inferr/old/libraries.txt -------------------------------------------------------------------------------- /revdep/checks/libraries.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/checks/libraries.csv -------------------------------------------------------------------------------- /revdep/checks/olsrr/new/libraries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/checks/olsrr/new/libraries.txt -------------------------------------------------------------------------------- /revdep/checks/olsrr/new/olsrr.Rcheck/tests/figs/visual-test/fm-plot.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /revdep/checks/olsrr/new/olsrr.Rcheck/tests/figs/visual-test/rsd-plot.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /revdep/checks/olsrr/old/libraries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/checks/olsrr/old/libraries.txt -------------------------------------------------------------------------------- /revdep/checks/olsrr/old/olsrr.Rcheck/tests/figs/visual-test/fm-plot.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /revdep/checks/olsrr/old/olsrr.Rcheck/tests/figs/visual-test/rsd-plot.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /revdep/checks/olsrr/olsrr_0.6.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/checks/olsrr/olsrr_0.6.0.tar.gz -------------------------------------------------------------------------------- /revdep/checks/rfm/new/libraries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/checks/rfm/new/libraries.txt -------------------------------------------------------------------------------- /revdep/checks/rfm/new/rfm.Rcheck/00check.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/checks/rfm/new/rfm.Rcheck/00check.log -------------------------------------------------------------------------------- /revdep/checks/rfm/new/rfm.Rcheck/rfm-Ex.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/checks/rfm/new/rfm.Rcheck/rfm-Ex.R -------------------------------------------------------------------------------- /revdep/checks/rfm/new/rfm.Rcheck/rfm-Ex.Rout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/checks/rfm/new/rfm.Rcheck/rfm-Ex.Rout -------------------------------------------------------------------------------- /revdep/checks/rfm/new/rfm.Rcheck/rfm-Ex.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/checks/rfm/new/rfm.Rcheck/rfm-Ex.pdf -------------------------------------------------------------------------------- /revdep/checks/rfm/old/libraries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/checks/rfm/old/libraries.txt -------------------------------------------------------------------------------- /revdep/checks/rfm/old/rfm.Rcheck/00check.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/checks/rfm/old/rfm.Rcheck/00check.log -------------------------------------------------------------------------------- /revdep/checks/rfm/old/rfm.Rcheck/rfm-Ex.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/checks/rfm/old/rfm.Rcheck/rfm-Ex.R -------------------------------------------------------------------------------- /revdep/checks/rfm/old/rfm.Rcheck/rfm-Ex.Rout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/checks/rfm/old/rfm.Rcheck/rfm-Ex.Rout -------------------------------------------------------------------------------- /revdep/checks/rfm/old/rfm.Rcheck/rfm-Ex.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/checks/rfm/old/rfm.Rcheck/rfm-Ex.pdf -------------------------------------------------------------------------------- /revdep/checks/rfm/rfm_0.3.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/checks/rfm/rfm_0.3.0.tar.gz -------------------------------------------------------------------------------- /revdep/cran.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/cran.md -------------------------------------------------------------------------------- /revdep/data.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/data.sqlite -------------------------------------------------------------------------------- /revdep/failures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/failures.md -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/R6/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/R6/DESCRIPTION -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/R6/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/R6/INDEX -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/R6/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2015 2 | COPYRIGHT HOLDER: RStudio 3 | -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/R6/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/R6/MD5 -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/R6/Meta/Rd.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/R6/Meta/Rd.rds -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/R6/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/R6/NAMESPACE -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/R6/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/R6/NEWS.md -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/R6/R/R6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/R6/R/R6 -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/R6/R/R6.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/R6/R/R6.rdb -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/R6/R/R6.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/R6/R/R6.rdx -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/R6/help/AnIndex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/R6/help/AnIndex -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/R6/help/R6.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/R6/help/R6.rdb -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/R6/help/R6.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/R6/help/R6.rdx -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/R6/html/R.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/R6/html/R.css -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/Rcpp/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/Rcpp/CITATION -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/Rcpp/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/Rcpp/DESCRIPTION -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/Rcpp/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/Rcpp/INDEX -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/Rcpp/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/Rcpp/MD5 -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/Rcpp/Meta/Rd.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/Rcpp/Meta/Rd.rds -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/Rcpp/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/Rcpp/NAMESPACE -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/Rcpp/NEWS.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/Rcpp/NEWS.Rd -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/Rcpp/R/Rcpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/Rcpp/R/Rcpp -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/Rcpp/R/Rcpp.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/Rcpp/R/Rcpp.rdb -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/Rcpp/R/Rcpp.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/Rcpp/R/Rcpp.rdx -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/Rcpp/html/R.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/Rcpp/html/R.css -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/Rcpp/tinytest/testRcppInterfaceUser/src/config.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/Rcpp/tinytest/testRcppPackage/NAMESPACE: -------------------------------------------------------------------------------- 1 | useDynLib(testRcppPackage) 2 | import(Rcpp) 3 | -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/base64enc/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/base64enc/INDEX -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/base64enc/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/base64enc/MD5 -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/base64enc/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/base64enc/NEWS -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/bslib/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/bslib/INDEX -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/bslib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/bslib/LICENSE -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/bslib/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/bslib/MD5 -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/bslib/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/bslib/NAMESPACE -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/bslib/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/bslib/NEWS.md -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/bslib/R/bslib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/bslib/R/bslib -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/bslib/html/R.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/bslib/html/R.css -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/bslib/lib/bs-a11y-p/src/less/partials/buttons.less: -------------------------------------------------------------------------------- 1 | .btn:focus { .outline(2px); } -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/bslib/lib/bs-a11y-p/src/less/partials/divs.less: -------------------------------------------------------------------------------- 1 | div.active:focus { .outline(1px); } -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/bslib/lib/bs-a11y-p/src/less/partials/links.less: -------------------------------------------------------------------------------- 1 | a:focus { .outline(1px); } -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/cachem/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/cachem/INDEX -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/cachem/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2023 2 | COPYRIGHT HOLDER: Posit Software, PBC 3 | -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/cachem/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/cachem/MD5 -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/cachem/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/cachem/NAMESPACE -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/cachem/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/cachem/NEWS.md -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/cachem/R/cachem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/cachem/R/cachem -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/cli/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/cli/DESCRIPTION -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/cli/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/cli/INDEX -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/cli/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2023 2 | COPYRIGHT HOLDER: cli authors 3 | -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/cli/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/cli/MD5 -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/cli/Meta/Rd.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/cli/Meta/Rd.rds -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/cli/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/cli/NAMESPACE -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/cli/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/cli/NEWS.md -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/cli/R/cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/cli/R/cli -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/cli/R/cli.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/cli/R/cli.rdb -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/cli/R/cli.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/cli/R/cli.rdx -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/cli/exec/news.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/cli/exec/news.R -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/cli/exec/up.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/cli/exec/up.R -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/cli/help/AnIndex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/cli/help/AnIndex -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/cli/logo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/cli/logo.txt -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/crayon/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/crayon/INDEX -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/crayon/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2023 2 | COPYRIGHT HOLDER: crayon authors 3 | -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/crayon/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/crayon/MD5 -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/digest/GPL-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/digest/GPL-2 -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/digest/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/digest/INDEX -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/digest/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/digest/MD5 -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/fastmap/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/fastmap/INDEX -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/fastmap/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2024 2 | COPYRIGHT HOLDER: Posit Software, PBC 3 | -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/fastmap/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/fastmap/MD5 -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/fontawesome/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2018-2023 2 | COPYRIGHT HOLDER: fontawesome authors 3 | -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/fs/COPYRIGHTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/fs/COPYRIGHTS -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/fs/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/fs/INDEX -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/fs/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2023 2 | COPYRIGHT HOLDER: fs authors 3 | -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/fs/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/fs/MD5 -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/fs/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/fs/NAMESPACE -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/fs/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/fs/NEWS.md -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/fs/R/fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/fs/R/fs -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/fs/R/fs.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/fs/R/fs.rdb -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/fs/R/fs.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/fs/R/fs.rdx -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/fs/WORDLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/fs/WORDLIST -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/fs/html/R.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/fs/html/R.css -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/glue/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/glue/INDEX -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/glue/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2023 2 | COPYRIGHT HOLDER: glue authors 3 | -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/glue/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/glue/MD5 -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/glue/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/glue/NEWS.md -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/glue/R/glue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/glue/R/glue -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/htmltools/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/htmltools/MD5 -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/httpuv/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/httpuv/INDEX -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/httpuv/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/httpuv/MD5 -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/jquerylib/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2020 2 | COPYRIGHT HOLDER: Carson Sievert 3 | -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/jquerylib/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/jquerylib/MD5 -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/jsonlite/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2020 2 | COPYRIGHT HOLDER: Jeroen Ooms 3 | -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/jsonlite/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/jsonlite/MD5 -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/jsonlite/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/jsonlite/NEWS -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/later/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/later/INDEX -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/later/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2020 2 | COPYRIGHT HOLDER: later authors 3 | -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/later/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/later/MD5 -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/later/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/later/NEWS.md -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/later/R/later: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/later/R/later -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/lifecycle/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2023 2 | COPYRIGHT HOLDER: lifecycle authors 3 | -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/lifecycle/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/lifecycle/MD5 -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/magrittr/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2019 2 | COPYRIGHT HOLDER: Stefan Milton Bache and Hadley Wickham 3 | -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/magrittr/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/magrittr/MD5 -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/memoise/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/memoise/INDEX -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/memoise/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/memoise/MD5 -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/mime/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/mime/INDEX -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/mime/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/mime/MD5 -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/mime/NEWS.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/mime/NEWS.Rd -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/mime/R/mime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/mime/R/mime -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/promises/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016-2023 2 | COPYRIGHT HOLDER: Posit Software, PBC 3 | 4 | -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/promises/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/promises/MD5 -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/rappdirs/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/rappdirs/MD5 -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/rlang/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/rlang/INDEX -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/rlang/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2020 2 | COPYRIGHT HOLDER: rlang authors 3 | -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/rlang/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/rlang/MD5 -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/rlang/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/rlang/NEWS.md -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/rlang/R/rlang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/rlang/R/rlang -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/rlang/backtrace-ver: -------------------------------------------------------------------------------- 1 | 1.0.1 2 | -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/sass/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/sass/INDEX -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/sass/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2019 2 | COPYRIGHT HOLDER: RStudio, Inc. 3 | -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/sass/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/sass/MD5 -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/sass/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/sass/NEWS.md -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/sass/R/sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/sass/R/sass -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/shiny/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/shiny/INDEX -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/shiny/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/shiny/LICENSE -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/shiny/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/shiny/MD5 -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/shiny/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/shiny/NEWS.md -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/shiny/R/shiny: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/shiny/R/shiny -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/withr/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/withr/INDEX -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/withr/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2020 2 | COPYRIGHT HOLDER: withr authors 3 | -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/withr/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/withr/MD5 -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/withr/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/withr/NEWS.md -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/withr/R/withr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/withr/R/withr -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/xplorerr/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2017 2 | COPYRIGHT HOLDER: Aravind Hebbali 3 | -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/xtable/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/xtable/INDEX -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/xtable/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/xtable/MD5 -------------------------------------------------------------------------------- /revdep/library/xplorerr/new/xtable/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/new/xtable/NEWS -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/R6/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/R6/INDEX -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/R6/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2015 2 | COPYRIGHT HOLDER: RStudio 3 | -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/R6/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/R6/MD5 -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/R6/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/R6/NAMESPACE -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/R6/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/R6/NEWS.md -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/R6/R/R6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/R6/R/R6 -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/R6/R/R6.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/R6/R/R6.rdb -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/R6/R/R6.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/R6/R/R6.rdx -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/R6/html/R.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/R6/html/R.css -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/Rcpp/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/Rcpp/CITATION -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/Rcpp/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/Rcpp/INDEX -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/Rcpp/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/Rcpp/MD5 -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/Rcpp/NEWS.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/Rcpp/NEWS.Rd -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/Rcpp/R/Rcpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/Rcpp/R/Rcpp -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/Rcpp/tinytest/testRcppInterfaceUser/src/config.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/Rcpp/tinytest/testRcppPackage/NAMESPACE: -------------------------------------------------------------------------------- 1 | useDynLib(testRcppPackage) 2 | import(Rcpp) 3 | -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/base64enc/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/base64enc/MD5 -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/bslib/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/bslib/INDEX -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/bslib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/bslib/LICENSE -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/bslib/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/bslib/MD5 -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/bslib/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/bslib/NEWS.md -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/bslib/R/bslib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/bslib/R/bslib -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/bslib/lib/bs-a11y-p/src/less/partials/buttons.less: -------------------------------------------------------------------------------- 1 | .btn:focus { .outline(2px); } -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/bslib/lib/bs-a11y-p/src/less/partials/divs.less: -------------------------------------------------------------------------------- 1 | div.active:focus { .outline(1px); } -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/bslib/lib/bs-a11y-p/src/less/partials/links.less: -------------------------------------------------------------------------------- 1 | a:focus { .outline(1px); } -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/cachem/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/cachem/INDEX -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/cachem/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2023 2 | COPYRIGHT HOLDER: Posit Software, PBC 3 | -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/cachem/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/cachem/MD5 -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/cli/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/cli/INDEX -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/cli/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2023 2 | COPYRIGHT HOLDER: cli authors 3 | -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/cli/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/cli/MD5 -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/cli/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/cli/NAMESPACE -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/cli/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/cli/NEWS.md -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/cli/R/cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/cli/R/cli -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/cli/R/cli.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/cli/R/cli.rdb -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/cli/R/cli.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/cli/R/cli.rdx -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/cli/exec/up.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/cli/exec/up.R -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/cli/logo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/cli/logo.txt -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/crayon/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/crayon/INDEX -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/crayon/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2023 2 | COPYRIGHT HOLDER: crayon authors 3 | -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/crayon/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/crayon/MD5 -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/digest/GPL-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/digest/GPL-2 -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/digest/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/digest/INDEX -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/digest/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/digest/MD5 -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/fastmap/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/fastmap/INDEX -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/fastmap/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2024 2 | COPYRIGHT HOLDER: Posit Software, PBC 3 | -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/fastmap/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/fastmap/MD5 -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/fontawesome/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2018-2023 2 | COPYRIGHT HOLDER: fontawesome authors 3 | -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/fs/COPYRIGHTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/fs/COPYRIGHTS -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/fs/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/fs/INDEX -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/fs/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2023 2 | COPYRIGHT HOLDER: fs authors 3 | -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/fs/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/fs/MD5 -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/fs/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/fs/NAMESPACE -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/fs/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/fs/NEWS.md -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/fs/R/fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/fs/R/fs -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/fs/R/fs.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/fs/R/fs.rdb -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/fs/R/fs.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/fs/R/fs.rdx -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/fs/WORDLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/fs/WORDLIST -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/fs/html/R.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/fs/html/R.css -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/glue/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/glue/INDEX -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/glue/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2023 2 | COPYRIGHT HOLDER: glue authors 3 | -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/glue/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/glue/MD5 -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/glue/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/glue/NEWS.md -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/glue/R/glue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/glue/R/glue -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/htmltools/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/htmltools/MD5 -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/httpuv/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/httpuv/INDEX -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/httpuv/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/httpuv/MD5 -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/jquerylib/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2020 2 | COPYRIGHT HOLDER: Carson Sievert 3 | -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/jquerylib/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/jquerylib/MD5 -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/jsonlite/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2020 2 | COPYRIGHT HOLDER: Jeroen Ooms 3 | -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/jsonlite/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/jsonlite/MD5 -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/jsonlite/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/jsonlite/NEWS -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/later/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/later/INDEX -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/later/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2020 2 | COPYRIGHT HOLDER: later authors 3 | -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/later/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/later/MD5 -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/later/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/later/NEWS.md -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/later/R/later: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/later/R/later -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/lifecycle/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2023 2 | COPYRIGHT HOLDER: lifecycle authors 3 | -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/lifecycle/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/lifecycle/MD5 -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/magrittr/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2019 2 | COPYRIGHT HOLDER: Stefan Milton Bache and Hadley Wickham 3 | -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/magrittr/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/magrittr/MD5 -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/memoise/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/memoise/INDEX -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/memoise/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/memoise/MD5 -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/mime/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/mime/INDEX -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/mime/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/mime/MD5 -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/mime/NEWS.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/mime/NEWS.Rd -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/mime/R/mime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/mime/R/mime -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/promises/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016-2023 2 | COPYRIGHT HOLDER: Posit Software, PBC 3 | 4 | -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/promises/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/promises/MD5 -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/rappdirs/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/rappdirs/MD5 -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/rlang/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/rlang/INDEX -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/rlang/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2020 2 | COPYRIGHT HOLDER: rlang authors 3 | -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/rlang/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/rlang/MD5 -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/rlang/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/rlang/NEWS.md -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/rlang/R/rlang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/rlang/R/rlang -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/rlang/backtrace-ver: -------------------------------------------------------------------------------- 1 | 1.0.1 2 | -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/sass/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/sass/INDEX -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/sass/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2019 2 | COPYRIGHT HOLDER: RStudio, Inc. 3 | -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/sass/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/sass/MD5 -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/sass/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/sass/NEWS.md -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/sass/R/sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/sass/R/sass -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/shiny/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/shiny/INDEX -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/shiny/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/shiny/LICENSE -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/shiny/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/shiny/MD5 -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/shiny/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/shiny/NEWS.md -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/shiny/R/shiny: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/shiny/R/shiny -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/withr/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/withr/INDEX -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/withr/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2020 2 | COPYRIGHT HOLDER: withr authors 3 | -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/withr/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/withr/MD5 -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/withr/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/withr/NEWS.md -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/withr/R/withr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/withr/R/withr -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/xplorerr/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2017 2 | COPYRIGHT HOLDER: Aravind Hebbali 3 | -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/xplorerr/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/xplorerr/MD5 -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/xtable/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/xtable/INDEX -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/xtable/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/xtable/MD5 -------------------------------------------------------------------------------- /revdep/library/xplorerr/old/xtable/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/revdep/library/xplorerr/old/xtable/NEWS -------------------------------------------------------------------------------- /revdep/problems.md: -------------------------------------------------------------------------------- 1 | *Wow, no problems at all. :)* -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/RcppExports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/src/RcppExports.cpp -------------------------------------------------------------------------------- /src/xpl-nsign.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/src/xpl-nsign.cpp -------------------------------------------------------------------------------- /src/xpl-tvar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/src/xpl-tvar.cpp -------------------------------------------------------------------------------- /xplorerr.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsquaredacademy/xplorerr/HEAD/xplorerr.Rproj --------------------------------------------------------------------------------