Metadata-Version: 2.1
Name: plotly-chart-generator
Version: 0.1.0
Summary: Quickly display basic Plotly charts based on data inside a Pandas dataframe.
Home-page: https://github.com/PrebenHesvik/plotly_chart_builder
Keywords: Chart,Plotly,Pandas
Author: Preben Hesvik
Author-email: Prebenhesvik@hotmail.com
Requires-Python: >=3.8,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Requires-Dist: pandas (>=1.0.3,<2.0.0)
Requires-Dist: plotly (>=4.6.0,<5.0.0)
Requires-Dist: seaborn (>=0.10.0,<0.11.0)
Project-URL: Repository, https://github.com/PrebenHesvik/plotly_chart_builder
Description-Content-Type: text/x-rst

======================
Plotly Chart Generator
======================

Description
-----------
This package allows the user to quickly generate plotly charts 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)



Installation
------------

.. code:: python

    pip install plotly_chart_generator

Usage
-----


