jeffheaton / t81_558_deep_learning

T81-558: Keras - Applications of Deep Neural Networks @Washington University in St. Louis
https://sites.wustl.edu/jeffheaton/t81-558/
Other
5.71k stars 3.04k forks source link

Typo in t81_558_class_02_4_pandas_functional.ipynb #53

Closed verlinen closed 4 years ago

verlinen commented 4 years ago

There is a typo in 4 cell:

efficiency = df.apply(lambda x: x['displacement']/x['horsepower'], axis=1)
display(effi[0:10])

should be:

efficiency = df.apply(lambda x: x['displacement']/x['horsepower'], axis=1)
display(efficiency[0:10])
jeffheaton commented 4 years ago

Thanks!