I need to count the unique number of Churn based on the Account_length. The sample data is provided below:
The result should be like this
Account_length Churn Count
1 False 7
1 True 1
2 True 1
2 False 1
Any help or advice appreciated,
Cheers,
Doe
proc sql;
select account_length, churn, count(churn) as count
from have
group by account_length, churn;
quit;
* Correction to the expected results
The result should be like this
Account_length Churn Count
1 False 7
1 True 1
2 True 1
3 False 1
Any help or advice appreciated,
Cheers,
Doe
proc sql;
select account_length, churn, count(churn) as count
from have
group by account_length, churn;
quit;
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.