You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Bool columns are treated as categories, but should be transformed to integer instead
import pandas as pd
from aikit.transformers import NumericalEncoder
df = pd.DataFrame(data={'a': [True, True, False]})
df['a'].dtype
x = NumericalEncoder().fit_transform(df)
x
The text was updated successfully, but these errors were encountered:
Bool columns are treated as categories, but should be transformed to integer instead
The text was updated successfully, but these errors were encountered: