├── .Rbuildignore ├── .gitignore ├── CONDUCT.md ├── CONTRIBUTING.md ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── NEWS.md ├── OpenSDP.data.Rproj ├── R ├── CEDS.R ├── OpenSDPsynthR-package.r ├── baselines.R ├── cleaners.R ├── diagnostics.R ├── gamma_gk.R ├── gen_outcomes.R ├── markov_transitions.R ├── sim_control.R ├── sim_defaults.R ├── sysdata.rda ├── utils.R └── zzz.R ├── README.Rmd ├── README.md ├── data-raw ├── CEDS_SDP_map.csv ├── age_grade_baseline.csv ├── build_data.R ├── college_scorecard_2013.csv ├── ellDist.csv ├── grade_matrix.csv └── program_baseline.csv ├── inst ├── CG_Analyze_Example.Rmd └── CG_Bookdown.Rmd ├── man ├── OpenSDPsynthR.Rd ├── age_calc.Rd ├── assert.Rd ├── assign_baseline.Rd ├── assign_grade.Rd ├── assign_hs_outcomes.Rd ├── assign_schools.Rd ├── better_sim.lm.Rd ├── ceds_cleaner.Rd ├── cond_prob.Rd ├── convert_grade.Rd ├── diag_offset.Rd ├── expand_grid_df.Rd ├── fit_series.Rd ├── gamma_GK.Rd ├── gen_annual_gpa.Rd ├── gen_annual_status.Rd ├── gen_assess.Rd ├── gen_credits.Rd ├── gen_gpa.Rd ├── gen_grad.Rd ├── gen_hs_annual.Rd ├── gen_initial_status.Rd ├── gen_nsc.Rd ├── gen_ontrack.Rd ├── gen_outcome_model.Rd ├── gen_ps.Rd ├── gen_ps_enrollment.Rd ├── gen_schools.Rd ├── gen_student_years.Rd ├── gen_students.Rd ├── get_baseline.Rd ├── get_code_values.Rd ├── get_sim_groupvars.Rd ├── grade_transitions.Rd ├── group_rescale.Rd ├── m_sum.Rd ├── make_binary_series.Rd ├── make_inds.Rd ├── make_markov_series.Rd ├── map_CEDS.Rd ├── markov_cond_list.Rd ├── namedList.Rd ├── num_clip.Rd ├── num_grade.Rd ├── rand_vect_cont.Rd ├── recode_credits.Rd ├── recode_options.Rd ├── rescale.Rd ├── rescale_gpa.Rd ├── school_transitions.Rd ├── sdp_cleaner.Rd ├── sim_control.Rd ├── simpop.Rd ├── tidy_sequence.Rd ├── tm_convert.Rd ├── unscale.Rd ├── validate_probability_list.Rd ├── validate_sim_parameter.Rd └── zeroNA.Rd ├── tests ├── testthat.R └── testthat │ ├── test-age_calc.R │ ├── test-all.R │ ├── test-baseline.R │ ├── test-gen.R │ ├── test-mapCEDS.R │ ├── test-markov.R │ └── test-validators.R ├── todo.md ├── tools ├── example_collab.Rmd ├── example_collab.html └── figs │ ├── README-ellDiagnostic-1.png │ ├── README-visualdiagnostics-1.png │ ├── README-visualdiagnostics-2.png │ └── open_sdp_logo_red.png └── vignettes ├── Simulation_Function_Details.Rmd ├── sim_control.Rmd ├── sim_diagnostics.Rmd └── tools └── figs ├── README-ellDiagnostic-1.png ├── README-unnamed-chunk-10-1.png ├── README-unnamed-chunk-12-1.png ├── README-unnamed-chunk-14-1.png ├── README-unnamed-chunk-16-1.png ├── README-unnamed-chunk-4-1.png ├── README-unnamed-chunk-6-1.png ├── README-unnamed-chunk-8-1.png ├── README-visualdiagnostics-1.png └── README-visualdiagnostics-2.png /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/.gitignore -------------------------------------------------------------------------------- /CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/LICENSE -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- 1 | ## Release - beta 2 | 3 | * rollout 4 | -------------------------------------------------------------------------------- /OpenSDP.data.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/OpenSDP.data.Rproj -------------------------------------------------------------------------------- /R/CEDS.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/R/CEDS.R -------------------------------------------------------------------------------- /R/OpenSDPsynthR-package.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/R/OpenSDPsynthR-package.r -------------------------------------------------------------------------------- /R/baselines.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/R/baselines.R -------------------------------------------------------------------------------- /R/cleaners.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/R/cleaners.R -------------------------------------------------------------------------------- /R/diagnostics.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/R/diagnostics.R -------------------------------------------------------------------------------- /R/gamma_gk.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/R/gamma_gk.R -------------------------------------------------------------------------------- /R/gen_outcomes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/R/gen_outcomes.R -------------------------------------------------------------------------------- /R/markov_transitions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/R/markov_transitions.R -------------------------------------------------------------------------------- /R/sim_control.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/R/sim_control.R -------------------------------------------------------------------------------- /R/sim_defaults.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/R/sim_defaults.R -------------------------------------------------------------------------------- /R/sysdata.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/R/sysdata.rda -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/R/utils.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/README.md -------------------------------------------------------------------------------- /data-raw/CEDS_SDP_map.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/data-raw/CEDS_SDP_map.csv -------------------------------------------------------------------------------- /data-raw/age_grade_baseline.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/data-raw/age_grade_baseline.csv -------------------------------------------------------------------------------- /data-raw/build_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/data-raw/build_data.R -------------------------------------------------------------------------------- /data-raw/college_scorecard_2013.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/data-raw/college_scorecard_2013.csv -------------------------------------------------------------------------------- /data-raw/ellDist.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/data-raw/ellDist.csv -------------------------------------------------------------------------------- /data-raw/grade_matrix.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/data-raw/grade_matrix.csv -------------------------------------------------------------------------------- /data-raw/program_baseline.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/data-raw/program_baseline.csv -------------------------------------------------------------------------------- /inst/CG_Analyze_Example.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/inst/CG_Analyze_Example.Rmd -------------------------------------------------------------------------------- /inst/CG_Bookdown.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/inst/CG_Bookdown.Rmd -------------------------------------------------------------------------------- /man/OpenSDPsynthR.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/man/OpenSDPsynthR.Rd -------------------------------------------------------------------------------- /man/age_calc.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/man/age_calc.Rd -------------------------------------------------------------------------------- /man/assert.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/man/assert.Rd -------------------------------------------------------------------------------- /man/assign_baseline.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/man/assign_baseline.Rd -------------------------------------------------------------------------------- /man/assign_grade.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/man/assign_grade.Rd -------------------------------------------------------------------------------- /man/assign_hs_outcomes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/man/assign_hs_outcomes.Rd -------------------------------------------------------------------------------- /man/assign_schools.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/man/assign_schools.Rd -------------------------------------------------------------------------------- /man/better_sim.lm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/man/better_sim.lm.Rd -------------------------------------------------------------------------------- /man/ceds_cleaner.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/man/ceds_cleaner.Rd -------------------------------------------------------------------------------- /man/cond_prob.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/man/cond_prob.Rd -------------------------------------------------------------------------------- /man/convert_grade.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/man/convert_grade.Rd -------------------------------------------------------------------------------- /man/diag_offset.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/man/diag_offset.Rd -------------------------------------------------------------------------------- /man/expand_grid_df.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/man/expand_grid_df.Rd -------------------------------------------------------------------------------- /man/fit_series.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/man/fit_series.Rd -------------------------------------------------------------------------------- /man/gamma_GK.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/man/gamma_GK.Rd -------------------------------------------------------------------------------- /man/gen_annual_gpa.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/man/gen_annual_gpa.Rd -------------------------------------------------------------------------------- /man/gen_annual_status.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/man/gen_annual_status.Rd -------------------------------------------------------------------------------- /man/gen_assess.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/man/gen_assess.Rd -------------------------------------------------------------------------------- /man/gen_credits.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/man/gen_credits.Rd -------------------------------------------------------------------------------- /man/gen_gpa.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/man/gen_gpa.Rd -------------------------------------------------------------------------------- /man/gen_grad.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/man/gen_grad.Rd -------------------------------------------------------------------------------- /man/gen_hs_annual.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/man/gen_hs_annual.Rd -------------------------------------------------------------------------------- /man/gen_initial_status.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/man/gen_initial_status.Rd -------------------------------------------------------------------------------- /man/gen_nsc.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/man/gen_nsc.Rd -------------------------------------------------------------------------------- /man/gen_ontrack.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/man/gen_ontrack.Rd -------------------------------------------------------------------------------- /man/gen_outcome_model.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/man/gen_outcome_model.Rd -------------------------------------------------------------------------------- /man/gen_ps.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/man/gen_ps.Rd -------------------------------------------------------------------------------- /man/gen_ps_enrollment.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/man/gen_ps_enrollment.Rd -------------------------------------------------------------------------------- /man/gen_schools.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/man/gen_schools.Rd -------------------------------------------------------------------------------- /man/gen_student_years.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/man/gen_student_years.Rd -------------------------------------------------------------------------------- /man/gen_students.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/man/gen_students.Rd -------------------------------------------------------------------------------- /man/get_baseline.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/man/get_baseline.Rd -------------------------------------------------------------------------------- /man/get_code_values.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/man/get_code_values.Rd -------------------------------------------------------------------------------- /man/get_sim_groupvars.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/man/get_sim_groupvars.Rd -------------------------------------------------------------------------------- /man/grade_transitions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/man/grade_transitions.Rd -------------------------------------------------------------------------------- /man/group_rescale.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/man/group_rescale.Rd -------------------------------------------------------------------------------- /man/m_sum.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/man/m_sum.Rd -------------------------------------------------------------------------------- /man/make_binary_series.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/man/make_binary_series.Rd -------------------------------------------------------------------------------- /man/make_inds.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/man/make_inds.Rd -------------------------------------------------------------------------------- /man/make_markov_series.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/man/make_markov_series.Rd -------------------------------------------------------------------------------- /man/map_CEDS.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/man/map_CEDS.Rd -------------------------------------------------------------------------------- /man/markov_cond_list.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/man/markov_cond_list.Rd -------------------------------------------------------------------------------- /man/namedList.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/man/namedList.Rd -------------------------------------------------------------------------------- /man/num_clip.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/man/num_clip.Rd -------------------------------------------------------------------------------- /man/num_grade.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/man/num_grade.Rd -------------------------------------------------------------------------------- /man/rand_vect_cont.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/man/rand_vect_cont.Rd -------------------------------------------------------------------------------- /man/recode_credits.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/man/recode_credits.Rd -------------------------------------------------------------------------------- /man/recode_options.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/man/recode_options.Rd -------------------------------------------------------------------------------- /man/rescale.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/man/rescale.Rd -------------------------------------------------------------------------------- /man/rescale_gpa.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/man/rescale_gpa.Rd -------------------------------------------------------------------------------- /man/school_transitions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/man/school_transitions.Rd -------------------------------------------------------------------------------- /man/sdp_cleaner.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/man/sdp_cleaner.Rd -------------------------------------------------------------------------------- /man/sim_control.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/man/sim_control.Rd -------------------------------------------------------------------------------- /man/simpop.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/man/simpop.Rd -------------------------------------------------------------------------------- /man/tidy_sequence.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/man/tidy_sequence.Rd -------------------------------------------------------------------------------- /man/tm_convert.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/man/tm_convert.Rd -------------------------------------------------------------------------------- /man/unscale.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/man/unscale.Rd -------------------------------------------------------------------------------- /man/validate_probability_list.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/man/validate_probability_list.Rd -------------------------------------------------------------------------------- /man/validate_sim_parameter.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/man/validate_sim_parameter.Rd -------------------------------------------------------------------------------- /man/zeroNA.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/man/zeroNA.Rd -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-age_calc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/tests/testthat/test-age_calc.R -------------------------------------------------------------------------------- /tests/testthat/test-all.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/tests/testthat/test-all.R -------------------------------------------------------------------------------- /tests/testthat/test-baseline.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/tests/testthat/test-baseline.R -------------------------------------------------------------------------------- /tests/testthat/test-gen.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/tests/testthat/test-gen.R -------------------------------------------------------------------------------- /tests/testthat/test-mapCEDS.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/tests/testthat/test-mapCEDS.R -------------------------------------------------------------------------------- /tests/testthat/test-markov.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/tests/testthat/test-markov.R -------------------------------------------------------------------------------- /tests/testthat/test-validators.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/tests/testthat/test-validators.R -------------------------------------------------------------------------------- /todo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/todo.md -------------------------------------------------------------------------------- /tools/example_collab.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/tools/example_collab.Rmd -------------------------------------------------------------------------------- /tools/example_collab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/tools/example_collab.html -------------------------------------------------------------------------------- /tools/figs/README-ellDiagnostic-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/tools/figs/README-ellDiagnostic-1.png -------------------------------------------------------------------------------- /tools/figs/README-visualdiagnostics-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/tools/figs/README-visualdiagnostics-1.png -------------------------------------------------------------------------------- /tools/figs/README-visualdiagnostics-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/tools/figs/README-visualdiagnostics-2.png -------------------------------------------------------------------------------- /tools/figs/open_sdp_logo_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/tools/figs/open_sdp_logo_red.png -------------------------------------------------------------------------------- /vignettes/Simulation_Function_Details.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/vignettes/Simulation_Function_Details.Rmd -------------------------------------------------------------------------------- /vignettes/sim_control.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/vignettes/sim_control.Rmd -------------------------------------------------------------------------------- /vignettes/sim_diagnostics.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/vignettes/sim_diagnostics.Rmd -------------------------------------------------------------------------------- /vignettes/tools/figs/README-ellDiagnostic-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/vignettes/tools/figs/README-ellDiagnostic-1.png -------------------------------------------------------------------------------- /vignettes/tools/figs/README-unnamed-chunk-10-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/vignettes/tools/figs/README-unnamed-chunk-10-1.png -------------------------------------------------------------------------------- /vignettes/tools/figs/README-unnamed-chunk-12-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/vignettes/tools/figs/README-unnamed-chunk-12-1.png -------------------------------------------------------------------------------- /vignettes/tools/figs/README-unnamed-chunk-14-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/vignettes/tools/figs/README-unnamed-chunk-14-1.png -------------------------------------------------------------------------------- /vignettes/tools/figs/README-unnamed-chunk-16-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/vignettes/tools/figs/README-unnamed-chunk-16-1.png -------------------------------------------------------------------------------- /vignettes/tools/figs/README-unnamed-chunk-4-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/vignettes/tools/figs/README-unnamed-chunk-4-1.png -------------------------------------------------------------------------------- /vignettes/tools/figs/README-unnamed-chunk-6-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/vignettes/tools/figs/README-unnamed-chunk-6-1.png -------------------------------------------------------------------------------- /vignettes/tools/figs/README-unnamed-chunk-8-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/vignettes/tools/figs/README-unnamed-chunk-8-1.png -------------------------------------------------------------------------------- /vignettes/tools/figs/README-visualdiagnostics-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/vignettes/tools/figs/README-visualdiagnostics-1.png -------------------------------------------------------------------------------- /vignettes/tools/figs/README-visualdiagnostics-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSDP/OpenSDPsynthR/HEAD/vignettes/tools/figs/README-visualdiagnostics-2.png --------------------------------------------------------------------------------