ano_de_lancamento = filmes.titulo.str.extract("\((\d{4})\)")
filmes['ano_de_lancamento'] = ano_de_lancamento.astype(float)
filmes.head(10)
Aparece:
AttributeError Traceback (most recent call last)
<ipython-input-27-b2ae0e74544c> in <module>
----> 1 ano_de_lancamento = filmes.titulo.str.extract("\((\d{4})\)")
2 filmes['ano_de_lancamento'] = ano_de_lancamento.astype(float)
3 filmes.head(10)
~\Anaconda3\lib\site-packages\pandas\core\generic.py in __getattr__(self, name)
5055 if self._info_axis._can_hold_identifiers_and_holds_name(name):
5056 return self[name]
-> 5057 return object.__getattribute__(self, name)
5058
5059 def __setattr__(self, name, value):
AttributeError: 'DataFrame' object has no attribute 'str'
Obs: O data frame já tem a coluna 'titulo'