I was able to fit an experimental data using ex.EIS_fit(params=params, circuit='R-RQ-RQ',weight_func='modulus')
However when I tried to plot the data using ex2.EIS_plot(legend='potential', bode='log', fitting='on'), it generates the error.
File "~\Miniconda3\envs\impedance\lib\site-packages\PyEIS\PyEIS.py", line 4701, in EIS_plot
ax.plot(self.circuit_fit[i].real, -self.circuit_fit[i].imag, lw=0, marker='o', ms=8, mec='r', mew=1, mfc='none', label='')
File "~\Miniconda3\envs\impedance\lib\site-packages\pandas\core\generic.py", line 5136, in __getattr__
return object.__getattribute__(self, name)
AttributeError: 'Series' object has no attribute 'real'
I am using python 3.7.9 in windows 10.