Hello,
I have a small data of two groups and I want to compare them and get the p value.
Group 1 is called Responder and includes ID 3, 7, and 10, While the second group called Non-responder includes 4, 6, 11, and 14.
Here is the data.
clear
input byte(id sex age race) str6 height float(weight bmi)
3 0 38 2 "4'11.5" 59.5 46.3
4 1 68 1 "5'8" 345 52.5
6 0 27 1 "5'6" 343.8 55.5
7 0 41 1 "5'7" 254 39.8
10 0 48 2 "5'5" 279.8 46.6
11 1 47 1 "5'9" 289 42.7
14 0 59 2 "5'3.5" 269.4 47
end
I have a small data of two groups and I want to compare them and get the p value.
Group 1 is called Responder and includes ID 3, 7, and 10, While the second group called Non-responder includes 4, 6, 11, and 14.
Here is the data.
clear
input byte(id sex age race) str6 height float(weight bmi)
3 0 38 2 "4'11.5" 59.5 46.3
4 1 68 1 "5'8" 345 52.5
6 0 27 1 "5'6" 343.8 55.5
7 0 41 1 "5'7" 254 39.8
10 0 48 2 "5'5" 279.8 46.6
11 1 47 1 "5'9" 289 42.7
14 0 59 2 "5'3.5" 269.4 47
end
Comment