I am working with an excel file with has a column called 'HEIGHT'
.
I would like to return the number of values in this column.
There are blank values in this column, so I would only like the count of actual numbers.
I have tried df['HEIGHT']
however it returns all the rows even if they don't have a value.
I also would like to know how to delete all the rows that don't have a value in the 'HEIGHT'
column.