im using spyder for the first time and it's not plotting the simplest code
import pandas as pd
pd.options.plotting.backend = "plotly"
df = pd.DataFrame(dict(a=[1,3,2], b=[3,2,1]))
fig = df.plot(title="Pandas Backend Example", template="simple_white",
labels=dict(index="time", value="money", variable="option"))
fig.update_yaxes(tickprefix="$")
fig.show()
i have tried updating everything, im using anaconda if that is anyhelp
there are no errors and it runs. It should be a simple plot
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…