从 xlabel 中删除逗号

问题描述 投票:0回答:1

我用 ploply 库制作了一些图形,但是,x 轴显示有逗号。我想制作我的图形,但没有那个逗号。我该如何解决这个问题?

This is the result of executing the above code

我正在运行的代码如下:

import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
import seaborn as sns
color_pal = sns.color_palette()
import plotly.express as px

fig = px.line(serie, x="year", y="interevento", width=1000, height=600)

#fig.update_layout(xaxis_range=[2020.04,2020.16])

fig.update_traces(line_color='#0000ff', line_width=.8)
fig.update_layout(
    xaxis_title="Year",
    yaxis_title="Interevent-Time ",
    font=dict(size=18,color="Black"))

xposition = sismos_grandes.year
for xc in xposition:
    fig.add_shape(type="line",
    x0=xc, y0=-2, x1=xc, y1=-14,
    line=dict(
    color="red",
    width=.9,
    dash="dashdot") )

fig.update_xaxes(ticks="inside")
fig.update_yaxes(ticks="inside", col=1)



fig.update_xaxes(showline=True, linewidth=2, linecolor='black', mirror=True)
fig.update_yaxes(showline=True, linewidth=2, linecolor='black', mirror=True)


fig.update_xaxes(rangeselector_font_family="Times New Roman")

#FONDO BLANCO

fig.update_layout({
'plot_bgcolor': 'rgba(0, 0, 0, 0)',
'paper_bgcolor': 'rgba(0, 0, 0, 0)',
})

fig.show()

我期待收到我的图形,但没有逗号。

python time-series plotly plotly-python
1个回答
0
投票

试试这个:

fig.update_layout(xaxis_tickformat = 'g')
© www.soinside.com 2019 - 2024. All rights reserved.