├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── NAMESPACE ├── NEWS.md ├── R ├── joins.R ├── mutate.R ├── print.R ├── refresh.R ├── utils.R ├── vctrs.R ├── wrappers.R └── zz.R ├── README.Rmd ├── README.md ├── man ├── as_reactibble.Rd ├── dplyr_methods.Rd ├── is_reactibble.Rd ├── materialize.Rd ├── mutate.reactibble.Rd ├── pillar_methods.Rd ├── reactibble.Rd ├── refresh.Rd ├── rt_add_row.Rd ├── rt_bind_cols.Rd ├── rt_bind_rows.Rd └── tibble_methods.Rd ├── reactibble.Rproj ├── tests ├── testthat.R └── testthat │ └── test-reactibble.R └── tools ├── intro1.png ├── intro2.png └── rstudio.png /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodymudskipper/reactibble/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodymudskipper/reactibble/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodymudskipper/reactibble/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodymudskipper/reactibble/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/joins.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodymudskipper/reactibble/HEAD/R/joins.R -------------------------------------------------------------------------------- /R/mutate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodymudskipper/reactibble/HEAD/R/mutate.R -------------------------------------------------------------------------------- /R/print.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodymudskipper/reactibble/HEAD/R/print.R -------------------------------------------------------------------------------- /R/refresh.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodymudskipper/reactibble/HEAD/R/refresh.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodymudskipper/reactibble/HEAD/R/utils.R -------------------------------------------------------------------------------- /R/vctrs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodymudskipper/reactibble/HEAD/R/vctrs.R -------------------------------------------------------------------------------- /R/wrappers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodymudskipper/reactibble/HEAD/R/wrappers.R -------------------------------------------------------------------------------- /R/zz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodymudskipper/reactibble/HEAD/R/zz.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodymudskipper/reactibble/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodymudskipper/reactibble/HEAD/README.md -------------------------------------------------------------------------------- /man/as_reactibble.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodymudskipper/reactibble/HEAD/man/as_reactibble.Rd -------------------------------------------------------------------------------- /man/dplyr_methods.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodymudskipper/reactibble/HEAD/man/dplyr_methods.Rd -------------------------------------------------------------------------------- /man/is_reactibble.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodymudskipper/reactibble/HEAD/man/is_reactibble.Rd -------------------------------------------------------------------------------- /man/materialize.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodymudskipper/reactibble/HEAD/man/materialize.Rd -------------------------------------------------------------------------------- /man/mutate.reactibble.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodymudskipper/reactibble/HEAD/man/mutate.reactibble.Rd -------------------------------------------------------------------------------- /man/pillar_methods.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodymudskipper/reactibble/HEAD/man/pillar_methods.Rd -------------------------------------------------------------------------------- /man/reactibble.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodymudskipper/reactibble/HEAD/man/reactibble.Rd -------------------------------------------------------------------------------- /man/refresh.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodymudskipper/reactibble/HEAD/man/refresh.Rd -------------------------------------------------------------------------------- /man/rt_add_row.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodymudskipper/reactibble/HEAD/man/rt_add_row.Rd -------------------------------------------------------------------------------- /man/rt_bind_cols.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodymudskipper/reactibble/HEAD/man/rt_bind_cols.Rd -------------------------------------------------------------------------------- /man/rt_bind_rows.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodymudskipper/reactibble/HEAD/man/rt_bind_rows.Rd -------------------------------------------------------------------------------- /man/tibble_methods.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodymudskipper/reactibble/HEAD/man/tibble_methods.Rd -------------------------------------------------------------------------------- /reactibble.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodymudskipper/reactibble/HEAD/reactibble.Rproj -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodymudskipper/reactibble/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-reactibble.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodymudskipper/reactibble/HEAD/tests/testthat/test-reactibble.R -------------------------------------------------------------------------------- /tools/intro1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodymudskipper/reactibble/HEAD/tools/intro1.png -------------------------------------------------------------------------------- /tools/intro2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodymudskipper/reactibble/HEAD/tools/intro2.png -------------------------------------------------------------------------------- /tools/rstudio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodymudskipper/reactibble/HEAD/tools/rstudio.png --------------------------------------------------------------------------------