1
resposta

[Dúvida] Style - erro

Ao escrever;

s = df_clientes_vendas.style s

O Colab retorna o seguinte:


AttributeError                            Traceback (most recent call last)
<ipython-input-25-44ee5222b2bc> in <cell line: 3>()
      1 # objeto Styler
      2 
----> 3 s = df_clientes_vendas.style
      4 s

/usr/local/lib/python3.10/dist-packages/pandas/core/generic.py in __getattr__(self, name)
   5987         ):
   5988             return self[name]
-> 5989         return object.__getattribute__(self, name)
   5990 
   5991     def __setattr__(self, name: str, value) -> None:

AttributeError: 'Series' object has no attribute 'style'
1 resposta

Oi Mateus, tudo bem?

O erro "AttributeError: 'Series' object has no attribute 'style'" significa que você está tentando aplicar o método .style em um objeto do tipo Series, e não em um DataFrame.

Para corrigir, verifique se a variável df_clientes_vendas realmente se refere a um DataFrame. Na aula anterior nós transformamos a série em um Dataframe com o código:

df_cliente_vendas = df_cliente_vendas.reset_index()

Portanto, verifique se executou o código acima. Além disso, verifique se deixou de executar alguma célula.

Por fim, recomendo reiniciar a sessão e executar todas as células novamente.

Espero ter ajudado.

Qualquer dúvida, compartilhe no fórum.

Abraços e bons estudos!

Caso este post tenha lhe ajudado, por favor, marcar como solucionado ✓. Bons Estudos!