Skip to content

jwkvam/plotlywrapper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

762b429 · Apr 23, 2019
Jul 19, 2018
Jul 19, 2018
Jul 19, 2018
Jul 19, 2018
Feb 21, 2016
Jul 19, 2018
Apr 23, 2019
Aug 2, 2016
Jul 19, 2018
Nov 16, 2018
Nov 16, 2018
Jul 19, 2018
Nov 16, 2018
Nov 16, 2018
Jul 19, 2018

Repository files navigation

Plotlywrapper: pythonic plotly

Build Status rtd.io PyPI version PyPI codecov.io

NOTICE you may be better off using plotly express depending on your needs.

Plotlywrapper wraps plotly to make easy plots easy to make. Check out the docs!

Motivation

Compare the following code snippets which generate the same plot.

Plotly

Taken from https://plot.ly/python/getting-started/

import plotly
from plotly.graph_objs import Scatter, Layout
plotly.offline.plot({
"data": [
    Scatter(x=[1, 2, 3, 4], y=[4, 1, 3, 7])
],
"layout": Layout(
    title="hello world"
)
})

Plotlywrapper

import plotlywrapper as pw
plot = pw.line(x=[1, 2, 3, 4], y=[4, 1, 3, 7])
plot.title('hello world')
plot.show()

Install

To install the latest release:

pip install plotlywrapper

Demo

Try out the interactive demo here,

Binder

or view the notebook statically.

JupyterLab

Plotly doesn’t render in JupyterLab by default. You need to install the JupyterLab Plotly extension:

jupyter labextension install @jupyterlab/plotly-extension

Developed in this repo.

Testing

To test run:

make test