我计划使用plotly并将显示的值从数字更改为.k,例如从4000更改为4k。
下面是代码:
x = [x for x in range(1,len(table))] #date
y = table['revenue'][:-1].values.tolist()
fig = go.Figure(go.Scatter(x=x, y=y,text=y,mode="lines+markers+text",
line=dict(color='firebrick', width=4)))
fig.update_layout(width=900,height=650)