├── .Rbuildignore ├── .gitignore ├── .travis.win.install.sh ├── .travis.yml ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── NEWS.md ├── R ├── RcppExports.R ├── delayed.R ├── generate.R ├── lorum_dictionary.R ├── on_attach.R ├── package.R ├── spline_distribution.R ├── streamers.R ├── synthetic_bench.R ├── synthetic_table.R ├── table_streamer.R ├── template_double.R ├── template_integer.R ├── template_logical.R ├── template_raw.R ├── template_string.R ├── template_table.R └── vector_template.R ├── README.Rmd ├── README.md ├── appveyor.yml ├── azure-pipelines.yml ├── benchmarks └── single_column.R ├── cran-checklist.md ├── cran-comments.md ├── man ├── and.Rd ├── bench_columns.Rd ├── bench_compression.Rd ├── bench_rows.Rd ├── bench_streamers.Rd ├── bench_tables.Rd ├── bench_threads.Rd ├── collect.benchmark_definition.Rd ├── delayed_eval.Rd ├── delayed_expr.Rd ├── delayed_to_str.Rd ├── generate.Rd ├── nr_of_rows.Rd ├── or.Rd ├── print.benchmark_definition.Rd ├── print.vectortemplate.Rd ├── reexports.Rd ├── rspline.Rd ├── sspline.Rd ├── streamer_arrow.Rd ├── streamer_datatable.Rd ├── streamer_feather.Rd ├── streamer_fst.Rd ├── streamer_parguet.Rd ├── streamer_qs.Rd ├── streamer_rds.Rd ├── streamer_vroom.Rd ├── synthetic_bench.Rd ├── synthetic_table.Rd ├── table_streamer.Rd ├── template_double_from_vec.Rd ├── template_integer.Rd ├── template_logical.Rd ├── template_numerical_normal.Rd ├── template_numerical_uniform.Rd ├── template_raw.Rd ├── template_string_random.Rd └── vector_template.Rd ├── src ├── Makevars ├── RcppExports.cpp ├── boost_b_spline.hpp └── cubic_spline.cpp ├── synthetic.Rproj ├── synthetic.png ├── tests ├── testthat.R └── testthat │ ├── results │ └── results_end_up_here.txt │ ├── table_definitions.R │ ├── test_bench_columns.R │ ├── test_lintr.R │ ├── test_rspline.R │ ├── test_streamers.R │ ├── test_synthetic_bench.R │ ├── test_synthetic_generation.R │ ├── test_template_integer.R │ ├── test_template_logical.R │ ├── test_template_numerical.R │ └── test_template_raw.R └── vignettes ├── .gitignore └── simuating_data.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.win.install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/.travis.win.install.sh -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/.travis.yml -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/LICENSE -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/RcppExports.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/R/RcppExports.R -------------------------------------------------------------------------------- /R/delayed.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/R/delayed.R -------------------------------------------------------------------------------- /R/generate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/R/generate.R -------------------------------------------------------------------------------- /R/lorum_dictionary.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/R/lorum_dictionary.R -------------------------------------------------------------------------------- /R/on_attach.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/R/on_attach.R -------------------------------------------------------------------------------- /R/package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/R/package.R -------------------------------------------------------------------------------- /R/spline_distribution.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/R/spline_distribution.R -------------------------------------------------------------------------------- /R/streamers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/R/streamers.R -------------------------------------------------------------------------------- /R/synthetic_bench.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/R/synthetic_bench.R -------------------------------------------------------------------------------- /R/synthetic_table.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/R/synthetic_table.R -------------------------------------------------------------------------------- /R/table_streamer.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/R/table_streamer.R -------------------------------------------------------------------------------- /R/template_double.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/R/template_double.R -------------------------------------------------------------------------------- /R/template_integer.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/R/template_integer.R -------------------------------------------------------------------------------- /R/template_logical.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/R/template_logical.R -------------------------------------------------------------------------------- /R/template_raw.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/R/template_raw.R -------------------------------------------------------------------------------- /R/template_string.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/R/template_string.R -------------------------------------------------------------------------------- /R/template_table.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/R/template_table.R -------------------------------------------------------------------------------- /R/vector_template.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/R/vector_template.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/appveyor.yml -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /benchmarks/single_column.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/benchmarks/single_column.R -------------------------------------------------------------------------------- /cran-checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/cran-checklist.md -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/cran-comments.md -------------------------------------------------------------------------------- /man/and.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/man/and.Rd -------------------------------------------------------------------------------- /man/bench_columns.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/man/bench_columns.Rd -------------------------------------------------------------------------------- /man/bench_compression.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/man/bench_compression.Rd -------------------------------------------------------------------------------- /man/bench_rows.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/man/bench_rows.Rd -------------------------------------------------------------------------------- /man/bench_streamers.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/man/bench_streamers.Rd -------------------------------------------------------------------------------- /man/bench_tables.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/man/bench_tables.Rd -------------------------------------------------------------------------------- /man/bench_threads.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/man/bench_threads.Rd -------------------------------------------------------------------------------- /man/collect.benchmark_definition.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/man/collect.benchmark_definition.Rd -------------------------------------------------------------------------------- /man/delayed_eval.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/man/delayed_eval.Rd -------------------------------------------------------------------------------- /man/delayed_expr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/man/delayed_expr.Rd -------------------------------------------------------------------------------- /man/delayed_to_str.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/man/delayed_to_str.Rd -------------------------------------------------------------------------------- /man/generate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/man/generate.Rd -------------------------------------------------------------------------------- /man/nr_of_rows.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/man/nr_of_rows.Rd -------------------------------------------------------------------------------- /man/or.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/man/or.Rd -------------------------------------------------------------------------------- /man/print.benchmark_definition.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/man/print.benchmark_definition.Rd -------------------------------------------------------------------------------- /man/print.vectortemplate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/man/print.vectortemplate.Rd -------------------------------------------------------------------------------- /man/reexports.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/man/reexports.Rd -------------------------------------------------------------------------------- /man/rspline.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/man/rspline.Rd -------------------------------------------------------------------------------- /man/sspline.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/man/sspline.Rd -------------------------------------------------------------------------------- /man/streamer_arrow.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/man/streamer_arrow.Rd -------------------------------------------------------------------------------- /man/streamer_datatable.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/man/streamer_datatable.Rd -------------------------------------------------------------------------------- /man/streamer_feather.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/man/streamer_feather.Rd -------------------------------------------------------------------------------- /man/streamer_fst.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/man/streamer_fst.Rd -------------------------------------------------------------------------------- /man/streamer_parguet.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/man/streamer_parguet.Rd -------------------------------------------------------------------------------- /man/streamer_qs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/man/streamer_qs.Rd -------------------------------------------------------------------------------- /man/streamer_rds.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/man/streamer_rds.Rd -------------------------------------------------------------------------------- /man/streamer_vroom.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/man/streamer_vroom.Rd -------------------------------------------------------------------------------- /man/synthetic_bench.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/man/synthetic_bench.Rd -------------------------------------------------------------------------------- /man/synthetic_table.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/man/synthetic_table.Rd -------------------------------------------------------------------------------- /man/table_streamer.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/man/table_streamer.Rd -------------------------------------------------------------------------------- /man/template_double_from_vec.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/man/template_double_from_vec.Rd -------------------------------------------------------------------------------- /man/template_integer.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/man/template_integer.Rd -------------------------------------------------------------------------------- /man/template_logical.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/man/template_logical.Rd -------------------------------------------------------------------------------- /man/template_numerical_normal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/man/template_numerical_normal.Rd -------------------------------------------------------------------------------- /man/template_numerical_uniform.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/man/template_numerical_uniform.Rd -------------------------------------------------------------------------------- /man/template_raw.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/man/template_raw.Rd -------------------------------------------------------------------------------- /man/template_string_random.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/man/template_string_random.Rd -------------------------------------------------------------------------------- /man/vector_template.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/man/vector_template.Rd -------------------------------------------------------------------------------- /src/Makevars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/src/Makevars -------------------------------------------------------------------------------- /src/RcppExports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/src/RcppExports.cpp -------------------------------------------------------------------------------- /src/boost_b_spline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/src/boost_b_spline.hpp -------------------------------------------------------------------------------- /src/cubic_spline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/src/cubic_spline.cpp -------------------------------------------------------------------------------- /synthetic.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/synthetic.Rproj -------------------------------------------------------------------------------- /synthetic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/synthetic.png -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/results/results_end_up_here.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testthat/table_definitions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/tests/testthat/table_definitions.R -------------------------------------------------------------------------------- /tests/testthat/test_bench_columns.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/tests/testthat/test_bench_columns.R -------------------------------------------------------------------------------- /tests/testthat/test_lintr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/tests/testthat/test_lintr.R -------------------------------------------------------------------------------- /tests/testthat/test_rspline.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/tests/testthat/test_rspline.R -------------------------------------------------------------------------------- /tests/testthat/test_streamers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/tests/testthat/test_streamers.R -------------------------------------------------------------------------------- /tests/testthat/test_synthetic_bench.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/tests/testthat/test_synthetic_bench.R -------------------------------------------------------------------------------- /tests/testthat/test_synthetic_generation.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/tests/testthat/test_synthetic_generation.R -------------------------------------------------------------------------------- /tests/testthat/test_template_integer.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/tests/testthat/test_template_integer.R -------------------------------------------------------------------------------- /tests/testthat/test_template_logical.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/tests/testthat/test_template_logical.R -------------------------------------------------------------------------------- /tests/testthat/test_template_numerical.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/tests/testthat/test_template_numerical.R -------------------------------------------------------------------------------- /tests/testthat/test_template_raw.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/tests/testthat/test_template_raw.R -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/simuating_data.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstpackage/synthetic/HEAD/vignettes/simuating_data.Rmd --------------------------------------------------------------------------------