i can't apply labelencoder to array of bool
I am on a machine learning project. I did import all libraries. I took one column of data(this column is array of bool) and i want to apply it labelencoder. Here is my whole code. data = pd.read_csv(‘odev_tenis.csv’) le = preprocessing.LabelEncoder() ruzgar = data.iloc[:,3:4].values #the column i want to apply labelencoder ruzgar[:,3:4] = le.fit_transform(data.iloc[:,3:4]) And… Read More i can't apply labelencoder to array of bool