├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── Meta └── vignette.rds ├── NAMESPACE ├── R ├── _global.R ├── arrange.R ├── as_fst.R ├── complete.R ├── count.R ├── cummean.R ├── distinct.R ├── drop_delete_na.R ├── dummy.R ├── fill.R ├── filter.R ├── fst.R ├── fst_io.R ├── group_by.R ├── join.R ├── lag_lead.R ├── long_wide.R ├── mutate.R ├── nest.R ├── nth.R ├── object_size.R ├── on_attach.R ├── pull.R ├── read_csv.R ├── relocate.R ├── replace.R ├── rowwise.R ├── select.R ├── separate.R ├── slice.R ├── summarise.R ├── sys_time_print.R ├── tidymat.R ├── uncount.R ├── unite.R └── utf8.R ├── README.md ├── cran-comments.md ├── dev.R ├── docs ├── 404.html ├── LICENSE-text.html ├── LICENSE.html ├── _pkgdown.yml ├── apple-touch-icon-120x120.png ├── apple-touch-icon-152x152.png ├── apple-touch-icon-180x180.png ├── apple-touch-icon-60x60.png ├── apple-touch-icon-76x76.png ├── apple-touch-icon.png ├── articles │ ├── Introduction.html │ ├── Introduction_files │ │ ├── d3-3.5.6 │ │ │ ├── LICENSE │ │ │ └── d3.min.js │ │ ├── highlight-6.2.0 │ │ │ ├── LICENSE │ │ │ ├── default.css │ │ │ ├── highlight.js │ │ │ └── textmate.css │ │ ├── htmlwidgets-1.5.1 │ │ │ └── htmlwidgets.js │ │ ├── htmlwidgets-1.6.1 │ │ │ └── htmlwidgets.js │ │ ├── jquery-1.12.4 │ │ │ └── jquery.min.js │ │ ├── profvis-0.3.6.9000 │ │ │ ├── profvis.css │ │ │ ├── profvis.js │ │ │ └── scroll.js │ │ ├── profvis-0.3.6 │ │ │ ├── profvis.css │ │ │ └── profvis.js │ │ ├── profvis-binding-0.3.6 │ │ │ └── profvis.js │ │ └── profvis-binding-0.3.7 │ │ │ └── profvis.js │ └── index.html ├── authors.html ├── bootstrap-toc.css ├── bootstrap-toc.js ├── docsearch.css ├── docsearch.js ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── index.html ├── link.svg ├── logo.png ├── performance.png ├── pkgdown.css ├── pkgdown.js ├── pkgdown.yml ├── reference │ ├── Rplot001.png │ ├── arrange.html │ ├── as_fst.html │ ├── complete.html │ ├── count.html │ ├── cummean.html │ ├── distinct.html │ ├── drop_delete_na.html │ ├── dummy.html │ ├── figures │ │ └── logo.png │ ├── fill.html │ ├── filter.html │ ├── fst.html │ ├── fst_io.html │ ├── group.html │ ├── index.html │ ├── join.html │ ├── lag_lead.html │ ├── long_wide.html │ ├── mutate.html │ ├── nest.html │ ├── nth.html │ ├── object_size.html │ ├── pull.html │ ├── read_csv.html │ ├── reexports.html │ ├── relocate.html │ ├── replace_vars.html │ ├── rowwise.html │ ├── select.html │ ├── separate.html │ ├── slice.html │ ├── summarise.html │ ├── sys_time_print.html │ ├── tidymat.html │ ├── uncount.html │ ├── unite.html │ └── utf8_encoding.html └── sitemap.xml ├── man ├── arrange.Rd ├── as_fst.Rd ├── complete.Rd ├── count.Rd ├── cummean.Rd ├── distinct.Rd ├── drop_delete_na.Rd ├── dummy.Rd ├── figures │ └── logo.png ├── fill.Rd ├── filter.Rd ├── fst.Rd ├── fst_io.Rd ├── group.Rd ├── join.Rd ├── lag_lead.Rd ├── long_wide.Rd ├── mutate.Rd ├── nest.Rd ├── nth.Rd ├── object_size.Rd ├── pull.Rd ├── read_csv.Rd ├── reexports.Rd ├── relocate.Rd ├── replace_vars.Rd ├── rowwise.Rd ├── select.Rd ├── separate.Rd ├── slice.Rd ├── summarise.Rd ├── sys_time_print.Rd ├── tidymat.Rd ├── uncount.Rd ├── unite.Rd └── utf8_encoding.Rd ├── performance.png ├── pkgdown └── favicon │ ├── apple-touch-icon-120x120.png │ ├── apple-touch-icon-152x152.png │ ├── apple-touch-icon-180x180.png │ ├── apple-touch-icon-60x60.png │ ├── apple-touch-icon-76x76.png │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ └── favicon.ico ├── tidyft.Rproj └── vignettes └── Introduction.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Meta/vignette.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/Meta/vignette.rds -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/_global.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/R/_global.R -------------------------------------------------------------------------------- /R/arrange.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/R/arrange.R -------------------------------------------------------------------------------- /R/as_fst.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/R/as_fst.R -------------------------------------------------------------------------------- /R/complete.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/R/complete.R -------------------------------------------------------------------------------- /R/count.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/R/count.R -------------------------------------------------------------------------------- /R/cummean.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/R/cummean.R -------------------------------------------------------------------------------- /R/distinct.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/R/distinct.R -------------------------------------------------------------------------------- /R/drop_delete_na.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/R/drop_delete_na.R -------------------------------------------------------------------------------- /R/dummy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/R/dummy.R -------------------------------------------------------------------------------- /R/fill.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/R/fill.R -------------------------------------------------------------------------------- /R/filter.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/R/filter.R -------------------------------------------------------------------------------- /R/fst.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/R/fst.R -------------------------------------------------------------------------------- /R/fst_io.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/R/fst_io.R -------------------------------------------------------------------------------- /R/group_by.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/R/group_by.R -------------------------------------------------------------------------------- /R/join.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/R/join.R -------------------------------------------------------------------------------- /R/lag_lead.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/R/lag_lead.R -------------------------------------------------------------------------------- /R/long_wide.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/R/long_wide.R -------------------------------------------------------------------------------- /R/mutate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/R/mutate.R -------------------------------------------------------------------------------- /R/nest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/R/nest.R -------------------------------------------------------------------------------- /R/nth.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/R/nth.R -------------------------------------------------------------------------------- /R/object_size.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/R/object_size.R -------------------------------------------------------------------------------- /R/on_attach.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/R/on_attach.R -------------------------------------------------------------------------------- /R/pull.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/R/pull.R -------------------------------------------------------------------------------- /R/read_csv.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/R/read_csv.R -------------------------------------------------------------------------------- /R/relocate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/R/relocate.R -------------------------------------------------------------------------------- /R/replace.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/R/replace.R -------------------------------------------------------------------------------- /R/rowwise.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/R/rowwise.R -------------------------------------------------------------------------------- /R/select.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/R/select.R -------------------------------------------------------------------------------- /R/separate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/R/separate.R -------------------------------------------------------------------------------- /R/slice.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/R/slice.R -------------------------------------------------------------------------------- /R/summarise.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/R/summarise.R -------------------------------------------------------------------------------- /R/sys_time_print.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/R/sys_time_print.R -------------------------------------------------------------------------------- /R/tidymat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/R/tidymat.R -------------------------------------------------------------------------------- /R/uncount.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/R/uncount.R -------------------------------------------------------------------------------- /R/unite.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/R/unite.R -------------------------------------------------------------------------------- /R/utf8.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/R/utf8.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/README.md -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/cran-comments.md -------------------------------------------------------------------------------- /dev.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/dev.R -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/LICENSE-text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/LICENSE-text.html -------------------------------------------------------------------------------- /docs/LICENSE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/LICENSE.html -------------------------------------------------------------------------------- /docs/_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/_pkgdown.yml -------------------------------------------------------------------------------- /docs/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /docs/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /docs/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /docs/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /docs/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /docs/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/apple-touch-icon.png -------------------------------------------------------------------------------- /docs/articles/Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/articles/Introduction.html -------------------------------------------------------------------------------- /docs/articles/Introduction_files/d3-3.5.6/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/articles/Introduction_files/d3-3.5.6/LICENSE -------------------------------------------------------------------------------- /docs/articles/Introduction_files/d3-3.5.6/d3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/articles/Introduction_files/d3-3.5.6/d3.min.js -------------------------------------------------------------------------------- /docs/articles/Introduction_files/highlight-6.2.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/articles/Introduction_files/highlight-6.2.0/LICENSE -------------------------------------------------------------------------------- /docs/articles/Introduction_files/highlight-6.2.0/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/articles/Introduction_files/highlight-6.2.0/default.css -------------------------------------------------------------------------------- /docs/articles/Introduction_files/highlight-6.2.0/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/articles/Introduction_files/highlight-6.2.0/highlight.js -------------------------------------------------------------------------------- /docs/articles/Introduction_files/highlight-6.2.0/textmate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/articles/Introduction_files/highlight-6.2.0/textmate.css -------------------------------------------------------------------------------- /docs/articles/Introduction_files/htmlwidgets-1.5.1/htmlwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/articles/Introduction_files/htmlwidgets-1.5.1/htmlwidgets.js -------------------------------------------------------------------------------- /docs/articles/Introduction_files/htmlwidgets-1.6.1/htmlwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/articles/Introduction_files/htmlwidgets-1.6.1/htmlwidgets.js -------------------------------------------------------------------------------- /docs/articles/Introduction_files/jquery-1.12.4/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/articles/Introduction_files/jquery-1.12.4/jquery.min.js -------------------------------------------------------------------------------- /docs/articles/Introduction_files/profvis-0.3.6.9000/profvis.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/articles/Introduction_files/profvis-0.3.6.9000/profvis.css -------------------------------------------------------------------------------- /docs/articles/Introduction_files/profvis-0.3.6.9000/profvis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/articles/Introduction_files/profvis-0.3.6.9000/profvis.js -------------------------------------------------------------------------------- /docs/articles/Introduction_files/profvis-0.3.6.9000/scroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/articles/Introduction_files/profvis-0.3.6.9000/scroll.js -------------------------------------------------------------------------------- /docs/articles/Introduction_files/profvis-0.3.6/profvis.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/articles/Introduction_files/profvis-0.3.6/profvis.css -------------------------------------------------------------------------------- /docs/articles/Introduction_files/profvis-0.3.6/profvis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/articles/Introduction_files/profvis-0.3.6/profvis.js -------------------------------------------------------------------------------- /docs/articles/Introduction_files/profvis-binding-0.3.6/profvis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/articles/Introduction_files/profvis-binding-0.3.6/profvis.js -------------------------------------------------------------------------------- /docs/articles/Introduction_files/profvis-binding-0.3.7/profvis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/articles/Introduction_files/profvis-binding-0.3.7/profvis.js -------------------------------------------------------------------------------- /docs/articles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/articles/index.html -------------------------------------------------------------------------------- /docs/authors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/authors.html -------------------------------------------------------------------------------- /docs/bootstrap-toc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/bootstrap-toc.css -------------------------------------------------------------------------------- /docs/bootstrap-toc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/bootstrap-toc.js -------------------------------------------------------------------------------- /docs/docsearch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/docsearch.css -------------------------------------------------------------------------------- /docs/docsearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/docsearch.js -------------------------------------------------------------------------------- /docs/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/favicon-16x16.png -------------------------------------------------------------------------------- /docs/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/favicon-32x32.png -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/link.svg -------------------------------------------------------------------------------- /docs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/logo.png -------------------------------------------------------------------------------- /docs/performance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/performance.png -------------------------------------------------------------------------------- /docs/pkgdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/pkgdown.css -------------------------------------------------------------------------------- /docs/pkgdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/pkgdown.js -------------------------------------------------------------------------------- /docs/pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/pkgdown.yml -------------------------------------------------------------------------------- /docs/reference/Rplot001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/reference/Rplot001.png -------------------------------------------------------------------------------- /docs/reference/arrange.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/reference/arrange.html -------------------------------------------------------------------------------- /docs/reference/as_fst.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/reference/as_fst.html -------------------------------------------------------------------------------- /docs/reference/complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/reference/complete.html -------------------------------------------------------------------------------- /docs/reference/count.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/reference/count.html -------------------------------------------------------------------------------- /docs/reference/cummean.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/reference/cummean.html -------------------------------------------------------------------------------- /docs/reference/distinct.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/reference/distinct.html -------------------------------------------------------------------------------- /docs/reference/drop_delete_na.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/reference/drop_delete_na.html -------------------------------------------------------------------------------- /docs/reference/dummy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/reference/dummy.html -------------------------------------------------------------------------------- /docs/reference/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/reference/figures/logo.png -------------------------------------------------------------------------------- /docs/reference/fill.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/reference/fill.html -------------------------------------------------------------------------------- /docs/reference/filter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/reference/filter.html -------------------------------------------------------------------------------- /docs/reference/fst.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/reference/fst.html -------------------------------------------------------------------------------- /docs/reference/fst_io.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/reference/fst_io.html -------------------------------------------------------------------------------- /docs/reference/group.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/reference/group.html -------------------------------------------------------------------------------- /docs/reference/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/reference/index.html -------------------------------------------------------------------------------- /docs/reference/join.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/reference/join.html -------------------------------------------------------------------------------- /docs/reference/lag_lead.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/reference/lag_lead.html -------------------------------------------------------------------------------- /docs/reference/long_wide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/reference/long_wide.html -------------------------------------------------------------------------------- /docs/reference/mutate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/reference/mutate.html -------------------------------------------------------------------------------- /docs/reference/nest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/reference/nest.html -------------------------------------------------------------------------------- /docs/reference/nth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/reference/nth.html -------------------------------------------------------------------------------- /docs/reference/object_size.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/reference/object_size.html -------------------------------------------------------------------------------- /docs/reference/pull.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/reference/pull.html -------------------------------------------------------------------------------- /docs/reference/read_csv.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/reference/read_csv.html -------------------------------------------------------------------------------- /docs/reference/reexports.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/reference/reexports.html -------------------------------------------------------------------------------- /docs/reference/relocate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/reference/relocate.html -------------------------------------------------------------------------------- /docs/reference/replace_vars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/reference/replace_vars.html -------------------------------------------------------------------------------- /docs/reference/rowwise.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/reference/rowwise.html -------------------------------------------------------------------------------- /docs/reference/select.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/reference/select.html -------------------------------------------------------------------------------- /docs/reference/separate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/reference/separate.html -------------------------------------------------------------------------------- /docs/reference/slice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/reference/slice.html -------------------------------------------------------------------------------- /docs/reference/summarise.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/reference/summarise.html -------------------------------------------------------------------------------- /docs/reference/sys_time_print.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/reference/sys_time_print.html -------------------------------------------------------------------------------- /docs/reference/tidymat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/reference/tidymat.html -------------------------------------------------------------------------------- /docs/reference/uncount.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/reference/uncount.html -------------------------------------------------------------------------------- /docs/reference/unite.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/reference/unite.html -------------------------------------------------------------------------------- /docs/reference/utf8_encoding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/reference/utf8_encoding.html -------------------------------------------------------------------------------- /docs/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/docs/sitemap.xml -------------------------------------------------------------------------------- /man/arrange.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/man/arrange.Rd -------------------------------------------------------------------------------- /man/as_fst.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/man/as_fst.Rd -------------------------------------------------------------------------------- /man/complete.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/man/complete.Rd -------------------------------------------------------------------------------- /man/count.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/man/count.Rd -------------------------------------------------------------------------------- /man/cummean.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/man/cummean.Rd -------------------------------------------------------------------------------- /man/distinct.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/man/distinct.Rd -------------------------------------------------------------------------------- /man/drop_delete_na.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/man/drop_delete_na.Rd -------------------------------------------------------------------------------- /man/dummy.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/man/dummy.Rd -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/fill.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/man/fill.Rd -------------------------------------------------------------------------------- /man/filter.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/man/filter.Rd -------------------------------------------------------------------------------- /man/fst.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/man/fst.Rd -------------------------------------------------------------------------------- /man/fst_io.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/man/fst_io.Rd -------------------------------------------------------------------------------- /man/group.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/man/group.Rd -------------------------------------------------------------------------------- /man/join.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/man/join.Rd -------------------------------------------------------------------------------- /man/lag_lead.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/man/lag_lead.Rd -------------------------------------------------------------------------------- /man/long_wide.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/man/long_wide.Rd -------------------------------------------------------------------------------- /man/mutate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/man/mutate.Rd -------------------------------------------------------------------------------- /man/nest.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/man/nest.Rd -------------------------------------------------------------------------------- /man/nth.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/man/nth.Rd -------------------------------------------------------------------------------- /man/object_size.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/man/object_size.Rd -------------------------------------------------------------------------------- /man/pull.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/man/pull.Rd -------------------------------------------------------------------------------- /man/read_csv.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/man/read_csv.Rd -------------------------------------------------------------------------------- /man/reexports.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/man/reexports.Rd -------------------------------------------------------------------------------- /man/relocate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/man/relocate.Rd -------------------------------------------------------------------------------- /man/replace_vars.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/man/replace_vars.Rd -------------------------------------------------------------------------------- /man/rowwise.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/man/rowwise.Rd -------------------------------------------------------------------------------- /man/select.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/man/select.Rd -------------------------------------------------------------------------------- /man/separate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/man/separate.Rd -------------------------------------------------------------------------------- /man/slice.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/man/slice.Rd -------------------------------------------------------------------------------- /man/summarise.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/man/summarise.Rd -------------------------------------------------------------------------------- /man/sys_time_print.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/man/sys_time_print.Rd -------------------------------------------------------------------------------- /man/tidymat.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/man/tidymat.Rd -------------------------------------------------------------------------------- /man/uncount.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/man/uncount.Rd -------------------------------------------------------------------------------- /man/unite.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/man/unite.Rd -------------------------------------------------------------------------------- /man/utf8_encoding.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/man/utf8_encoding.Rd -------------------------------------------------------------------------------- /performance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/performance.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/pkgdown/favicon/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/pkgdown/favicon/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/pkgdown/favicon/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/pkgdown/favicon/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/pkgdown/favicon/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/pkgdown/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/pkgdown/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/pkgdown/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/pkgdown/favicon/favicon.ico -------------------------------------------------------------------------------- /tidyft.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/tidyft.Rproj -------------------------------------------------------------------------------- /vignettes/Introduction.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hope-data-science/tidyft/HEAD/vignettes/Introduction.Rmd --------------------------------------------------------------------------------