Skip to content

Instantly share code, notes, and snippets.

@YohanObadia
Created February 4, 2017 13:00
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save YohanObadia/a3e568cd7e3c57228e474b5f1608c27e to your computer and use it in GitHub Desktop.
Save YohanObadia/a3e568cd7e3c57228e474b5f1608c27e to your computer and use it in GitHub Desktop.
Example of use for the knn_impute function
knn_impute(target=df['Age'], attributes=df.drop(['Age', 'PassengerId'], 1),
aggregation_method="median", k_neighbors=10, numeric_distance='euclidean',
categorical_distance='hamming', missing_neighbors_threshold=0.8)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment