Home > 科学的表記法


PythonのMatplotlibで科学的表記法を無効にする方法

整数表記を使用する方法:import matplotlib.pyplot as plt plt.rcParams['axes.formatter.use_mathtext'] = True plt.rcParams['axes.formatter.limits'] = (-3, 3) # 指定の範囲内の整数は数値として表示される # グラフの作成 x = [1e-5, 1e-4, 1e-3, 1e-2, 1e-1, 1, 1e1, 1e2, 1e3, 1e4, 1e5] y = [1e-5, 1e-4, 1e-3, 1e-2, 1e-1, 1, 1e1, 1e2, 1e3, 1e4, 1e5>>More