├── .gitignore ├── LICENSE ├── README.md ├── assets ├── easy-dataframe-dashboards.gif ├── easy-dataframe-dashboards.mp4 ├── easy-dataframe-exploration.gif ├── easy-dataframe-exploration.mp4 ├── hvplot-example-colab.gif └── hvplot-example-colab.mp4 ├── binder ├── postBuild └── requirements.txt ├── docs ├── hvplot_interactive.html └── hvplot_interactive.js ├── hvplot_interactive.ipynb └── jupyter-panel-proxy.yml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophiamyang/hvplot_interactive/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophiamyang/hvplot_interactive/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophiamyang/hvplot_interactive/HEAD/README.md -------------------------------------------------------------------------------- /assets/easy-dataframe-dashboards.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophiamyang/hvplot_interactive/HEAD/assets/easy-dataframe-dashboards.gif -------------------------------------------------------------------------------- /assets/easy-dataframe-dashboards.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophiamyang/hvplot_interactive/HEAD/assets/easy-dataframe-dashboards.mp4 -------------------------------------------------------------------------------- /assets/easy-dataframe-exploration.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophiamyang/hvplot_interactive/HEAD/assets/easy-dataframe-exploration.gif -------------------------------------------------------------------------------- /assets/easy-dataframe-exploration.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophiamyang/hvplot_interactive/HEAD/assets/easy-dataframe-exploration.mp4 -------------------------------------------------------------------------------- /assets/hvplot-example-colab.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophiamyang/hvplot_interactive/HEAD/assets/hvplot-example-colab.gif -------------------------------------------------------------------------------- /assets/hvplot-example-colab.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophiamyang/hvplot_interactive/HEAD/assets/hvplot-example-colab.mp4 -------------------------------------------------------------------------------- /binder/postBuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophiamyang/hvplot_interactive/HEAD/binder/postBuild -------------------------------------------------------------------------------- /binder/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophiamyang/hvplot_interactive/HEAD/binder/requirements.txt -------------------------------------------------------------------------------- /docs/hvplot_interactive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophiamyang/hvplot_interactive/HEAD/docs/hvplot_interactive.html -------------------------------------------------------------------------------- /docs/hvplot_interactive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophiamyang/hvplot_interactive/HEAD/docs/hvplot_interactive.js -------------------------------------------------------------------------------- /hvplot_interactive.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophiamyang/hvplot_interactive/HEAD/hvplot_interactive.ipynb -------------------------------------------------------------------------------- /jupyter-panel-proxy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophiamyang/hvplot_interactive/HEAD/jupyter-panel-proxy.yml --------------------------------------------------------------------------------