analyticswithadam / Python

MIT License
49 stars 45 forks source link

BUG correction suggestion. #1

Open OTonGitHub opened 2 years ago

OTonGitHub commented 2 years ago

I noticed in your notebook, there was a cell with

df[len(df['name'] > 3)] #incorrect where, >3 comparison is inside the len() function, it should be outside, like this

df[len(df['name'] ) > 3] #correct I believe it was just a typing error, hopefully you can quickly dix it, thanks.