Skip to main content

Deephaven Chart Plugin

Project description

Deephaven Plugin for Charts

Custom implementation built on top of plotly express to make it compatible with deephaven tables.

Build

To create your build / development environment (skip the first two lines if you already have a venv):

python -m venv .venv
source .venv/bin/activate
pip install --upgrade pip setuptools
pip install build deephaven-plugin plotly

To build:

python -m build --wheel

The wheel is stored in dist/.

To test within deephaven-core, note where this wheel is stored (using pwd, for example). Then, follow the directions in the top-level README.md to install the wheel into your Deephaven environment.

To unit test, run the following command from the root of the repo:

tox -e py

Usage

Once you have the plugin installed and the server started, the recommended way to import the package mirrors plotly express:

import deephaven.plot.express as dx

Then, you can create a table (or use an existing one) and start plotting

from deephaven.column import int_col, string_col
import deephaven.plot.express as dx
from deephaven import new_table

source = new_table(
    [
        string_col("Categories", ["A", "B", "C"]),
        int_col("Values", [1, 3, 5]),
    ]
)

fig = dx.bar(table=source, x="Categories", y="Values")

Docs

Docs can be built locally

Install the necessary dependencies:

pip install -r ../../sphinx_ext/sphinx-requirements.txt
pip install dist/deephaven_plugin_plotly_express-*.whl

then run the docs make script:

python make_docs.py

The files will be built into docs/build/markdown. Note that these built files should not be committed to the repository.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

Built Distribution

File details

Details for the file deephaven_plugin_plotly_express-0.11.2.tar.gz.

File metadata

File hashes

Hashes for deephaven_plugin_plotly_express-0.11.2.tar.gz
Algorithm Hash digest
SHA256 966b283098590e32aded850d61e35e3a6978b262da0147a1e1fc16e4577a0b70
MD5 907be49fa6e6c36383f2a55d38acecff
BLAKE2b-256 98242ec25c3e7c4bbf6b4543c55621d71cc14fc70c397481e32c2c30279878b1

See more details on using hashes here.

File details

Details for the file deephaven_plugin_plotly_express-0.11.2-py3-none-any.whl.

File metadata

File hashes

Hashes for deephaven_plugin_plotly_express-0.11.2-py3-none-any.whl
Algorithm Hash digest
SHA256 61503dd866ded328c8f6b1972babb01e3bdfb578cc83e473eda0561627530b6f
MD5 d3c36dadd562e9f7475d4f097a3f6b0b
BLAKE2b-256 cf258b6cea06816d71d2dcb2b29b1cc75100a6a16050915b99b16bee7fcf247e

See more details on using hashes here.

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