A data visualization library for Python that combines the power of ggplot and plotly.
pip install ggplotly
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()
- geom_point
- geom_line
- geom_bar
- geom_area
- geom_boxplot
- ggtitle
- lab
- themes
- ggsave