Skip to main content

Altair plugin for H2O Nitro

Project description

Altair plugin for H2O Nitro

This plugin lets you use Altair visualizations in Nitro apps.

Demo

View source.

Demo

Install

pip install h2o-nitro-altair

Usage

  1. Import altair_plugin and altair_box from h2o_nitro_altair.
  2. Add altair_plugin() to your Nitro app.
  3. 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))

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

If you're not sure about the file name format, learn more about wheel file names.

h2o_nitro_altair-0.1.1-py3-none-any.whl (8.3 kB view details)

Uploaded Python 3

File details

Details for the file h2o_nitro_altair-0.1.1-py3-none-any.whl.

File metadata

File hashes

Hashes for h2o_nitro_altair-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 d5c3c0dbee68cb08659f27946eb60b4acb45b989c4de716e930038754198559e
MD5 f05bed6096f7409677a749587a456ddc
BLAKE2b-256 7cc88bec2bfb36096f5bf432ce0e3f8915976fbc016fc53bf02f0a73596be828

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page