Skip to content

Files

Latest commit

4e79396 · Oct 7, 2024

History

History
38 lines (27 loc) · 472 Bytes

README.md

File metadata and controls

38 lines (27 loc) · 472 Bytes

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