Altair plugin for H2O Nitro
Project description
Altair plugin for H2O Nitro
This plugin lets you use Altair visualizations in Nitro apps.
Demo
Install
pip install h2o-nitro-altair
Usage
- Import
altair_pluginandaltair_boxfromh2o_nitro_altair. - Add
altair_plugin()to your Nitro app. - Use
altair_box(chart)to render Altair charts.
import altair as alt
from vega_datasets import data
from h2o_nitro import View, web_directory
from h2o_nitro_altair import altair_plugin, altair_box
def main(view: View):
view(altair_box(make_plot()))
nitro = View(
main,
title='Nitro + Altair',
caption='A minimal example',
plugins=[altair_plugin()], # Include the Altair plugin
)
def make_plot():
return alt.Chart(data.cars()).mark_point().encode(
x='Horsepower',
y='Miles_per_Gallon',
color='Origin',
).interactive()
Advanced Usage
You can pass Vega Embed Options to altair_box() for
more control.
Example:
altair_box(chart, options=dict(renderer='svg', scaleFactor=2))
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file h2o_nitro_altair-0.1.1-py3-none-any.whl.
File metadata
- Download URL: h2o_nitro_altair-0.1.1-py3-none-any.whl
- Upload date:
- Size: 8.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d5c3c0dbee68cb08659f27946eb60b4acb45b989c4de716e930038754198559e
|
|
| MD5 |
f05bed6096f7409677a749587a456ddc
|
|
| BLAKE2b-256 |
7cc88bec2bfb36096f5bf432ce0e3f8915976fbc016fc53bf02f0a73596be828
|