w3resource

Pandas Datetime: Check the empty values of UFO Dataframe

Pandas Datetime: Exercise-19 with Solution

Write a Pandas program to check the empty values of UFO (unidentified flying object) Dataframe.

Sample Solution:

Python Code:

import pandas as pd
df = pd.read_csv(r'ufo.csv')
print(df.isnull().sum())

Sample Output:

Date_time                          0
city                               0
state/province                     0
country                            0
UFO_shape                          0
length_of_encounter_seconds        0
described_duration_of_encounter    0
description                        0
date_documented                    0
latitude                           0
longitude                          0
dtype: int64

Python Code Editor:

Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: Write a Pandas program to create a graphical analysis of UFO (unidentified flying object) Sightings year.
Next: Write a Pandas program to create a plot of distribution of UFO (unidentified flying object) observation time.

What is the difficulty level of this exercise?



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://198.211.115.131/python-exercises/pandas/datetime/pandas-datetime-exercise-19.php