Razvan and the software-engineering magic team - thank you for posting and all your work on generating and enchanting this!
At the "Data Cleaning" section, 3 lines of code shown below, I'm getting the following error. Any ideas what could be missing that is generating this error?
CODE
tadpole = strat_train_set.drop(y_num_cols + y_num_cols, axis=1)
tadpole_labels_categorical = strat_train_set[useful_categorical_attribs].copy()
tadpole_labels_continuous = strat_train_set[useful_numerical_attribs].copy()
ERRORS
---------------------------------------------------------------------------
KeyError Traceback (most recent call last)
<ipython-input-137-7de43013226f> in <module>()
1 tadpole = strat_train_set.drop(y_num_cols + y_num_cols, axis=1)
2 tadpole_labels_categorical = strat_train_set[useful_categorical_attribs].copy()
----> 3 tadpole_labels_continuous = strat_train_set[useful_numerical_attribs].copy()
/usr/local/lib/python3.6/site-packages/pandas/core/frame.py in __getitem__(self, key)
1956 if isinstance(key, (Series, np.ndarray, Index, list)):
1957 # either boolean or fancy integer index
-> 1958 return self._getitem_array(key)
1959 elif isinstance(key, DataFrame):
1960 return self._getitem_frame(key)
/usr/local/lib/python3.6/site-packages/pandas/core/frame.py in _getitem_array(self, key)
2000 return self.take(indexer, axis=0, convert=False)
2001 else:
-> 2002 indexer = self.loc._convert_to_indexer(key, axis=1)
2003 return self.take(indexer, axis=1, convert=True)
2004
/usr/local/lib/python3.6/site-packages/pandas/core/indexing.py in _convert_to_indexer(self, obj, axis, is_setter)
1229 mask = check == -1
1230 if mask.any():
-> 1231 raise KeyError('%s not in index' % objarr[mask])
1232
1233 return _values_from_object(indexer)
KeyError: "['AGE_AT_EXAM'] not in index"