How to count Missing Values on Dash Plotly

Hi.
I want to count total number of missing values of a column X in .csv dataset.
Thnaks

Hey @MGBpy

This seems less like a Dash question and more like a pandas question. Either way, something like df['x'].isnull().sum()

2 Likes

I will try and let you know if it works. Thanks