Skip to content

Instantly share code, notes, and snippets.

@rajeshmr
Created December 7, 2017 10:16
Show Gist options
  • Save rajeshmr/e4f90475f37248ca3bca724face5eee2 to your computer and use it in GitHub Desktop.
Save rajeshmr/e4f90475f37248ca3bca724face5eee2 to your computer and use it in GitHub Desktop.
clothing = pd.read_csv("clothing.tsv", sep='\t')
cameras = pd.read_csv("cameras.tsv", sep='\t')
home_appliances = pd.read_csv("home.tsv", sep='\t')
datasets = [clothing, cameras, home_appliances]
print("Make sure there are no null values in the datasets")
for data in datasets:
print("Has null values: ", data.isnull().values.any())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment