Я знаю, что похожий вопрос существует, но он все еще без ответа, пожалуйста, помогите здесь, я новичок ie в обработке данных, и это появляется Итак, при этом я сделал наблюдение_dates как список, который bcoz matplotlib не может обработать Генераторы были ошибкой, которую я получил, которая решила эту
Мой код:
import matplotlib.pyplot as plt
import numpy as np
plt.figure()
observation_dates = np.arange('2017-01-01', '2017-01-09', dtype='datetime64[D]')
observation_dates = list(map(pd.to_datetime, observation_dates))
plt.plot(observation_dates, linear_data, '-o', observation_dates, exponential_data, '-o')
Ошибка, с которой я столкнулся в Jupyter Notebook:
---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
<ipython-input-37-2e5ff380987f> in <module>
2 observation_dates = np.arange('2017-01-01', '2017-01-09', dtype='datetime64[D]')
3 observation_dates = list(map(pd.to_datetime, observation_dates)) # convert the map to a list to get rid of the error
----> 4 plt.plot(observation_dates, linear_data, '-o', observation_dates, exponential_data, '-o')
~\anaconda3\lib\site-packages\matplotlib\pyplot.py in plot(scalex, scaley, data, *args, **kwargs)
2794 return gca().plot(
2795 *args, scalex=scalex, scaley=scaley, **({"data": data} if data
-> 2796 is not None else {}), **kwargs)
2797
2798
~\anaconda3\lib\site-packages\matplotlib\axes\_axes.py in plot(self, scalex, scaley, data, *args, **kwargs)
1665 lines = [*self._get_lines(*args, data=data, **kwargs)]
1666 for line in lines:
-> 1667 self.add_line(line)
1668 self.autoscale_view(scalex=scalex, scaley=scaley)
1669 return lines
~\anaconda3\lib\site-packages\matplotlib\axes\_base.py in add_line(self, line)
1900 line.set_clip_path(self.patch)
1901
-> 1902 self._update_line_limits(line)
1903 if not line.get_label():
1904 line.set_label('_line%d' % len(self.lines))
~\anaconda3\lib\site-packages\matplotlib\axes\_base.py in _update_line_limits(self, line)
1922 Figures out the data limit of the given line, updating self.dataLim.
1923 """
-> 1924 path = line.get_path()
1925 if path.vertices.size == 0:
1926 return
~\anaconda3\lib\site-packages\matplotlib\lines.py in get_path(self)
1025 """
1026 if self._invalidy or self._invalidx:
-> 1027 self.recache()
1028 return self._path
1029
~\anaconda3\lib\site-packages\matplotlib\lines.py in recache(self, always)
668 if always or self._invalidx:
669 xconv = self.convert_xunits(self._xorig)
--> 670 x = _to_unmasked_float_array(xconv).ravel()
671 else:
672 x = self._x
~\anaconda3\lib\site-packages\matplotlib\cbook\__init__.py in _to_unmasked_float_array(x)
1388 return np.ma.asarray(x, float).filled(np.nan)
1389 else:
-> 1390 return np.asarray(x, float)
1391
1392
~\anaconda3\lib\site-packages\numpy\core\_asarray.py in asarray(a, dtype, order)
83
84 """
---> 85 return array(a, dtype, copy=False, order=order)
86
87
TypeError: float() argument must be a string or a number, not 'Timestamp'