solara-ui 1.45.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- prefix/etc/jupyter/jupyter_notebook_config.d/solara.json +7 -0
- prefix/etc/jupyter/jupyter_server_config.d/solara.json +7 -0
- solara/__init__.py +124 -0
- solara/__main__.py +765 -0
- solara/_stores.py +297 -0
- solara/alias.py +6 -0
- solara/autorouting.py +555 -0
- solara/cache.py +305 -0
- solara/checks.html +71 -0
- solara/checks.py +227 -0
- solara/comm.py +28 -0
- solara/components/__init__.py +77 -0
- solara/components/alert.py +155 -0
- solara/components/applayout.py +397 -0
- solara/components/button.py +85 -0
- solara/components/card.py +87 -0
- solara/components/checkbox.py +50 -0
- solara/components/code_highlight_css.py +11 -0
- solara/components/code_highlight_css.vue +63 -0
- solara/components/columns.py +159 -0
- solara/components/component_vue.py +134 -0
- solara/components/cross_filter.py +335 -0
- solara/components/dataframe.py +546 -0
- solara/components/datatable.py +214 -0
- solara/components/datatable.vue +175 -0
- solara/components/details.py +56 -0
- solara/components/download.vue +35 -0
- solara/components/echarts.py +86 -0
- solara/components/echarts.vue +139 -0
- solara/components/figure_altair.py +39 -0
- solara/components/file_browser.py +181 -0
- solara/components/file_download.py +199 -0
- solara/components/file_drop.py +159 -0
- solara/components/file_drop.vue +83 -0
- solara/components/file_list_widget.vue +78 -0
- solara/components/head.py +27 -0
- solara/components/head_tag.py +49 -0
- solara/components/head_tag.vue +60 -0
- solara/components/image.py +173 -0
- solara/components/input.py +456 -0
- solara/components/input_text_area.py +86 -0
- solara/components/link.py +55 -0
- solara/components/markdown.py +441 -0
- solara/components/markdown_editor.py +33 -0
- solara/components/markdown_editor.vue +359 -0
- solara/components/matplotlib.py +74 -0
- solara/components/meta.py +47 -0
- solara/components/misc.py +333 -0
- solara/components/pivot_table.py +258 -0
- solara/components/pivot_table.vue +158 -0
- solara/components/progress.py +47 -0
- solara/components/select.py +182 -0
- solara/components/select.vue +27 -0
- solara/components/slider.py +442 -0
- solara/components/slider_date.vue +56 -0
- solara/components/spinner-solara.vue +105 -0
- solara/components/spinner.py +45 -0
- solara/components/sql_code.py +41 -0
- solara/components/sql_code.vue +125 -0
- solara/components/style.py +105 -0
- solara/components/switch.py +71 -0
- solara/components/tab_navigation.py +37 -0
- solara/components/title.py +90 -0
- solara/components/title.vue +38 -0
- solara/components/togglebuttons.py +200 -0
- solara/components/tooltip.py +61 -0
- solara/core.py +42 -0
- solara/datatypes.py +143 -0
- solara/express.py +241 -0
- solara/hooks/__init__.py +4 -0
- solara/hooks/dataframe.py +99 -0
- solara/hooks/misc.py +263 -0
- solara/hooks/use_reactive.py +151 -0
- solara/hooks/use_thread.py +129 -0
- solara/kitchensink.py +8 -0
- solara/lab/__init__.py +34 -0
- solara/lab/components/__init__.py +7 -0
- solara/lab/components/chat.py +215 -0
- solara/lab/components/confirmation_dialog.py +163 -0
- solara/lab/components/cross_filter.py +7 -0
- solara/lab/components/input_date.py +339 -0
- solara/lab/components/input_time.py +133 -0
- solara/lab/components/menu.py +181 -0
- solara/lab/components/menu.vue +38 -0
- solara/lab/components/tabs.py +274 -0
- solara/lab/components/theming.py +98 -0
- solara/lab/components/theming.vue +72 -0
- solara/lab/hooks/__init__.py +0 -0
- solara/lab/hooks/dataframe.py +2 -0
- solara/lab/toestand.py +3 -0
- solara/lab/utils/__init__.py +2 -0
- solara/lab/utils/cookies.py +5 -0
- solara/lab/utils/dataframe.py +165 -0
- solara/lab/utils/headers.py +5 -0
- solara/layout.py +44 -0
- solara/lifecycle.py +46 -0
- solara/minisettings.py +141 -0
- solara/py.typed +0 -0
- solara/reactive.py +99 -0
- solara/routing.py +268 -0
- solara/scope/__init__.py +88 -0
- solara/scope/types.py +55 -0
- solara/server/__init__.py +0 -0
- solara/server/app.py +527 -0
- solara/server/assets/custom.css +1 -0
- solara/server/assets/custom.js +1 -0
- solara/server/assets/favicon.png +0 -0
- solara/server/assets/favicon.svg +5 -0
- solara/server/assets/style.css +1681 -0
- solara/server/assets/theme-dark.css +437 -0
- solara/server/assets/theme-light.css +420 -0
- solara/server/assets/theme.js +3 -0
- solara/server/cdn_helper.py +91 -0
- solara/server/esm.py +71 -0
- solara/server/fastapi.py +5 -0
- solara/server/flask.py +297 -0
- solara/server/jupyter/__init__.py +2 -0
- solara/server/jupyter/cdn_handler.py +28 -0
- solara/server/jupyter/server_extension.py +40 -0
- solara/server/jupyter/solara.py +91 -0
- solara/server/jupytertools.py +46 -0
- solara/server/kernel.py +388 -0
- solara/server/kernel_context.py +467 -0
- solara/server/patch.py +564 -0
- solara/server/pyinstaller/__init__.py +9 -0
- solara/server/pyinstaller/hook-ipyreact.py +5 -0
- solara/server/pyinstaller/hook-ipyvuetify.py +5 -0
- solara/server/pyinstaller/hook-solara.py +9 -0
- solara/server/qt.py +113 -0
- solara/server/reload.py +251 -0
- solara/server/server.py +484 -0
- solara/server/settings.py +249 -0
- solara/server/shell.py +269 -0
- solara/server/starlette.py +770 -0
- solara/server/static/ansi.js +270 -0
- solara/server/static/highlight-dark.css +82 -0
- solara/server/static/highlight.css +43 -0
- solara/server/static/main-vuetify.js +272 -0
- solara/server/static/main.js +163 -0
- solara/server/static/solara_bootstrap.py +129 -0
- solara/server/static/sun.svg +23 -0
- solara/server/static/webworker.js +42 -0
- solara/server/telemetry.py +212 -0
- solara/server/templates/index.html.j2 +1 -0
- solara/server/templates/loader-plain.css +11 -0
- solara/server/templates/loader-plain.html +20 -0
- solara/server/templates/loader-solara.css +111 -0
- solara/server/templates/loader-solara.html +40 -0
- solara/server/templates/plain.html +82 -0
- solara/server/templates/solara.html.j2 +486 -0
- solara/server/threaded.py +84 -0
- solara/server/utils.py +44 -0
- solara/server/websocket.py +45 -0
- solara/settings.py +86 -0
- solara/tasks.py +893 -0
- solara/template/button.py +16 -0
- solara/template/markdown.py +42 -0
- solara/template/portal/.flake8 +6 -0
- solara/template/portal/.pre-commit-config.yaml +28 -0
- solara/template/portal/LICENSE +21 -0
- solara/template/portal/Procfile +7 -0
- solara/template/portal/mypy.ini +3 -0
- solara/template/portal/pyproject.toml +26 -0
- solara/template/portal/solara_portal/__init__.py +4 -0
- solara/template/portal/solara_portal/components/__init__.py +2 -0
- solara/template/portal/solara_portal/components/article.py +28 -0
- solara/template/portal/solara_portal/components/data.py +28 -0
- solara/template/portal/solara_portal/components/header.py +6 -0
- solara/template/portal/solara_portal/components/layout.py +6 -0
- solara/template/portal/solara_portal/content/articles/equis-in-vidi.md +85 -0
- solara/template/portal/solara_portal/content/articles/substiterat-vati.md +70 -0
- solara/template/portal/solara_portal/data.py +60 -0
- solara/template/portal/solara_portal/pages/__init__.py +67 -0
- solara/template/portal/solara_portal/pages/article/__init__.py +26 -0
- solara/template/portal/solara_portal/pages/tabular.py +29 -0
- solara/template/portal/solara_portal/pages/viz/__init__.py +70 -0
- solara/template/portal/solara_portal/pages/viz/overview.py +14 -0
- solara/test/__init__.py +0 -0
- solara/test/pytest_plugin.py +783 -0
- solara/toestand.py +998 -0
- solara/util.py +348 -0
- solara/validate_hooks.py +258 -0
- solara/website/__init__.py +0 -0
- solara/website/assets/custom.css +444 -0
- solara/website/assets/images/logo-small.png +0 -0
- solara/website/assets/images/logo.svg +17 -0
- solara/website/assets/images/logo_white.svg +50 -0
- solara/website/assets/theme.js +8 -0
- solara/website/components/__init__.py +5 -0
- solara/website/components/algolia.py +6 -0
- solara/website/components/algolia.vue +24 -0
- solara/website/components/algolia_api.vue +202 -0
- solara/website/components/breadcrumbs.py +28 -0
- solara/website/components/contact.py +144 -0
- solara/website/components/docs.py +143 -0
- solara/website/components/header.py +75 -0
- solara/website/components/mailchimp.py +12 -0
- solara/website/components/mailchimp.vue +47 -0
- solara/website/components/markdown.py +99 -0
- solara/website/components/markdown_nav.vue +34 -0
- solara/website/components/notebook.py +171 -0
- solara/website/components/sidebar.py +105 -0
- solara/website/pages/__init__.py +370 -0
- solara/website/pages/about/__init__.py +9 -0
- solara/website/pages/about/about.md +3 -0
- solara/website/pages/apps/__init__.py +16 -0
- solara/website/pages/apps/authorization/__init__.py +119 -0
- solara/website/pages/apps/authorization/admin.py +12 -0
- solara/website/pages/apps/authorization/users.py +12 -0
- solara/website/pages/apps/jupyter-dashboard-1.py +116 -0
- solara/website/pages/apps/layout-demo.py +40 -0
- solara/website/pages/apps/multipage/__init__.py +38 -0
- solara/website/pages/apps/multipage/page1.py +26 -0
- solara/website/pages/apps/multipage/page2.py +34 -0
- solara/website/pages/apps/scatter.py +136 -0
- solara/website/pages/apps/scrolling.py +63 -0
- solara/website/pages/apps/tutorial-streamlit.py +18 -0
- solara/website/pages/careers/__init__.py +27 -0
- solara/website/pages/changelog/__init__.py +10 -0
- solara/website/pages/changelog/changelog.md +372 -0
- solara/website/pages/contact/__init__.py +34 -0
- solara/website/pages/doc_use_download.py +85 -0
- solara/website/pages/documentation/__init__.py +90 -0
- solara/website/pages/documentation/advanced/__init__.py +9 -0
- solara/website/pages/documentation/advanced/content/00-overview.md +1 -0
- solara/website/pages/documentation/advanced/content/10-howto/00-overview.md +6 -0
- solara/website/pages/documentation/advanced/content/10-howto/10-multipage.md +196 -0
- solara/website/pages/documentation/advanced/content/10-howto/20-layout.md +125 -0
- solara/website/pages/documentation/advanced/content/10-howto/30-testing.md +417 -0
- solara/website/pages/documentation/advanced/content/10-howto/31-debugging.md +69 -0
- solara/website/pages/documentation/advanced/content/10-howto/40-embed.md +50 -0
- solara/website/pages/documentation/advanced/content/10-howto/50-ipywidget_libraries.md +124 -0
- solara/website/pages/documentation/advanced/content/15-reference/00-overview.md +3 -0
- solara/website/pages/documentation/advanced/content/15-reference/40-static_files.md +31 -0
- solara/website/pages/documentation/advanced/content/15-reference/41-asset-files.md +72 -0
- solara/website/pages/documentation/advanced/content/15-reference/60-static-site-generation.md +59 -0
- solara/website/pages/documentation/advanced/content/15-reference/70-search.md +34 -0
- solara/website/pages/documentation/advanced/content/15-reference/80-reloading.md +34 -0
- solara/website/pages/documentation/advanced/content/15-reference/90-notebook-support.md +7 -0
- solara/website/pages/documentation/advanced/content/15-reference/95-caching.md +148 -0
- solara/website/pages/documentation/advanced/content/20-understanding/00-introduction.md +10 -0
- solara/website/pages/documentation/advanced/content/20-understanding/05-ipywidgets.md +35 -0
- solara/website/pages/documentation/advanced/content/20-understanding/06-ipyvuetify.md +42 -0
- solara/website/pages/documentation/advanced/content/20-understanding/10-reacton.md +28 -0
- solara/website/pages/documentation/advanced/content/20-understanding/12-reacton-basics.md +108 -0
- solara/website/pages/documentation/advanced/content/20-understanding/15-anatomy.md +23 -0
- solara/website/pages/documentation/advanced/content/20-understanding/17-rules-of-hooks.md +192 -0
- solara/website/pages/documentation/advanced/content/20-understanding/18-containers.md +166 -0
- solara/website/pages/documentation/advanced/content/20-understanding/20-solara.md +18 -0
- solara/website/pages/documentation/advanced/content/20-understanding/40-routing.md +256 -0
- solara/website/pages/documentation/advanced/content/20-understanding/50-solara-server.md +108 -0
- solara/website/pages/documentation/advanced/content/20-understanding/60-voila.md +12 -0
- solara/website/pages/documentation/advanced/content/30-enterprise/00-overview.md +7 -0
- solara/website/pages/documentation/advanced/content/30-enterprise/10-oauth.md +187 -0
- solara/website/pages/documentation/advanced/content/40-development/00-overview.md +0 -0
- solara/website/pages/documentation/advanced/content/40-development/01-contribute.md +45 -0
- solara/website/pages/documentation/advanced/content/40-development/10-setup.md +76 -0
- solara/website/pages/documentation/api/__init__.py +19 -0
- solara/website/pages/documentation/api/cross_filter/__init__.py +9 -0
- solara/website/pages/documentation/api/cross_filter/cross_filter_dataframe.py +22 -0
- solara/website/pages/documentation/api/cross_filter/cross_filter_report.py +20 -0
- solara/website/pages/documentation/api/cross_filter/cross_filter_select.py +20 -0
- solara/website/pages/documentation/api/cross_filter/cross_filter_slider.py +20 -0
- solara/website/pages/documentation/api/hooks/__init__.py +9 -0
- solara/website/pages/documentation/api/hooks/use_cross_filter.py +23 -0
- solara/website/pages/documentation/api/hooks/use_dark_effective.py +12 -0
- solara/website/pages/documentation/api/hooks/use_effect.md +43 -0
- solara/website/pages/documentation/api/hooks/use_effect.py +9 -0
- solara/website/pages/documentation/api/hooks/use_exception.py +31 -0
- solara/website/pages/documentation/api/hooks/use_memo.md +16 -0
- solara/website/pages/documentation/api/hooks/use_memo.py +9 -0
- solara/website/pages/documentation/api/hooks/use_previous.py +30 -0
- solara/website/pages/documentation/api/hooks/use_reactive.py +16 -0
- solara/website/pages/documentation/api/hooks/use_state.py +10 -0
- solara/website/pages/documentation/api/hooks/use_state_or_update.py +66 -0
- solara/website/pages/documentation/api/hooks/use_thread.md +64 -0
- solara/website/pages/documentation/api/hooks/use_thread.py +42 -0
- solara/website/pages/documentation/api/hooks/use_trait_observe.py +12 -0
- solara/website/pages/documentation/api/routing/__init__.py +9 -0
- solara/website/pages/documentation/api/routing/generate_routes.py +10 -0
- solara/website/pages/documentation/api/routing/generate_routes_directory.py +10 -0
- solara/website/pages/documentation/api/routing/resolve_path.py +35 -0
- solara/website/pages/documentation/api/routing/route.py +29 -0
- solara/website/pages/documentation/api/routing/use_route.py +76 -0
- solara/website/pages/documentation/api/routing/use_router.py +16 -0
- solara/website/pages/documentation/api/utilities/__init__.py +9 -0
- solara/website/pages/documentation/api/utilities/component_vue.py +10 -0
- solara/website/pages/documentation/api/utilities/computed.py +16 -0
- solara/website/pages/documentation/api/utilities/display.py +16 -0
- solara/website/pages/documentation/api/utilities/get_kernel_id.py +16 -0
- solara/website/pages/documentation/api/utilities/get_session_id.py +16 -0
- solara/website/pages/documentation/api/utilities/memoize.py +35 -0
- solara/website/pages/documentation/api/utilities/on_kernel_start.py +44 -0
- solara/website/pages/documentation/api/utilities/reactive.py +16 -0
- solara/website/pages/documentation/api/utilities/widget.py +104 -0
- solara/website/pages/documentation/components/__init__.py +12 -0
- solara/website/pages/documentation/components/advanced/__init__.py +9 -0
- solara/website/pages/documentation/components/advanced/link.py +25 -0
- solara/website/pages/documentation/components/advanced/meta.py +17 -0
- solara/website/pages/documentation/components/advanced/style.py +43 -0
- solara/website/pages/documentation/components/common.py +9 -0
- solara/website/pages/documentation/components/data/__init__.py +9 -0
- solara/website/pages/documentation/components/data/dataframe.py +44 -0
- solara/website/pages/documentation/components/data/pivot_table.py +81 -0
- solara/website/pages/documentation/components/enterprise/__init__.py +9 -0
- solara/website/pages/documentation/components/enterprise/avatar.py +24 -0
- solara/website/pages/documentation/components/enterprise/avatar_menu.py +25 -0
- solara/website/pages/documentation/components/input/__init__.py +9 -0
- solara/website/pages/documentation/components/input/button.py +23 -0
- solara/website/pages/documentation/components/input/checkbox.py +10 -0
- solara/website/pages/documentation/components/input/file_browser.py +30 -0
- solara/website/pages/documentation/components/input/file_drop.py +76 -0
- solara/website/pages/documentation/components/input/input.py +43 -0
- solara/website/pages/documentation/components/input/select.py +22 -0
- solara/website/pages/documentation/components/input/slider.py +29 -0
- solara/website/pages/documentation/components/input/switch.py +10 -0
- solara/website/pages/documentation/components/input/togglebuttons.py +21 -0
- solara/website/pages/documentation/components/lab/__init__.py +9 -0
- solara/website/pages/documentation/components/lab/chat.py +109 -0
- solara/website/pages/documentation/components/lab/confirmation_dialog.py +55 -0
- solara/website/pages/documentation/components/lab/cookies_headers.py +48 -0
- solara/website/pages/documentation/components/lab/input_date.py +20 -0
- solara/website/pages/documentation/components/lab/input_time.py +15 -0
- solara/website/pages/documentation/components/lab/menu.py +22 -0
- solara/website/pages/documentation/components/lab/tab.py +25 -0
- solara/website/pages/documentation/components/lab/tabs.py +45 -0
- solara/website/pages/documentation/components/lab/task.py +11 -0
- solara/website/pages/documentation/components/lab/theming.py +74 -0
- solara/website/pages/documentation/components/lab/use_task.py +11 -0
- solara/website/pages/documentation/components/layout/__init__.py +9 -0
- solara/website/pages/documentation/components/layout/app_bar.py +16 -0
- solara/website/pages/documentation/components/layout/app_bar_title.py +16 -0
- solara/website/pages/documentation/components/layout/app_layout.py +24 -0
- solara/website/pages/documentation/components/layout/card.py +15 -0
- solara/website/pages/documentation/components/layout/card_actions.py +16 -0
- solara/website/pages/documentation/components/layout/column.py +30 -0
- solara/website/pages/documentation/components/layout/columns.py +27 -0
- solara/website/pages/documentation/components/layout/columns_responsive.py +66 -0
- solara/website/pages/documentation/components/layout/details.py +13 -0
- solara/website/pages/documentation/components/layout/griddraggable.py +62 -0
- solara/website/pages/documentation/components/layout/gridfixed.py +19 -0
- solara/website/pages/documentation/components/layout/hbox.py +18 -0
- solara/website/pages/documentation/components/layout/row.py +30 -0
- solara/website/pages/documentation/components/layout/sidebar.py +24 -0
- solara/website/pages/documentation/components/layout/vbox.py +19 -0
- solara/website/pages/documentation/components/output/__init__.py +9 -0
- solara/website/pages/documentation/components/output/file_download.py +11 -0
- solara/website/pages/documentation/components/output/html.py +19 -0
- solara/website/pages/documentation/components/output/image.py +11 -0
- solara/website/pages/documentation/components/output/markdown.py +57 -0
- solara/website/pages/documentation/components/output/markdown_editor.py +51 -0
- solara/website/pages/documentation/components/output/sql_code.py +83 -0
- solara/website/pages/documentation/components/output/tooltip.py +11 -0
- solara/website/pages/documentation/components/page/__init__.py +9 -0
- solara/website/pages/documentation/components/page/head.py +15 -0
- solara/website/pages/documentation/components/page/title.py +25 -0
- solara/website/pages/documentation/components/status/__init__.py +9 -0
- solara/website/pages/documentation/components/status/error.py +39 -0
- solara/website/pages/documentation/components/status/info.py +39 -0
- solara/website/pages/documentation/components/status/progress.py +10 -0
- solara/website/pages/documentation/components/status/spinner.py +11 -0
- solara/website/pages/documentation/components/status/success.py +40 -0
- solara/website/pages/documentation/components/status/warning.py +47 -0
- solara/website/pages/documentation/components/viz/__init__.py +9 -0
- solara/website/pages/documentation/components/viz/altair.py +42 -0
- solara/website/pages/documentation/components/viz/echarts.py +77 -0
- solara/website/pages/documentation/components/viz/matplotlib.py +30 -0
- solara/website/pages/documentation/components/viz/plotly.py +63 -0
- solara/website/pages/documentation/components/viz/plotly_express.py +41 -0
- solara/website/pages/documentation/examples/__init__.py +54 -0
- solara/website/pages/documentation/examples/ai/__init__.py +11 -0
- solara/website/pages/documentation/examples/ai/chatbot.py +113 -0
- solara/website/pages/documentation/examples/ai/tokenizer.py +107 -0
- solara/website/pages/documentation/examples/basics/__init__.py +10 -0
- solara/website/pages/documentation/examples/basics/sine.py +28 -0
- solara/website/pages/documentation/examples/fullscreen/__init__.py +10 -0
- solara/website/pages/documentation/examples/fullscreen/authorization.py +3 -0
- solara/website/pages/documentation/examples/fullscreen/layout_demo.py +3 -0
- solara/website/pages/documentation/examples/fullscreen/multipage.py +3 -0
- solara/website/pages/documentation/examples/fullscreen/scatter.py +3 -0
- solara/website/pages/documentation/examples/fullscreen/scrolling.py +3 -0
- solara/website/pages/documentation/examples/fullscreen/tutorial_streamlit.py +3 -0
- solara/website/pages/documentation/examples/general/__init__.py +10 -0
- solara/website/pages/documentation/examples/general/custom_storage.py +70 -0
- solara/website/pages/documentation/examples/general/deploy_model.py +115 -0
- solara/website/pages/documentation/examples/general/live_update.py +32 -0
- solara/website/pages/documentation/examples/general/login_oauth.py +81 -0
- solara/website/pages/documentation/examples/general/mycard.vue +58 -0
- solara/website/pages/documentation/examples/general/pokemon_search.py +51 -0
- solara/website/pages/documentation/examples/general/vue_component.py +50 -0
- solara/website/pages/documentation/examples/ipycanvas.py +49 -0
- solara/website/pages/documentation/examples/libraries/__init__.py +10 -0
- solara/website/pages/documentation/examples/libraries/altair.py +65 -0
- solara/website/pages/documentation/examples/libraries/bqplot.py +39 -0
- solara/website/pages/documentation/examples/libraries/ipyleaflet.py +33 -0
- solara/website/pages/documentation/examples/libraries/ipyleaflet_advanced.py +66 -0
- solara/website/pages/documentation/examples/utilities/__init__.py +10 -0
- solara/website/pages/documentation/examples/utilities/calculator.py +157 -0
- solara/website/pages/documentation/examples/utilities/countdown_timer.py +62 -0
- solara/website/pages/documentation/examples/utilities/todo.py +196 -0
- solara/website/pages/documentation/examples/visualization/__init__.py +6 -0
- solara/website/pages/documentation/examples/visualization/annotator.py +67 -0
- solara/website/pages/documentation/examples/visualization/linked_views.py +81 -0
- solara/website/pages/documentation/examples/visualization/plotly.py +44 -0
- solara/website/pages/documentation/faq/__init__.py +12 -0
- solara/website/pages/documentation/faq/content/99-faq.md +112 -0
- solara/website/pages/documentation/getting_started/__init__.py +9 -0
- solara/website/pages/documentation/getting_started/content/00-quickstart.md +107 -0
- solara/website/pages/documentation/getting_started/content/01-introduction.md +125 -0
- solara/website/pages/documentation/getting_started/content/02-installing.md +134 -0
- solara/website/pages/documentation/getting_started/content/04-tutorials/00-overview.md +14 -0
- solara/website/pages/documentation/getting_started/content/04-tutorials/10_data_science.py +13 -0
- solara/website/pages/documentation/getting_started/content/04-tutorials/20-web-app.md +89 -0
- solara/website/pages/documentation/getting_started/content/04-tutorials/30-ipywidgets.md +124 -0
- solara/website/pages/documentation/getting_started/content/04-tutorials/40-streamlit.md +146 -0
- solara/website/pages/documentation/getting_started/content/04-tutorials/50-dash.md +144 -0
- solara/website/pages/documentation/getting_started/content/04-tutorials/60-jupyter-dashboard-part1.py +65 -0
- solara/website/pages/documentation/getting_started/content/04-tutorials/SF_crime_sample.csv.gz +0 -0
- solara/website/pages/documentation/getting_started/content/04-tutorials/_data_science.ipynb +445 -0
- solara/website/pages/documentation/getting_started/content/04-tutorials/_jupyter_dashboard_1.ipynb +1021 -0
- solara/website/pages/documentation/getting_started/content/05-fundamentals/00-overview.md +11 -0
- solara/website/pages/documentation/getting_started/content/05-fundamentals/10-components.md +228 -0
- solara/website/pages/documentation/getting_started/content/05-fundamentals/50-state-management.md +278 -0
- solara/website/pages/documentation/getting_started/content/07-deploying/00-overview.md +7 -0
- solara/website/pages/documentation/getting_started/content/07-deploying/10-self-hosted.md +305 -0
- solara/website/pages/documentation/getting_started/content/07-deploying/20-cloud-hosted.md +80 -0
- solara/website/pages/documentation/getting_started/content/80-what-is-lab.md +7 -0
- solara/website/pages/documentation/getting_started/content/90-troubleshoot.md +26 -0
- solara/website/pages/docutils.py +38 -0
- solara/website/pages/home.vue +1199 -0
- solara/website/pages/our_team/__init__.py +83 -0
- solara/website/pages/pricing/__init__.py +31 -0
- solara/website/pages/roadmap/__init__.py +11 -0
- solara/website/pages/roadmap/roadmap.md +47 -0
- solara/website/pages/scale_ipywidgets.py +45 -0
- solara/website/pages/showcase/__init__.py +105 -0
- solara/website/pages/showcase/domino_code_assist.py +60 -0
- solara/website/pages/showcase/planeto_tessa.py +19 -0
- solara/website/pages/showcase/solara_dev.py +54 -0
- solara/website/pages/showcase/solarathon_2023_team_2.py +22 -0
- solara/website/pages/showcase/solarathon_2023_team_4.py +22 -0
- solara/website/pages/showcase/solarathon_2023_team_5.py +23 -0
- solara/website/pages/showcase/solarathon_2023_team_6.py +34 -0
- solara/website/pages/showcase/wanderlust.py +27 -0
- solara/website/public/beach.jpeg +0 -0
- solara/website/public/logo.svg +6 -0
- solara/website/public/social/discord.svg +1 -0
- solara/website/public/social/github.svg +1 -0
- solara/website/public/social/twitter.svg +3 -0
- solara/website/public/success.html +25 -0
- solara/website/templates/index.html.j2 +117 -0
- solara/website/utils.py +51 -0
- solara/widgets/__init__.py +1 -0
- solara/widgets/vue/gridlayout.vue +107 -0
- solara/widgets/vue/html.vue +4 -0
- solara/widgets/vue/navigator.vue +134 -0
- solara/widgets/vue/vegalite.vue +130 -0
- solara/widgets/widgets.py +74 -0
- solara_ui-1.45.0.data/data/etc/jupyter/jupyter_notebook_config.d/solara.json +7 -0
- solara_ui-1.45.0.data/data/etc/jupyter/jupyter_server_config.d/solara.json +7 -0
- solara_ui-1.45.0.dist-info/METADATA +162 -0
- solara_ui-1.45.0.dist-info/RECORD +464 -0
- solara_ui-1.45.0.dist-info/WHEEL +4 -0
- solara_ui-1.45.0.dist-info/licenses/LICENSE +21 -0
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
from pathlib import Path
|
|
2
|
+
|
|
3
|
+
import solara
|
|
4
|
+
from solara.website.components.mailchimp import MailChimp
|
|
5
|
+
from solara.website.components.notebook import Notebook
|
|
6
|
+
|
|
7
|
+
HERE = Path(__file__).parent
|
|
8
|
+
title = "Jupyter Dashboard (1/3)"
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
@solara.component
|
|
12
|
+
def Page():
|
|
13
|
+
with solara.Column(gap=0):
|
|
14
|
+
title = "Build your Jupyter dashboard using Solara"
|
|
15
|
+
solara.Meta(property="og:title", content=title)
|
|
16
|
+
solara.Meta(name="twitter:title", content=title)
|
|
17
|
+
solara.Title(title)
|
|
18
|
+
|
|
19
|
+
img = "https://dxhl76zpt6fap.cloudfront.net/public/docs/tutorial/jupyter-dashboard1.webp"
|
|
20
|
+
solara.Meta(name="twitter:image", content=img)
|
|
21
|
+
solara.Meta(property="og:image", content=img)
|
|
22
|
+
|
|
23
|
+
description = "Learn how to build a Jupyter dashboard and deploy it as a web app using Solara."
|
|
24
|
+
solara.Meta(name="description", property="og:description", content=description)
|
|
25
|
+
solara.Meta(name="twitter:description", content=description)
|
|
26
|
+
tags = [
|
|
27
|
+
"jupyter",
|
|
28
|
+
"jupyter dashboard",
|
|
29
|
+
"dashboard",
|
|
30
|
+
"web app",
|
|
31
|
+
"deploy",
|
|
32
|
+
"solara",
|
|
33
|
+
]
|
|
34
|
+
solara.Meta(name="keywords", content=", ".join(tags))
|
|
35
|
+
with solara.Column():
|
|
36
|
+
Notebook(
|
|
37
|
+
Path(HERE / "_jupyter_dashboard_1.ipynb"),
|
|
38
|
+
show_last_expressions=True,
|
|
39
|
+
execute=False,
|
|
40
|
+
outputs={
|
|
41
|
+
"a7d17a84": None, # empty output (7)
|
|
42
|
+
# original: https://github.com/widgetti/solara/assets/1765949/e844acdb-c77d-4df4-ba4c-a629f92f18a3
|
|
43
|
+
"82f1d2f7": solara.Image("https://dxhl76zpt6fap.cloudfront.net/pages/docs/content/60-jupyter-dashboard-part1/map.webp"), # map (11)
|
|
44
|
+
"3e7ea361": None, # (13)
|
|
45
|
+
# original: https://github.com/widgetti/solara/assets/1765949/daaa3a46-61f5-431f-8003-b42b5915da4b
|
|
46
|
+
"56055643": solara.Image("https://dxhl76zpt6fap.cloudfront.net/pages/docs/content/60-jupyter-dashboard-part1/view.webp"), # View (15)
|
|
47
|
+
# original: https://github.com/widgetti/solara/assets/1765949/2f4daf0f-b7d8-4f70-b04a-c27542cffdb0
|
|
48
|
+
"c78010ec": solara.Image("https://dxhl76zpt6fap.cloudfront.net/pages/docs/content/60-jupyter-dashboard-part1/page.webp"), # Page (20)
|
|
49
|
+
# original: https://github.com/widgetti/solara/assets/1765949/a691d9f1-f07b-4e06-b21b-20980476ad64
|
|
50
|
+
"18290364": solara.Image("https://dxhl76zpt6fap.cloudfront.net/pages/docs/content/60-jupyter-dashboard-part1/controls.webp"), # Controls
|
|
51
|
+
"0ca68fe8": None,
|
|
52
|
+
"fef5d187": None,
|
|
53
|
+
# original: https://github.com/widgetti/solara/assets/1765949/f0075ad1-808d-458c-8797-e460ce4dc06d
|
|
54
|
+
"af686391": solara.Image("https://dxhl76zpt6fap.cloudfront.net/pages/docs/content/60-jupyter-dashboard-part1/full-app.webp"), # Full app
|
|
55
|
+
},
|
|
56
|
+
)
|
|
57
|
+
solara.Markdown(
|
|
58
|
+
"""
|
|
59
|
+
Explore this app live at [solara.dev](/apps/jupyter-dashboard-1).
|
|
60
|
+
|
|
61
|
+
Don’t miss the next tutorial and stay updated with the latest techniques and insights by subscribing to our newsletter.
|
|
62
|
+
"""
|
|
63
|
+
)
|
|
64
|
+
location = solara.use_router().path
|
|
65
|
+
MailChimp(location=location)
|
solara/website/pages/documentation/getting_started/content/04-tutorials/SF_crime_sample.csv.gz
ADDED
|
Binary file
|
|
@@ -0,0 +1,445 @@
|
|
|
1
|
+
{
|
|
2
|
+
"cells": [
|
|
3
|
+
{
|
|
4
|
+
"cell_type": "markdown",
|
|
5
|
+
"id": "8a4ce07d",
|
|
6
|
+
"metadata": {},
|
|
7
|
+
"source": [
|
|
8
|
+
"# Tutorial: Data Science\n",
|
|
9
|
+
"\n",
|
|
10
|
+
"In this tutorial, we will introduce Solara from the perspective of a data scientist or when you are thinking of using Solara for a data science app.\n",
|
|
11
|
+
"It is therefore focused on data (Pandas), visualizations (plotly) and how to add interactivity.\n",
|
|
12
|
+
"\n",
|
|
13
|
+
"## You should know\n",
|
|
14
|
+
"This tutorial will assume:\n",
|
|
15
|
+
"\n",
|
|
16
|
+
" * You have successfully installed Solara\n",
|
|
17
|
+
" * You know how to display a Solara component in a notebook or script\n",
|
|
18
|
+
"\n",
|
|
19
|
+
"If not, please follow the [Quick start](/documentation/getting_started).\n",
|
|
20
|
+
"\n",
|
|
21
|
+
"## Extra packages you need to install\n",
|
|
22
|
+
"\n",
|
|
23
|
+
"For this tutorial, you need plotly and pandas, you can install them using pip:\n",
|
|
24
|
+
"\n",
|
|
25
|
+
"```\n",
|
|
26
|
+
"$ pip install plotly pandas\n",
|
|
27
|
+
"```\n",
|
|
28
|
+
"\n",
|
|
29
|
+
"*Note: You might want to refresh your browser after installing plotly when using Jupyter.*\n",
|
|
30
|
+
"\n",
|
|
31
|
+
"## You will learn\n",
|
|
32
|
+
"\n",
|
|
33
|
+
"In this tutorial, you will learn:\n",
|
|
34
|
+
"\n",
|
|
35
|
+
" * [To create a scatter plot using plotly.express](#our-first-scatter-plot)\n",
|
|
36
|
+
" * [Display your plot in a Solara component](#our-first-scatter-plot).\n",
|
|
37
|
+
" * [Build a UI to configure the X and Y axis](#configure-the-x-axis).\n",
|
|
38
|
+
" * [Handle a click event and record which point was clicked on](#interactive-plot).\n",
|
|
39
|
+
" * [Refactor your code to build a reusable Solara component](#make-a-reusable-component).\n",
|
|
40
|
+
" * [Compose your newly built component into a larger application](#make-a-reusable-component)."
|
|
41
|
+
]
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"cell_type": "markdown",
|
|
45
|
+
"id": "dfe143dc",
|
|
46
|
+
"metadata": {},
|
|
47
|
+
"source": [
|
|
48
|
+
"## The dataset\n",
|
|
49
|
+
"\n",
|
|
50
|
+
"For this tutorial, we will use the [Iris flow data set](https://en.wikipedia.org/wiki/Iris_flower_data_set) which contains the lengths and widths of the petals and sepals of three species of Iris (setosa, virginica and versicolor).\n",
|
|
51
|
+
"\n",
|
|
52
|
+
"This dataset comes with many packages, but since we are doing to use plotly.express for this tutorial, we will use:\n",
|
|
53
|
+
"\n",
|
|
54
|
+
"```python\n",
|
|
55
|
+
"import plotly.express as px\n",
|
|
56
|
+
"df = px.data.iris()\n",
|
|
57
|
+
"```"
|
|
58
|
+
]
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"cell_type": "code",
|
|
62
|
+
"execution_count": null,
|
|
63
|
+
"id": "e9e78d49",
|
|
64
|
+
"metadata": {},
|
|
65
|
+
"outputs": [],
|
|
66
|
+
"source": [
|
|
67
|
+
"## solara: skip\n",
|
|
68
|
+
"import plotly.express as px\n",
|
|
69
|
+
"\n",
|
|
70
|
+
"\n",
|
|
71
|
+
"df = px.data.iris()\n",
|
|
72
|
+
"df"
|
|
73
|
+
]
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"cell_type": "markdown",
|
|
77
|
+
"id": "0cccd2f7",
|
|
78
|
+
"metadata": {},
|
|
79
|
+
"source": [
|
|
80
|
+
"## Our first scatter plot\n",
|
|
81
|
+
"\n",
|
|
82
|
+
"We use plotly express to create our scatter plot with just a single line.\n",
|
|
83
|
+
"\n",
|
|
84
|
+
"```python\n",
|
|
85
|
+
"fig = px.scatter(df, \"sepal_length\", \"sepal_width\")\n",
|
|
86
|
+
"```\n",
|
|
87
|
+
"\n",
|
|
88
|
+
"To display this figure in a Solara component, we should return an element that can render the plotly figure. [FigurePlotly](/documentation/components/viz/plotly) will do the job for us.\n",
|
|
89
|
+
"\n",
|
|
90
|
+
"Putting this together"
|
|
91
|
+
]
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"cell_type": "code",
|
|
95
|
+
"execution_count": null,
|
|
96
|
+
"id": "5d51ea0d",
|
|
97
|
+
"metadata": {},
|
|
98
|
+
"outputs": [],
|
|
99
|
+
"source": [
|
|
100
|
+
"import plotly.express as px\n",
|
|
101
|
+
"import solara\n",
|
|
102
|
+
"\n",
|
|
103
|
+
"df = px.data.iris()\n",
|
|
104
|
+
"\n",
|
|
105
|
+
"\n",
|
|
106
|
+
"@solara.component\n",
|
|
107
|
+
"def Page():\n",
|
|
108
|
+
" fig = px.scatter(df, \"sepal_length\", \"sepal_width\")\n",
|
|
109
|
+
" solara.FigurePlotly(fig)"
|
|
110
|
+
]
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
"cell_type": "code",
|
|
114
|
+
"execution_count": null,
|
|
115
|
+
"id": "b3307cf5",
|
|
116
|
+
"metadata": {},
|
|
117
|
+
"outputs": [],
|
|
118
|
+
"source": [
|
|
119
|
+
"## solara: skip\n",
|
|
120
|
+
"Page()"
|
|
121
|
+
]
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"cell_type": "markdown",
|
|
125
|
+
"id": "704b6061",
|
|
126
|
+
"metadata": {},
|
|
127
|
+
"source": [
|
|
128
|
+
"## Configuring the X-axis\n",
|
|
129
|
+
"\n",
|
|
130
|
+
"To configure the X-axis, first, create a global application state using:\n",
|
|
131
|
+
"\n",
|
|
132
|
+
"```python\n",
|
|
133
|
+
"x_axis = solara.reactive(\"sepal_length\")\n",
|
|
134
|
+
"```\n",
|
|
135
|
+
"\n",
|
|
136
|
+
"This code creates a reactive variable. You can use this reactive variable in your component and pass it to a [`Select`](/documentation/components/input/select) component to control the selected column.\n",
|
|
137
|
+
"\n",
|
|
138
|
+
"\n",
|
|
139
|
+
"```python\n",
|
|
140
|
+
"columns = list(df.columns)\n",
|
|
141
|
+
"solara.Select(label=\"X-axis\", values=columns, value=x_axis)\n",
|
|
142
|
+
"```\n",
|
|
143
|
+
"\n",
|
|
144
|
+
"Now, when the Select component's value changes, it will also update the reactive variable x_axis.\n",
|
|
145
|
+
"\n",
|
|
146
|
+
"If your components use the reactive value to create the plot, for example:\n",
|
|
147
|
+
"\n",
|
|
148
|
+
"\n",
|
|
149
|
+
"```python\n",
|
|
150
|
+
"fig = px.scatter(df, x_axis.value, \"sepal_width\")\n",
|
|
151
|
+
"```\n",
|
|
152
|
+
"\n",
|
|
153
|
+
"The component will automatically re-execute the render function when the `x_axis` value changes, updating the figure accordingly."
|
|
154
|
+
]
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
"cell_type": "code",
|
|
158
|
+
"execution_count": null,
|
|
159
|
+
"id": "860bb9cd",
|
|
160
|
+
"metadata": {},
|
|
161
|
+
"outputs": [],
|
|
162
|
+
"source": [
|
|
163
|
+
"columns = list(df.columns)\n",
|
|
164
|
+
"x_axis = solara.reactive(\"sepal_length\")\n",
|
|
165
|
+
"\n",
|
|
166
|
+
"\n",
|
|
167
|
+
"@solara.component\n",
|
|
168
|
+
"def Page():\n",
|
|
169
|
+
" # Create a scatter plot by passing \"x_axis.value\" to px.scatter\n",
|
|
170
|
+
" # This will automatically make the component listen to changes in x_axis\n",
|
|
171
|
+
" # and re-execute this function when x_axis value changes\n",
|
|
172
|
+
" fig = px.scatter(df, x_axis.value, \"sepal_width\")\n",
|
|
173
|
+
" solara.FigurePlotly(fig)\n",
|
|
174
|
+
"\n",
|
|
175
|
+
" # Pass x_axis to Select component\n",
|
|
176
|
+
" # The select will control the x_axis reactive variable\n",
|
|
177
|
+
" solara.Select(label=\"X-axis\", value=x_axis, values=columns)"
|
|
178
|
+
]
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
"cell_type": "code",
|
|
182
|
+
"execution_count": null,
|
|
183
|
+
"id": "0cb44e1d",
|
|
184
|
+
"metadata": {},
|
|
185
|
+
"outputs": [],
|
|
186
|
+
"source": [
|
|
187
|
+
"## solara: skip\n",
|
|
188
|
+
"Page()"
|
|
189
|
+
]
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
"cell_type": "markdown",
|
|
193
|
+
"id": "9c8f3895",
|
|
194
|
+
"metadata": {},
|
|
195
|
+
"source": [
|
|
196
|
+
"### Understanding (optional)\n",
|
|
197
|
+
"\n",
|
|
198
|
+
"#### State\n",
|
|
199
|
+
"\n",
|
|
200
|
+
"Understanding state management and how Solara re-renders component is crucial for understanding building larger applications. If you don't fully graps it now, that is ok. You should first get used to the pattern, and consider reading [About state management](/documentation/getting_started/fundamentals/state-management) later on to get a deeper understanding.\n",
|
|
201
|
+
"\n"
|
|
202
|
+
]
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
"cell_type": "markdown",
|
|
206
|
+
"id": "fa60244f",
|
|
207
|
+
"metadata": {},
|
|
208
|
+
"source": [
|
|
209
|
+
"## Configure the Y-axis.\n",
|
|
210
|
+
"\n",
|
|
211
|
+
"Now that we can configure the X-axis, we can repeat the same for the Y-axis. Try to do this yourself, without looking at the code, as a good practice."
|
|
212
|
+
]
|
|
213
|
+
},
|
|
214
|
+
{
|
|
215
|
+
"cell_type": "code",
|
|
216
|
+
"execution_count": null,
|
|
217
|
+
"id": "1157505b",
|
|
218
|
+
"metadata": {},
|
|
219
|
+
"outputs": [],
|
|
220
|
+
"source": [
|
|
221
|
+
"y_axis = solara.reactive(\"sepal_width\")\n",
|
|
222
|
+
"\n",
|
|
223
|
+
"\n",
|
|
224
|
+
"@solara.component\n",
|
|
225
|
+
"def Page():\n",
|
|
226
|
+
" fig = px.scatter(df, x_axis.value, y_axis.value)\n",
|
|
227
|
+
" solara.FigurePlotly(fig)\n",
|
|
228
|
+
" solara.Select(label=\"X-axis\", value=x_axis, values=columns)\n",
|
|
229
|
+
" solara.Select(label=\"Y-axis\", value=y_axis, values=columns)"
|
|
230
|
+
]
|
|
231
|
+
},
|
|
232
|
+
{
|
|
233
|
+
"cell_type": "code",
|
|
234
|
+
"execution_count": null,
|
|
235
|
+
"id": "eb348680",
|
|
236
|
+
"metadata": {},
|
|
237
|
+
"outputs": [],
|
|
238
|
+
"source": [
|
|
239
|
+
"## solara: skip\n",
|
|
240
|
+
"Page()"
|
|
241
|
+
]
|
|
242
|
+
},
|
|
243
|
+
{
|
|
244
|
+
"cell_type": "markdown",
|
|
245
|
+
"id": "13b71701",
|
|
246
|
+
"metadata": {},
|
|
247
|
+
"source": [
|
|
248
|
+
"## Interactive plot\n",
|
|
249
|
+
"\n",
|
|
250
|
+
"We now built a small UI to control a scatter plot. However, often we also want to interact with the data, for instance select a point in our scatter plot.\n",
|
|
251
|
+
"\n",
|
|
252
|
+
"We could look up in the plotly documentation how exactly we can extract the right data, but lets take a different approach. We are simply going to store the data we get from `on_click` into a new reactive variable (`click_data`) and display the raw data into a Markdown component."
|
|
253
|
+
]
|
|
254
|
+
},
|
|
255
|
+
{
|
|
256
|
+
"cell_type": "code",
|
|
257
|
+
"execution_count": null,
|
|
258
|
+
"id": "e74ce31e",
|
|
259
|
+
"metadata": {},
|
|
260
|
+
"outputs": [],
|
|
261
|
+
"source": [
|
|
262
|
+
"click_data = solara.reactive(None)\n",
|
|
263
|
+
"\n",
|
|
264
|
+
"\n",
|
|
265
|
+
"@solara.component\n",
|
|
266
|
+
"def Page():\n",
|
|
267
|
+
" fig = px.scatter(df, x_axis.value, y_axis.value)\n",
|
|
268
|
+
" solara.FigurePlotly(fig, on_click=click_data.set)\n",
|
|
269
|
+
" solara.Select(label=\"X-axis\", value=x_axis, values=columns)\n",
|
|
270
|
+
" solara.Select(label=\"Y-axis\", value=y_axis, values=columns)\n",
|
|
271
|
+
" # display it pre-formatted using the backticks `` using Markdown\n",
|
|
272
|
+
" solara.Markdown(f\"`{click_data}`\")"
|
|
273
|
+
]
|
|
274
|
+
},
|
|
275
|
+
{
|
|
276
|
+
"cell_type": "code",
|
|
277
|
+
"execution_count": null,
|
|
278
|
+
"id": "84497014",
|
|
279
|
+
"metadata": {},
|
|
280
|
+
"outputs": [],
|
|
281
|
+
"source": [
|
|
282
|
+
"## solara: skip\n",
|
|
283
|
+
"Page()"
|
|
284
|
+
]
|
|
285
|
+
},
|
|
286
|
+
{
|
|
287
|
+
"cell_type": "markdown",
|
|
288
|
+
"id": "299460db",
|
|
289
|
+
"metadata": {},
|
|
290
|
+
"source": [
|
|
291
|
+
"### Inspecting the on_click data\n",
|
|
292
|
+
"\n",
|
|
293
|
+
"Click a point and you should see the data printed out like:\n",
|
|
294
|
+
"\n",
|
|
295
|
+
"```python\n",
|
|
296
|
+
"{'event_type': 'plotly_click', 'points': {'trace_indexes': [0], 'point_indexes': [32], 'xs': [5.2], 'ys': [4.1]}, 'device_state': {'alt': False, 'ctrl': False, 'meta': False, 'shift': False, 'button': 0, 'buttons': 1}, 'selector': None}\n",
|
|
297
|
+
"```\n",
|
|
298
|
+
"\n",
|
|
299
|
+
"From this, we can get the row index, and the x and y coordinate.\n"
|
|
300
|
+
]
|
|
301
|
+
},
|
|
302
|
+
{
|
|
303
|
+
"cell_type": "code",
|
|
304
|
+
"execution_count": null,
|
|
305
|
+
"id": "650752f6",
|
|
306
|
+
"metadata": {},
|
|
307
|
+
"outputs": [],
|
|
308
|
+
"source": [
|
|
309
|
+
"click_data = solara.reactive(None)\n",
|
|
310
|
+
"\n",
|
|
311
|
+
"\n",
|
|
312
|
+
"@solara.component\n",
|
|
313
|
+
"def Page():\n",
|
|
314
|
+
" fig = px.scatter(df, x_axis.value, y_axis.value)\n",
|
|
315
|
+
" solara.FigurePlotly(fig, on_click=click_data.set)\n",
|
|
316
|
+
" solara.Select(label=\"X-axis\", value=x_axis, values=columns)\n",
|
|
317
|
+
" solara.Select(label=\"Y-axis\", value=y_axis, values=columns)\n",
|
|
318
|
+
" # display it pre-formatted using the backticks `` using Markdown\n",
|
|
319
|
+
" if click_data.value:\n",
|
|
320
|
+
" row_index = click_data.value[\"points\"][\"point_indexes\"][0]\n",
|
|
321
|
+
" x = click_data.value[\"points\"][\"xs\"][0]\n",
|
|
322
|
+
" y = click_data.value[\"points\"][\"ys\"][0]\n",
|
|
323
|
+
" solara.Markdown(f\"`Click on index={row_index} x={x} y={y}`\")"
|
|
324
|
+
]
|
|
325
|
+
},
|
|
326
|
+
{
|
|
327
|
+
"cell_type": "code",
|
|
328
|
+
"execution_count": null,
|
|
329
|
+
"id": "4a1db95d",
|
|
330
|
+
"metadata": {
|
|
331
|
+
"scrolled": false
|
|
332
|
+
},
|
|
333
|
+
"outputs": [],
|
|
334
|
+
"source": [
|
|
335
|
+
"## solara: skip\n",
|
|
336
|
+
"Page()"
|
|
337
|
+
]
|
|
338
|
+
},
|
|
339
|
+
{
|
|
340
|
+
"cell_type": "markdown",
|
|
341
|
+
"id": "4762caa2",
|
|
342
|
+
"metadata": {},
|
|
343
|
+
"source": [
|
|
344
|
+
"## Displaying the nearest neighbours\n",
|
|
345
|
+
"\n",
|
|
346
|
+
"We now have the point we clicked on, we will use that to improve our component, we will.\n",
|
|
347
|
+
"\n",
|
|
348
|
+
" 1. Add an indicator in the scatter plot to highlight which point we clicked on.\n",
|
|
349
|
+
" 2. Find the nearest neighbours and display them in a table.\n",
|
|
350
|
+
" \n",
|
|
351
|
+
"For the first item, we simply use plotly express again, and add the single trace it generated to the existing figure (instead of displaying two separate figures).\n",
|
|
352
|
+
"\n",
|
|
353
|
+
"We add a function to find the `n` nearest neighbours:\n",
|
|
354
|
+
"\n",
|
|
355
|
+
"```python\n",
|
|
356
|
+
"def find_nearest_neighbours(df, xcol, ycol, x, y, n=10):\n",
|
|
357
|
+
" df = df.copy()\n",
|
|
358
|
+
" df[\"distance\"] = ((df[xcol] - x)**2 + (df[ycol] - y)**2)**0.5\n",
|
|
359
|
+
" return df.sort_values('distance')[1:n+1]\n",
|
|
360
|
+
"```\n",
|
|
361
|
+
"\n",
|
|
362
|
+
"We now only find the nearest neighbours if `click_data.value` is not None, and display the dataframe using the [`DataFrame`](/documentation/components/data/dataframe) component.\n"
|
|
363
|
+
]
|
|
364
|
+
},
|
|
365
|
+
{
|
|
366
|
+
"cell_type": "code",
|
|
367
|
+
"execution_count": null,
|
|
368
|
+
"id": "6bfbb986",
|
|
369
|
+
"metadata": {},
|
|
370
|
+
"outputs": [],
|
|
371
|
+
"source": [
|
|
372
|
+
"click_data = solara.reactive(None)\n",
|
|
373
|
+
"\n",
|
|
374
|
+
"\n",
|
|
375
|
+
"def find_nearest_neighbours(df, xcol, ycol, x, y, n=10):\n",
|
|
376
|
+
" df = df.copy()\n",
|
|
377
|
+
" df[\"distance\"] = ((df[xcol] - x) ** 2 + (df[ycol] - y) ** 2) ** 0.5\n",
|
|
378
|
+
" return df.sort_values(\"distance\")[1 : n + 1]\n",
|
|
379
|
+
"\n",
|
|
380
|
+
"\n",
|
|
381
|
+
"@solara.component\n",
|
|
382
|
+
"def Page():\n",
|
|
383
|
+
" fig = px.scatter(df, x_axis.value, y_axis.value, color=\"species\", custom_data=[df.index])\n",
|
|
384
|
+
"\n",
|
|
385
|
+
" if click_data.value is not None:\n",
|
|
386
|
+
" x = click_data.value[\"points\"][\"xs\"][0]\n",
|
|
387
|
+
" y = click_data.value[\"points\"][\"ys\"][0]\n",
|
|
388
|
+
"\n",
|
|
389
|
+
" # add an indicator\n",
|
|
390
|
+
" fig.add_trace(px.scatter(x=[x], y=[y], text=[\"⭐️\"]).data[0])\n",
|
|
391
|
+
" df_nearest = find_nearest_neighbours(df, x_axis.value, y_axis.value, x, y, n=3)\n",
|
|
392
|
+
" else:\n",
|
|
393
|
+
" df_nearest = None\n",
|
|
394
|
+
"\n",
|
|
395
|
+
" solara.FigurePlotly(fig, on_click=click_data.set)\n",
|
|
396
|
+
" solara.Select(label=\"X-axis\", value=x_axis, values=columns)\n",
|
|
397
|
+
" solara.Select(label=\"Y-axis\", value=y_axis, values=columns)\n",
|
|
398
|
+
" if df_nearest is not None:\n",
|
|
399
|
+
" solara.Markdown(\"## Nearest 3 neighbours\")\n",
|
|
400
|
+
" solara.DataFrame(df_nearest)\n",
|
|
401
|
+
" else:\n",
|
|
402
|
+
" solara.Info(\"Click to select a point\")"
|
|
403
|
+
]
|
|
404
|
+
},
|
|
405
|
+
{
|
|
406
|
+
"cell_type": "code",
|
|
407
|
+
"execution_count": null,
|
|
408
|
+
"id": "334d22b1",
|
|
409
|
+
"metadata": {
|
|
410
|
+
"scrolled": false
|
|
411
|
+
},
|
|
412
|
+
"outputs": [],
|
|
413
|
+
"source": [
|
|
414
|
+
"## solara: skip\n",
|
|
415
|
+
"Page()"
|
|
416
|
+
]
|
|
417
|
+
}
|
|
418
|
+
],
|
|
419
|
+
"metadata": {
|
|
420
|
+
"kernelspec": {
|
|
421
|
+
"display_name": "Python 3 (ipykernel)",
|
|
422
|
+
"language": "python",
|
|
423
|
+
"name": "python3"
|
|
424
|
+
},
|
|
425
|
+
"language_info": {
|
|
426
|
+
"codemirror_mode": {
|
|
427
|
+
"name": "ipython",
|
|
428
|
+
"version": 3
|
|
429
|
+
},
|
|
430
|
+
"file_extension": ".py",
|
|
431
|
+
"mimetype": "text/x-python",
|
|
432
|
+
"name": "python",
|
|
433
|
+
"nbconvert_exporter": "python",
|
|
434
|
+
"pygments_lexer": "ipython3",
|
|
435
|
+
"version": "3.9.16"
|
|
436
|
+
},
|
|
437
|
+
"vscode": {
|
|
438
|
+
"interpreter": {
|
|
439
|
+
"hash": "3f54047370d637df4a365f9bae65e296d7b1c0737aca7baed81d825616d991e7"
|
|
440
|
+
}
|
|
441
|
+
}
|
|
442
|
+
},
|
|
443
|
+
"nbformat": 4,
|
|
444
|
+
"nbformat_minor": 5
|
|
445
|
+
}
|