├── .github └── workflows │ ├── cd.yml │ ├── ci.yml │ ├── cicd.yml │ ├── doc.yml │ └── init.yml ├── .gitignore ├── .prettierignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── community ├── ChangeDimension.ipynb ├── Compare.ipynb ├── Distribute.ipynb ├── DrillDown.ipynb ├── Filter.ipynb ├── Miscellaneous.ipynb ├── PresetCharts.ipynb ├── Split.ipynb ├── StretchToProportion.ipynb ├── Sum.ipynb ├── color-blindness_theme.ipynb └── dark_theme.ipynb ├── docs ├── assets │ ├── actual.gif │ ├── api-overview.svg │ ├── begin.gif │ ├── data │ │ ├── music_data.csv │ │ ├── music_data.js │ │ ├── music_data.json │ │ └── music_data.xlsx │ ├── end.gif │ ├── favicon.svg │ ├── ipyvizzu-promo.gif │ ├── javascripts │ │ ├── analytics │ │ │ └── head.js │ │ ├── csv2js.js │ │ ├── extlinks.js │ │ ├── highlight.js │ │ ├── iframe │ │ │ ├── autoheight.js │ │ │ ├── autoscale.js │ │ │ └── click.js │ │ ├── mdchart.js │ │ ├── style_ref_allbtn.js │ │ ├── style_ref_clickevent.js │ │ └── thumbs.js │ ├── logo-white.svg │ └── stylesheets │ │ ├── chart.css │ │ ├── gallery.css │ │ ├── highlight.css │ │ ├── iframe.css │ │ ├── style_reference.css │ │ └── vizzu.css ├── dev │ └── index.md ├── environments │ ├── bi │ │ ├── index.md │ │ └── mode.md │ ├── ide │ │ ├── index.md │ │ ├── pycharm.md │ │ └── vscode.md │ ├── index.md │ ├── notebook │ │ ├── colab.md │ │ ├── databricks.md │ │ ├── datacamp.md │ │ ├── deepnote.md │ │ ├── index.md │ │ ├── jupyterlab.md │ │ ├── jupyterlite.md │ │ ├── jupyternotebook.md │ │ ├── kaggle.md │ │ └── noteable.md │ └── platform │ │ ├── flask.md │ │ ├── index.md │ │ ├── mercury.md │ │ ├── panel.md │ │ ├── streamlit.md │ │ └── voila.md ├── examples │ └── index.md ├── installation.md ├── showcases │ ├── music.md │ ├── music │ │ ├── main.html │ │ ├── main.js │ │ └── music.csv │ ├── musicformats.md │ ├── musicformats │ │ ├── main.html │ │ ├── main.js │ │ └── musicformats.csv │ ├── nadal.md │ ├── nadal │ │ ├── main.html │ │ ├── main.js │ │ └── nadal.csv │ ├── sales.md │ ├── sales │ │ ├── main.html │ │ ├── main.js │ │ └── sales.csv │ ├── titanic.md │ └── titanic │ │ ├── main.html │ │ ├── main.js │ │ └── titanic.csv └── tutorial │ ├── aggregating_data.js │ ├── aggregating_data.md │ ├── align_range.js │ ├── align_range.md │ ├── animation_control_keyframes.js │ ├── animation_control_keyframes.md │ ├── animation_options.js │ ├── animation_options.md │ ├── assets │ └── setup │ │ ├── config_a.md │ │ ├── config_b.md │ │ ├── config_c.md │ │ ├── init.md │ │ ├── setup_a.md │ │ ├── setup_b.md │ │ └── setup_c.md │ ├── axes_title_tooltip.js │ ├── axes_title_tooltip.md │ ├── changing_dimensions.js │ ├── changing_dimensions.md │ ├── channels_legend.js │ ├── channels_legend.md │ ├── chart_layout.js │ ├── chart_layout.md │ ├── chart_presets.js │ ├── chart_presets.md │ ├── chart_settings.md │ ├── color_palette_fonts.js │ ├── color_palette_fonts.md │ ├── data.md │ ├── events.js │ ├── events.md │ ├── filter_add_new_records.js │ ├── filter_add_new_records.md │ ├── geometry.js │ ├── geometry.md │ ├── group_stack.js │ ├── group_stack.md │ ├── index.md │ ├── orientation_split_polar.js │ ├── orientation_split_polar.md │ ├── shorthands_store.js │ ├── shorthands_store.md │ ├── sorting.js │ ├── sorting.md │ ├── stacking_explanation.js │ ├── stacking_explanation.md │ ├── style.md │ ├── without_coordinates_noop_channel.js │ └── without_coordinates_noop_channel.md ├── eslint.config.mjs ├── package.json ├── pdm.lock ├── pyproject.toml ├── src └── ipyvizzu │ ├── __init__.py │ ├── __version__.py │ ├── animation.py │ ├── animationcontrol.py │ ├── chart.py │ ├── data │ ├── __init__.py │ ├── converters │ │ ├── __init__.py │ │ ├── converter.py │ │ ├── defaults.py │ │ ├── df │ │ │ ├── __init__.py │ │ │ ├── converter.py │ │ │ ├── defaults.py │ │ │ └── type_alias.py │ │ ├── numpy │ │ │ ├── __init__.py │ │ │ ├── converter.py │ │ │ └── type_alias.py │ │ ├── pandas │ │ │ ├── __init__.py │ │ │ ├── converter.py │ │ │ └── protocol.py │ │ └── spark │ │ │ ├── __init__.py │ │ │ ├── converter.py │ │ │ └── protocol.py │ ├── infer_type.py │ └── type_alias.py │ ├── event.py │ ├── integrations │ ├── __init__.py │ └── fugue.py │ ├── json.py │ ├── method.py │ ├── py.typed │ ├── schema.py │ ├── template.py │ └── templates │ └── ipyvizzu.js ├── tests ├── __init__.py ├── assets │ ├── in_json.json │ ├── in_pd_df_by_series.json │ ├── in_pd_df_by_series_with_index.json │ ├── in_pd_df_by_series_with_nan.json │ ├── ref_fugue_preset.txt │ ├── ref_fugue_timeline.txt │ ├── ref_pd_df_by_series_max_rows.json │ ├── ref_pd_df_by_series_with_duplicated_popularity.json │ ├── ref_pd_df_by_series_with_index.json │ ├── ref_pd_df_by_series_with_nan.json │ ├── ref_pd_series.json │ ├── ref_pd_series_only_index.json │ ├── ref_pd_series_with_index.json │ └── ref_pd_series_with_nan.json ├── test_animation.py ├── test_animationcontrol.py ├── test_chart.py ├── test_data │ ├── __init__.py │ ├── test_data_datacube.py │ ├── test_data_filter.py │ ├── test_data_json.py │ ├── test_data_records.py │ ├── test_data_schema.py │ ├── test_data_series.py │ ├── test_numpy.py │ ├── test_pandas.py │ └── test_pyspark.py ├── test_docs │ ├── __init__.py │ └── tutorial │ │ ├── __init__.py │ │ └── test_data.py ├── test_fugue.py ├── test_json.py ├── test_method.py └── utils │ ├── __init__.py │ ├── import_modifiers.py │ └── normalizer.py └── tools ├── ci ├── .pre-commit-ubuntu.yaml ├── get_tag.py ├── markdown_format.py ├── std_check.py └── version.py ├── docs ├── config.py ├── deploy.py ├── examples │ ├── gen_examples.py │ ├── mjs2csv.mjs │ ├── mjs2js.mjs │ └── mjs2md.mjs ├── mkdocs.yml ├── overrides │ ├── main.html │ └── mike │ │ └── redirect.html ├── pages │ └── gen_pages.py ├── placeholder.py ├── reference │ └── gen_reference.py ├── snippets │ └── gen_vizzu.py └── style │ ├── gen_style_reference.mjs │ ├── gen_style_reference.py │ └── get_style_reference.mjs └── modules ├── node.py └── vizzu.py /.github/workflows/cd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/.github/workflows/cd.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/cicd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/.github/workflows/cicd.yml -------------------------------------------------------------------------------- /.github/workflows/doc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/.github/workflows/doc.yml -------------------------------------------------------------------------------- /.github/workflows/init.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/.github/workflows/init.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | *.md 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/README.md -------------------------------------------------------------------------------- /community/ChangeDimension.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/community/ChangeDimension.ipynb -------------------------------------------------------------------------------- /community/Compare.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/community/Compare.ipynb -------------------------------------------------------------------------------- /community/Distribute.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/community/Distribute.ipynb -------------------------------------------------------------------------------- /community/DrillDown.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/community/DrillDown.ipynb -------------------------------------------------------------------------------- /community/Filter.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/community/Filter.ipynb -------------------------------------------------------------------------------- /community/Miscellaneous.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/community/Miscellaneous.ipynb -------------------------------------------------------------------------------- /community/PresetCharts.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/community/PresetCharts.ipynb -------------------------------------------------------------------------------- /community/Split.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/community/Split.ipynb -------------------------------------------------------------------------------- /community/StretchToProportion.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/community/StretchToProportion.ipynb -------------------------------------------------------------------------------- /community/Sum.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/community/Sum.ipynb -------------------------------------------------------------------------------- /community/color-blindness_theme.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/community/color-blindness_theme.ipynb -------------------------------------------------------------------------------- /community/dark_theme.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/community/dark_theme.ipynb -------------------------------------------------------------------------------- /docs/assets/actual.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/assets/actual.gif -------------------------------------------------------------------------------- /docs/assets/api-overview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/assets/api-overview.svg -------------------------------------------------------------------------------- /docs/assets/begin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/assets/begin.gif -------------------------------------------------------------------------------- /docs/assets/data/music_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/assets/data/music_data.csv -------------------------------------------------------------------------------- /docs/assets/data/music_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/assets/data/music_data.js -------------------------------------------------------------------------------- /docs/assets/data/music_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/assets/data/music_data.json -------------------------------------------------------------------------------- /docs/assets/data/music_data.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/assets/data/music_data.xlsx -------------------------------------------------------------------------------- /docs/assets/end.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/assets/end.gif -------------------------------------------------------------------------------- /docs/assets/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/assets/favicon.svg -------------------------------------------------------------------------------- /docs/assets/ipyvizzu-promo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/assets/ipyvizzu-promo.gif -------------------------------------------------------------------------------- /docs/assets/javascripts/analytics/head.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/assets/javascripts/analytics/head.js -------------------------------------------------------------------------------- /docs/assets/javascripts/csv2js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/assets/javascripts/csv2js.js -------------------------------------------------------------------------------- /docs/assets/javascripts/extlinks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/assets/javascripts/extlinks.js -------------------------------------------------------------------------------- /docs/assets/javascripts/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/assets/javascripts/highlight.js -------------------------------------------------------------------------------- /docs/assets/javascripts/iframe/autoheight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/assets/javascripts/iframe/autoheight.js -------------------------------------------------------------------------------- /docs/assets/javascripts/iframe/autoscale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/assets/javascripts/iframe/autoscale.js -------------------------------------------------------------------------------- /docs/assets/javascripts/iframe/click.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/assets/javascripts/iframe/click.js -------------------------------------------------------------------------------- /docs/assets/javascripts/mdchart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/assets/javascripts/mdchart.js -------------------------------------------------------------------------------- /docs/assets/javascripts/style_ref_allbtn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/assets/javascripts/style_ref_allbtn.js -------------------------------------------------------------------------------- /docs/assets/javascripts/style_ref_clickevent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/assets/javascripts/style_ref_clickevent.js -------------------------------------------------------------------------------- /docs/assets/javascripts/thumbs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/assets/javascripts/thumbs.js -------------------------------------------------------------------------------- /docs/assets/logo-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/assets/logo-white.svg -------------------------------------------------------------------------------- /docs/assets/stylesheets/chart.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/assets/stylesheets/chart.css -------------------------------------------------------------------------------- /docs/assets/stylesheets/gallery.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/assets/stylesheets/gallery.css -------------------------------------------------------------------------------- /docs/assets/stylesheets/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/assets/stylesheets/highlight.css -------------------------------------------------------------------------------- /docs/assets/stylesheets/iframe.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/assets/stylesheets/iframe.css -------------------------------------------------------------------------------- /docs/assets/stylesheets/style_reference.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/assets/stylesheets/style_reference.css -------------------------------------------------------------------------------- /docs/assets/stylesheets/vizzu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/assets/stylesheets/vizzu.css -------------------------------------------------------------------------------- /docs/dev/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/dev/index.md -------------------------------------------------------------------------------- /docs/environments/bi/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/environments/bi/index.md -------------------------------------------------------------------------------- /docs/environments/bi/mode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/environments/bi/mode.md -------------------------------------------------------------------------------- /docs/environments/ide/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/environments/ide/index.md -------------------------------------------------------------------------------- /docs/environments/ide/pycharm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/environments/ide/pycharm.md -------------------------------------------------------------------------------- /docs/environments/ide/vscode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/environments/ide/vscode.md -------------------------------------------------------------------------------- /docs/environments/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/environments/index.md -------------------------------------------------------------------------------- /docs/environments/notebook/colab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/environments/notebook/colab.md -------------------------------------------------------------------------------- /docs/environments/notebook/databricks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/environments/notebook/databricks.md -------------------------------------------------------------------------------- /docs/environments/notebook/datacamp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/environments/notebook/datacamp.md -------------------------------------------------------------------------------- /docs/environments/notebook/deepnote.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/environments/notebook/deepnote.md -------------------------------------------------------------------------------- /docs/environments/notebook/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/environments/notebook/index.md -------------------------------------------------------------------------------- /docs/environments/notebook/jupyterlab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/environments/notebook/jupyterlab.md -------------------------------------------------------------------------------- /docs/environments/notebook/jupyterlite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/environments/notebook/jupyterlite.md -------------------------------------------------------------------------------- /docs/environments/notebook/jupyternotebook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/environments/notebook/jupyternotebook.md -------------------------------------------------------------------------------- /docs/environments/notebook/kaggle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/environments/notebook/kaggle.md -------------------------------------------------------------------------------- /docs/environments/notebook/noteable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/environments/notebook/noteable.md -------------------------------------------------------------------------------- /docs/environments/platform/flask.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/environments/platform/flask.md -------------------------------------------------------------------------------- /docs/environments/platform/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/environments/platform/index.md -------------------------------------------------------------------------------- /docs/environments/platform/mercury.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/environments/platform/mercury.md -------------------------------------------------------------------------------- /docs/environments/platform/panel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/environments/platform/panel.md -------------------------------------------------------------------------------- /docs/environments/platform/streamlit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/environments/platform/streamlit.md -------------------------------------------------------------------------------- /docs/environments/platform/voila.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/environments/platform/voila.md -------------------------------------------------------------------------------- /docs/examples/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/examples/index.md -------------------------------------------------------------------------------- /docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/installation.md -------------------------------------------------------------------------------- /docs/showcases/music.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/showcases/music.md -------------------------------------------------------------------------------- /docs/showcases/music/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/showcases/music/main.html -------------------------------------------------------------------------------- /docs/showcases/music/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/showcases/music/main.js -------------------------------------------------------------------------------- /docs/showcases/music/music.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/showcases/music/music.csv -------------------------------------------------------------------------------- /docs/showcases/musicformats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/showcases/musicformats.md -------------------------------------------------------------------------------- /docs/showcases/musicformats/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/showcases/musicformats/main.html -------------------------------------------------------------------------------- /docs/showcases/musicformats/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/showcases/musicformats/main.js -------------------------------------------------------------------------------- /docs/showcases/musicformats/musicformats.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/showcases/musicformats/musicformats.csv -------------------------------------------------------------------------------- /docs/showcases/nadal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/showcases/nadal.md -------------------------------------------------------------------------------- /docs/showcases/nadal/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/showcases/nadal/main.html -------------------------------------------------------------------------------- /docs/showcases/nadal/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/showcases/nadal/main.js -------------------------------------------------------------------------------- /docs/showcases/nadal/nadal.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/showcases/nadal/nadal.csv -------------------------------------------------------------------------------- /docs/showcases/sales.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/showcases/sales.md -------------------------------------------------------------------------------- /docs/showcases/sales/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/showcases/sales/main.html -------------------------------------------------------------------------------- /docs/showcases/sales/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/showcases/sales/main.js -------------------------------------------------------------------------------- /docs/showcases/sales/sales.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/showcases/sales/sales.csv -------------------------------------------------------------------------------- /docs/showcases/titanic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/showcases/titanic.md -------------------------------------------------------------------------------- /docs/showcases/titanic/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/showcases/titanic/main.html -------------------------------------------------------------------------------- /docs/showcases/titanic/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/showcases/titanic/main.js -------------------------------------------------------------------------------- /docs/showcases/titanic/titanic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/showcases/titanic/titanic.csv -------------------------------------------------------------------------------- /docs/tutorial/aggregating_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/tutorial/aggregating_data.js -------------------------------------------------------------------------------- /docs/tutorial/aggregating_data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/tutorial/aggregating_data.md -------------------------------------------------------------------------------- /docs/tutorial/align_range.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/tutorial/align_range.js -------------------------------------------------------------------------------- /docs/tutorial/align_range.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/tutorial/align_range.md -------------------------------------------------------------------------------- /docs/tutorial/animation_control_keyframes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/tutorial/animation_control_keyframes.js -------------------------------------------------------------------------------- /docs/tutorial/animation_control_keyframes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/tutorial/animation_control_keyframes.md -------------------------------------------------------------------------------- /docs/tutorial/animation_options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/tutorial/animation_options.js -------------------------------------------------------------------------------- /docs/tutorial/animation_options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/tutorial/animation_options.md -------------------------------------------------------------------------------- /docs/tutorial/assets/setup/config_a.md: -------------------------------------------------------------------------------- 1 | ```python 2 | chart.animate(data) 3 | ``` 4 | -------------------------------------------------------------------------------- /docs/tutorial/assets/setup/config_b.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/tutorial/assets/setup/config_b.md -------------------------------------------------------------------------------- /docs/tutorial/assets/setup/config_c.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/tutorial/assets/setup/config_c.md -------------------------------------------------------------------------------- /docs/tutorial/assets/setup/init.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/tutorial/assets/setup/init.md -------------------------------------------------------------------------------- /docs/tutorial/assets/setup/setup_a.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/tutorial/assets/setup/setup_a.md -------------------------------------------------------------------------------- /docs/tutorial/assets/setup/setup_b.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/tutorial/assets/setup/setup_b.md -------------------------------------------------------------------------------- /docs/tutorial/assets/setup/setup_c.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/tutorial/assets/setup/setup_c.md -------------------------------------------------------------------------------- /docs/tutorial/axes_title_tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/tutorial/axes_title_tooltip.js -------------------------------------------------------------------------------- /docs/tutorial/axes_title_tooltip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/tutorial/axes_title_tooltip.md -------------------------------------------------------------------------------- /docs/tutorial/changing_dimensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/tutorial/changing_dimensions.js -------------------------------------------------------------------------------- /docs/tutorial/changing_dimensions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/tutorial/changing_dimensions.md -------------------------------------------------------------------------------- /docs/tutorial/channels_legend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/tutorial/channels_legend.js -------------------------------------------------------------------------------- /docs/tutorial/channels_legend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/tutorial/channels_legend.md -------------------------------------------------------------------------------- /docs/tutorial/chart_layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/tutorial/chart_layout.js -------------------------------------------------------------------------------- /docs/tutorial/chart_layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/tutorial/chart_layout.md -------------------------------------------------------------------------------- /docs/tutorial/chart_presets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/tutorial/chart_presets.js -------------------------------------------------------------------------------- /docs/tutorial/chart_presets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/tutorial/chart_presets.md -------------------------------------------------------------------------------- /docs/tutorial/chart_settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/tutorial/chart_settings.md -------------------------------------------------------------------------------- /docs/tutorial/color_palette_fonts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/tutorial/color_palette_fonts.js -------------------------------------------------------------------------------- /docs/tutorial/color_palette_fonts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/tutorial/color_palette_fonts.md -------------------------------------------------------------------------------- /docs/tutorial/data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/tutorial/data.md -------------------------------------------------------------------------------- /docs/tutorial/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/tutorial/events.js -------------------------------------------------------------------------------- /docs/tutorial/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/tutorial/events.md -------------------------------------------------------------------------------- /docs/tutorial/filter_add_new_records.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/tutorial/filter_add_new_records.js -------------------------------------------------------------------------------- /docs/tutorial/filter_add_new_records.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/tutorial/filter_add_new_records.md -------------------------------------------------------------------------------- /docs/tutorial/geometry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/tutorial/geometry.js -------------------------------------------------------------------------------- /docs/tutorial/geometry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/tutorial/geometry.md -------------------------------------------------------------------------------- /docs/tutorial/group_stack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/tutorial/group_stack.js -------------------------------------------------------------------------------- /docs/tutorial/group_stack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/tutorial/group_stack.md -------------------------------------------------------------------------------- /docs/tutorial/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/tutorial/index.md -------------------------------------------------------------------------------- /docs/tutorial/orientation_split_polar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/tutorial/orientation_split_polar.js -------------------------------------------------------------------------------- /docs/tutorial/orientation_split_polar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/tutorial/orientation_split_polar.md -------------------------------------------------------------------------------- /docs/tutorial/shorthands_store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/tutorial/shorthands_store.js -------------------------------------------------------------------------------- /docs/tutorial/shorthands_store.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/tutorial/shorthands_store.md -------------------------------------------------------------------------------- /docs/tutorial/sorting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/tutorial/sorting.js -------------------------------------------------------------------------------- /docs/tutorial/sorting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/tutorial/sorting.md -------------------------------------------------------------------------------- /docs/tutorial/stacking_explanation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/tutorial/stacking_explanation.js -------------------------------------------------------------------------------- /docs/tutorial/stacking_explanation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/tutorial/stacking_explanation.md -------------------------------------------------------------------------------- /docs/tutorial/style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/tutorial/style.md -------------------------------------------------------------------------------- /docs/tutorial/without_coordinates_noop_channel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/tutorial/without_coordinates_noop_channel.js -------------------------------------------------------------------------------- /docs/tutorial/without_coordinates_noop_channel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/docs/tutorial/without_coordinates_noop_channel.md -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/package.json -------------------------------------------------------------------------------- /pdm.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/pdm.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/ipyvizzu/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/src/ipyvizzu/__init__.py -------------------------------------------------------------------------------- /src/ipyvizzu/__version__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/src/ipyvizzu/__version__.py -------------------------------------------------------------------------------- /src/ipyvizzu/animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/src/ipyvizzu/animation.py -------------------------------------------------------------------------------- /src/ipyvizzu/animationcontrol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/src/ipyvizzu/animationcontrol.py -------------------------------------------------------------------------------- /src/ipyvizzu/chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/src/ipyvizzu/chart.py -------------------------------------------------------------------------------- /src/ipyvizzu/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/src/ipyvizzu/data/__init__.py -------------------------------------------------------------------------------- /src/ipyvizzu/data/converters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/src/ipyvizzu/data/converters/__init__.py -------------------------------------------------------------------------------- /src/ipyvizzu/data/converters/converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/src/ipyvizzu/data/converters/converter.py -------------------------------------------------------------------------------- /src/ipyvizzu/data/converters/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/src/ipyvizzu/data/converters/defaults.py -------------------------------------------------------------------------------- /src/ipyvizzu/data/converters/df/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/src/ipyvizzu/data/converters/df/__init__.py -------------------------------------------------------------------------------- /src/ipyvizzu/data/converters/df/converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/src/ipyvizzu/data/converters/df/converter.py -------------------------------------------------------------------------------- /src/ipyvizzu/data/converters/df/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/src/ipyvizzu/data/converters/df/defaults.py -------------------------------------------------------------------------------- /src/ipyvizzu/data/converters/df/type_alias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/src/ipyvizzu/data/converters/df/type_alias.py -------------------------------------------------------------------------------- /src/ipyvizzu/data/converters/numpy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/src/ipyvizzu/data/converters/numpy/__init__.py -------------------------------------------------------------------------------- /src/ipyvizzu/data/converters/numpy/converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/src/ipyvizzu/data/converters/numpy/converter.py -------------------------------------------------------------------------------- /src/ipyvizzu/data/converters/numpy/type_alias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/src/ipyvizzu/data/converters/numpy/type_alias.py -------------------------------------------------------------------------------- /src/ipyvizzu/data/converters/pandas/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/src/ipyvizzu/data/converters/pandas/__init__.py -------------------------------------------------------------------------------- /src/ipyvizzu/data/converters/pandas/converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/src/ipyvizzu/data/converters/pandas/converter.py -------------------------------------------------------------------------------- /src/ipyvizzu/data/converters/pandas/protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/src/ipyvizzu/data/converters/pandas/protocol.py -------------------------------------------------------------------------------- /src/ipyvizzu/data/converters/spark/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/src/ipyvizzu/data/converters/spark/__init__.py -------------------------------------------------------------------------------- /src/ipyvizzu/data/converters/spark/converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/src/ipyvizzu/data/converters/spark/converter.py -------------------------------------------------------------------------------- /src/ipyvizzu/data/converters/spark/protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/src/ipyvizzu/data/converters/spark/protocol.py -------------------------------------------------------------------------------- /src/ipyvizzu/data/infer_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/src/ipyvizzu/data/infer_type.py -------------------------------------------------------------------------------- /src/ipyvizzu/data/type_alias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/src/ipyvizzu/data/type_alias.py -------------------------------------------------------------------------------- /src/ipyvizzu/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/src/ipyvizzu/event.py -------------------------------------------------------------------------------- /src/ipyvizzu/integrations/__init__.py: -------------------------------------------------------------------------------- 1 | """A module for integrations.""" 2 | -------------------------------------------------------------------------------- /src/ipyvizzu/integrations/fugue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/src/ipyvizzu/integrations/fugue.py -------------------------------------------------------------------------------- /src/ipyvizzu/json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/src/ipyvizzu/json.py -------------------------------------------------------------------------------- /src/ipyvizzu/method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/src/ipyvizzu/method.py -------------------------------------------------------------------------------- /src/ipyvizzu/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ipyvizzu/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/src/ipyvizzu/schema.py -------------------------------------------------------------------------------- /src/ipyvizzu/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/src/ipyvizzu/template.py -------------------------------------------------------------------------------- /src/ipyvizzu/templates/ipyvizzu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/src/ipyvizzu/templates/ipyvizzu.js -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/assets/in_json.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/tests/assets/in_json.json -------------------------------------------------------------------------------- /tests/assets/in_pd_df_by_series.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/tests/assets/in_pd_df_by_series.json -------------------------------------------------------------------------------- /tests/assets/in_pd_df_by_series_with_index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/tests/assets/in_pd_df_by_series_with_index.json -------------------------------------------------------------------------------- /tests/assets/in_pd_df_by_series_with_nan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/tests/assets/in_pd_df_by_series_with_nan.json -------------------------------------------------------------------------------- /tests/assets/ref_fugue_preset.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/tests/assets/ref_fugue_preset.txt -------------------------------------------------------------------------------- /tests/assets/ref_fugue_timeline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/tests/assets/ref_fugue_timeline.txt -------------------------------------------------------------------------------- /tests/assets/ref_pd_df_by_series_max_rows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/tests/assets/ref_pd_df_by_series_max_rows.json -------------------------------------------------------------------------------- /tests/assets/ref_pd_df_by_series_with_duplicated_popularity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/tests/assets/ref_pd_df_by_series_with_duplicated_popularity.json -------------------------------------------------------------------------------- /tests/assets/ref_pd_df_by_series_with_index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/tests/assets/ref_pd_df_by_series_with_index.json -------------------------------------------------------------------------------- /tests/assets/ref_pd_df_by_series_with_nan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/tests/assets/ref_pd_df_by_series_with_nan.json -------------------------------------------------------------------------------- /tests/assets/ref_pd_series.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/tests/assets/ref_pd_series.json -------------------------------------------------------------------------------- /tests/assets/ref_pd_series_only_index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/tests/assets/ref_pd_series_only_index.json -------------------------------------------------------------------------------- /tests/assets/ref_pd_series_with_index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/tests/assets/ref_pd_series_with_index.json -------------------------------------------------------------------------------- /tests/assets/ref_pd_series_with_nan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/tests/assets/ref_pd_series_with_nan.json -------------------------------------------------------------------------------- /tests/test_animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/tests/test_animation.py -------------------------------------------------------------------------------- /tests/test_animationcontrol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/tests/test_animationcontrol.py -------------------------------------------------------------------------------- /tests/test_chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/tests/test_chart.py -------------------------------------------------------------------------------- /tests/test_data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/tests/test_data/__init__.py -------------------------------------------------------------------------------- /tests/test_data/test_data_datacube.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/tests/test_data/test_data_datacube.py -------------------------------------------------------------------------------- /tests/test_data/test_data_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/tests/test_data/test_data_filter.py -------------------------------------------------------------------------------- /tests/test_data/test_data_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/tests/test_data/test_data_json.py -------------------------------------------------------------------------------- /tests/test_data/test_data_records.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/tests/test_data/test_data_records.py -------------------------------------------------------------------------------- /tests/test_data/test_data_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/tests/test_data/test_data_schema.py -------------------------------------------------------------------------------- /tests/test_data/test_data_series.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/tests/test_data/test_data_series.py -------------------------------------------------------------------------------- /tests/test_data/test_numpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/tests/test_data/test_numpy.py -------------------------------------------------------------------------------- /tests/test_data/test_pandas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/tests/test_data/test_pandas.py -------------------------------------------------------------------------------- /tests/test_data/test_pyspark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/tests/test_data/test_pyspark.py -------------------------------------------------------------------------------- /tests/test_docs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/tests/test_docs/__init__.py -------------------------------------------------------------------------------- /tests/test_docs/tutorial/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/tests/test_docs/tutorial/__init__.py -------------------------------------------------------------------------------- /tests/test_docs/tutorial/test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/tests/test_docs/tutorial/test_data.py -------------------------------------------------------------------------------- /tests/test_fugue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/tests/test_fugue.py -------------------------------------------------------------------------------- /tests/test_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/tests/test_json.py -------------------------------------------------------------------------------- /tests/test_method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/tests/test_method.py -------------------------------------------------------------------------------- /tests/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/tests/utils/__init__.py -------------------------------------------------------------------------------- /tests/utils/import_modifiers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/tests/utils/import_modifiers.py -------------------------------------------------------------------------------- /tests/utils/normalizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/tests/utils/normalizer.py -------------------------------------------------------------------------------- /tools/ci/.pre-commit-ubuntu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/tools/ci/.pre-commit-ubuntu.yaml -------------------------------------------------------------------------------- /tools/ci/get_tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/tools/ci/get_tag.py -------------------------------------------------------------------------------- /tools/ci/markdown_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/tools/ci/markdown_format.py -------------------------------------------------------------------------------- /tools/ci/std_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/tools/ci/std_check.py -------------------------------------------------------------------------------- /tools/ci/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/tools/ci/version.py -------------------------------------------------------------------------------- /tools/docs/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/tools/docs/config.py -------------------------------------------------------------------------------- /tools/docs/deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/tools/docs/deploy.py -------------------------------------------------------------------------------- /tools/docs/examples/gen_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/tools/docs/examples/gen_examples.py -------------------------------------------------------------------------------- /tools/docs/examples/mjs2csv.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/tools/docs/examples/mjs2csv.mjs -------------------------------------------------------------------------------- /tools/docs/examples/mjs2js.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/tools/docs/examples/mjs2js.mjs -------------------------------------------------------------------------------- /tools/docs/examples/mjs2md.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/tools/docs/examples/mjs2md.mjs -------------------------------------------------------------------------------- /tools/docs/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/tools/docs/mkdocs.yml -------------------------------------------------------------------------------- /tools/docs/overrides/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/tools/docs/overrides/main.html -------------------------------------------------------------------------------- /tools/docs/overrides/mike/redirect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/tools/docs/overrides/mike/redirect.html -------------------------------------------------------------------------------- /tools/docs/pages/gen_pages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/tools/docs/pages/gen_pages.py -------------------------------------------------------------------------------- /tools/docs/placeholder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/tools/docs/placeholder.py -------------------------------------------------------------------------------- /tools/docs/reference/gen_reference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/tools/docs/reference/gen_reference.py -------------------------------------------------------------------------------- /tools/docs/snippets/gen_vizzu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/tools/docs/snippets/gen_vizzu.py -------------------------------------------------------------------------------- /tools/docs/style/gen_style_reference.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/tools/docs/style/gen_style_reference.mjs -------------------------------------------------------------------------------- /tools/docs/style/gen_style_reference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/tools/docs/style/gen_style_reference.py -------------------------------------------------------------------------------- /tools/docs/style/get_style_reference.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/tools/docs/style/get_style_reference.mjs -------------------------------------------------------------------------------- /tools/modules/node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/tools/modules/node.py -------------------------------------------------------------------------------- /tools/modules/vizzu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vizzuhq/ipyvizzu/HEAD/tools/modules/vizzu.py --------------------------------------------------------------------------------