I am working with a dataset which has 34 features (numerical, nominal) and the target class. Several of the columns have missing values, especially one column has approximately 50% missing values.
I have not been concerning, because in R Naive Bayes works perfect no matter missing values or type of features, but since I read in scikit docs that Naive Bayes cannot handle mixed data and Missing values, I concern.
I want to ask you if hopefully is any library in python that works exactly like NaiveBayes in R, or what can I do to run Naive Bayes for mixed features having also missing values.