├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── NEWS.md ├── R ├── addCol.R ├── addIds.R ├── bind_rows.R ├── checkRank.R ├── coalesce.R ├── colClasses.R ├── copyToFrom.R ├── dim.R ├── expandColumn.R ├── filter.R ├── groupedApply.R ├── inTest.R ├── joinController.R ├── land.R ├── nrow.R ├── quantile.R ├── renameRestrictCols.R ├── replyr.R ├── serviceName.R ├── summary.R ├── underscoreReplacements.R └── uniqueValues.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── checks ├── .gitignore ├── CheckFns.R ├── README.Rmd ├── README.md ├── SmallTimings.Rmd ├── SmallTimings.html ├── SmallTimings.md ├── SmallTimings_files │ └── figure-markdown_github │ │ └── pressure-1.png ├── SparkCrasher.Rmd ├── SplitApplyCombineSpark.Rmd ├── SplitApplyCombineSpark.md ├── basicChecks.Rmd ├── basicChecks.md ├── gapply.Rmd └── gapply.md ├── cleanFluff.bash ├── cran-comments.md ├── docs ├── 404.html ├── LICENSE-text.html ├── _config.yml ├── articles │ ├── DependencySorting.html │ ├── DependencySorting_d.png │ ├── DependencySorting_files │ │ └── accessible-code-block-0.0.1 │ │ │ └── empty-anchor.js │ ├── DependencySorting_ig.png │ ├── ParametricExample.html │ ├── ParametricExample_files │ │ └── accessible-code-block-0.0.1 │ │ │ └── empty-anchor.js │ ├── coalesce.html │ ├── coalesce_files │ │ └── accessible-code-block-0.0.1 │ │ │ └── empty-anchor.js │ ├── index.html │ ├── joinController.html │ ├── joinController1.png │ ├── joinController_files │ │ └── accessible-code-block-0.0.1 │ │ │ └── empty-anchor.js │ ├── letExample.html │ ├── letExample_files │ │ ├── accessible-code-block-0.0.1 │ │ │ └── empty-anchor.js │ │ └── figure-html │ │ │ ├── ggplot1-1.png │ │ │ └── ggplot2-1.png │ ├── replyr.html │ ├── replyr_files │ │ └── accessible-code-block-0.0.1 │ │ │ └── empty-anchor.js │ ├── replyrs.png │ ├── summary.html │ └── summary_files │ │ └── accessible-code-block-0.0.1 │ │ └── empty-anchor.js ├── authors.html ├── bootstrap-toc.css ├── bootstrap-toc.js ├── docsearch.css ├── docsearch.js ├── index.html ├── jquery.sticky-kit.min.js ├── link.svg ├── news │ └── index.html ├── pkgdown.css ├── pkgdown.js ├── pkgdown.yml ├── reference │ ├── Rplot001.png │ ├── addConstantColumn.html │ ├── buildJoinPlan.html │ ├── dplyr_src_to_db_handle.html │ ├── example_employeeAndDate.html │ ├── executeLeftJoinPlan.html │ ├── expandColumn.html │ ├── gapply.html │ ├── grapes-land-grapes.html │ ├── index.html │ ├── inspectDescrAndJoinPlan.html │ ├── key_inspector_all_cols.html │ ├── key_inspector_postgresql.html │ ├── key_inspector_sqlite.html │ ├── keysAreUnique.html │ ├── makeJoinDiagramSpec.html │ ├── replyr.html │ ├── replyr_add_ids.html │ ├── replyr_apply_f_mapped.html │ ├── replyr_arrange.html │ ├── replyr_bind_rows.html │ ├── replyr_check_ranks.html │ ├── replyr_coalesce.html │ ├── replyr_colClasses.html │ ├── replyr_copy_from.html │ ├── replyr_copy_to.html │ ├── replyr_dim.html │ ├── replyr_filter.html │ ├── replyr_get_src.html │ ├── replyr_group_by.html │ ├── replyr_has_table.html │ ├── replyr_hasrows.html │ ├── replyr_inTest.html │ ├── replyr_is_MySQL_data.html │ ├── replyr_is_Spark_data.html │ ├── replyr_is_local_data.html │ ├── replyr_list_tables.html │ ├── replyr_mapRestrictCols.html │ ├── replyr_ncol.html │ ├── replyr_nrow.html │ ├── replyr_quantile.html │ ├── replyr_quantilec.html │ ├── replyr_rename.html │ ├── replyr_reverseMap.html │ ├── replyr_select.html │ ├── replyr_split.html │ ├── replyr_summary.html │ ├── replyr_testCols.html │ ├── replyr_union_all.html │ ├── replyr_uniqueValues.html │ ├── tableDescription.html │ └── topoSortTables.html └── sitemap.xml ├── extras ├── BigDataTransforms.Rmd ├── BigDataTransforms.md ├── KnitrParameters.Rmd ├── KnitrParameters.md ├── KnitrParameters_files │ └── figure-markdown_github │ │ ├── bindings-1.png │ │ └── values-1.png └── summary_next.R ├── issues ├── BindIssue.Rmd ├── BindIssue.md ├── ComplexJoins.Rmd ├── ComplexJoins.md ├── DplyrDevnrow.Rmd ├── DplyrDevnrow.md ├── DplyrSparklyr.Rmd ├── DplyrSparklyr.md ├── DplyrSparklyr_CRANdplyr_CRANsparklyr.md ├── DplyrSparklyr_DEVdplyr_CRANsparklyr.md ├── DplyrSparklyr_DEVdplyr_DEVsparklyr.md ├── HeadIssue.Rmd ├── HeadIssue.md ├── JoinNamesDups.Rmd ├── JoinNamesDups.md ├── MySQLSelfJoin.Rmd ├── MySQLSelfJoin.md ├── MySQL_mutate.Rmd ├── MySQL_mutate.md ├── MySQLcast.Rmd ├── MySQLcast.md ├── NAvalues.Rmd ├── NAvalues.md ├── README.Rmd ├── README.md ├── SQLiteColtypes.Rmd ├── SQLiteColtypes.md ├── SQLitesd.Rmd ├── SQLitesd.md ├── SparkNAIssue.Rmd ├── SparkNAIssue.md ├── SparklyrRename.Rmd ├── SparklyrRename.md ├── TrailingRefIssue.Rmd ├── TrailingRefIssue.md ├── UnionIssue.Rmd ├── UnionIssue.md ├── arrangecompute.Rmd ├── arrangecompute.md ├── copyIssueMySQL.Rmd ├── copyIssueMySQL.md ├── copyissue162.Rmd ├── copyissue162.md ├── copyissue200.Rmd ├── copyissue200.md ├── factorissue.Rmd ├── factorissue.md ├── union_all_issue.Rmd └── union_all_issue.md ├── man ├── addConstantColumn.Rd ├── buildJoinPlan.Rd ├── dplyr_src_to_db_handle.Rd ├── example_employeeAndDate.Rd ├── executeLeftJoinPlan.Rd ├── expandColumn.Rd ├── gapply.Rd ├── grapes-land-grapes.Rd ├── inspectDescrAndJoinPlan.Rd ├── key_inspector_all_cols.Rd ├── key_inspector_postgresql.Rd ├── key_inspector_sqlite.Rd ├── keysAreUnique.Rd ├── makeJoinDiagramSpec.Rd ├── replyr.Rd ├── replyr_add_ids.Rd ├── replyr_apply_f_mapped.Rd ├── replyr_arrange.Rd ├── replyr_bind_rows.Rd ├── replyr_check_ranks.Rd ├── replyr_coalesce.Rd ├── replyr_colClasses.Rd ├── replyr_copy_from.Rd ├── replyr_copy_to.Rd ├── replyr_dim.Rd ├── replyr_filter.Rd ├── replyr_get_src.Rd ├── replyr_group_by.Rd ├── replyr_has_table.Rd ├── replyr_hasrows.Rd ├── replyr_inTest.Rd ├── replyr_is_MySQL_data.Rd ├── replyr_is_Spark_data.Rd ├── replyr_is_local_data.Rd ├── replyr_list_tables.Rd ├── replyr_mapRestrictCols.Rd ├── replyr_ncol.Rd ├── replyr_nrow.Rd ├── replyr_quantile.Rd ├── replyr_quantilec.Rd ├── replyr_rename.Rd ├── replyr_reverseMap.Rd ├── replyr_select.Rd ├── replyr_split.Rd ├── replyr_summary.Rd ├── replyr_testCols.Rd ├── replyr_union_all.Rd ├── replyr_uniqueValues.Rd ├── tableDescription.Rd └── topoSortTables.Rd ├── replyr.Rproj ├── tests ├── testthat.R └── testthat │ ├── testOne.R │ ├── test_gapply.R │ ├── test_grapes-land-grapes.R │ ├── test_let.R │ ├── test_replyr_bind_rows.R │ ├── test_replyr_check_ranks.R │ ├── test_replyr_colClasses.R │ ├── test_replyr_copy_from.R │ ├── test_replyr_copy_to.R │ ├── test_replyr_dim.R │ ├── test_replyr_filter.R │ ├── test_replyr_inTest.R │ ├── test_replyr_mapRestrictCols.R │ ├── test_replyr_nrow.R │ ├── test_replyr_quantile.R │ ├── test_replyr_quantilec.R │ ├── test_replyr_split.R │ ├── test_replyr_summary.R │ ├── test_replyr_testCols.R │ └── test_replyr_uniqueValues.R ├── tools └── replyrs.png └── vignettes ├── .gitignore ├── DependencySorting.Rmd ├── DependencySorting_d.png ├── DependencySorting_ig.png ├── ParametricExample.Rmd ├── coalesce.Rmd ├── joinController.Rmd ├── joinController1.png ├── letExample.Rmd ├── replyr.Rmd ├── replyrs.png └── summary.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/LICENSE -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/addCol.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/R/addCol.R -------------------------------------------------------------------------------- /R/addIds.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/R/addIds.R -------------------------------------------------------------------------------- /R/bind_rows.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/R/bind_rows.R -------------------------------------------------------------------------------- /R/checkRank.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/R/checkRank.R -------------------------------------------------------------------------------- /R/coalesce.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/R/coalesce.R -------------------------------------------------------------------------------- /R/colClasses.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/R/colClasses.R -------------------------------------------------------------------------------- /R/copyToFrom.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/R/copyToFrom.R -------------------------------------------------------------------------------- /R/dim.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/R/dim.R -------------------------------------------------------------------------------- /R/expandColumn.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/R/expandColumn.R -------------------------------------------------------------------------------- /R/filter.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/R/filter.R -------------------------------------------------------------------------------- /R/groupedApply.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/R/groupedApply.R -------------------------------------------------------------------------------- /R/inTest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/R/inTest.R -------------------------------------------------------------------------------- /R/joinController.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/R/joinController.R -------------------------------------------------------------------------------- /R/land.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/R/land.R -------------------------------------------------------------------------------- /R/nrow.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/R/nrow.R -------------------------------------------------------------------------------- /R/quantile.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/R/quantile.R -------------------------------------------------------------------------------- /R/renameRestrictCols.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/R/renameRestrictCols.R -------------------------------------------------------------------------------- /R/replyr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/R/replyr.R -------------------------------------------------------------------------------- /R/serviceName.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/R/serviceName.R -------------------------------------------------------------------------------- /R/summary.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/R/summary.R -------------------------------------------------------------------------------- /R/underscoreReplacements.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/R/underscoreReplacements.R -------------------------------------------------------------------------------- /R/uniqueValues.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/R/uniqueValues.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /checks/.gitignore: -------------------------------------------------------------------------------- 1 | spark-warehouse 2 | -------------------------------------------------------------------------------- /checks/CheckFns.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/checks/CheckFns.R -------------------------------------------------------------------------------- /checks/README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/checks/README.Rmd -------------------------------------------------------------------------------- /checks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/checks/README.md -------------------------------------------------------------------------------- /checks/SmallTimings.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/checks/SmallTimings.Rmd -------------------------------------------------------------------------------- /checks/SmallTimings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/checks/SmallTimings.html -------------------------------------------------------------------------------- /checks/SmallTimings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/checks/SmallTimings.md -------------------------------------------------------------------------------- /checks/SmallTimings_files/figure-markdown_github/pressure-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/checks/SmallTimings_files/figure-markdown_github/pressure-1.png -------------------------------------------------------------------------------- /checks/SparkCrasher.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/checks/SparkCrasher.Rmd -------------------------------------------------------------------------------- /checks/SplitApplyCombineSpark.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/checks/SplitApplyCombineSpark.Rmd -------------------------------------------------------------------------------- /checks/SplitApplyCombineSpark.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/checks/SplitApplyCombineSpark.md -------------------------------------------------------------------------------- /checks/basicChecks.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/checks/basicChecks.Rmd -------------------------------------------------------------------------------- /checks/basicChecks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/checks/basicChecks.md -------------------------------------------------------------------------------- /checks/gapply.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/checks/gapply.Rmd -------------------------------------------------------------------------------- /checks/gapply.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/checks/gapply.md -------------------------------------------------------------------------------- /cleanFluff.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/cleanFluff.bash -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/cran-comments.md -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/LICENSE-text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/LICENSE-text.html -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/articles/DependencySorting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/articles/DependencySorting.html -------------------------------------------------------------------------------- /docs/articles/DependencySorting_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/articles/DependencySorting_d.png -------------------------------------------------------------------------------- /docs/articles/DependencySorting_files/accessible-code-block-0.0.1/empty-anchor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/articles/DependencySorting_files/accessible-code-block-0.0.1/empty-anchor.js -------------------------------------------------------------------------------- /docs/articles/DependencySorting_ig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/articles/DependencySorting_ig.png -------------------------------------------------------------------------------- /docs/articles/ParametricExample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/articles/ParametricExample.html -------------------------------------------------------------------------------- /docs/articles/ParametricExample_files/accessible-code-block-0.0.1/empty-anchor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/articles/ParametricExample_files/accessible-code-block-0.0.1/empty-anchor.js -------------------------------------------------------------------------------- /docs/articles/coalesce.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/articles/coalesce.html -------------------------------------------------------------------------------- /docs/articles/coalesce_files/accessible-code-block-0.0.1/empty-anchor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/articles/coalesce_files/accessible-code-block-0.0.1/empty-anchor.js -------------------------------------------------------------------------------- /docs/articles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/articles/index.html -------------------------------------------------------------------------------- /docs/articles/joinController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/articles/joinController.html -------------------------------------------------------------------------------- /docs/articles/joinController1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/articles/joinController1.png -------------------------------------------------------------------------------- /docs/articles/joinController_files/accessible-code-block-0.0.1/empty-anchor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/articles/joinController_files/accessible-code-block-0.0.1/empty-anchor.js -------------------------------------------------------------------------------- /docs/articles/letExample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/articles/letExample.html -------------------------------------------------------------------------------- /docs/articles/letExample_files/accessible-code-block-0.0.1/empty-anchor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/articles/letExample_files/accessible-code-block-0.0.1/empty-anchor.js -------------------------------------------------------------------------------- /docs/articles/letExample_files/figure-html/ggplot1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/articles/letExample_files/figure-html/ggplot1-1.png -------------------------------------------------------------------------------- /docs/articles/letExample_files/figure-html/ggplot2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/articles/letExample_files/figure-html/ggplot2-1.png -------------------------------------------------------------------------------- /docs/articles/replyr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/articles/replyr.html -------------------------------------------------------------------------------- /docs/articles/replyr_files/accessible-code-block-0.0.1/empty-anchor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/articles/replyr_files/accessible-code-block-0.0.1/empty-anchor.js -------------------------------------------------------------------------------- /docs/articles/replyrs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/articles/replyrs.png -------------------------------------------------------------------------------- /docs/articles/summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/articles/summary.html -------------------------------------------------------------------------------- /docs/articles/summary_files/accessible-code-block-0.0.1/empty-anchor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/articles/summary_files/accessible-code-block-0.0.1/empty-anchor.js -------------------------------------------------------------------------------- /docs/authors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/authors.html -------------------------------------------------------------------------------- /docs/bootstrap-toc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/bootstrap-toc.css -------------------------------------------------------------------------------- /docs/bootstrap-toc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/bootstrap-toc.js -------------------------------------------------------------------------------- /docs/docsearch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/docsearch.css -------------------------------------------------------------------------------- /docs/docsearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/docsearch.js -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/jquery.sticky-kit.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/jquery.sticky-kit.min.js -------------------------------------------------------------------------------- /docs/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/link.svg -------------------------------------------------------------------------------- /docs/news/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/news/index.html -------------------------------------------------------------------------------- /docs/pkgdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/pkgdown.css -------------------------------------------------------------------------------- /docs/pkgdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/pkgdown.js -------------------------------------------------------------------------------- /docs/pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/pkgdown.yml -------------------------------------------------------------------------------- /docs/reference/Rplot001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/reference/Rplot001.png -------------------------------------------------------------------------------- /docs/reference/addConstantColumn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/reference/addConstantColumn.html -------------------------------------------------------------------------------- /docs/reference/buildJoinPlan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/reference/buildJoinPlan.html -------------------------------------------------------------------------------- /docs/reference/dplyr_src_to_db_handle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/reference/dplyr_src_to_db_handle.html -------------------------------------------------------------------------------- /docs/reference/example_employeeAndDate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/reference/example_employeeAndDate.html -------------------------------------------------------------------------------- /docs/reference/executeLeftJoinPlan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/reference/executeLeftJoinPlan.html -------------------------------------------------------------------------------- /docs/reference/expandColumn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/reference/expandColumn.html -------------------------------------------------------------------------------- /docs/reference/gapply.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/reference/gapply.html -------------------------------------------------------------------------------- /docs/reference/grapes-land-grapes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/reference/grapes-land-grapes.html -------------------------------------------------------------------------------- /docs/reference/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/reference/index.html -------------------------------------------------------------------------------- /docs/reference/inspectDescrAndJoinPlan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/reference/inspectDescrAndJoinPlan.html -------------------------------------------------------------------------------- /docs/reference/key_inspector_all_cols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/reference/key_inspector_all_cols.html -------------------------------------------------------------------------------- /docs/reference/key_inspector_postgresql.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/reference/key_inspector_postgresql.html -------------------------------------------------------------------------------- /docs/reference/key_inspector_sqlite.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/reference/key_inspector_sqlite.html -------------------------------------------------------------------------------- /docs/reference/keysAreUnique.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/reference/keysAreUnique.html -------------------------------------------------------------------------------- /docs/reference/makeJoinDiagramSpec.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/reference/makeJoinDiagramSpec.html -------------------------------------------------------------------------------- /docs/reference/replyr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/reference/replyr.html -------------------------------------------------------------------------------- /docs/reference/replyr_add_ids.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/reference/replyr_add_ids.html -------------------------------------------------------------------------------- /docs/reference/replyr_apply_f_mapped.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/reference/replyr_apply_f_mapped.html -------------------------------------------------------------------------------- /docs/reference/replyr_arrange.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/reference/replyr_arrange.html -------------------------------------------------------------------------------- /docs/reference/replyr_bind_rows.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/reference/replyr_bind_rows.html -------------------------------------------------------------------------------- /docs/reference/replyr_check_ranks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/reference/replyr_check_ranks.html -------------------------------------------------------------------------------- /docs/reference/replyr_coalesce.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/reference/replyr_coalesce.html -------------------------------------------------------------------------------- /docs/reference/replyr_colClasses.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/reference/replyr_colClasses.html -------------------------------------------------------------------------------- /docs/reference/replyr_copy_from.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/reference/replyr_copy_from.html -------------------------------------------------------------------------------- /docs/reference/replyr_copy_to.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/reference/replyr_copy_to.html -------------------------------------------------------------------------------- /docs/reference/replyr_dim.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/reference/replyr_dim.html -------------------------------------------------------------------------------- /docs/reference/replyr_filter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/reference/replyr_filter.html -------------------------------------------------------------------------------- /docs/reference/replyr_get_src.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/reference/replyr_get_src.html -------------------------------------------------------------------------------- /docs/reference/replyr_group_by.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/reference/replyr_group_by.html -------------------------------------------------------------------------------- /docs/reference/replyr_has_table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/reference/replyr_has_table.html -------------------------------------------------------------------------------- /docs/reference/replyr_hasrows.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/reference/replyr_hasrows.html -------------------------------------------------------------------------------- /docs/reference/replyr_inTest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/reference/replyr_inTest.html -------------------------------------------------------------------------------- /docs/reference/replyr_is_MySQL_data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/reference/replyr_is_MySQL_data.html -------------------------------------------------------------------------------- /docs/reference/replyr_is_Spark_data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/reference/replyr_is_Spark_data.html -------------------------------------------------------------------------------- /docs/reference/replyr_is_local_data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/reference/replyr_is_local_data.html -------------------------------------------------------------------------------- /docs/reference/replyr_list_tables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/reference/replyr_list_tables.html -------------------------------------------------------------------------------- /docs/reference/replyr_mapRestrictCols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/reference/replyr_mapRestrictCols.html -------------------------------------------------------------------------------- /docs/reference/replyr_ncol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/reference/replyr_ncol.html -------------------------------------------------------------------------------- /docs/reference/replyr_nrow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/reference/replyr_nrow.html -------------------------------------------------------------------------------- /docs/reference/replyr_quantile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/reference/replyr_quantile.html -------------------------------------------------------------------------------- /docs/reference/replyr_quantilec.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/reference/replyr_quantilec.html -------------------------------------------------------------------------------- /docs/reference/replyr_rename.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/reference/replyr_rename.html -------------------------------------------------------------------------------- /docs/reference/replyr_reverseMap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/reference/replyr_reverseMap.html -------------------------------------------------------------------------------- /docs/reference/replyr_select.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/reference/replyr_select.html -------------------------------------------------------------------------------- /docs/reference/replyr_split.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/reference/replyr_split.html -------------------------------------------------------------------------------- /docs/reference/replyr_summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/reference/replyr_summary.html -------------------------------------------------------------------------------- /docs/reference/replyr_testCols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/reference/replyr_testCols.html -------------------------------------------------------------------------------- /docs/reference/replyr_union_all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/reference/replyr_union_all.html -------------------------------------------------------------------------------- /docs/reference/replyr_uniqueValues.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/reference/replyr_uniqueValues.html -------------------------------------------------------------------------------- /docs/reference/tableDescription.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/reference/tableDescription.html -------------------------------------------------------------------------------- /docs/reference/topoSortTables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/reference/topoSortTables.html -------------------------------------------------------------------------------- /docs/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/docs/sitemap.xml -------------------------------------------------------------------------------- /extras/BigDataTransforms.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/extras/BigDataTransforms.Rmd -------------------------------------------------------------------------------- /extras/BigDataTransforms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/extras/BigDataTransforms.md -------------------------------------------------------------------------------- /extras/KnitrParameters.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/extras/KnitrParameters.Rmd -------------------------------------------------------------------------------- /extras/KnitrParameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/extras/KnitrParameters.md -------------------------------------------------------------------------------- /extras/KnitrParameters_files/figure-markdown_github/bindings-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/extras/KnitrParameters_files/figure-markdown_github/bindings-1.png -------------------------------------------------------------------------------- /extras/KnitrParameters_files/figure-markdown_github/values-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/extras/KnitrParameters_files/figure-markdown_github/values-1.png -------------------------------------------------------------------------------- /extras/summary_next.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/extras/summary_next.R -------------------------------------------------------------------------------- /issues/BindIssue.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/issues/BindIssue.Rmd -------------------------------------------------------------------------------- /issues/BindIssue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/issues/BindIssue.md -------------------------------------------------------------------------------- /issues/ComplexJoins.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/issues/ComplexJoins.Rmd -------------------------------------------------------------------------------- /issues/ComplexJoins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/issues/ComplexJoins.md -------------------------------------------------------------------------------- /issues/DplyrDevnrow.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/issues/DplyrDevnrow.Rmd -------------------------------------------------------------------------------- /issues/DplyrDevnrow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/issues/DplyrDevnrow.md -------------------------------------------------------------------------------- /issues/DplyrSparklyr.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/issues/DplyrSparklyr.Rmd -------------------------------------------------------------------------------- /issues/DplyrSparklyr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/issues/DplyrSparklyr.md -------------------------------------------------------------------------------- /issues/DplyrSparklyr_CRANdplyr_CRANsparklyr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/issues/DplyrSparklyr_CRANdplyr_CRANsparklyr.md -------------------------------------------------------------------------------- /issues/DplyrSparklyr_DEVdplyr_CRANsparklyr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/issues/DplyrSparklyr_DEVdplyr_CRANsparklyr.md -------------------------------------------------------------------------------- /issues/DplyrSparklyr_DEVdplyr_DEVsparklyr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/issues/DplyrSparklyr_DEVdplyr_DEVsparklyr.md -------------------------------------------------------------------------------- /issues/HeadIssue.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/issues/HeadIssue.Rmd -------------------------------------------------------------------------------- /issues/HeadIssue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/issues/HeadIssue.md -------------------------------------------------------------------------------- /issues/JoinNamesDups.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/issues/JoinNamesDups.Rmd -------------------------------------------------------------------------------- /issues/JoinNamesDups.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/issues/JoinNamesDups.md -------------------------------------------------------------------------------- /issues/MySQLSelfJoin.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/issues/MySQLSelfJoin.Rmd -------------------------------------------------------------------------------- /issues/MySQLSelfJoin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/issues/MySQLSelfJoin.md -------------------------------------------------------------------------------- /issues/MySQL_mutate.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/issues/MySQL_mutate.Rmd -------------------------------------------------------------------------------- /issues/MySQL_mutate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/issues/MySQL_mutate.md -------------------------------------------------------------------------------- /issues/MySQLcast.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/issues/MySQLcast.Rmd -------------------------------------------------------------------------------- /issues/MySQLcast.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/issues/MySQLcast.md -------------------------------------------------------------------------------- /issues/NAvalues.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/issues/NAvalues.Rmd -------------------------------------------------------------------------------- /issues/NAvalues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/issues/NAvalues.md -------------------------------------------------------------------------------- /issues/README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/issues/README.Rmd -------------------------------------------------------------------------------- /issues/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/issues/README.md -------------------------------------------------------------------------------- /issues/SQLiteColtypes.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/issues/SQLiteColtypes.Rmd -------------------------------------------------------------------------------- /issues/SQLiteColtypes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/issues/SQLiteColtypes.md -------------------------------------------------------------------------------- /issues/SQLitesd.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/issues/SQLitesd.Rmd -------------------------------------------------------------------------------- /issues/SQLitesd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/issues/SQLitesd.md -------------------------------------------------------------------------------- /issues/SparkNAIssue.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/issues/SparkNAIssue.Rmd -------------------------------------------------------------------------------- /issues/SparkNAIssue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/issues/SparkNAIssue.md -------------------------------------------------------------------------------- /issues/SparklyrRename.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/issues/SparklyrRename.Rmd -------------------------------------------------------------------------------- /issues/SparklyrRename.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/issues/SparklyrRename.md -------------------------------------------------------------------------------- /issues/TrailingRefIssue.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/issues/TrailingRefIssue.Rmd -------------------------------------------------------------------------------- /issues/TrailingRefIssue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/issues/TrailingRefIssue.md -------------------------------------------------------------------------------- /issues/UnionIssue.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/issues/UnionIssue.Rmd -------------------------------------------------------------------------------- /issues/UnionIssue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/issues/UnionIssue.md -------------------------------------------------------------------------------- /issues/arrangecompute.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/issues/arrangecompute.Rmd -------------------------------------------------------------------------------- /issues/arrangecompute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/issues/arrangecompute.md -------------------------------------------------------------------------------- /issues/copyIssueMySQL.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/issues/copyIssueMySQL.Rmd -------------------------------------------------------------------------------- /issues/copyIssueMySQL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/issues/copyIssueMySQL.md -------------------------------------------------------------------------------- /issues/copyissue162.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/issues/copyissue162.Rmd -------------------------------------------------------------------------------- /issues/copyissue162.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/issues/copyissue162.md -------------------------------------------------------------------------------- /issues/copyissue200.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/issues/copyissue200.Rmd -------------------------------------------------------------------------------- /issues/copyissue200.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/issues/copyissue200.md -------------------------------------------------------------------------------- /issues/factorissue.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/issues/factorissue.Rmd -------------------------------------------------------------------------------- /issues/factorissue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/issues/factorissue.md -------------------------------------------------------------------------------- /issues/union_all_issue.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/issues/union_all_issue.Rmd -------------------------------------------------------------------------------- /issues/union_all_issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/issues/union_all_issue.md -------------------------------------------------------------------------------- /man/addConstantColumn.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/man/addConstantColumn.Rd -------------------------------------------------------------------------------- /man/buildJoinPlan.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/man/buildJoinPlan.Rd -------------------------------------------------------------------------------- /man/dplyr_src_to_db_handle.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/man/dplyr_src_to_db_handle.Rd -------------------------------------------------------------------------------- /man/example_employeeAndDate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/man/example_employeeAndDate.Rd -------------------------------------------------------------------------------- /man/executeLeftJoinPlan.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/man/executeLeftJoinPlan.Rd -------------------------------------------------------------------------------- /man/expandColumn.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/man/expandColumn.Rd -------------------------------------------------------------------------------- /man/gapply.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/man/gapply.Rd -------------------------------------------------------------------------------- /man/grapes-land-grapes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/man/grapes-land-grapes.Rd -------------------------------------------------------------------------------- /man/inspectDescrAndJoinPlan.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/man/inspectDescrAndJoinPlan.Rd -------------------------------------------------------------------------------- /man/key_inspector_all_cols.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/man/key_inspector_all_cols.Rd -------------------------------------------------------------------------------- /man/key_inspector_postgresql.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/man/key_inspector_postgresql.Rd -------------------------------------------------------------------------------- /man/key_inspector_sqlite.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/man/key_inspector_sqlite.Rd -------------------------------------------------------------------------------- /man/keysAreUnique.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/man/keysAreUnique.Rd -------------------------------------------------------------------------------- /man/makeJoinDiagramSpec.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/man/makeJoinDiagramSpec.Rd -------------------------------------------------------------------------------- /man/replyr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/man/replyr.Rd -------------------------------------------------------------------------------- /man/replyr_add_ids.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/man/replyr_add_ids.Rd -------------------------------------------------------------------------------- /man/replyr_apply_f_mapped.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/man/replyr_apply_f_mapped.Rd -------------------------------------------------------------------------------- /man/replyr_arrange.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/man/replyr_arrange.Rd -------------------------------------------------------------------------------- /man/replyr_bind_rows.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/man/replyr_bind_rows.Rd -------------------------------------------------------------------------------- /man/replyr_check_ranks.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/man/replyr_check_ranks.Rd -------------------------------------------------------------------------------- /man/replyr_coalesce.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/man/replyr_coalesce.Rd -------------------------------------------------------------------------------- /man/replyr_colClasses.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/man/replyr_colClasses.Rd -------------------------------------------------------------------------------- /man/replyr_copy_from.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/man/replyr_copy_from.Rd -------------------------------------------------------------------------------- /man/replyr_copy_to.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/man/replyr_copy_to.Rd -------------------------------------------------------------------------------- /man/replyr_dim.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/man/replyr_dim.Rd -------------------------------------------------------------------------------- /man/replyr_filter.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/man/replyr_filter.Rd -------------------------------------------------------------------------------- /man/replyr_get_src.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/man/replyr_get_src.Rd -------------------------------------------------------------------------------- /man/replyr_group_by.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/man/replyr_group_by.Rd -------------------------------------------------------------------------------- /man/replyr_has_table.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/man/replyr_has_table.Rd -------------------------------------------------------------------------------- /man/replyr_hasrows.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/man/replyr_hasrows.Rd -------------------------------------------------------------------------------- /man/replyr_inTest.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/man/replyr_inTest.Rd -------------------------------------------------------------------------------- /man/replyr_is_MySQL_data.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/man/replyr_is_MySQL_data.Rd -------------------------------------------------------------------------------- /man/replyr_is_Spark_data.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/man/replyr_is_Spark_data.Rd -------------------------------------------------------------------------------- /man/replyr_is_local_data.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/man/replyr_is_local_data.Rd -------------------------------------------------------------------------------- /man/replyr_list_tables.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/man/replyr_list_tables.Rd -------------------------------------------------------------------------------- /man/replyr_mapRestrictCols.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/man/replyr_mapRestrictCols.Rd -------------------------------------------------------------------------------- /man/replyr_ncol.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/man/replyr_ncol.Rd -------------------------------------------------------------------------------- /man/replyr_nrow.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/man/replyr_nrow.Rd -------------------------------------------------------------------------------- /man/replyr_quantile.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/man/replyr_quantile.Rd -------------------------------------------------------------------------------- /man/replyr_quantilec.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/man/replyr_quantilec.Rd -------------------------------------------------------------------------------- /man/replyr_rename.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/man/replyr_rename.Rd -------------------------------------------------------------------------------- /man/replyr_reverseMap.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/man/replyr_reverseMap.Rd -------------------------------------------------------------------------------- /man/replyr_select.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/man/replyr_select.Rd -------------------------------------------------------------------------------- /man/replyr_split.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/man/replyr_split.Rd -------------------------------------------------------------------------------- /man/replyr_summary.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/man/replyr_summary.Rd -------------------------------------------------------------------------------- /man/replyr_testCols.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/man/replyr_testCols.Rd -------------------------------------------------------------------------------- /man/replyr_union_all.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/man/replyr_union_all.Rd -------------------------------------------------------------------------------- /man/replyr_uniqueValues.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/man/replyr_uniqueValues.Rd -------------------------------------------------------------------------------- /man/tableDescription.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/man/tableDescription.Rd -------------------------------------------------------------------------------- /man/topoSortTables.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/man/topoSortTables.Rd -------------------------------------------------------------------------------- /replyr.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/replyr.Rproj -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/testOne.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/tests/testthat/testOne.R -------------------------------------------------------------------------------- /tests/testthat/test_gapply.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/tests/testthat/test_gapply.R -------------------------------------------------------------------------------- /tests/testthat/test_grapes-land-grapes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/tests/testthat/test_grapes-land-grapes.R -------------------------------------------------------------------------------- /tests/testthat/test_let.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/tests/testthat/test_let.R -------------------------------------------------------------------------------- /tests/testthat/test_replyr_bind_rows.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/tests/testthat/test_replyr_bind_rows.R -------------------------------------------------------------------------------- /tests/testthat/test_replyr_check_ranks.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/tests/testthat/test_replyr_check_ranks.R -------------------------------------------------------------------------------- /tests/testthat/test_replyr_colClasses.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/tests/testthat/test_replyr_colClasses.R -------------------------------------------------------------------------------- /tests/testthat/test_replyr_copy_from.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/tests/testthat/test_replyr_copy_from.R -------------------------------------------------------------------------------- /tests/testthat/test_replyr_copy_to.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/tests/testthat/test_replyr_copy_to.R -------------------------------------------------------------------------------- /tests/testthat/test_replyr_dim.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/tests/testthat/test_replyr_dim.R -------------------------------------------------------------------------------- /tests/testthat/test_replyr_filter.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/tests/testthat/test_replyr_filter.R -------------------------------------------------------------------------------- /tests/testthat/test_replyr_inTest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/tests/testthat/test_replyr_inTest.R -------------------------------------------------------------------------------- /tests/testthat/test_replyr_mapRestrictCols.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/tests/testthat/test_replyr_mapRestrictCols.R -------------------------------------------------------------------------------- /tests/testthat/test_replyr_nrow.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/tests/testthat/test_replyr_nrow.R -------------------------------------------------------------------------------- /tests/testthat/test_replyr_quantile.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/tests/testthat/test_replyr_quantile.R -------------------------------------------------------------------------------- /tests/testthat/test_replyr_quantilec.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/tests/testthat/test_replyr_quantilec.R -------------------------------------------------------------------------------- /tests/testthat/test_replyr_split.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/tests/testthat/test_replyr_split.R -------------------------------------------------------------------------------- /tests/testthat/test_replyr_summary.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/tests/testthat/test_replyr_summary.R -------------------------------------------------------------------------------- /tests/testthat/test_replyr_testCols.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/tests/testthat/test_replyr_testCols.R -------------------------------------------------------------------------------- /tests/testthat/test_replyr_uniqueValues.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/tests/testthat/test_replyr_uniqueValues.R -------------------------------------------------------------------------------- /tools/replyrs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/tools/replyrs.png -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/vignettes/.gitignore -------------------------------------------------------------------------------- /vignettes/DependencySorting.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/vignettes/DependencySorting.Rmd -------------------------------------------------------------------------------- /vignettes/DependencySorting_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/vignettes/DependencySorting_d.png -------------------------------------------------------------------------------- /vignettes/DependencySorting_ig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/vignettes/DependencySorting_ig.png -------------------------------------------------------------------------------- /vignettes/ParametricExample.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/vignettes/ParametricExample.Rmd -------------------------------------------------------------------------------- /vignettes/coalesce.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/vignettes/coalesce.Rmd -------------------------------------------------------------------------------- /vignettes/joinController.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/vignettes/joinController.Rmd -------------------------------------------------------------------------------- /vignettes/joinController1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/vignettes/joinController1.png -------------------------------------------------------------------------------- /vignettes/letExample.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/vignettes/letExample.Rmd -------------------------------------------------------------------------------- /vignettes/replyr.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/vignettes/replyr.Rmd -------------------------------------------------------------------------------- /vignettes/replyrs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/vignettes/replyrs.png -------------------------------------------------------------------------------- /vignettes/summary.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WinVector/replyr/HEAD/vignettes/summary.Rmd --------------------------------------------------------------------------------