https://github.com/gjeusel/plotlyink
Linking Plotly & Pandas
https://github.com/gjeusel/plotlyink
pandas plot plotly python visualization
Last synced: 4 months ago
JSON representation
Linking Plotly & Pandas
- Host: GitHub
- URL: https://github.com/gjeusel/plotlyink
- Owner: gjeusel
- License: mit
- Created: 2018-04-22T15:12:59.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-09-23T17:06:39.000Z (over 7 years ago)
- Last Synced: 2025-11-27T18:54:05.690Z (6 months ago)
- Topics: pandas, plot, plotly, python, visualization
- Language: Jupyter Notebook
- Size: 90.8 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- Changelog: ChangeLog
- License: LICENSE
Awesome Lists containing this project
README
===============================
plotlyink
===============================
.. image:: https://travis-ci.org/gjeusel/plotlyink.svg?branch=master
:target: https://travis-ci.org/gjeusel/plotlyink
.. image:: https://readthedocs.org/projects/plotlyink/badge/?version=latest
:target: http://plotlyink.readthedocs.io/en/latest/?badge=latest
:alt: Documentation Status
.. image:: https://codecov.io/gh/gjeusel/plotlyink/branch/master/graph/badge.svg
:target: https://codecov.io/gh/gjeusel/plotlyink
.. image:: https://badge.fury.io/py/plotlyink.svg
:target: https://pypi.python.org/pypi/plotlyink/
:alt: Pypi package
Marying plotly & pandas
:License: MIT license
:Documentation: http://plotlyink.readthedocs.io/en/latest
:Source: https://github.com/gjeusel/plotlyink
Installation
------------
.. code:: bash
pip3 install plotlyink
Overview
--------
.. code:: python
import pandas as pd
import plotlyink
df = pd.DataFrame({
'one' : [1., 2., 3., 4.],
'two' : [4., 3., 2., 1.],
})
# open .html in your browser:
df.iplot.scatter()
# get figure:
fig = df.iplot.scatter(as_figure=True)
For more, see: `Tutorial Notebook `_.