├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── Examples ├── Inverse │ ├── Inverse.Rmd │ └── Inverse.md ├── OrderedGrouping │ ├── OrderedGrouping.Rmd │ └── OrderedGrouping.md └── control_table │ ├── Keras_plot.png │ ├── control_table.Rmd │ └── control_table.md ├── LICENSE ├── NAMESPACE ├── NEWS.md ├── R ├── DefOps.R ├── GeneralTransform.R ├── LocalOps.R ├── RowsColsQ.R ├── RowsColumns.R ├── cdata_yaml.R ├── check_cols_form_unique_keys.R ├── check_keying.R ├── checks.R ├── map_fields.R ├── opspec.R ├── package.R ├── relops.R ├── wrapped_ops.R └── wrapr_exports.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── cdata.Rproj ├── cran-comments.md ├── docs ├── 404.html ├── LICENSE-text.html ├── _config.yml ├── articles │ ├── blocks_to_rowrecs.png │ ├── blocksrecs.html │ ├── blocksrecs_files │ │ ├── accessible-code-block-0.0.1 │ │ │ └── empty-anchor.js │ │ └── header-attrs-2.7 │ │ │ └── header-attrs.js │ ├── cdata.html │ ├── cdata_files │ │ ├── accessible-code-block-0.0.1 │ │ │ └── empty-anchor.js │ │ └── header-attrs-2.7 │ │ │ └── header-attrs.js │ ├── control_table_keys.html │ ├── control_table_keys_files │ │ ├── accessible-code-block-0.0.1 │ │ │ └── empty-anchor.js │ │ └── header-attrs-2.7 │ │ │ └── header-attrs.js │ ├── design.html │ ├── design_1.png │ ├── design_2.png │ ├── design_3.png │ ├── design_4.png │ ├── design_5.png │ ├── design_files │ │ ├── accessible-code-block-0.0.1 │ │ │ └── empty-anchor.js │ │ └── header-attrs-2.7 │ │ │ └── header-attrs.js │ ├── exercises.html │ ├── exercises_files │ │ ├── accessible-code-block-0.0.1 │ │ │ └── empty-anchor.js │ │ └── header-attrs-2.7 │ │ │ └── header-attrs.js │ ├── general_transform.html │ ├── general_transform_files │ │ ├── accessible-code-block-0.0.1 │ │ │ └── empty-anchor.js │ │ └── header-attrs-2.7 │ │ │ └── header-attrs.js │ ├── index.html │ ├── iris_plot.png │ ├── operators.html │ ├── operators_files │ │ ├── accessible-code-block-0.0.1 │ │ │ └── empty-anchor.js │ │ └── header-attrs-2.7 │ │ │ └── header-attrs.js │ └── rowrecs_to_blocks.png ├── authors.html ├── bootstrap-toc.css ├── bootstrap-toc.js ├── docsearch.css ├── docsearch.js ├── index.html ├── link.svg ├── news │ └── index.html ├── pkgdown.css ├── pkgdown.js ├── pkgdown.yml ├── reference │ ├── Rplot001.png │ ├── blocks_to_rowrecs.html │ ├── blocks_to_rowrecs_q.html │ ├── blocks_to_rowrecs_spec.html │ ├── build_pivot_control.html │ ├── build_pivot_control_q.html │ ├── build_unpivot_control.html │ ├── cdata-package.html │ ├── cdata.html │ ├── checkColsFormUniqueKeys.html │ ├── check_cols_form_unique_keys.html │ ├── check_equiv_frames.html │ ├── convert_cdata_spec_to_yaml.html │ ├── convert_records.html │ ├── convert_yaml_to_cdata_spec.html │ ├── get_transform_details.html │ ├── grapes-pivot-grapes.html │ ├── grapes-slash-slash-grapes.html │ ├── grapes-times-times-grapes.html │ ├── index.html │ ├── layout_by.blocks_to_rowrecs_spec.html │ ├── layout_by.cdata_general_transform_spec.html │ ├── layout_by.html │ ├── layout_by.rowrecs_to_blocks_spec.html │ ├── layout_specification.html │ ├── map_fields.html │ ├── map_fields_q.html │ ├── new_record_spec.html │ ├── pivot_to_rowrecs.html │ ├── qlook.html │ ├── reexports.html │ ├── rowrecs_to_blocks.html │ ├── rowrecs_to_blocks_q.html │ ├── rowrecs_to_blocks_spec.html │ ├── rows_are_uniquely_keyed.html │ ├── run_cdata_tests.html │ └── unpivot_to_blocks.html └── sitemap.xml ├── extras ├── LightTests.Rmd ├── LightTests.md ├── cdata.pdf ├── check_reverse_dependencies.Rmd ├── check_reverse_dependencies.md ├── melt_cast.Rmd ├── melt_cast.md ├── node_version.Rmd ├── node_version.md ├── perf.Rmd ├── perf.md ├── perf_files │ └── figure-markdown_github │ │ ├── exp-1.png │ │ ├── exp-2.png │ │ ├── exp-3.png │ │ ├── exp-4.png │ │ ├── exp-5.png │ │ ├── exp-6.png │ │ ├── exp-7.png │ │ └── exp-8.png ├── solution_conversion │ ├── solution_conversion.Rmd │ └── solution_conversion.md ├── table │ ├── confmat.rds │ ├── table.Rmd │ └── table.md ├── timing │ ├── tm1.Rmd │ └── tm1.md └── tw │ ├── TweetExample.Rmd │ ├── TweetExample.md │ ├── tw.graffle │ ├── data.plist │ ├── image3.tiff │ └── image4.tiff │ ├── tw.png │ ├── tw2.png │ └── tw3.png ├── inst └── tinytest │ ├── chickw.RDS │ ├── iris.RDS │ ├── seatbelts.RDS │ ├── test_RowColOps.R │ ├── test_XForm.R │ ├── test_check.R │ ├── test_checks_2.R │ ├── test_chicks.R │ ├── test_complex_example.R │ ├── test_composite_control_keys.R │ ├── test_composite_control_keys_db.R │ ├── test_dates.R │ ├── test_encode.R │ ├── test_factor.R │ ├── test_inv.R │ ├── test_not_seen_level.R │ ├── test_operators.R │ ├── test_seatbelts.R │ ├── test_there_and_back.R │ ├── test_there_and_back_db.R │ └── test_unique.R ├── man ├── blocks_to_rowrecs.Rd ├── blocks_to_rowrecs_q.Rd ├── blocks_to_rowrecs_spec.Rd ├── build_pivot_control.Rd ├── build_pivot_control_q.Rd ├── build_unpivot_control.Rd ├── cdata-package.Rd ├── check_cols_form_unique_keys.Rd ├── convert_cdata_spec_to_yaml.Rd ├── convert_records.Rd ├── convert_yaml_to_cdata_spec.Rd ├── get_transform_details.Rd ├── grapes-slash-slash-grapes.Rd ├── grapes-times-times-grapes.Rd ├── layout_by.Rd ├── layout_by.blocks_to_rowrecs_spec.Rd ├── layout_by.cdata_general_transform_spec.Rd ├── layout_by.rowrecs_to_blocks_spec.Rd ├── layout_specification.Rd ├── map_fields.Rd ├── map_fields_q.Rd ├── pivot_to_rowrecs.Rd ├── qlook.Rd ├── rowrecs_to_blocks.Rd ├── rowrecs_to_blocks_q.Rd ├── rowrecs_to_blocks_spec.Rd ├── rows_are_uniquely_keyed.Rd └── unpivot_to_blocks.Rd ├── tests └── tinytest.R ├── tools ├── README-ex0-1.png ├── README-ex0_1-1.png ├── README_files │ └── figure-markdown_github │ │ ├── ex0-1.png │ │ └── ex0_1-1.png └── cdata.png └── vignettes ├── blocks_to_rowrecs.png ├── blocksrecs.Rmd ├── cdata.Rmd ├── control_table_keys.Rmd ├── dadmomw.dta ├── design.Rmd ├── design_1.png ├── design_2.png ├── design_3.png ├── design_4.png ├── design_5.png ├── exercises.Rmd ├── general_transform.Rmd ├── iris_plot.png ├── operators.Rmd └── rowrecs_to_blocks.png /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /Examples/Inverse/Inverse.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/Examples/Inverse/Inverse.Rmd -------------------------------------------------------------------------------- /Examples/Inverse/Inverse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/Examples/Inverse/Inverse.md -------------------------------------------------------------------------------- /Examples/OrderedGrouping/OrderedGrouping.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/Examples/OrderedGrouping/OrderedGrouping.Rmd -------------------------------------------------------------------------------- /Examples/OrderedGrouping/OrderedGrouping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/Examples/OrderedGrouping/OrderedGrouping.md -------------------------------------------------------------------------------- /Examples/control_table/Keras_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/Examples/control_table/Keras_plot.png -------------------------------------------------------------------------------- /Examples/control_table/control_table.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/Examples/control_table/control_table.Rmd -------------------------------------------------------------------------------- /Examples/control_table/control_table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/Examples/control_table/control_table.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/LICENSE -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/DefOps.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/R/DefOps.R -------------------------------------------------------------------------------- /R/GeneralTransform.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/R/GeneralTransform.R -------------------------------------------------------------------------------- /R/LocalOps.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/R/LocalOps.R -------------------------------------------------------------------------------- /R/RowsColsQ.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/R/RowsColsQ.R -------------------------------------------------------------------------------- /R/RowsColumns.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/R/RowsColumns.R -------------------------------------------------------------------------------- /R/cdata_yaml.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/R/cdata_yaml.R -------------------------------------------------------------------------------- /R/check_cols_form_unique_keys.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/R/check_cols_form_unique_keys.R -------------------------------------------------------------------------------- /R/check_keying.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/R/check_keying.R -------------------------------------------------------------------------------- /R/checks.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/R/checks.R -------------------------------------------------------------------------------- /R/map_fields.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/R/map_fields.R -------------------------------------------------------------------------------- /R/opspec.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/R/opspec.R -------------------------------------------------------------------------------- /R/package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/R/package.R -------------------------------------------------------------------------------- /R/relops.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/R/relops.R -------------------------------------------------------------------------------- /R/wrapped_ops.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/R/wrapped_ops.R -------------------------------------------------------------------------------- /R/wrapr_exports.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/R/wrapr_exports.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /cdata.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/cdata.Rproj -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/cran-comments.md -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/LICENSE-text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/LICENSE-text.html -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/articles/blocks_to_rowrecs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/articles/blocks_to_rowrecs.png -------------------------------------------------------------------------------- /docs/articles/blocksrecs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/articles/blocksrecs.html -------------------------------------------------------------------------------- /docs/articles/blocksrecs_files/accessible-code-block-0.0.1/empty-anchor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/articles/blocksrecs_files/accessible-code-block-0.0.1/empty-anchor.js -------------------------------------------------------------------------------- /docs/articles/blocksrecs_files/header-attrs-2.7/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/articles/blocksrecs_files/header-attrs-2.7/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/cdata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/articles/cdata.html -------------------------------------------------------------------------------- /docs/articles/cdata_files/accessible-code-block-0.0.1/empty-anchor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/articles/cdata_files/accessible-code-block-0.0.1/empty-anchor.js -------------------------------------------------------------------------------- /docs/articles/cdata_files/header-attrs-2.7/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/articles/cdata_files/header-attrs-2.7/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/control_table_keys.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/articles/control_table_keys.html -------------------------------------------------------------------------------- /docs/articles/control_table_keys_files/accessible-code-block-0.0.1/empty-anchor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/articles/control_table_keys_files/accessible-code-block-0.0.1/empty-anchor.js -------------------------------------------------------------------------------- /docs/articles/control_table_keys_files/header-attrs-2.7/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/articles/control_table_keys_files/header-attrs-2.7/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/design.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/articles/design.html -------------------------------------------------------------------------------- /docs/articles/design_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/articles/design_1.png -------------------------------------------------------------------------------- /docs/articles/design_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/articles/design_2.png -------------------------------------------------------------------------------- /docs/articles/design_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/articles/design_3.png -------------------------------------------------------------------------------- /docs/articles/design_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/articles/design_4.png -------------------------------------------------------------------------------- /docs/articles/design_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/articles/design_5.png -------------------------------------------------------------------------------- /docs/articles/design_files/accessible-code-block-0.0.1/empty-anchor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/articles/design_files/accessible-code-block-0.0.1/empty-anchor.js -------------------------------------------------------------------------------- /docs/articles/design_files/header-attrs-2.7/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/articles/design_files/header-attrs-2.7/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/exercises.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/articles/exercises.html -------------------------------------------------------------------------------- /docs/articles/exercises_files/accessible-code-block-0.0.1/empty-anchor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/articles/exercises_files/accessible-code-block-0.0.1/empty-anchor.js -------------------------------------------------------------------------------- /docs/articles/exercises_files/header-attrs-2.7/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/articles/exercises_files/header-attrs-2.7/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/general_transform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/articles/general_transform.html -------------------------------------------------------------------------------- /docs/articles/general_transform_files/accessible-code-block-0.0.1/empty-anchor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/articles/general_transform_files/accessible-code-block-0.0.1/empty-anchor.js -------------------------------------------------------------------------------- /docs/articles/general_transform_files/header-attrs-2.7/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/articles/general_transform_files/header-attrs-2.7/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/articles/index.html -------------------------------------------------------------------------------- /docs/articles/iris_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/articles/iris_plot.png -------------------------------------------------------------------------------- /docs/articles/operators.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/articles/operators.html -------------------------------------------------------------------------------- /docs/articles/operators_files/accessible-code-block-0.0.1/empty-anchor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/articles/operators_files/accessible-code-block-0.0.1/empty-anchor.js -------------------------------------------------------------------------------- /docs/articles/operators_files/header-attrs-2.7/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/articles/operators_files/header-attrs-2.7/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/rowrecs_to_blocks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/articles/rowrecs_to_blocks.png -------------------------------------------------------------------------------- /docs/authors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/authors.html -------------------------------------------------------------------------------- /docs/bootstrap-toc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/bootstrap-toc.css -------------------------------------------------------------------------------- /docs/bootstrap-toc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/bootstrap-toc.js -------------------------------------------------------------------------------- /docs/docsearch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/docsearch.css -------------------------------------------------------------------------------- /docs/docsearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/docsearch.js -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/link.svg -------------------------------------------------------------------------------- /docs/news/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/news/index.html -------------------------------------------------------------------------------- /docs/pkgdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/pkgdown.css -------------------------------------------------------------------------------- /docs/pkgdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/pkgdown.js -------------------------------------------------------------------------------- /docs/pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/pkgdown.yml -------------------------------------------------------------------------------- /docs/reference/Rplot001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/reference/Rplot001.png -------------------------------------------------------------------------------- /docs/reference/blocks_to_rowrecs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/reference/blocks_to_rowrecs.html -------------------------------------------------------------------------------- /docs/reference/blocks_to_rowrecs_q.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/reference/blocks_to_rowrecs_q.html -------------------------------------------------------------------------------- /docs/reference/blocks_to_rowrecs_spec.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/reference/blocks_to_rowrecs_spec.html -------------------------------------------------------------------------------- /docs/reference/build_pivot_control.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/reference/build_pivot_control.html -------------------------------------------------------------------------------- /docs/reference/build_pivot_control_q.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/reference/build_pivot_control_q.html -------------------------------------------------------------------------------- /docs/reference/build_unpivot_control.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/reference/build_unpivot_control.html -------------------------------------------------------------------------------- /docs/reference/cdata-package.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/reference/cdata-package.html -------------------------------------------------------------------------------- /docs/reference/cdata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/reference/cdata.html -------------------------------------------------------------------------------- /docs/reference/checkColsFormUniqueKeys.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/reference/checkColsFormUniqueKeys.html -------------------------------------------------------------------------------- /docs/reference/check_cols_form_unique_keys.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/reference/check_cols_form_unique_keys.html -------------------------------------------------------------------------------- /docs/reference/check_equiv_frames.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/reference/check_equiv_frames.html -------------------------------------------------------------------------------- /docs/reference/convert_cdata_spec_to_yaml.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/reference/convert_cdata_spec_to_yaml.html -------------------------------------------------------------------------------- /docs/reference/convert_records.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/reference/convert_records.html -------------------------------------------------------------------------------- /docs/reference/convert_yaml_to_cdata_spec.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/reference/convert_yaml_to_cdata_spec.html -------------------------------------------------------------------------------- /docs/reference/get_transform_details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/reference/get_transform_details.html -------------------------------------------------------------------------------- /docs/reference/grapes-pivot-grapes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/reference/grapes-pivot-grapes.html -------------------------------------------------------------------------------- /docs/reference/grapes-slash-slash-grapes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/reference/grapes-slash-slash-grapes.html -------------------------------------------------------------------------------- /docs/reference/grapes-times-times-grapes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/reference/grapes-times-times-grapes.html -------------------------------------------------------------------------------- /docs/reference/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/reference/index.html -------------------------------------------------------------------------------- /docs/reference/layout_by.blocks_to_rowrecs_spec.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/reference/layout_by.blocks_to_rowrecs_spec.html -------------------------------------------------------------------------------- /docs/reference/layout_by.cdata_general_transform_spec.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/reference/layout_by.cdata_general_transform_spec.html -------------------------------------------------------------------------------- /docs/reference/layout_by.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/reference/layout_by.html -------------------------------------------------------------------------------- /docs/reference/layout_by.rowrecs_to_blocks_spec.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/reference/layout_by.rowrecs_to_blocks_spec.html -------------------------------------------------------------------------------- /docs/reference/layout_specification.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/reference/layout_specification.html -------------------------------------------------------------------------------- /docs/reference/map_fields.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/reference/map_fields.html -------------------------------------------------------------------------------- /docs/reference/map_fields_q.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/reference/map_fields_q.html -------------------------------------------------------------------------------- /docs/reference/new_record_spec.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/reference/new_record_spec.html -------------------------------------------------------------------------------- /docs/reference/pivot_to_rowrecs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/reference/pivot_to_rowrecs.html -------------------------------------------------------------------------------- /docs/reference/qlook.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/reference/qlook.html -------------------------------------------------------------------------------- /docs/reference/reexports.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/reference/reexports.html -------------------------------------------------------------------------------- /docs/reference/rowrecs_to_blocks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/reference/rowrecs_to_blocks.html -------------------------------------------------------------------------------- /docs/reference/rowrecs_to_blocks_q.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/reference/rowrecs_to_blocks_q.html -------------------------------------------------------------------------------- /docs/reference/rowrecs_to_blocks_spec.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/reference/rowrecs_to_blocks_spec.html -------------------------------------------------------------------------------- /docs/reference/rows_are_uniquely_keyed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/reference/rows_are_uniquely_keyed.html -------------------------------------------------------------------------------- /docs/reference/run_cdata_tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/reference/run_cdata_tests.html -------------------------------------------------------------------------------- /docs/reference/unpivot_to_blocks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/reference/unpivot_to_blocks.html -------------------------------------------------------------------------------- /docs/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/docs/sitemap.xml -------------------------------------------------------------------------------- /extras/LightTests.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/extras/LightTests.Rmd -------------------------------------------------------------------------------- /extras/LightTests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/extras/LightTests.md -------------------------------------------------------------------------------- /extras/cdata.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/extras/cdata.pdf -------------------------------------------------------------------------------- /extras/check_reverse_dependencies.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/extras/check_reverse_dependencies.Rmd -------------------------------------------------------------------------------- /extras/check_reverse_dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/extras/check_reverse_dependencies.md -------------------------------------------------------------------------------- /extras/melt_cast.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/extras/melt_cast.Rmd -------------------------------------------------------------------------------- /extras/melt_cast.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/extras/melt_cast.md -------------------------------------------------------------------------------- /extras/node_version.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/extras/node_version.Rmd -------------------------------------------------------------------------------- /extras/node_version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/extras/node_version.md -------------------------------------------------------------------------------- /extras/perf.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/extras/perf.Rmd -------------------------------------------------------------------------------- /extras/perf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/extras/perf.md -------------------------------------------------------------------------------- /extras/perf_files/figure-markdown_github/exp-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/extras/perf_files/figure-markdown_github/exp-1.png -------------------------------------------------------------------------------- /extras/perf_files/figure-markdown_github/exp-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/extras/perf_files/figure-markdown_github/exp-2.png -------------------------------------------------------------------------------- /extras/perf_files/figure-markdown_github/exp-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/extras/perf_files/figure-markdown_github/exp-3.png -------------------------------------------------------------------------------- /extras/perf_files/figure-markdown_github/exp-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/extras/perf_files/figure-markdown_github/exp-4.png -------------------------------------------------------------------------------- /extras/perf_files/figure-markdown_github/exp-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/extras/perf_files/figure-markdown_github/exp-5.png -------------------------------------------------------------------------------- /extras/perf_files/figure-markdown_github/exp-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/extras/perf_files/figure-markdown_github/exp-6.png -------------------------------------------------------------------------------- /extras/perf_files/figure-markdown_github/exp-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/extras/perf_files/figure-markdown_github/exp-7.png -------------------------------------------------------------------------------- /extras/perf_files/figure-markdown_github/exp-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/extras/perf_files/figure-markdown_github/exp-8.png -------------------------------------------------------------------------------- /extras/solution_conversion/solution_conversion.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/extras/solution_conversion/solution_conversion.Rmd -------------------------------------------------------------------------------- /extras/solution_conversion/solution_conversion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/extras/solution_conversion/solution_conversion.md -------------------------------------------------------------------------------- /extras/table/confmat.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/extras/table/confmat.rds -------------------------------------------------------------------------------- /extras/table/table.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/extras/table/table.Rmd -------------------------------------------------------------------------------- /extras/table/table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/extras/table/table.md -------------------------------------------------------------------------------- /extras/timing/tm1.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/extras/timing/tm1.Rmd -------------------------------------------------------------------------------- /extras/timing/tm1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/extras/timing/tm1.md -------------------------------------------------------------------------------- /extras/tw/TweetExample.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/extras/tw/TweetExample.Rmd -------------------------------------------------------------------------------- /extras/tw/TweetExample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/extras/tw/TweetExample.md -------------------------------------------------------------------------------- /extras/tw/tw.graffle/data.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/extras/tw/tw.graffle/data.plist -------------------------------------------------------------------------------- /extras/tw/tw.graffle/image3.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/extras/tw/tw.graffle/image3.tiff -------------------------------------------------------------------------------- /extras/tw/tw.graffle/image4.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/extras/tw/tw.graffle/image4.tiff -------------------------------------------------------------------------------- /extras/tw/tw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/extras/tw/tw.png -------------------------------------------------------------------------------- /extras/tw/tw2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/extras/tw/tw2.png -------------------------------------------------------------------------------- /extras/tw/tw3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/extras/tw/tw3.png -------------------------------------------------------------------------------- /inst/tinytest/chickw.RDS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/inst/tinytest/chickw.RDS -------------------------------------------------------------------------------- /inst/tinytest/iris.RDS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/inst/tinytest/iris.RDS -------------------------------------------------------------------------------- /inst/tinytest/seatbelts.RDS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/inst/tinytest/seatbelts.RDS -------------------------------------------------------------------------------- /inst/tinytest/test_RowColOps.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/inst/tinytest/test_RowColOps.R -------------------------------------------------------------------------------- /inst/tinytest/test_XForm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/inst/tinytest/test_XForm.R -------------------------------------------------------------------------------- /inst/tinytest/test_check.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/inst/tinytest/test_check.R -------------------------------------------------------------------------------- /inst/tinytest/test_checks_2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/inst/tinytest/test_checks_2.R -------------------------------------------------------------------------------- /inst/tinytest/test_chicks.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/inst/tinytest/test_chicks.R -------------------------------------------------------------------------------- /inst/tinytest/test_complex_example.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/inst/tinytest/test_complex_example.R -------------------------------------------------------------------------------- /inst/tinytest/test_composite_control_keys.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/inst/tinytest/test_composite_control_keys.R -------------------------------------------------------------------------------- /inst/tinytest/test_composite_control_keys_db.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/inst/tinytest/test_composite_control_keys_db.R -------------------------------------------------------------------------------- /inst/tinytest/test_dates.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/inst/tinytest/test_dates.R -------------------------------------------------------------------------------- /inst/tinytest/test_encode.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/inst/tinytest/test_encode.R -------------------------------------------------------------------------------- /inst/tinytest/test_factor.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/inst/tinytest/test_factor.R -------------------------------------------------------------------------------- /inst/tinytest/test_inv.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/inst/tinytest/test_inv.R -------------------------------------------------------------------------------- /inst/tinytest/test_not_seen_level.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/inst/tinytest/test_not_seen_level.R -------------------------------------------------------------------------------- /inst/tinytest/test_operators.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/inst/tinytest/test_operators.R -------------------------------------------------------------------------------- /inst/tinytest/test_seatbelts.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/inst/tinytest/test_seatbelts.R -------------------------------------------------------------------------------- /inst/tinytest/test_there_and_back.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/inst/tinytest/test_there_and_back.R -------------------------------------------------------------------------------- /inst/tinytest/test_there_and_back_db.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/inst/tinytest/test_there_and_back_db.R -------------------------------------------------------------------------------- /inst/tinytest/test_unique.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/inst/tinytest/test_unique.R -------------------------------------------------------------------------------- /man/blocks_to_rowrecs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/man/blocks_to_rowrecs.Rd -------------------------------------------------------------------------------- /man/blocks_to_rowrecs_q.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/man/blocks_to_rowrecs_q.Rd -------------------------------------------------------------------------------- /man/blocks_to_rowrecs_spec.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/man/blocks_to_rowrecs_spec.Rd -------------------------------------------------------------------------------- /man/build_pivot_control.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/man/build_pivot_control.Rd -------------------------------------------------------------------------------- /man/build_pivot_control_q.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/man/build_pivot_control_q.Rd -------------------------------------------------------------------------------- /man/build_unpivot_control.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/man/build_unpivot_control.Rd -------------------------------------------------------------------------------- /man/cdata-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/man/cdata-package.Rd -------------------------------------------------------------------------------- /man/check_cols_form_unique_keys.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/man/check_cols_form_unique_keys.Rd -------------------------------------------------------------------------------- /man/convert_cdata_spec_to_yaml.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/man/convert_cdata_spec_to_yaml.Rd -------------------------------------------------------------------------------- /man/convert_records.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/man/convert_records.Rd -------------------------------------------------------------------------------- /man/convert_yaml_to_cdata_spec.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/man/convert_yaml_to_cdata_spec.Rd -------------------------------------------------------------------------------- /man/get_transform_details.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/man/get_transform_details.Rd -------------------------------------------------------------------------------- /man/grapes-slash-slash-grapes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/man/grapes-slash-slash-grapes.Rd -------------------------------------------------------------------------------- /man/grapes-times-times-grapes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/man/grapes-times-times-grapes.Rd -------------------------------------------------------------------------------- /man/layout_by.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/man/layout_by.Rd -------------------------------------------------------------------------------- /man/layout_by.blocks_to_rowrecs_spec.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/man/layout_by.blocks_to_rowrecs_spec.Rd -------------------------------------------------------------------------------- /man/layout_by.cdata_general_transform_spec.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/man/layout_by.cdata_general_transform_spec.Rd -------------------------------------------------------------------------------- /man/layout_by.rowrecs_to_blocks_spec.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/man/layout_by.rowrecs_to_blocks_spec.Rd -------------------------------------------------------------------------------- /man/layout_specification.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/man/layout_specification.Rd -------------------------------------------------------------------------------- /man/map_fields.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/man/map_fields.Rd -------------------------------------------------------------------------------- /man/map_fields_q.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/man/map_fields_q.Rd -------------------------------------------------------------------------------- /man/pivot_to_rowrecs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/man/pivot_to_rowrecs.Rd -------------------------------------------------------------------------------- /man/qlook.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/man/qlook.Rd -------------------------------------------------------------------------------- /man/rowrecs_to_blocks.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/man/rowrecs_to_blocks.Rd -------------------------------------------------------------------------------- /man/rowrecs_to_blocks_q.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/man/rowrecs_to_blocks_q.Rd -------------------------------------------------------------------------------- /man/rowrecs_to_blocks_spec.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/man/rowrecs_to_blocks_spec.Rd -------------------------------------------------------------------------------- /man/rows_are_uniquely_keyed.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/man/rows_are_uniquely_keyed.Rd -------------------------------------------------------------------------------- /man/unpivot_to_blocks.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/man/unpivot_to_blocks.Rd -------------------------------------------------------------------------------- /tests/tinytest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/tests/tinytest.R -------------------------------------------------------------------------------- /tools/README-ex0-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/tools/README-ex0-1.png -------------------------------------------------------------------------------- /tools/README-ex0_1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/tools/README-ex0_1-1.png -------------------------------------------------------------------------------- /tools/README_files/figure-markdown_github/ex0-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/tools/README_files/figure-markdown_github/ex0-1.png -------------------------------------------------------------------------------- /tools/README_files/figure-markdown_github/ex0_1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/tools/README_files/figure-markdown_github/ex0_1-1.png -------------------------------------------------------------------------------- /tools/cdata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/tools/cdata.png -------------------------------------------------------------------------------- /vignettes/blocks_to_rowrecs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/vignettes/blocks_to_rowrecs.png -------------------------------------------------------------------------------- /vignettes/blocksrecs.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/vignettes/blocksrecs.Rmd -------------------------------------------------------------------------------- /vignettes/cdata.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/vignettes/cdata.Rmd -------------------------------------------------------------------------------- /vignettes/control_table_keys.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/vignettes/control_table_keys.Rmd -------------------------------------------------------------------------------- /vignettes/dadmomw.dta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/vignettes/dadmomw.dta -------------------------------------------------------------------------------- /vignettes/design.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/vignettes/design.Rmd -------------------------------------------------------------------------------- /vignettes/design_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/vignettes/design_1.png -------------------------------------------------------------------------------- /vignettes/design_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/vignettes/design_2.png -------------------------------------------------------------------------------- /vignettes/design_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/vignettes/design_3.png -------------------------------------------------------------------------------- /vignettes/design_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/vignettes/design_4.png -------------------------------------------------------------------------------- /vignettes/design_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/vignettes/design_5.png -------------------------------------------------------------------------------- /vignettes/exercises.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/vignettes/exercises.Rmd -------------------------------------------------------------------------------- /vignettes/general_transform.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/vignettes/general_transform.Rmd -------------------------------------------------------------------------------- /vignettes/iris_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/vignettes/iris_plot.png -------------------------------------------------------------------------------- /vignettes/operators.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/vignettes/operators.Rmd -------------------------------------------------------------------------------- /vignettes/rowrecs_to_blocks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/cdata/HEAD/vignettes/rowrecs_to_blocks.png --------------------------------------------------------------------------------