adamerose / PandasGUI

A GUI for Pandas DataFrames
MIT No Attribution
3.19k stars 236 forks source link

Candle stick graph type #117

Closed riodda closed 3 years ago

riodda commented 3 years ago

Would be cool to have candlestick graph type, pltotly has good support of them.

adamerose commented 3 years ago

image

from pandasgui import show
import pandas as pd
df = pd.read_csv('https://raw.githubusercontent.com/plotly/datasets/master/finance-charts-apple.csv')
show(df)