Skip to content

bbcho/ggplotly

Repository files navigation

GGPLOTLY

A data visualization library for Python that combines the power of ggplot and plotly.

Installation

pip install ggplotly

Usage

from ggplotly import *
import pandas as pd

df = pd.DataFrame({
    'x': [1, 2, 3, 4, 5],
    'y': [1, 2, 3, 4, 5]
})

ggplot(df, aes(x='x', y='y')) + geom_point()

Working Geoms

  • geom_point
  • geom_line
  • geom_bar
  • geom_area
  • geom_boxplot

Working Utils

  • ggtitle
  • lab
  • themes
  • ggsave

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published