Read_csv from plotly data

Is it possible to store data with a plotly account and then access it with a python read_csv call like you can with github?

So instead of

df = pd.read_csv(https://raw.githubusercontent.com/ … .csv)

a call like

df = pd.read_csv(https://plot.ly/~ … .#data)

Yes. Simply append .csv to your graph’s URL, e.g.

https://plot.ly/~etpinard/7599.csv

1 Like