Home › Fóruns › Fórum Python para Finanças: Análise de Dados e Machine Learning › erro na aula com Gráficos de limha
Marcado: Gráfico das ações - Grafico de linha
- Este tópico contém 2 respostas, 3 vozes e foi atualizado pela última vez 1 ano, 7 meses atrás por
Pras.
- AutorPosts
- 4 de março de 2021 às 23:43 #27840
pereira
Participanteacoes_df.plot(x = ‘Date’, figsize = (15,7), title = ‘Histórico do preço das ações’);
KeyError Traceback (most recent call last)
/usr/local/lib/python3.7/dist-packages/pandas/core/indexes/base.py in get_loc(self, key, method, tolerance)
2897 try:
-> 2898 return self._engine.get_loc(casted_key)
2899 except KeyError as err:pandas/_libs/index.pyx in pandas._libs.index.IndexEngine.get_loc()
pandas/_libs/index.pyx in pandas._libs.index.IndexEngine.get_loc()
pandas/_libs/hashtable_class_helper.pxi in pandas._libs.hashtable.PyObjectHashTable.get_item()
pandas/_libs/hashtable_class_helper.pxi in pandas._libs.hashtable.PyObjectHashTable.get_item()
KeyError: ‘Date’
The above exception was the direct cause of the following exception:
KeyError Traceback (most recent call last)
3 frames
/usr/local/lib/python3.7/dist-packages/pandas/core/indexes/base.py in get_loc(self, key, method, tolerance)
2898 return self._engine.get_loc(casted_key)
2899 except KeyError as err:
-> 2900 raise KeyError(key) from err
2901
2902 if tolerance is not None:11 de março de 2021 às 17:50 #27927Fábio Spak
MestreBoa tarde pereira, consegue verificar se o nome do parâmetro “Date” esta correto?
Fabio
12 de outubro de 2021 às 18:13 #31799Pras
ParticipanteErro no parâmetro “Date”
acoes_df.plot(x= ‘Date’, figsize = (15,7), title= ‘ Historico de preços de ações’ );
KeyError Traceback (most recent call last)
/usr/local/lib/python3.7/dist-packages/pandas/core/indexes/base.py in get_loc(self, key, method, tolerance)
2897 try:
-> 2898 return self._engine.get_loc(casted_key)
2899 except KeyError as err:pandas/_libs/index.pyx in pandas._libs.index.IndexEngine.get_loc()
pandas/_libs/index.pyx in pandas._libs.index.IndexEngine.get_loc()
pandas/_libs/hashtable_class_helper.pxi in pandas._libs.hashtable.PyObjectHashTable.get_item()
pandas/_libs/hashtable_class_helper.pxi in pandas._libs.hashtable.PyObjectHashTable.get_item()
KeyError: ‘Date’
The above exception was the direct cause of the following exception:
KeyError Traceback (most recent call last)
3 frames
/usr/local/lib/python3.7/dist-packages/pandas/core/indexes/base.py in get_loc(self, key, method, tolerance)
2898 return self._engine.get_loc(casted_key)
2899 except KeyError as err:
-> 2900 raise KeyError(key) from err
2901
2902 if tolerance is not None:KeyError: ‘Date’
- AutorPosts
- Você deve fazer login para responder a este tópico.