i’m working on a Data visualisation with Python. I did this before with VBA and i want to move my Project from VBA to Python. Very interesting challenge .
I was wondering why after setting a Filter in Pandas i see only True/False values and not the whole Dataframe? I want to see everything to decide what i need for my futher analyses and what is missing.
df[‘Calendar_Week’] == 45 this will create a boolean version of dataframe. Apply this boolean mask to the dataframe again to see the values corresponding to True value.
Hi @jithins123, now it works.
I had a copy&paste error or something like this.
Instead of a " ’ " i had a " ` " in my Filter.
Thats why Jupyter didn’t accept my statement.