Problem with the data ( the information is imported but you cant use it correctly )

I have the follow notebook

and as you see in the follow image the field has information

IBGE COLUMN V6318

but when i used with the follow code observable assume that is all null.

WITH THE FOLLOW CODE
viewof IBGE_TOTAIS_X_EDADE_DEIXO_TREINAR = IBGE
.orderby(‘V3618’)
.groupby(‘V3618’)
.count()
.rename({“count”:“Quantitade_Total”})
.view()

I dont know what is the bug seems to be something related to the information saved in cache seems to be.

Best Regards
javier

There is no bug here. You’re prefiltering IBGE by .filter(d=> d.V3603 >0 ), which only leaves you with rows where V3618 is null.

1 Like