├── .gitattributes ├── LICENSE ├── README.md ├── makefile ├── src ├── _copy_serset.ado ├── _get_absolute_path_from_relative.ado ├── _get_relative_path_from_absolute.ado ├── _strip_nodeterminism_serset.ado ├── _strip_nonreproducibility_dta.ado ├── _strip_nonreproducibility_gph.ado ├── _strip_nonreproducibility_log.ado ├── _strip_nonreproducibility_pdf.ado ├── _zero_padding.ado ├── adostorer.ado ├── adostorer.sthlp ├── graph_exportr.ado ├── graph_exportr.sthlp ├── graph_saver.ado ├── graph_saver.sthlp ├── log_closer.ado ├── log_closer.sthlp ├── make_trk_paths.ado ├── make_trk_paths.sthlp ├── platformname.ado ├── platformname.sthlp ├── saver.ado ├── saver.sthlp └── stata_reproducible.sthlp ├── stata.toc ├── stata_reproducible.pkg └── tests ├── .gitignore ├── ado ├── .gitignore ├── LINUX │ └── synthopt.plugin ├── LINUX64 │ └── synthopt.plugin ├── MACINTEL64 │ └── synthopt.plugin ├── WIN │ └── synthopt.plugin ├── WIN64A │ └── synthopt.plugin ├── _ │ ├── _copy_serset.ado │ ├── _get_absolute_path_from_relative.ado │ ├── _get_relative_path_from_absolute.ado │ ├── _strip_nodeterminism_serset.ado │ ├── _strip_nonreproducibility_dta.ado │ ├── _strip_nonreproducibility_gph.ado │ ├── _strip_nonreproducibility_log.ado │ ├── _strip_nonreproducibility_pdf.ado │ └── _zero_padding.ado ├── a │ ├── adostorer.ado │ └── adostorer.sthlp ├── change_line.ado ├── closeallmatafiles.ado ├── display_run_specs.ado ├── g │ ├── graph_exportr.ado │ ├── graph_exportr.sthlp │ ├── graph_saver.ado │ └── graph_saver.sthlp ├── l │ ├── log_closer.ado │ ├── log_closer.sthlp │ └── lsynth_mata_subr.mlib ├── m │ ├── make_trk_paths.ado │ └── make_trk_paths.sthlp ├── p │ ├── platformname.ado │ └── platformname.sthlp ├── platformname.ado ├── s │ ├── saver.ado │ ├── saver.sthlp │ ├── stata_reproducible.sthlp │ ├── synth.ado │ ├── synth.sthlp │ └── synth_ll.ado ├── save_all_figs.ado ├── smoking.dta └── stata.trk ├── data └── auto.dta ├── fig ├── eps │ ├── cuts │ │ ├── scatter_bare.eps │ │ └── scatter_notitle.eps │ └── scatter.eps ├── gph │ └── scatter.gph └── pdf │ ├── cuts │ ├── scatter_bare.pdf │ └── scatter_notitle.pdf │ └── scatter.pdf ├── gen_ext_from_gph.do ├── log ├── test.log └── test.smcl ├── makefile ├── norm ├── auto-v13-from-v14.dta ├── auto-v13.dta ├── auto-v14.dta ├── scatter-v13-Unix.eps ├── scatter-v13-Unix.ps ├── scatter-v13-Windows.eps ├── scatter-v13-Windows.pdf ├── scatter-v13-Windows.png ├── scatter-v13-Windows.ps ├── scatter-v13-Windows.tif ├── scatter-v13-from-v14.gph ├── scatter-v13.gph ├── scatter-v14-Unix.eps ├── scatter-v14-Unix.pdf ├── scatter-v14-Unix.ps ├── scatter-v14-Windows.eps ├── scatter-v14-Windows.pdf ├── scatter-v14-Windows.png ├── scatter-v14-Windows.ps ├── scatter-v14-Windows.tif ├── scatter-v14.gph ├── test-v13.log ├── test-v13.smcl ├── test-v14.log └── test-v14.smcl ├── preferences.do ├── raw └── .gitignore └── test.do /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/.gitattributes -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/README.md -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/makefile -------------------------------------------------------------------------------- /src/_copy_serset.ado: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/src/_copy_serset.ado -------------------------------------------------------------------------------- /src/_get_absolute_path_from_relative.ado: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/src/_get_absolute_path_from_relative.ado -------------------------------------------------------------------------------- /src/_get_relative_path_from_absolute.ado: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/src/_get_relative_path_from_absolute.ado -------------------------------------------------------------------------------- /src/_strip_nodeterminism_serset.ado: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/src/_strip_nodeterminism_serset.ado -------------------------------------------------------------------------------- /src/_strip_nonreproducibility_dta.ado: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/src/_strip_nonreproducibility_dta.ado -------------------------------------------------------------------------------- /src/_strip_nonreproducibility_gph.ado: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/src/_strip_nonreproducibility_gph.ado -------------------------------------------------------------------------------- /src/_strip_nonreproducibility_log.ado: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/src/_strip_nonreproducibility_log.ado -------------------------------------------------------------------------------- /src/_strip_nonreproducibility_pdf.ado: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/src/_strip_nonreproducibility_pdf.ado -------------------------------------------------------------------------------- /src/_zero_padding.ado: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/src/_zero_padding.ado -------------------------------------------------------------------------------- /src/adostorer.ado: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/src/adostorer.ado -------------------------------------------------------------------------------- /src/adostorer.sthlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/src/adostorer.sthlp -------------------------------------------------------------------------------- /src/graph_exportr.ado: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/src/graph_exportr.ado -------------------------------------------------------------------------------- /src/graph_exportr.sthlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/src/graph_exportr.sthlp -------------------------------------------------------------------------------- /src/graph_saver.ado: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/src/graph_saver.ado -------------------------------------------------------------------------------- /src/graph_saver.sthlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/src/graph_saver.sthlp -------------------------------------------------------------------------------- /src/log_closer.ado: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/src/log_closer.ado -------------------------------------------------------------------------------- /src/log_closer.sthlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/src/log_closer.sthlp -------------------------------------------------------------------------------- /src/make_trk_paths.ado: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/src/make_trk_paths.ado -------------------------------------------------------------------------------- /src/make_trk_paths.sthlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/src/make_trk_paths.sthlp -------------------------------------------------------------------------------- /src/platformname.ado: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/src/platformname.ado -------------------------------------------------------------------------------- /src/platformname.sthlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/src/platformname.sthlp -------------------------------------------------------------------------------- /src/saver.ado: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/src/saver.ado -------------------------------------------------------------------------------- /src/saver.sthlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/src/saver.sthlp -------------------------------------------------------------------------------- /src/stata_reproducible.sthlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/src/stata_reproducible.sthlp -------------------------------------------------------------------------------- /stata.toc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/stata.toc -------------------------------------------------------------------------------- /stata_reproducible.pkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/stata_reproducible.pkg -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- 1 | # gitignore 2 | test.log 3 | 4 | -------------------------------------------------------------------------------- /tests/ado/.gitignore: -------------------------------------------------------------------------------- 1 | backup.trk 2 | -------------------------------------------------------------------------------- /tests/ado/LINUX/synthopt.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/ado/LINUX/synthopt.plugin -------------------------------------------------------------------------------- /tests/ado/LINUX64/synthopt.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/ado/LINUX64/synthopt.plugin -------------------------------------------------------------------------------- /tests/ado/MACINTEL64/synthopt.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/ado/MACINTEL64/synthopt.plugin -------------------------------------------------------------------------------- /tests/ado/WIN/synthopt.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/ado/WIN/synthopt.plugin -------------------------------------------------------------------------------- /tests/ado/WIN64A/synthopt.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/ado/WIN64A/synthopt.plugin -------------------------------------------------------------------------------- /tests/ado/_/_copy_serset.ado: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/ado/_/_copy_serset.ado -------------------------------------------------------------------------------- /tests/ado/_/_get_absolute_path_from_relative.ado: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/ado/_/_get_absolute_path_from_relative.ado -------------------------------------------------------------------------------- /tests/ado/_/_get_relative_path_from_absolute.ado: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/ado/_/_get_relative_path_from_absolute.ado -------------------------------------------------------------------------------- /tests/ado/_/_strip_nodeterminism_serset.ado: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/ado/_/_strip_nodeterminism_serset.ado -------------------------------------------------------------------------------- /tests/ado/_/_strip_nonreproducibility_dta.ado: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/ado/_/_strip_nonreproducibility_dta.ado -------------------------------------------------------------------------------- /tests/ado/_/_strip_nonreproducibility_gph.ado: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/ado/_/_strip_nonreproducibility_gph.ado -------------------------------------------------------------------------------- /tests/ado/_/_strip_nonreproducibility_log.ado: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/ado/_/_strip_nonreproducibility_log.ado -------------------------------------------------------------------------------- /tests/ado/_/_strip_nonreproducibility_pdf.ado: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/ado/_/_strip_nonreproducibility_pdf.ado -------------------------------------------------------------------------------- /tests/ado/_/_zero_padding.ado: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/ado/_/_zero_padding.ado -------------------------------------------------------------------------------- /tests/ado/a/adostorer.ado: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/ado/a/adostorer.ado -------------------------------------------------------------------------------- /tests/ado/a/adostorer.sthlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/ado/a/adostorer.sthlp -------------------------------------------------------------------------------- /tests/ado/change_line.ado: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/ado/change_line.ado -------------------------------------------------------------------------------- /tests/ado/closeallmatafiles.ado: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/ado/closeallmatafiles.ado -------------------------------------------------------------------------------- /tests/ado/display_run_specs.ado: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/ado/display_run_specs.ado -------------------------------------------------------------------------------- /tests/ado/g/graph_exportr.ado: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/ado/g/graph_exportr.ado -------------------------------------------------------------------------------- /tests/ado/g/graph_exportr.sthlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/ado/g/graph_exportr.sthlp -------------------------------------------------------------------------------- /tests/ado/g/graph_saver.ado: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/ado/g/graph_saver.ado -------------------------------------------------------------------------------- /tests/ado/g/graph_saver.sthlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/ado/g/graph_saver.sthlp -------------------------------------------------------------------------------- /tests/ado/l/log_closer.ado: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/ado/l/log_closer.ado -------------------------------------------------------------------------------- /tests/ado/l/log_closer.sthlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/ado/l/log_closer.sthlp -------------------------------------------------------------------------------- /tests/ado/l/lsynth_mata_subr.mlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/ado/l/lsynth_mata_subr.mlib -------------------------------------------------------------------------------- /tests/ado/m/make_trk_paths.ado: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/ado/m/make_trk_paths.ado -------------------------------------------------------------------------------- /tests/ado/m/make_trk_paths.sthlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/ado/m/make_trk_paths.sthlp -------------------------------------------------------------------------------- /tests/ado/p/platformname.ado: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/ado/p/platformname.ado -------------------------------------------------------------------------------- /tests/ado/p/platformname.sthlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/ado/p/platformname.sthlp -------------------------------------------------------------------------------- /tests/ado/platformname.ado: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/ado/platformname.ado -------------------------------------------------------------------------------- /tests/ado/s/saver.ado: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/ado/s/saver.ado -------------------------------------------------------------------------------- /tests/ado/s/saver.sthlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/ado/s/saver.sthlp -------------------------------------------------------------------------------- /tests/ado/s/stata_reproducible.sthlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/ado/s/stata_reproducible.sthlp -------------------------------------------------------------------------------- /tests/ado/s/synth.ado: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/ado/s/synth.ado -------------------------------------------------------------------------------- /tests/ado/s/synth.sthlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/ado/s/synth.sthlp -------------------------------------------------------------------------------- /tests/ado/s/synth_ll.ado: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/ado/s/synth_ll.ado -------------------------------------------------------------------------------- /tests/ado/save_all_figs.ado: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/ado/save_all_figs.ado -------------------------------------------------------------------------------- /tests/ado/smoking.dta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/ado/smoking.dta -------------------------------------------------------------------------------- /tests/ado/stata.trk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/ado/stata.trk -------------------------------------------------------------------------------- /tests/data/auto.dta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/data/auto.dta -------------------------------------------------------------------------------- /tests/fig/eps/cuts/scatter_bare.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/fig/eps/cuts/scatter_bare.eps -------------------------------------------------------------------------------- /tests/fig/eps/cuts/scatter_notitle.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/fig/eps/cuts/scatter_notitle.eps -------------------------------------------------------------------------------- /tests/fig/eps/scatter.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/fig/eps/scatter.eps -------------------------------------------------------------------------------- /tests/fig/gph/scatter.gph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/fig/gph/scatter.gph -------------------------------------------------------------------------------- /tests/fig/pdf/cuts/scatter_bare.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/fig/pdf/cuts/scatter_bare.pdf -------------------------------------------------------------------------------- /tests/fig/pdf/cuts/scatter_notitle.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/fig/pdf/cuts/scatter_notitle.pdf -------------------------------------------------------------------------------- /tests/fig/pdf/scatter.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/fig/pdf/scatter.pdf -------------------------------------------------------------------------------- /tests/gen_ext_from_gph.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/gen_ext_from_gph.do -------------------------------------------------------------------------------- /tests/log/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/log/test.log -------------------------------------------------------------------------------- /tests/log/test.smcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/log/test.smcl -------------------------------------------------------------------------------- /tests/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/makefile -------------------------------------------------------------------------------- /tests/norm/auto-v13-from-v14.dta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/norm/auto-v13-from-v14.dta -------------------------------------------------------------------------------- /tests/norm/auto-v13.dta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/norm/auto-v13.dta -------------------------------------------------------------------------------- /tests/norm/auto-v14.dta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/norm/auto-v14.dta -------------------------------------------------------------------------------- /tests/norm/scatter-v13-Unix.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/norm/scatter-v13-Unix.eps -------------------------------------------------------------------------------- /tests/norm/scatter-v13-Unix.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/norm/scatter-v13-Unix.ps -------------------------------------------------------------------------------- /tests/norm/scatter-v13-Windows.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/norm/scatter-v13-Windows.eps -------------------------------------------------------------------------------- /tests/norm/scatter-v13-Windows.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/norm/scatter-v13-Windows.pdf -------------------------------------------------------------------------------- /tests/norm/scatter-v13-Windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/norm/scatter-v13-Windows.png -------------------------------------------------------------------------------- /tests/norm/scatter-v13-Windows.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/norm/scatter-v13-Windows.ps -------------------------------------------------------------------------------- /tests/norm/scatter-v13-Windows.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/norm/scatter-v13-Windows.tif -------------------------------------------------------------------------------- /tests/norm/scatter-v13-from-v14.gph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/norm/scatter-v13-from-v14.gph -------------------------------------------------------------------------------- /tests/norm/scatter-v13.gph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/norm/scatter-v13.gph -------------------------------------------------------------------------------- /tests/norm/scatter-v14-Unix.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/norm/scatter-v14-Unix.eps -------------------------------------------------------------------------------- /tests/norm/scatter-v14-Unix.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/norm/scatter-v14-Unix.pdf -------------------------------------------------------------------------------- /tests/norm/scatter-v14-Unix.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/norm/scatter-v14-Unix.ps -------------------------------------------------------------------------------- /tests/norm/scatter-v14-Windows.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/norm/scatter-v14-Windows.eps -------------------------------------------------------------------------------- /tests/norm/scatter-v14-Windows.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/norm/scatter-v14-Windows.pdf -------------------------------------------------------------------------------- /tests/norm/scatter-v14-Windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/norm/scatter-v14-Windows.png -------------------------------------------------------------------------------- /tests/norm/scatter-v14-Windows.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/norm/scatter-v14-Windows.ps -------------------------------------------------------------------------------- /tests/norm/scatter-v14-Windows.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/norm/scatter-v14-Windows.tif -------------------------------------------------------------------------------- /tests/norm/scatter-v14.gph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/norm/scatter-v14.gph -------------------------------------------------------------------------------- /tests/norm/test-v13.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/norm/test-v13.log -------------------------------------------------------------------------------- /tests/norm/test-v13.smcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/norm/test-v13.smcl -------------------------------------------------------------------------------- /tests/norm/test-v14.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/norm/test-v14.log -------------------------------------------------------------------------------- /tests/norm/test-v14.smcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/norm/test-v14.smcl -------------------------------------------------------------------------------- /tests/preferences.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/preferences.do -------------------------------------------------------------------------------- /tests/raw/.gitignore: -------------------------------------------------------------------------------- 1 | #Just a placeholder 2 | !.gitignore 3 | * 4 | -------------------------------------------------------------------------------- /tests/test.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bquistorff/stata_reproducible/HEAD/tests/test.do --------------------------------------------------------------------------------