There is a plot which I want to make smooth for better representation. I tried scipy.interpolate
, however it produced this error:
raise ValueError("Expect x to be a 1-D sorted array_like.") ValueError: Expect x to be a 1-D sorted array_like.
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
from scipy import interpolate
from scipy.interpolate import make_interp_spline
startnm = 550
endnm = 700
y = np.empty((10,))
for aci in range(0, 91, 10):
data = pd.read_csv(f".\\30mg-ml-PSQD-withZNO-12-nov-21\\{aci}.txt",
delimiter="\t") .to_numpy()[:, [0, 1]]
print(type(data[0, 0]))
starti, endi = 0, 0
for i in range(len(data[:, 0])):
if startnm < float(data[i, 0]) and starti == 0:
starti = i
elif endnm < float(data[i, 0]) and endi == 0:
endi = i
break
y[aci//10] = np.sum(data[starti:endi, 1])
theta = np.linspace(0, np.pi, 19)
output = []
x = []
for i in range(10):
temp0 = y[i]
output.append(temp0*np.cos(theta[i])/y.max())
x.append(temp0*np.sin(theta[i])/y.max())
pass
print(output)
print(x)
plt.title("title")
plt.xlabel("x")
plt.ylabel("y")
plt.plot(x, output,"--")
plt.plot(-np.array(x), output, "--")
x = np.sin(theta)*np.cos(theta)
y = np.cos(theta)*np.cos(theta)
plt.plot(x, y, "r")
plt.grid(color = 'green', linestyle = '--', linewidth = 0.5)
plt.show()
I want to smooth this graph as much as possible. How can I do it?
The error just tells you that the x
array needs to be sorted.
Note also that make_interp_spline
does not do any smoothing. For that, use splrep
.