No data frame que representa os dados do aluguel.csv realizei o filtro do Tipo por Apartamento e dos valores nulos do Condominio:
selecao = df[(df.Tipo == 'Apartamento') & (df.Condominio.isnull())]
Ao tentar usar o df selecao como um filtro tive o seguinte erro:
A = df.shape[0] df = df[~selecao] B = df.shape[0]
TypeError: ufunc 'invert' not supported for the input types, and the inputs could not be safely coerced to any supported types according to the casting rule ''safe''
Alguém poderia me ajudar?