Nessa aula, quando eu executo o código abaixo
dados_residencial = dados[selecao]
dados_residencial
me vem o seguinte erro:
/Users/lstorino/opt/anaconda3/envs/alura_pandas/lib/python2.7/site-packages/ipykernel_launcher.py:1: UserWarning: Boolean Series key will be reindexed to match DataFrame index.
"""Entry point for launching an IPython kernel.
---------------------------------------------------------------------------
IndexingError Traceback (most recent call last)
<ipython-input-15-ebce47e5eefd> in <module>()
----> 1 dados_residencial = dados[selecao]
2 dados_residencial
/Users/lstorino/opt/anaconda3/envs/alura_pandas/lib/python2.7/site-packages/pandas/core/frame.pyc in __getitem__(self, key)
2916 # Do we have a (boolean) 1d indexer?
2917 if com.is_bool_indexer(key):
-> 2918 return self._getitem_bool_array(key)
2919
2920 # We are left with two options: a single key, and a collection of keys,
/Users/lstorino/opt/anaconda3/envs/alura_pandas/lib/python2.7/site-packages/pandas/core/frame.pyc in _getitem_bool_array(self, key)
2965 # check_bool_indexer will throw exception if Series key cannot
2966 # be reindexed to match DataFrame rows
-> 2967 key = check_bool_indexer(self.index, key)
2968 indexer = key.nonzero()[0]
2969 return self._take(indexer, axis=0)
/Users/lstorino/opt/anaconda3/envs/alura_pandas/lib/python2.7/site-packages/pandas/core/indexing.pyc in check_bool_indexer(ax, key)
2484 mask = isna(result._values)
2485 if mask.any():
-> 2486 raise IndexingError('Unalignable boolean Series provided as '
2487 'indexer (index of the boolean Series and of '
2488 'the indexed object do not match')
IndexingError: Unalignable boolean Series provided as indexer (index of the boolean Series and of the indexed object do not match
Como eu sou usuário de MAC pode ser alguma comida de bola no setup to Ambiente, mas acho que não...
Aí não consegui cumprir o resto da aula