id=1:10
age=c(100,7,23,66,34,67,45,50,99,7)
data=data.frame(id,age)
data$age_stage=cut(data$age,breaks=c(0,50,100))
id age age_stage
1 1 100 (50,100]
2 2 7 (0,50]
3 3 23 (0,50]
4 4 66 (50,100]
5 5 34 (0,50]
6 6 67 (50,100]
7 7 45 (0,50]
8 8 50 (0,50]
9 9 99 (50,100]
10 10 7 (0,50]
I want to calculate the proportion of people who are older than 50. How should I do this?
You can check proportion using
prop.table
.