79356954

Date: 2025-01-15 03:07:10
Score: 1
Natty:
Report link

This likely means that one of your columns is incompatible as a categorical data type or a continuous datatype. You can check the types using dtype.

for col in df.columns:
    print(col)
    print(df[col].dtype)
    print(df.cat_column.dtype == 'category')
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Taylor England