Hi guys,
I have the following python script
import pandas as pd
import plotly
from plotly.graph_objs import Scatter, Layout
df = pd.DataFrame({“value”:[10,7,0,3,8]},
index=pd.to_datetime([
“2015-01-01 00:00”,
“2015-01-01 10:00”,
“2015-01-01 20:00”,
“2015-01-02 22:00”,
“2015-01-02 23:00”]))
fig = plotly.offline.plot(
{“data”: [Scatter( x=df.index, y=df[“value”])],
“layout”:Layout(title=“Sample_Title”,xaxis= dict(title= ‘X axis label’,zeroline= False,gridcolor=‘rgb(183,183,183)’, showline=True))},
filename=‘Storage Report.html’, auto_open=False)
I was wondering if there is anyway I could save this online rather than a local html.
Thanks.