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))

Project details


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

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

Uploaded Python 3

Supported by

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