├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ ├── R-CMD-check.yaml │ └── check-standard.yaml ├── .gitignore ├── CONDUCT.md ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── NEWS.md ├── R ├── dependencies.R ├── hierarchy.R ├── igraph.R ├── json.R ├── party.R ├── partykit_unexported.R ├── table.R └── v8.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── codecov.yml ├── cran-comments.md ├── d3R.Rproj ├── docs ├── 404.html ├── CONDUCT.html ├── LICENSE-text.html ├── authors.html ├── bootstrap-toc.css ├── bootstrap-toc.js ├── docsearch.css ├── docsearch.js ├── index.html ├── link.svg ├── news │ └── index.html ├── pkgdown.css ├── pkgdown.js ├── pkgdown.yml └── reference │ ├── Rplot001.png │ ├── change_to_name.html │ ├── d3_dep_jetpack.html │ ├── d3_dep_v3.html │ ├── d3_dep_v4.html │ ├── d3_dep_v5.html │ ├── d3_dep_v6.html │ ├── d3_dep_v7.html │ ├── d3_igraph.html │ ├── d3_json.html │ ├── d3_nest.html │ ├── d3_party.html │ ├── d3_table.html │ ├── d3_v8.html │ ├── index.html │ ├── libs │ ├── htmlwidgets-1.6.1 │ │ └── htmlwidgets.js │ ├── jsonedit-binding-3.0.0 │ │ └── jsonedit.js │ └── jsoneditor-5.25.6 │ │ ├── img │ │ ├── jsoneditor-icons.png │ │ └── jsoneditor-icons.svg │ │ ├── jsoneditor.min.css │ │ └── jsoneditor.min.js │ ├── promote_na.html │ └── promote_na_one.html ├── inst ├── examples │ ├── example_d3_annotation.R │ ├── example_d3_jetpack.R │ ├── example_d3_v8.R │ ├── example_draw_igraph_with_layout.R │ ├── example_igraph.R │ ├── example_rpart.R │ ├── example_table.R │ ├── example_treemap.R │ └── why_d3R.Rmd └── www │ └── d3 │ ├── d3-jetpack │ ├── LICENSE │ ├── README.md │ ├── dist │ │ └── d3-jetpack.js │ └── package.json │ ├── v3 │ ├── LICENSE │ └── dist │ │ └── d3.min.js │ ├── v4 │ ├── API.md │ ├── CHANGES.md │ ├── LICENSE │ ├── README.md │ └── dist │ │ └── d3.min.js │ ├── v5 │ ├── API.md │ ├── CHANGES.md │ ├── LICENSE │ ├── README.md │ └── dist │ │ └── d3.min.js │ ├── v6 │ ├── API.md │ ├── CHANGES.md │ ├── LICENSE │ ├── README.md │ └── dist │ │ └── d3.min.js │ └── v7 │ ├── API.md │ ├── CHANGES.md │ ├── LICENSE │ ├── README.md │ └── dist │ └── d3.min.js ├── man ├── change_to_name.Rd ├── d3_dep_jetpack.Rd ├── d3_dep_v3.Rd ├── d3_dep_v4.Rd ├── d3_dep_v5.Rd ├── d3_dep_v6.Rd ├── d3_dep_v7.Rd ├── d3_igraph.Rd ├── d3_json.Rd ├── d3_nest.Rd ├── d3_party.Rd ├── d3_table.Rd ├── d3_v8.Rd ├── promote_na.Rd └── promote_na_one.Rd └── tests ├── testthat.R └── testthat ├── test_deps.R ├── test_hier.R ├── test_igraph.R ├── test_table.R └── test_v8.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/check-standard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/.github/workflows/check-standard.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/.gitignore -------------------------------------------------------------------------------- /CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/CONDUCT.md -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/LICENSE -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/dependencies.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/R/dependencies.R -------------------------------------------------------------------------------- /R/hierarchy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/R/hierarchy.R -------------------------------------------------------------------------------- /R/igraph.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/R/igraph.R -------------------------------------------------------------------------------- /R/json.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/R/json.R -------------------------------------------------------------------------------- /R/party.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/R/party.R -------------------------------------------------------------------------------- /R/partykit_unexported.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/R/partykit_unexported.R -------------------------------------------------------------------------------- /R/table.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/R/table.R -------------------------------------------------------------------------------- /R/v8.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/R/v8.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- 1 | comment: false 2 | -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/cran-comments.md -------------------------------------------------------------------------------- /d3R.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/d3R.Rproj -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/CONDUCT.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/docs/CONDUCT.html -------------------------------------------------------------------------------- /docs/LICENSE-text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/docs/LICENSE-text.html -------------------------------------------------------------------------------- /docs/authors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/docs/authors.html -------------------------------------------------------------------------------- /docs/bootstrap-toc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/docs/bootstrap-toc.css -------------------------------------------------------------------------------- /docs/bootstrap-toc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/docs/bootstrap-toc.js -------------------------------------------------------------------------------- /docs/docsearch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/docs/docsearch.css -------------------------------------------------------------------------------- /docs/docsearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/docs/docsearch.js -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/docs/link.svg -------------------------------------------------------------------------------- /docs/news/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/docs/news/index.html -------------------------------------------------------------------------------- /docs/pkgdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/docs/pkgdown.css -------------------------------------------------------------------------------- /docs/pkgdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/docs/pkgdown.js -------------------------------------------------------------------------------- /docs/pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/docs/pkgdown.yml -------------------------------------------------------------------------------- /docs/reference/Rplot001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/docs/reference/Rplot001.png -------------------------------------------------------------------------------- /docs/reference/change_to_name.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/docs/reference/change_to_name.html -------------------------------------------------------------------------------- /docs/reference/d3_dep_jetpack.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/docs/reference/d3_dep_jetpack.html -------------------------------------------------------------------------------- /docs/reference/d3_dep_v3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/docs/reference/d3_dep_v3.html -------------------------------------------------------------------------------- /docs/reference/d3_dep_v4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/docs/reference/d3_dep_v4.html -------------------------------------------------------------------------------- /docs/reference/d3_dep_v5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/docs/reference/d3_dep_v5.html -------------------------------------------------------------------------------- /docs/reference/d3_dep_v6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/docs/reference/d3_dep_v6.html -------------------------------------------------------------------------------- /docs/reference/d3_dep_v7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/docs/reference/d3_dep_v7.html -------------------------------------------------------------------------------- /docs/reference/d3_igraph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/docs/reference/d3_igraph.html -------------------------------------------------------------------------------- /docs/reference/d3_json.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/docs/reference/d3_json.html -------------------------------------------------------------------------------- /docs/reference/d3_nest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/docs/reference/d3_nest.html -------------------------------------------------------------------------------- /docs/reference/d3_party.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/docs/reference/d3_party.html -------------------------------------------------------------------------------- /docs/reference/d3_table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/docs/reference/d3_table.html -------------------------------------------------------------------------------- /docs/reference/d3_v8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/docs/reference/d3_v8.html -------------------------------------------------------------------------------- /docs/reference/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/docs/reference/index.html -------------------------------------------------------------------------------- /docs/reference/libs/htmlwidgets-1.6.1/htmlwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/docs/reference/libs/htmlwidgets-1.6.1/htmlwidgets.js -------------------------------------------------------------------------------- /docs/reference/libs/jsonedit-binding-3.0.0/jsonedit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/docs/reference/libs/jsonedit-binding-3.0.0/jsonedit.js -------------------------------------------------------------------------------- /docs/reference/libs/jsoneditor-5.25.6/img/jsoneditor-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/docs/reference/libs/jsoneditor-5.25.6/img/jsoneditor-icons.png -------------------------------------------------------------------------------- /docs/reference/libs/jsoneditor-5.25.6/img/jsoneditor-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/docs/reference/libs/jsoneditor-5.25.6/img/jsoneditor-icons.svg -------------------------------------------------------------------------------- /docs/reference/libs/jsoneditor-5.25.6/jsoneditor.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/docs/reference/libs/jsoneditor-5.25.6/jsoneditor.min.css -------------------------------------------------------------------------------- /docs/reference/libs/jsoneditor-5.25.6/jsoneditor.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/docs/reference/libs/jsoneditor-5.25.6/jsoneditor.min.js -------------------------------------------------------------------------------- /docs/reference/promote_na.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/docs/reference/promote_na.html -------------------------------------------------------------------------------- /docs/reference/promote_na_one.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/docs/reference/promote_na_one.html -------------------------------------------------------------------------------- /inst/examples/example_d3_annotation.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/inst/examples/example_d3_annotation.R -------------------------------------------------------------------------------- /inst/examples/example_d3_jetpack.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/inst/examples/example_d3_jetpack.R -------------------------------------------------------------------------------- /inst/examples/example_d3_v8.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/inst/examples/example_d3_v8.R -------------------------------------------------------------------------------- /inst/examples/example_draw_igraph_with_layout.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/inst/examples/example_draw_igraph_with_layout.R -------------------------------------------------------------------------------- /inst/examples/example_igraph.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/inst/examples/example_igraph.R -------------------------------------------------------------------------------- /inst/examples/example_rpart.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/inst/examples/example_rpart.R -------------------------------------------------------------------------------- /inst/examples/example_table.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/inst/examples/example_table.R -------------------------------------------------------------------------------- /inst/examples/example_treemap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/inst/examples/example_treemap.R -------------------------------------------------------------------------------- /inst/examples/why_d3R.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/inst/examples/why_d3R.Rmd -------------------------------------------------------------------------------- /inst/www/d3/d3-jetpack/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/inst/www/d3/d3-jetpack/LICENSE -------------------------------------------------------------------------------- /inst/www/d3/d3-jetpack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/inst/www/d3/d3-jetpack/README.md -------------------------------------------------------------------------------- /inst/www/d3/d3-jetpack/dist/d3-jetpack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/inst/www/d3/d3-jetpack/dist/d3-jetpack.js -------------------------------------------------------------------------------- /inst/www/d3/d3-jetpack/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/inst/www/d3/d3-jetpack/package.json -------------------------------------------------------------------------------- /inst/www/d3/v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/inst/www/d3/v3/LICENSE -------------------------------------------------------------------------------- /inst/www/d3/v3/dist/d3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/inst/www/d3/v3/dist/d3.min.js -------------------------------------------------------------------------------- /inst/www/d3/v4/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/inst/www/d3/v4/API.md -------------------------------------------------------------------------------- /inst/www/d3/v4/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/inst/www/d3/v4/CHANGES.md -------------------------------------------------------------------------------- /inst/www/d3/v4/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/inst/www/d3/v4/LICENSE -------------------------------------------------------------------------------- /inst/www/d3/v4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/inst/www/d3/v4/README.md -------------------------------------------------------------------------------- /inst/www/d3/v4/dist/d3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/inst/www/d3/v4/dist/d3.min.js -------------------------------------------------------------------------------- /inst/www/d3/v5/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/inst/www/d3/v5/API.md -------------------------------------------------------------------------------- /inst/www/d3/v5/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/inst/www/d3/v5/CHANGES.md -------------------------------------------------------------------------------- /inst/www/d3/v5/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/inst/www/d3/v5/LICENSE -------------------------------------------------------------------------------- /inst/www/d3/v5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/inst/www/d3/v5/README.md -------------------------------------------------------------------------------- /inst/www/d3/v5/dist/d3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/inst/www/d3/v5/dist/d3.min.js -------------------------------------------------------------------------------- /inst/www/d3/v6/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/inst/www/d3/v6/API.md -------------------------------------------------------------------------------- /inst/www/d3/v6/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/inst/www/d3/v6/CHANGES.md -------------------------------------------------------------------------------- /inst/www/d3/v6/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/inst/www/d3/v6/LICENSE -------------------------------------------------------------------------------- /inst/www/d3/v6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/inst/www/d3/v6/README.md -------------------------------------------------------------------------------- /inst/www/d3/v6/dist/d3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/inst/www/d3/v6/dist/d3.min.js -------------------------------------------------------------------------------- /inst/www/d3/v7/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/inst/www/d3/v7/API.md -------------------------------------------------------------------------------- /inst/www/d3/v7/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/inst/www/d3/v7/CHANGES.md -------------------------------------------------------------------------------- /inst/www/d3/v7/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/inst/www/d3/v7/LICENSE -------------------------------------------------------------------------------- /inst/www/d3/v7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/inst/www/d3/v7/README.md -------------------------------------------------------------------------------- /inst/www/d3/v7/dist/d3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/inst/www/d3/v7/dist/d3.min.js -------------------------------------------------------------------------------- /man/change_to_name.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/man/change_to_name.Rd -------------------------------------------------------------------------------- /man/d3_dep_jetpack.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/man/d3_dep_jetpack.Rd -------------------------------------------------------------------------------- /man/d3_dep_v3.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/man/d3_dep_v3.Rd -------------------------------------------------------------------------------- /man/d3_dep_v4.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/man/d3_dep_v4.Rd -------------------------------------------------------------------------------- /man/d3_dep_v5.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/man/d3_dep_v5.Rd -------------------------------------------------------------------------------- /man/d3_dep_v6.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/man/d3_dep_v6.Rd -------------------------------------------------------------------------------- /man/d3_dep_v7.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/man/d3_dep_v7.Rd -------------------------------------------------------------------------------- /man/d3_igraph.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/man/d3_igraph.Rd -------------------------------------------------------------------------------- /man/d3_json.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/man/d3_json.Rd -------------------------------------------------------------------------------- /man/d3_nest.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/man/d3_nest.Rd -------------------------------------------------------------------------------- /man/d3_party.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/man/d3_party.Rd -------------------------------------------------------------------------------- /man/d3_table.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/man/d3_table.Rd -------------------------------------------------------------------------------- /man/d3_v8.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/man/d3_v8.Rd -------------------------------------------------------------------------------- /man/promote_na.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/man/promote_na.Rd -------------------------------------------------------------------------------- /man/promote_na_one.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/man/promote_na_one.Rd -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test_deps.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/tests/testthat/test_deps.R -------------------------------------------------------------------------------- /tests/testthat/test_hier.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/tests/testthat/test_hier.R -------------------------------------------------------------------------------- /tests/testthat/test_igraph.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/tests/testthat/test_igraph.R -------------------------------------------------------------------------------- /tests/testthat/test_table.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/tests/testthat/test_table.R -------------------------------------------------------------------------------- /tests/testthat/test_v8.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timelyportfolio/d3r/HEAD/tests/testthat/test_v8.R --------------------------------------------------------------------------------