Missing values in scikits machine learning
Missing values are simply not supported in scikit-learn. There has been discussion on the mailing list about this before, but no attempt to actually write code to handle them. Whatever you do, don’t use NaN to encode missing values, since many of the algorithms refuse to handle samples containing NaNs. The above answer is outdated; … Read more