Hi I have categorical data in mulitple columns like this:
ID
T1
T2
T3
T4
M1
M2
M3
1
NN
NN
YN
NN
YY
NY
NN
2
YN
NN
YN
YN
NY
YN
NN
3
YY
YY
YN
YY
NY
YN
NN
4
NY
YY
NY
NY
YN
NN
NN
5
NN
NN
YN
NN
YY
NY
NN
6
YN
NN
YN
YN
NY
YN
NN
7
YY
YY
YN
YY
NY
YN
NN
8
NY
YY
NY
NY
YN
NN
NN
The categorical values (NY,NN, YN, and YY) are the same in each of the columns.
I would like aggregated count output for the categories in each column as a single table, like:
T1
T2
T3
T4
M1
M2
M3
NN
2
4
2
2
7
YN
2
6
2
2
4
1
YY
2
4
2
2
NY
2
2
2
4
2
Can anyone suggest some code that would do this?
Appreciate your help,
Celia.
... View more