├── .devcontainer └── devcontainer.json ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── documentation-request.md │ ├── feature_request.md │ ├── site-bug-report.md │ └── submit-question.md ├── ops-bot.yaml └── workflows │ ├── deploy-cudf-java-docs.yaml │ ├── deploy.yaml │ └── pr.yaml ├── .gitignore ├── .nvmrc ├── .pre-commit-config.yaml ├── .ruby-version ├── 404.md ├── CONTRIBUTING.md ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── _config.yml ├── _data ├── docs.yml ├── previous_releases.json └── releases.json ├── _drafts └── maintainers │ ├── artifacts.md │ ├── permissions.md │ ├── projectboards.md │ ├── readthedocs.md │ └── structure.md ├── _includes ├── api-docs.html ├── bokeh.html ├── datashader.html ├── gpu-labels-table-row.html ├── gpu-labels-table.html ├── head.html ├── holoviews.html ├── hvplot.html ├── nav.html ├── plotly.html ├── seaborn.html ├── selector.html └── viz-cdn-js-css.html ├── _layouts ├── default.html ├── notice-index.html └── notice.html ├── _notices ├── rdn0001.md ├── rdn0002.md ├── rdn0003.md ├── rgn0001.md ├── rgn0002.md ├── rgn0003.md ├── rgn0004.md ├── rgn0005.md ├── rgn0006.md ├── rgn0007.md ├── rgn0008.md ├── rgn0009.md ├── rgn0010.md ├── rgn0011.md ├── rgn0012.md ├── rgn0013.md ├── rgn0014.md ├── rgn0015.md ├── rgn0016.md ├── rgn0017.md ├── rgn0018.md ├── rgn0019.md ├── rgn0020.md ├── rgn0021.md ├── rgn0022.md ├── rgn0023.md ├── rgn0024.md ├── rgn0025.md ├── rgn0026.md ├── rgn0027.md ├── rgn0028.md ├── rgn0029.md ├── rgn0030.md ├── rsn0001.md ├── rsn0002.md ├── rsn0003.md ├── rsn0004.md ├── rsn0005.md ├── rsn0006.md ├── rsn0007.md ├── rsn0008.md ├── rsn0009.md ├── rsn0010.md ├── rsn0011.md ├── rsn0012.md ├── rsn0013.md ├── rsn0014.md ├── rsn0015.md ├── rsn0016.md ├── rsn0017.md ├── rsn0018.md ├── rsn0019.md ├── rsn0020.md ├── rsn0021.md ├── rsn0022.md ├── rsn0023.md ├── rsn0024.md ├── rsn0025.md ├── rsn0026.md ├── rsn0027.md ├── rsn0028.md ├── rsn0029.md ├── rsn0030.md ├── rsn0031.md ├── rsn0032.md ├── rsn0033.md ├── rsn0034.md ├── rsn0035.md ├── rsn0036.md ├── rsn0037.md ├── rsn0038.md ├── rsn0039.md ├── rsn0040.md ├── rsn0041.md ├── rsn0042.md ├── rsn0043.md ├── rsn0044.md ├── rsn0045.md ├── rsn0046.md ├── rsn0047.md ├── rsn0048.md ├── rsn0049.md ├── rsn0050.md ├── rsn0051.md ├── rsn0052.md ├── rsn0053.md ├── rsn0054.md └── rsn0055.md ├── _redirects ├── api.md ├── assets ├── css │ ├── custom.css │ └── just-the-docs.css ├── data │ ├── bokeh-JSON_362df7191b614a1bb145178166a0e20e │ │ ├── bar_cudf_0.json │ │ ├── bar_cudf_1.json │ │ ├── bar_cudf_2.json │ │ ├── bar_pandas_0.json │ │ ├── bar_pandas_1.json │ │ ├── bar_pandas_2.json │ │ ├── line_cudf_0.json │ │ ├── line_cudf_1.json │ │ ├── line_cudf_2.json │ │ ├── line_pandas_0.json │ │ ├── line_pandas_1.json │ │ ├── line_pandas_2.json │ │ ├── points_cudf_0.json │ │ ├── points_cudf_1.json │ │ ├── points_cudf_2.json │ │ ├── points_pandas_0.json │ │ ├── points_pandas_1.json │ │ └── points_pandas_2.json │ ├── datashader-JSON_3e5f10d466b14980b1d56e10c837e89b │ │ ├── line_cudf_0.json │ │ ├── line_cudf_1.json │ │ ├── line_cudf_2.json │ │ ├── line_pandas_0.json │ │ ├── line_pandas_1.json │ │ ├── line_pandas_2.json │ │ ├── points_cudf_0.json │ │ ├── points_cudf_1.json │ │ ├── points_cudf_2.json │ │ ├── points_pandas_0.json │ │ ├── points_pandas_1.json │ │ └── points_pandas_2.json │ ├── holoviews-JSON_e4571a178971432dab4dcadfe8920f69 │ │ ├── bar_cudf_0.json │ │ ├── bar_cudf_1.json │ │ ├── bar_cudf_2.json │ │ ├── bar_pandas_0.json │ │ ├── bar_pandas_1.json │ │ ├── bar_pandas_2.json │ │ ├── line_cudf_0.json │ │ ├── line_cudf_1.json │ │ ├── line_cudf_2.json │ │ ├── line_pandas_0.json │ │ ├── line_pandas_1.json │ │ ├── line_pandas_2.json │ │ ├── points_cudf_0.json │ │ ├── points_cudf_1.json │ │ ├── points_cudf_2.json │ │ ├── points_pandas_0.json │ │ ├── points_pandas_1.json │ │ └── points_pandas_2.json │ ├── hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd │ │ ├── bar_cudf_0.json │ │ ├── bar_cudf_1.json │ │ ├── bar_cudf_2.json │ │ ├── bar_pandas_0.json │ │ ├── bar_pandas_1.json │ │ ├── bar_pandas_2.json │ │ ├── line_cudf_0.json │ │ ├── line_cudf_1.json │ │ ├── line_cudf_2.json │ │ ├── line_pandas_0.json │ │ ├── line_pandas_1.json │ │ ├── line_pandas_2.json │ │ ├── points_cudf_0.json │ │ ├── points_cudf_1.json │ │ ├── points_cudf_2.json │ │ ├── points_pandas_0.json │ │ ├── points_pandas_1.json │ │ └── points_pandas_2.json │ ├── plotly-JSON_541c64c871f546008e0a79ea590adc9f │ │ ├── bar_cudf_0.json │ │ ├── bar_cudf_1.json │ │ ├── bar_cudf_2.json │ │ ├── bar_pandas_0.json │ │ ├── bar_pandas_1.json │ │ ├── bar_pandas_2.json │ │ ├── line_cudf_0.json │ │ ├── line_cudf_1.json │ │ ├── line_cudf_2.json │ │ ├── line_pandas_0.json │ │ ├── line_pandas_1.json │ │ ├── line_pandas_2.json │ │ ├── points_cudf_0.json │ │ ├── points_cudf_1.json │ │ ├── points_cudf_2.json │ │ ├── points_pandas_0.json │ │ ├── points_pandas_1.json │ │ └── points_pandas_2.json │ └── seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b │ │ ├── bar_cudf_0.json │ │ ├── bar_cudf_1.json │ │ ├── bar_cudf_2.json │ │ ├── bar_pandas_0.json │ │ ├── bar_pandas_1.json │ │ ├── bar_pandas_2.json │ │ ├── line_cudf_0.json │ │ ├── line_cudf_1.json │ │ ├── line_cudf_2.json │ │ ├── line_pandas_0.json │ │ ├── line_pandas_1.json │ │ ├── line_pandas_2.json │ │ ├── points_cudf_0.json │ │ ├── points_cudf_1.json │ │ ├── points_cudf_2.json │ │ ├── points_pandas_0.json │ │ ├── points_pandas_1.json │ │ └── points_pandas_2.json ├── images │ ├── bokeh-logo.svg │ ├── clifford_interact.png │ ├── cuxfilter-demo.gif │ ├── datashader-census-rapids.png │ ├── datashader-logo.png │ ├── downloads-github.png │ ├── downloads.png │ ├── gapminders.png │ ├── heatmap.png │ ├── hexagon-layer.jpg │ ├── hexbin_marginals.png │ ├── holoviews-logo.png │ ├── hvplot-logo.png │ ├── label-checker │ │ ├── correct.png │ │ ├── do_not_merge.png │ │ ├── many_breaking.png │ │ ├── many_cat.png │ │ ├── missing_breaking.png │ │ ├── missing_cat.png │ │ └── missing_cat_breaking.png │ ├── latex_blackbody_radiation.png │ ├── nightly_pipeline.png │ ├── nodeRAPIDS-streaming.png │ ├── nytaxi_hover.gif │ ├── panel-logo.png │ ├── plotly-dash.png │ ├── plotly-logo.png │ ├── pyDeck-logo.svg │ ├── rapids_logo.png │ ├── reproducing-ci │ │ ├── container.png │ │ └── prompts.png │ ├── seaborn-logo.svg │ ├── telemetry │ │ ├── calculate_field.png │ │ ├── field_type_and_value_options.png │ │ ├── filter_by_values.png │ │ ├── filter_by_values_with_var.png │ │ ├── grafana_variable_definition.png │ │ ├── mermaid-workflow.md │ │ ├── mermaid-workflow.png │ │ └── panel_query.png │ └── workflow-ui.png └── js │ ├── custom.js │ ├── just-the-docs.js │ ├── search-data.json │ └── vendor │ └── lunr.min.js ├── ci ├── README.md ├── check_style.sh ├── customization │ ├── README.md │ ├── customize_doc.py │ ├── customize_docs_in_folder.sh │ ├── lib_map.sh │ ├── projects-to-versions.json │ └── requirements.txt ├── download_from_s3.sh ├── generate-projects-to-versions.py ├── post-process.sh ├── update_symlinks.sh └── upload_cudf_java_docs.sh ├── contributing ├── code.md ├── index.md ├── issues.md └── prs.md ├── favicon.ico ├── index.md ├── install └── index.md ├── licenses ├── CubinLinker.txt └── cugraph-ops-EULA.txt ├── maintainers ├── datasets.md ├── forward-merger.md ├── index.md └── testing.md ├── notices ├── feed.xml ├── index.md ├── rdn │ └── index.md ├── rgn │ └── index.md └── rsn │ └── index.md ├── release_checklist.md ├── releases ├── hotfix.md ├── index.md ├── planning.md ├── process.md ├── schedule.md └── triage.md ├── resources ├── auto-merger.md ├── burn-down-guide.md ├── changelog.md ├── conduct.md ├── git.md ├── github-actions.md ├── index.md ├── label-checker.md ├── recently-updated.md ├── reproducing-ci.md ├── style.md ├── telemetry.md └── versions.md ├── user-guide └── index.md └── visualization └── index.md /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @rapidsai/website-admins 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/.github/ISSUE_TEMPLATE/documentation-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/site-bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/.github/ISSUE_TEMPLATE/site-bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/submit-question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/.github/ISSUE_TEMPLATE/submit-question.md -------------------------------------------------------------------------------- /.github/ops-bot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/.github/ops-bot.yaml -------------------------------------------------------------------------------- /.github/workflows/deploy-cudf-java-docs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/.github/workflows/deploy-cudf-java-docs.yaml -------------------------------------------------------------------------------- /.github/workflows/deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/.github/workflows/deploy.yaml -------------------------------------------------------------------------------- /.github/workflows/pr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/.github/workflows/pr.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 20 2 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.3.0 2 | -------------------------------------------------------------------------------- /404.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/404.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_config.yml -------------------------------------------------------------------------------- /_data/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_data/docs.yml -------------------------------------------------------------------------------- /_data/previous_releases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_data/previous_releases.json -------------------------------------------------------------------------------- /_data/releases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_data/releases.json -------------------------------------------------------------------------------- /_drafts/maintainers/artifacts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_drafts/maintainers/artifacts.md -------------------------------------------------------------------------------- /_drafts/maintainers/permissions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_drafts/maintainers/permissions.md -------------------------------------------------------------------------------- /_drafts/maintainers/projectboards.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_drafts/maintainers/projectboards.md -------------------------------------------------------------------------------- /_drafts/maintainers/readthedocs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_drafts/maintainers/readthedocs.md -------------------------------------------------------------------------------- /_drafts/maintainers/structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_drafts/maintainers/structure.md -------------------------------------------------------------------------------- /_includes/api-docs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_includes/api-docs.html -------------------------------------------------------------------------------- /_includes/bokeh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_includes/bokeh.html -------------------------------------------------------------------------------- /_includes/datashader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_includes/datashader.html -------------------------------------------------------------------------------- /_includes/gpu-labels-table-row.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_includes/gpu-labels-table-row.html -------------------------------------------------------------------------------- /_includes/gpu-labels-table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_includes/gpu-labels-table.html -------------------------------------------------------------------------------- /_includes/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_includes/head.html -------------------------------------------------------------------------------- /_includes/holoviews.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_includes/holoviews.html -------------------------------------------------------------------------------- /_includes/hvplot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_includes/hvplot.html -------------------------------------------------------------------------------- /_includes/nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_includes/nav.html -------------------------------------------------------------------------------- /_includes/plotly.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_includes/plotly.html -------------------------------------------------------------------------------- /_includes/seaborn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_includes/seaborn.html -------------------------------------------------------------------------------- /_includes/selector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_includes/selector.html -------------------------------------------------------------------------------- /_includes/viz-cdn-js-css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_includes/viz-cdn-js-css.html -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_layouts/default.html -------------------------------------------------------------------------------- /_layouts/notice-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_layouts/notice-index.html -------------------------------------------------------------------------------- /_layouts/notice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_layouts/notice.html -------------------------------------------------------------------------------- /_notices/rdn0001.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rdn0001.md -------------------------------------------------------------------------------- /_notices/rdn0002.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rdn0002.md -------------------------------------------------------------------------------- /_notices/rdn0003.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rdn0003.md -------------------------------------------------------------------------------- /_notices/rgn0001.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rgn0001.md -------------------------------------------------------------------------------- /_notices/rgn0002.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rgn0002.md -------------------------------------------------------------------------------- /_notices/rgn0003.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rgn0003.md -------------------------------------------------------------------------------- /_notices/rgn0004.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rgn0004.md -------------------------------------------------------------------------------- /_notices/rgn0005.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rgn0005.md -------------------------------------------------------------------------------- /_notices/rgn0006.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rgn0006.md -------------------------------------------------------------------------------- /_notices/rgn0007.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rgn0007.md -------------------------------------------------------------------------------- /_notices/rgn0008.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rgn0008.md -------------------------------------------------------------------------------- /_notices/rgn0009.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rgn0009.md -------------------------------------------------------------------------------- /_notices/rgn0010.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rgn0010.md -------------------------------------------------------------------------------- /_notices/rgn0011.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rgn0011.md -------------------------------------------------------------------------------- /_notices/rgn0012.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rgn0012.md -------------------------------------------------------------------------------- /_notices/rgn0013.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rgn0013.md -------------------------------------------------------------------------------- /_notices/rgn0014.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rgn0014.md -------------------------------------------------------------------------------- /_notices/rgn0015.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rgn0015.md -------------------------------------------------------------------------------- /_notices/rgn0016.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rgn0016.md -------------------------------------------------------------------------------- /_notices/rgn0017.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rgn0017.md -------------------------------------------------------------------------------- /_notices/rgn0018.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rgn0018.md -------------------------------------------------------------------------------- /_notices/rgn0019.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rgn0019.md -------------------------------------------------------------------------------- /_notices/rgn0020.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rgn0020.md -------------------------------------------------------------------------------- /_notices/rgn0021.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rgn0021.md -------------------------------------------------------------------------------- /_notices/rgn0022.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rgn0022.md -------------------------------------------------------------------------------- /_notices/rgn0023.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rgn0023.md -------------------------------------------------------------------------------- /_notices/rgn0024.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rgn0024.md -------------------------------------------------------------------------------- /_notices/rgn0025.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rgn0025.md -------------------------------------------------------------------------------- /_notices/rgn0026.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rgn0026.md -------------------------------------------------------------------------------- /_notices/rgn0027.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rgn0027.md -------------------------------------------------------------------------------- /_notices/rgn0028.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rgn0028.md -------------------------------------------------------------------------------- /_notices/rgn0029.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rgn0029.md -------------------------------------------------------------------------------- /_notices/rgn0030.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rgn0030.md -------------------------------------------------------------------------------- /_notices/rsn0001.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rsn0001.md -------------------------------------------------------------------------------- /_notices/rsn0002.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rsn0002.md -------------------------------------------------------------------------------- /_notices/rsn0003.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rsn0003.md -------------------------------------------------------------------------------- /_notices/rsn0004.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rsn0004.md -------------------------------------------------------------------------------- /_notices/rsn0005.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rsn0005.md -------------------------------------------------------------------------------- /_notices/rsn0006.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rsn0006.md -------------------------------------------------------------------------------- /_notices/rsn0007.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rsn0007.md -------------------------------------------------------------------------------- /_notices/rsn0008.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rsn0008.md -------------------------------------------------------------------------------- /_notices/rsn0009.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rsn0009.md -------------------------------------------------------------------------------- /_notices/rsn0010.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rsn0010.md -------------------------------------------------------------------------------- /_notices/rsn0011.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rsn0011.md -------------------------------------------------------------------------------- /_notices/rsn0012.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rsn0012.md -------------------------------------------------------------------------------- /_notices/rsn0013.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rsn0013.md -------------------------------------------------------------------------------- /_notices/rsn0014.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rsn0014.md -------------------------------------------------------------------------------- /_notices/rsn0015.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rsn0015.md -------------------------------------------------------------------------------- /_notices/rsn0016.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rsn0016.md -------------------------------------------------------------------------------- /_notices/rsn0017.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rsn0017.md -------------------------------------------------------------------------------- /_notices/rsn0018.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rsn0018.md -------------------------------------------------------------------------------- /_notices/rsn0019.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rsn0019.md -------------------------------------------------------------------------------- /_notices/rsn0020.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rsn0020.md -------------------------------------------------------------------------------- /_notices/rsn0021.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rsn0021.md -------------------------------------------------------------------------------- /_notices/rsn0022.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rsn0022.md -------------------------------------------------------------------------------- /_notices/rsn0023.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rsn0023.md -------------------------------------------------------------------------------- /_notices/rsn0024.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rsn0024.md -------------------------------------------------------------------------------- /_notices/rsn0025.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rsn0025.md -------------------------------------------------------------------------------- /_notices/rsn0026.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rsn0026.md -------------------------------------------------------------------------------- /_notices/rsn0027.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rsn0027.md -------------------------------------------------------------------------------- /_notices/rsn0028.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rsn0028.md -------------------------------------------------------------------------------- /_notices/rsn0029.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rsn0029.md -------------------------------------------------------------------------------- /_notices/rsn0030.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rsn0030.md -------------------------------------------------------------------------------- /_notices/rsn0031.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rsn0031.md -------------------------------------------------------------------------------- /_notices/rsn0032.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rsn0032.md -------------------------------------------------------------------------------- /_notices/rsn0033.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rsn0033.md -------------------------------------------------------------------------------- /_notices/rsn0034.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rsn0034.md -------------------------------------------------------------------------------- /_notices/rsn0035.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rsn0035.md -------------------------------------------------------------------------------- /_notices/rsn0036.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rsn0036.md -------------------------------------------------------------------------------- /_notices/rsn0037.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rsn0037.md -------------------------------------------------------------------------------- /_notices/rsn0038.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rsn0038.md -------------------------------------------------------------------------------- /_notices/rsn0039.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rsn0039.md -------------------------------------------------------------------------------- /_notices/rsn0040.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rsn0040.md -------------------------------------------------------------------------------- /_notices/rsn0041.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rsn0041.md -------------------------------------------------------------------------------- /_notices/rsn0042.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rsn0042.md -------------------------------------------------------------------------------- /_notices/rsn0043.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rsn0043.md -------------------------------------------------------------------------------- /_notices/rsn0044.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rsn0044.md -------------------------------------------------------------------------------- /_notices/rsn0045.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rsn0045.md -------------------------------------------------------------------------------- /_notices/rsn0046.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rsn0046.md -------------------------------------------------------------------------------- /_notices/rsn0047.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rsn0047.md -------------------------------------------------------------------------------- /_notices/rsn0048.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rsn0048.md -------------------------------------------------------------------------------- /_notices/rsn0049.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rsn0049.md -------------------------------------------------------------------------------- /_notices/rsn0050.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rsn0050.md -------------------------------------------------------------------------------- /_notices/rsn0051.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rsn0051.md -------------------------------------------------------------------------------- /_notices/rsn0052.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rsn0052.md -------------------------------------------------------------------------------- /_notices/rsn0053.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rsn0053.md -------------------------------------------------------------------------------- /_notices/rsn0054.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rsn0054.md -------------------------------------------------------------------------------- /_notices/rsn0055.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_notices/rsn0055.md -------------------------------------------------------------------------------- /_redirects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/_redirects -------------------------------------------------------------------------------- /api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/api.md -------------------------------------------------------------------------------- /assets/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/css/custom.css -------------------------------------------------------------------------------- /assets/css/just-the-docs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/css/just-the-docs.css -------------------------------------------------------------------------------- /assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/bar_cudf_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/bar_cudf_0.json -------------------------------------------------------------------------------- /assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/bar_cudf_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/bar_cudf_1.json -------------------------------------------------------------------------------- /assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/bar_cudf_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/bar_cudf_2.json -------------------------------------------------------------------------------- /assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/bar_pandas_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/bar_pandas_0.json -------------------------------------------------------------------------------- /assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/bar_pandas_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/bar_pandas_1.json -------------------------------------------------------------------------------- /assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/bar_pandas_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/bar_pandas_2.json -------------------------------------------------------------------------------- /assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/line_cudf_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/line_cudf_0.json -------------------------------------------------------------------------------- /assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/line_cudf_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/line_cudf_1.json -------------------------------------------------------------------------------- /assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/line_cudf_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/line_cudf_2.json -------------------------------------------------------------------------------- /assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/line_pandas_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/line_pandas_0.json -------------------------------------------------------------------------------- /assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/line_pandas_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/line_pandas_1.json -------------------------------------------------------------------------------- /assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/line_pandas_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/line_pandas_2.json -------------------------------------------------------------------------------- /assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/points_cudf_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/points_cudf_0.json -------------------------------------------------------------------------------- /assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/points_cudf_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/points_cudf_1.json -------------------------------------------------------------------------------- /assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/points_cudf_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/points_cudf_2.json -------------------------------------------------------------------------------- /assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/points_pandas_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/points_pandas_0.json -------------------------------------------------------------------------------- /assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/points_pandas_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/points_pandas_1.json -------------------------------------------------------------------------------- /assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/points_pandas_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/points_pandas_2.json -------------------------------------------------------------------------------- /assets/data/datashader-JSON_3e5f10d466b14980b1d56e10c837e89b/line_cudf_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/datashader-JSON_3e5f10d466b14980b1d56e10c837e89b/line_cudf_0.json -------------------------------------------------------------------------------- /assets/data/datashader-JSON_3e5f10d466b14980b1d56e10c837e89b/line_cudf_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/datashader-JSON_3e5f10d466b14980b1d56e10c837e89b/line_cudf_1.json -------------------------------------------------------------------------------- /assets/data/datashader-JSON_3e5f10d466b14980b1d56e10c837e89b/line_cudf_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/datashader-JSON_3e5f10d466b14980b1d56e10c837e89b/line_cudf_2.json -------------------------------------------------------------------------------- /assets/data/datashader-JSON_3e5f10d466b14980b1d56e10c837e89b/line_pandas_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/datashader-JSON_3e5f10d466b14980b1d56e10c837e89b/line_pandas_0.json -------------------------------------------------------------------------------- /assets/data/datashader-JSON_3e5f10d466b14980b1d56e10c837e89b/line_pandas_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/datashader-JSON_3e5f10d466b14980b1d56e10c837e89b/line_pandas_1.json -------------------------------------------------------------------------------- /assets/data/datashader-JSON_3e5f10d466b14980b1d56e10c837e89b/line_pandas_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/datashader-JSON_3e5f10d466b14980b1d56e10c837e89b/line_pandas_2.json -------------------------------------------------------------------------------- /assets/data/datashader-JSON_3e5f10d466b14980b1d56e10c837e89b/points_cudf_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/datashader-JSON_3e5f10d466b14980b1d56e10c837e89b/points_cudf_0.json -------------------------------------------------------------------------------- /assets/data/datashader-JSON_3e5f10d466b14980b1d56e10c837e89b/points_cudf_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/datashader-JSON_3e5f10d466b14980b1d56e10c837e89b/points_cudf_1.json -------------------------------------------------------------------------------- /assets/data/datashader-JSON_3e5f10d466b14980b1d56e10c837e89b/points_cudf_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/datashader-JSON_3e5f10d466b14980b1d56e10c837e89b/points_cudf_2.json -------------------------------------------------------------------------------- /assets/data/datashader-JSON_3e5f10d466b14980b1d56e10c837e89b/points_pandas_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/datashader-JSON_3e5f10d466b14980b1d56e10c837e89b/points_pandas_0.json -------------------------------------------------------------------------------- /assets/data/datashader-JSON_3e5f10d466b14980b1d56e10c837e89b/points_pandas_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/datashader-JSON_3e5f10d466b14980b1d56e10c837e89b/points_pandas_1.json -------------------------------------------------------------------------------- /assets/data/datashader-JSON_3e5f10d466b14980b1d56e10c837e89b/points_pandas_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/datashader-JSON_3e5f10d466b14980b1d56e10c837e89b/points_pandas_2.json -------------------------------------------------------------------------------- /assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/bar_cudf_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/bar_cudf_0.json -------------------------------------------------------------------------------- /assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/bar_cudf_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/bar_cudf_1.json -------------------------------------------------------------------------------- /assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/bar_cudf_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/bar_cudf_2.json -------------------------------------------------------------------------------- /assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/bar_pandas_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/bar_pandas_0.json -------------------------------------------------------------------------------- /assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/bar_pandas_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/bar_pandas_1.json -------------------------------------------------------------------------------- /assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/bar_pandas_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/bar_pandas_2.json -------------------------------------------------------------------------------- /assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/line_cudf_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/line_cudf_0.json -------------------------------------------------------------------------------- /assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/line_cudf_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/line_cudf_1.json -------------------------------------------------------------------------------- /assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/line_cudf_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/line_cudf_2.json -------------------------------------------------------------------------------- /assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/line_pandas_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/line_pandas_0.json -------------------------------------------------------------------------------- /assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/line_pandas_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/line_pandas_1.json -------------------------------------------------------------------------------- /assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/line_pandas_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/line_pandas_2.json -------------------------------------------------------------------------------- /assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/points_cudf_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/points_cudf_0.json -------------------------------------------------------------------------------- /assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/points_cudf_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/points_cudf_1.json -------------------------------------------------------------------------------- /assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/points_cudf_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/points_cudf_2.json -------------------------------------------------------------------------------- /assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/points_pandas_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/points_pandas_0.json -------------------------------------------------------------------------------- /assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/points_pandas_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/points_pandas_1.json -------------------------------------------------------------------------------- /assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/points_pandas_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/points_pandas_2.json -------------------------------------------------------------------------------- /assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/bar_cudf_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/bar_cudf_0.json -------------------------------------------------------------------------------- /assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/bar_cudf_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/bar_cudf_1.json -------------------------------------------------------------------------------- /assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/bar_cudf_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/bar_cudf_2.json -------------------------------------------------------------------------------- /assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/bar_pandas_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/bar_pandas_0.json -------------------------------------------------------------------------------- /assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/bar_pandas_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/bar_pandas_1.json -------------------------------------------------------------------------------- /assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/bar_pandas_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/bar_pandas_2.json -------------------------------------------------------------------------------- /assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/line_cudf_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/line_cudf_0.json -------------------------------------------------------------------------------- /assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/line_cudf_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/line_cudf_1.json -------------------------------------------------------------------------------- /assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/line_cudf_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/line_cudf_2.json -------------------------------------------------------------------------------- /assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/line_pandas_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/line_pandas_0.json -------------------------------------------------------------------------------- /assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/line_pandas_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/line_pandas_1.json -------------------------------------------------------------------------------- /assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/line_pandas_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/line_pandas_2.json -------------------------------------------------------------------------------- /assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/points_cudf_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/points_cudf_0.json -------------------------------------------------------------------------------- /assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/points_cudf_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/points_cudf_1.json -------------------------------------------------------------------------------- /assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/points_cudf_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/points_cudf_2.json -------------------------------------------------------------------------------- /assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/points_pandas_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/points_pandas_0.json -------------------------------------------------------------------------------- /assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/points_pandas_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/points_pandas_1.json -------------------------------------------------------------------------------- /assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/points_pandas_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/points_pandas_2.json -------------------------------------------------------------------------------- /assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/bar_cudf_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/bar_cudf_0.json -------------------------------------------------------------------------------- /assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/bar_cudf_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/bar_cudf_1.json -------------------------------------------------------------------------------- /assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/bar_cudf_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/bar_cudf_2.json -------------------------------------------------------------------------------- /assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/bar_pandas_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/bar_pandas_0.json -------------------------------------------------------------------------------- /assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/bar_pandas_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/bar_pandas_1.json -------------------------------------------------------------------------------- /assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/bar_pandas_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/bar_pandas_2.json -------------------------------------------------------------------------------- /assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/line_cudf_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/line_cudf_0.json -------------------------------------------------------------------------------- /assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/line_cudf_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/line_cudf_1.json -------------------------------------------------------------------------------- /assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/line_cudf_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/line_cudf_2.json -------------------------------------------------------------------------------- /assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/line_pandas_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/line_pandas_0.json -------------------------------------------------------------------------------- /assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/line_pandas_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/line_pandas_1.json -------------------------------------------------------------------------------- /assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/line_pandas_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/line_pandas_2.json -------------------------------------------------------------------------------- /assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/points_cudf_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/points_cudf_0.json -------------------------------------------------------------------------------- /assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/points_cudf_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/points_cudf_1.json -------------------------------------------------------------------------------- /assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/points_cudf_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/points_cudf_2.json -------------------------------------------------------------------------------- /assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/points_pandas_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/points_pandas_0.json -------------------------------------------------------------------------------- /assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/points_pandas_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/points_pandas_1.json -------------------------------------------------------------------------------- /assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/points_pandas_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/points_pandas_2.json -------------------------------------------------------------------------------- /assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/bar_cudf_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/bar_cudf_0.json -------------------------------------------------------------------------------- /assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/bar_cudf_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/bar_cudf_1.json -------------------------------------------------------------------------------- /assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/bar_cudf_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/bar_cudf_2.json -------------------------------------------------------------------------------- /assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/bar_pandas_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/bar_pandas_0.json -------------------------------------------------------------------------------- /assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/bar_pandas_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/bar_pandas_1.json -------------------------------------------------------------------------------- /assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/bar_pandas_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/bar_pandas_2.json -------------------------------------------------------------------------------- /assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/line_cudf_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/line_cudf_0.json -------------------------------------------------------------------------------- /assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/line_cudf_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/line_cudf_1.json -------------------------------------------------------------------------------- /assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/line_cudf_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/line_cudf_2.json -------------------------------------------------------------------------------- /assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/line_pandas_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/line_pandas_0.json -------------------------------------------------------------------------------- /assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/line_pandas_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/line_pandas_1.json -------------------------------------------------------------------------------- /assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/line_pandas_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/line_pandas_2.json -------------------------------------------------------------------------------- /assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/points_cudf_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/points_cudf_0.json -------------------------------------------------------------------------------- /assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/points_cudf_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/points_cudf_1.json -------------------------------------------------------------------------------- /assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/points_cudf_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/points_cudf_2.json -------------------------------------------------------------------------------- /assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/points_pandas_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/points_pandas_0.json -------------------------------------------------------------------------------- /assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/points_pandas_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/points_pandas_1.json -------------------------------------------------------------------------------- /assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/points_pandas_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/points_pandas_2.json -------------------------------------------------------------------------------- /assets/images/bokeh-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/images/bokeh-logo.svg -------------------------------------------------------------------------------- /assets/images/clifford_interact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/images/clifford_interact.png -------------------------------------------------------------------------------- /assets/images/cuxfilter-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/images/cuxfilter-demo.gif -------------------------------------------------------------------------------- /assets/images/datashader-census-rapids.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/images/datashader-census-rapids.png -------------------------------------------------------------------------------- /assets/images/datashader-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/images/datashader-logo.png -------------------------------------------------------------------------------- /assets/images/downloads-github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/images/downloads-github.png -------------------------------------------------------------------------------- /assets/images/downloads.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/images/downloads.png -------------------------------------------------------------------------------- /assets/images/gapminders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/images/gapminders.png -------------------------------------------------------------------------------- /assets/images/heatmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/images/heatmap.png -------------------------------------------------------------------------------- /assets/images/hexagon-layer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/images/hexagon-layer.jpg -------------------------------------------------------------------------------- /assets/images/hexbin_marginals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/images/hexbin_marginals.png -------------------------------------------------------------------------------- /assets/images/holoviews-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/images/holoviews-logo.png -------------------------------------------------------------------------------- /assets/images/hvplot-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/images/hvplot-logo.png -------------------------------------------------------------------------------- /assets/images/label-checker/correct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/images/label-checker/correct.png -------------------------------------------------------------------------------- /assets/images/label-checker/do_not_merge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/images/label-checker/do_not_merge.png -------------------------------------------------------------------------------- /assets/images/label-checker/many_breaking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/images/label-checker/many_breaking.png -------------------------------------------------------------------------------- /assets/images/label-checker/many_cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/images/label-checker/many_cat.png -------------------------------------------------------------------------------- /assets/images/label-checker/missing_breaking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/images/label-checker/missing_breaking.png -------------------------------------------------------------------------------- /assets/images/label-checker/missing_cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/images/label-checker/missing_cat.png -------------------------------------------------------------------------------- /assets/images/label-checker/missing_cat_breaking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/images/label-checker/missing_cat_breaking.png -------------------------------------------------------------------------------- /assets/images/latex_blackbody_radiation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/images/latex_blackbody_radiation.png -------------------------------------------------------------------------------- /assets/images/nightly_pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/images/nightly_pipeline.png -------------------------------------------------------------------------------- /assets/images/nodeRAPIDS-streaming.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/images/nodeRAPIDS-streaming.png -------------------------------------------------------------------------------- /assets/images/nytaxi_hover.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/images/nytaxi_hover.gif -------------------------------------------------------------------------------- /assets/images/panel-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/images/panel-logo.png -------------------------------------------------------------------------------- /assets/images/plotly-dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/images/plotly-dash.png -------------------------------------------------------------------------------- /assets/images/plotly-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/images/plotly-logo.png -------------------------------------------------------------------------------- /assets/images/pyDeck-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/images/pyDeck-logo.svg -------------------------------------------------------------------------------- /assets/images/rapids_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/images/rapids_logo.png -------------------------------------------------------------------------------- /assets/images/reproducing-ci/container.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/images/reproducing-ci/container.png -------------------------------------------------------------------------------- /assets/images/reproducing-ci/prompts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/images/reproducing-ci/prompts.png -------------------------------------------------------------------------------- /assets/images/seaborn-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/images/seaborn-logo.svg -------------------------------------------------------------------------------- /assets/images/telemetry/calculate_field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/images/telemetry/calculate_field.png -------------------------------------------------------------------------------- /assets/images/telemetry/field_type_and_value_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/images/telemetry/field_type_and_value_options.png -------------------------------------------------------------------------------- /assets/images/telemetry/filter_by_values.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/images/telemetry/filter_by_values.png -------------------------------------------------------------------------------- /assets/images/telemetry/filter_by_values_with_var.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/images/telemetry/filter_by_values_with_var.png -------------------------------------------------------------------------------- /assets/images/telemetry/grafana_variable_definition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/images/telemetry/grafana_variable_definition.png -------------------------------------------------------------------------------- /assets/images/telemetry/mermaid-workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/images/telemetry/mermaid-workflow.md -------------------------------------------------------------------------------- /assets/images/telemetry/mermaid-workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/images/telemetry/mermaid-workflow.png -------------------------------------------------------------------------------- /assets/images/telemetry/panel_query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/images/telemetry/panel_query.png -------------------------------------------------------------------------------- /assets/images/workflow-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/images/workflow-ui.png -------------------------------------------------------------------------------- /assets/js/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/js/custom.js -------------------------------------------------------------------------------- /assets/js/just-the-docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/js/just-the-docs.js -------------------------------------------------------------------------------- /assets/js/search-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/js/search-data.json -------------------------------------------------------------------------------- /assets/js/vendor/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/assets/js/vendor/lunr.min.js -------------------------------------------------------------------------------- /ci/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/ci/README.md -------------------------------------------------------------------------------- /ci/check_style.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/ci/check_style.sh -------------------------------------------------------------------------------- /ci/customization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/ci/customization/README.md -------------------------------------------------------------------------------- /ci/customization/customize_doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/ci/customization/customize_doc.py -------------------------------------------------------------------------------- /ci/customization/customize_docs_in_folder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/ci/customization/customize_docs_in_folder.sh -------------------------------------------------------------------------------- /ci/customization/lib_map.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/ci/customization/lib_map.sh -------------------------------------------------------------------------------- /ci/customization/projects-to-versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/ci/customization/projects-to-versions.json -------------------------------------------------------------------------------- /ci/customization/requirements.txt: -------------------------------------------------------------------------------- 1 | beautifulsoup4 2 | html5lib 3 | -------------------------------------------------------------------------------- /ci/download_from_s3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/ci/download_from_s3.sh -------------------------------------------------------------------------------- /ci/generate-projects-to-versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/ci/generate-projects-to-versions.py -------------------------------------------------------------------------------- /ci/post-process.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/ci/post-process.sh -------------------------------------------------------------------------------- /ci/update_symlinks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/ci/update_symlinks.sh -------------------------------------------------------------------------------- /ci/upload_cudf_java_docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/ci/upload_cudf_java_docs.sh -------------------------------------------------------------------------------- /contributing/code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/contributing/code.md -------------------------------------------------------------------------------- /contributing/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/contributing/index.md -------------------------------------------------------------------------------- /contributing/issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/contributing/issues.md -------------------------------------------------------------------------------- /contributing/prs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/contributing/prs.md -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/favicon.ico -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/index.md -------------------------------------------------------------------------------- /install/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/install/index.md -------------------------------------------------------------------------------- /licenses/CubinLinker.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/licenses/CubinLinker.txt -------------------------------------------------------------------------------- /licenses/cugraph-ops-EULA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/licenses/cugraph-ops-EULA.txt -------------------------------------------------------------------------------- /maintainers/datasets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/maintainers/datasets.md -------------------------------------------------------------------------------- /maintainers/forward-merger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/maintainers/forward-merger.md -------------------------------------------------------------------------------- /maintainers/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/maintainers/index.md -------------------------------------------------------------------------------- /maintainers/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/maintainers/testing.md -------------------------------------------------------------------------------- /notices/feed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/notices/feed.xml -------------------------------------------------------------------------------- /notices/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/notices/index.md -------------------------------------------------------------------------------- /notices/rdn/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/notices/rdn/index.md -------------------------------------------------------------------------------- /notices/rgn/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/notices/rgn/index.md -------------------------------------------------------------------------------- /notices/rsn/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/notices/rsn/index.md -------------------------------------------------------------------------------- /release_checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/release_checklist.md -------------------------------------------------------------------------------- /releases/hotfix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/releases/hotfix.md -------------------------------------------------------------------------------- /releases/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/releases/index.md -------------------------------------------------------------------------------- /releases/planning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/releases/planning.md -------------------------------------------------------------------------------- /releases/process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/releases/process.md -------------------------------------------------------------------------------- /releases/schedule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/releases/schedule.md -------------------------------------------------------------------------------- /releases/triage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/releases/triage.md -------------------------------------------------------------------------------- /resources/auto-merger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/resources/auto-merger.md -------------------------------------------------------------------------------- /resources/burn-down-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/resources/burn-down-guide.md -------------------------------------------------------------------------------- /resources/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/resources/changelog.md -------------------------------------------------------------------------------- /resources/conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/resources/conduct.md -------------------------------------------------------------------------------- /resources/git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/resources/git.md -------------------------------------------------------------------------------- /resources/github-actions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/resources/github-actions.md -------------------------------------------------------------------------------- /resources/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/resources/index.md -------------------------------------------------------------------------------- /resources/label-checker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/resources/label-checker.md -------------------------------------------------------------------------------- /resources/recently-updated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/resources/recently-updated.md -------------------------------------------------------------------------------- /resources/reproducing-ci.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/resources/reproducing-ci.md -------------------------------------------------------------------------------- /resources/style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/resources/style.md -------------------------------------------------------------------------------- /resources/telemetry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/resources/telemetry.md -------------------------------------------------------------------------------- /resources/versions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/resources/versions.md -------------------------------------------------------------------------------- /user-guide/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/user-guide/index.md -------------------------------------------------------------------------------- /visualization/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/docs/HEAD/visualization/index.md --------------------------------------------------------------------------------