1. ホーム
  2. Python

from scipy.interpolate import spline errorImportError: cannot import name 'spline'.

2022-02-07 18:09:36
<パス

質問の説明

from scipy.interpolate import spline


エラーを報告する

ImportError: cannot import name 'spline'




解決方法

輸入 make_interp_spline を呼び出し、さらに

from scipy.interpolate import make_interp_spline

x_smooth = np.linspace(x.min(), x.max(), 300)
y_smooth = make_interp_spline(x, y)(x_smooth)



import numpy as np
from matplotlib import pyplot as plt
from scipy.interpolate import make_interp_spline

x = np.array([6, 7, 8, 9, 10, 11, 12])
y = np.array([1.53E+03, 5.92E+02, 2.04E+02, 7.24E+01, 2.72E+01, 1.10E+01, 4.70E+00])
x_smooth = np.linspace(x.min(), x.max(), 300)
y_smooth = make_interp_spline(x, y)(x_smooth)
plt.plot(x_smooth, y_smooth)
plt.show()




インスタンス

import numpy as np
from matplotlib import pyplot as plt
from scipy.interpolate import make_interp_spline

x = np.array([6, 7, 8, 9, 10, 11, 12])
y = np.array([1.53E+03, 5.92E+02, 2.04E+02, 7.24E+01, 2.72E+01, 1.10E+01, 4.70E+00])
x_smooth = np.linspace(x.min(), x.max(), 300)
y_smooth = make_interp_spline(x, y)(x_smooth)
plt.plot(x_smooth, y_smooth)
plt.show()


<イグ


参考文献

  1. matplotlib は滑らかな曲線を描きます。
  2. PyPlot で滑らかな直線をプロットする