Skip to main content

Quickly display basic Plotly charts based on data inside a Pandas dataframe.

Project description

https://img.shields.io/pypi/l/plotly_chart_generator:alt:PyPI-License

Description

This package allows the user to quickly generate plotly charts with customized styling and formatting from Pandas dataframes and other data structures with as little as one line of code.

The following chart types can be created:

  • Bar charts (from dataframe)

  • Line charts (from dataframe)

  • Scatter charts (from dictionary)

  • Pie charts (from lists, numpy arrays, Pandas series)

  • Histograms (from lists, numpy arrays, Pandas series)

  • Dot charts (from dataframe)

  • Box charts (from lists, numpy arrays, Pandas series)

  • Sunburst charts (from lists, numpy arrays, Pandas series)

  • Scatter charts subplots (from dictionary)

  • Pie chats subplots (from dictionary)

Chart examples are available at https://github.com/PrebenHesvik/Plotly-Chart-Generator

Installation

pip install plotly_chart_generator

Usage

from plotly_chart_generator.display_chart import display_chart
from plotly_chart_generator.bar_chart import bar_chart
from plotly_chart_generator.chart_styles import chart_styles

# create data
index = ['Product A', 'Product B', 'Product C']
values = {'Products': [37.5, 40.2, 27.8]}
data = pd.DataFrame(data=values, index=index).transpose()


# layout
layout = chart_styles(
    width=500,
    height=600,
    title='Product sales (millions)',
    title_size=16,
    xaxis_ticksize=14)

# set colors
idmax = data.idxmax(axis=1)[0]
max_val_idx = data.columns.get_loc(idmax)
colors = ['lightslategray',] * len(data.values[0])
colors[max_val_idx] = 'crimson'

# traces
traces = bar_chart(
    df=data,
    bar_width=0.4,
    textpos='inside',
    linewidth=1,
    marker_color=colors)


display_chart(traces=traces, layout=layout)

Disclaimer

Most of the descriptions of arguments have been copied form the Plotly Figure Reference Guide at https://plotly.com/python/reference/

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

plotly_chart_generator-0.4.0.tar.gz (16.1 kB view details)

Uploaded Source

Built Distribution

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

plotly_chart_generator-0.4.0-py3-none-any.whl (24.4 kB view details)

Uploaded Python 3

File details

Details for the file plotly_chart_generator-0.4.0.tar.gz.

File metadata

  • Download URL: plotly_chart_generator-0.4.0.tar.gz
  • Upload date:
  • Size: 16.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.5.1 CPython/3.11.0 Windows/10

File hashes

Hashes for plotly_chart_generator-0.4.0.tar.gz
Algorithm Hash digest
SHA256 7788083cab75563a921c690b81586be6c47f9269de2ca8f852cb02799b46dd6c
MD5 1b41a51125b0518bd17ca8d648b02058
BLAKE2b-256 62f56717ecc9ccb543645adf36929973388e98da85c9757bac060253178cbc07

See more details on using hashes here.

File details

Details for the file plotly_chart_generator-0.4.0-py3-none-any.whl.

File metadata

File hashes

Hashes for plotly_chart_generator-0.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 cc3fdb5391fecb7fa4e74a9e3cbd083a5db1359130fc6944ab73ea3f3126d563
MD5 8536a08881949a830aa788f83ec39ea9
BLAKE2b-256 ccc52cd598ca69cc1b5234aa6aa8f73e09a19d13f227d8483e9a07e912144315

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