The Churn column has about 148 unique values! I thought this was supposed to be a binary classification problem?
Hi can you pls send the code you used in checking for unique values in the CHURN Column.
how did you find this out?
I think it's with data that was downloaded. Please the organizers should check the data again.
The churn has one one and zeros
To check it use this code
data['CHURN'].value_counts()
yeahh.
it has only two unique values. use df['CHURN'].nunique() to confirm
Hi can you pls send the code you used in checking for unique values in the CHURN Column.
how did you find this out?
I think it's with data that was downloaded. Please the organizers should check the data again.
The churn has one one and zeros
To check it use this code
data['CHURN'].value_counts()
yeahh.
it has only two unique values. use df['CHURN'].nunique() to confirm