11-15-2020
yoyong555
Obsidian | Level 7
Member since
05-30-2019
- 39 Posts
- 16 Likes Given
- 0 Solutions
- 0 Likes Received
-
Latest posts by yoyong555
Subject Views Posted 699 11-10-2020 02:36 PM 717 11-10-2020 02:23 PM 1160 11-09-2020 09:27 PM 1189 11-09-2020 08:49 PM 1355 08-10-2020 08:43 PM 1377 08-10-2020 08:06 PM 2570 06-15-2020 11:54 PM 1802 06-11-2020 11:43 PM 1846 06-11-2020 09:27 PM 1883 06-11-2020 08:17 PM -
Activity Feed for yoyong555
- Posted Re: merging two tables and changing var names on SAS Programming. 11-10-2020 02:36 PM
- Posted merging two tables and changing var names on SAS Programming. 11-10-2020 02:23 PM
- Posted Re: Percent change on SAS Programming. 11-09-2020 09:27 PM
- Posted Percent change on SAS Programming. 11-09-2020 08:49 PM
- Posted Re: Append columns on SAS Programming. 08-10-2020 08:43 PM
- Posted Append columns on SAS Programming. 08-10-2020 08:06 PM
- Liked Re: Calculate min and max values using Proc SQL for Kurt_Bremser. 06-16-2020 03:21 PM
- Liked Re: Calculate min and max values using Proc SQL for andreas_lds. 06-16-2020 03:21 PM
- Liked Re: Calculate min and max values using Proc SQL for andreas_lds. 06-16-2020 03:21 PM
- Posted Calculate min and max values using Proc SQL on SAS Programming. 06-15-2020 11:54 PM
- Liked Re: Need help with coding for PGStats. 06-14-2020 03:09 PM
- Liked Re: Need help with coding for PGStats. 06-14-2020 03:09 PM
- Posted Re: Need help with coding on SAS Programming. 06-11-2020 11:43 PM
- Liked Re: Need help with coding for PGStats. 06-11-2020 10:18 PM
- Posted Re: Need help with coding on SAS Programming. 06-11-2020 09:27 PM
- Liked Re: Need help with coding for ballardw. 06-11-2020 08:39 PM
- Liked Re: Need help with coding for PGStats. 06-11-2020 08:39 PM
- Posted Re: Need help with coding on SAS Programming. 06-11-2020 08:17 PM
- Posted Re: Need help with coding on SAS Programming. 06-11-2020 08:11 PM
- Posted Re: Need help with coding on SAS Programming. 06-11-2020 07:10 PM
-
Posts I Liked
Subject Likes Author Latest Post 1 1 1 1 1
11-10-2020
02:23 PM
Hi.
I have two identical tables and I want to add the last column of the second table to the first table. But I want to change the variable names.
How do I program it?
Table 1
Group
Setting
Value
1
a
25
2
b
30
3
c
45
Table 2
Group
Setting
Value
1
a
48
2
b
59
3
c
35
Final output
Group
Setting
Value 1
Value 2
1
a
25
48
2
b
30
59
3
c
45
35
Thanks.
... View more
11-09-2020
08:49 PM
Hi.
I have this sample table.
Group
Type
Value
1
a
16
1
b
25
2
a
20
2
b
14
3
a
17
3
b
31
I want to calculate the percentage change from a to b per group. For example formula for Group 1 = (16-25)/16 * 100.
Thank you.
Yoyong
... View more
08-10-2020
08:43 PM
Hi @novinosrin. If the variables have different names (e.g. Zscore, Postzscore Prezscore), how does that affect the program?
... View more
08-10-2020
08:06 PM
Hi everyone.
I need help with programming.
My data looks like Table1.
I need to be extract the scores of members only (Member = Y) and produce a data which contains two columns like in Table 2.
Thank you for the assistance.
Yoyong
Table 1.
Score1
Score2
Score3
Member
10
8
34
Y
12
5
12
N
15
18
10
Y
8
16
0
Y
15
12
5
Y
12
0
2
N
6
8
15
Y
10
13
21
Y
Table 2.
Score_group
Score
1
10
1
15
1
8
1
15
1
6
1
10
2
8
2
18
2
16
2
12
2
8
2
13
3
34
3
10
3
0
3
5
3
15
3
21
... View more
06-15-2020
11:54 PM
Hi everyone.
I have a table below.
Patient_no
Rate_1
Rate_2
Rate_3
Rate_4
Rate_5
1
2
3
4
From the table, I would like to create tables showing the minimum and maximum values for each patient and for each rate.
The tables would look like these:
Patient_no
min_rate
max_rate
1
2
3
4
Rate_no
min_rate
max_rate
1
2
3
4
5
Thank you. Greatly appreciated!
... View more
06-11-2020
11:43 PM
Thank you @PGStats .
I am already analyzing the data by gender and learning the code.
Here is the result of the last syntax.
I have two more questions.
I want to calculate the survival rate for of each patient for each cum_rate_year.
This means 10 more columns will be added to the table.
patient_id
surv_rate_1
surv_rate_2
surv_rate3
.....
1
2
3
surv_rate_n = exp -(cum_rate_n)
For patient 1, the surv_rate_1 for cum_rate_1 is exp(-0.023) = 0.977.
For patient 2, the surv_rate_1 for cum_rate_1 is exp(-0.037) = 0.963.
For patient 3, the surv_rate_1 for cum_rate_1 is exp(-0.063) = 0.939.
I should do this for each patient for every cum_rate. How do I include this in the syntax?
And lastly, I would like to produce a table that shows the average of surv_rates across all patients for each year.
year
average_surv_rate
1
2
3
4
5
6
7
8
9
10
... View more
06-11-2020
09:27 PM
I am really learning a lot. Thank you @PGStats !
In the RATES data set, a Gender column is added where each gender will have different sets of death rates for patients from 1 to 100 years old.
How will the code change if the cumulative death rate is both gender and age specific?
Gender
Age
Patient_age_last_follow_up
cum_rate
cum_rate_1
cum_rate2
cum_rate3
M
74
80
M
78
84
F
80
83
... View more
06-11-2020
08:17 PM
Thank you @PGStats. for your reply.
I have additional questions.
a. Instead of using cards, how do I change the code if I want to use a SAS data that contains the two columns with the same variable names?
b. How do I change the code to produce this output ? Cum_dth_rateYno refers to cumulative death rate from Year 1 to Y 10. It is merging the Table 2 and 3 (but transposing the results).
Patient_age
Patient_age_last_follow_up
Cum_dth_rate
Cum_dth_rate_Y1
Cum_dth_rate_Y2
Cum_dth_rate_Y3
Cum_dth_rate_Y4
Cum_dth_rate_Y5
... View more
06-11-2020
08:11 PM
Hi again @ballardw.
I have additional questions.
a. Instead of using cards, how do I change the code if I want to use a SAS data that contains the two columns with the same variable names?
b. How do I change the code to produce this output ? Cum_dth_rateYno refers to cumulative death rate from Year 1 to Y 10. It is merging the Table 2 and 3 (but transposing the results).
Patient_age
Patient_age_last_follow_up
Cum_dth_rate
Cum_dth_rate_Y1
Cum_dth_rate_Y2
Cum_dth_rate_Y3
Cum_dth_rate_Y4
Cum_dth_rate_Y5
... View more
06-11-2020
07:10 PM
Hi @ballardw.
Yes, the Cum_dth_rate_pt1, Cum_dth_rate_pt2 and Cum_dth_rate_pt3 are supposed to be for Patient 1, Patient 2 and Patient 3.
Thank you very much for your reply and advice.
... View more
06-11-2020
06:03 PM
Hi everyone.
I hope you are all doing fine.
I have a large data set which requires calculations. For a small data set (probably less than 30), I can patiently use MS Excel.
So, anyone's help would greatly be appreciated.
Thank you in advance.
And keep safe!
------------------------------------
I have a reference data (Table 1) and two tables (Tables 2 and 3) to produce.
Table 1 (reference data) contains two variables - Age (0 to 100) and Age specific death rates. I use this to populate Tables 2 and 3.
Below is a subset.
Age
Age_spec_dth_rates
71
0.023
72
0.023
73
0.023
74
0.023
75
0.037
76
0.037
77
0.037
78
0.037
79
0.037
80
0.063
81
0.063
82
0.063
83
0.063
84
0.063
85
0.147
86
0.147
87
0.147
88
0.147
89
0.147
90
0.147
Table 2 has three variables - age of the patients, age of the patients at last follow up and cumulative death rate.
I need to calculate the cumulative death rates for each patient using the reference data.
Table 2.
Patient_age
Patient_age_last_follow_up
Cum_dth_rate
74
80
78
84
80
83
Patient 1 joined the study at 74 years old and lived until 80 years old.
Patient 2 joined the study at 78 years old and lived until 84 years old.
Patient 2 joined the study at 80 years old and lived until 83 years old.
The cumulative death rate (cum_dth_rate) is obtained by adding the death rates at each year to the cumulative death rate for the previous year.
Table 2a shows the results. Table 2b shows how the values are generated.
Table 2a.
Patient_age
Patient_age_last_follow_up
Cum_dth_rate
74
80
0.208
78
84
0.326
80
83
0.189
Table 2b.
Age
Age_spec_dth_rates
Cum_dth_rate_pt1
Cum_dth_rate_pt2
Cum_dth_rate_pt3
71
0.023
72
0.023
73
0.023
74
0.023
75
0.037
0.023
76
0.037
0.06
77
0.037
0.097
78
0.037
0.134
79
0.037
0.171
0.037
80
0.063
0.208
0.074
81
0.063
0.137
0.063
82
0.063
0.2
0.126
83
0.063
0.263
0.189
84
0.063
0.326
85
0.147
86
0.147
87
0.147
88
0.147
89
0.147
90
0.147
Table 3 is different. Using again the reference data, I need to populate each patient's cumulative death rate until the end of the longest follow - up time of the study. For example, if the study is conducted for 10 years, the table will look like this:
Table 3.
Study Year
Cum_dth_rate_pt1
Cum_dth_rate_pt2
Cum_dth_rate_pt3
1
2
3
4
5
6
7
8
9
10
Table 3a shows the results. Table 3b shows how the values are generated.
Table 3a.
Study Year
Cum_dth_rate_pt1
Cum_dth_rate_pt2
Cum_dth_rate_pt3
1
0.023
0.037
0.063
2
0.06
0.074
0.126
3
0.097
0.137
0.189
4
0.134
0.2
0.252
5
0.171
0.263
0.315
6
0.208
0.326
0.462
7
0.271
0.389
0.609
8
0.334
0.536
0.756
9
0.397
0.683
0.903
10
0.46
0.83
1.05
Table 3b.
Age
Age_spec_dth_rates
Cum_dth_rate_pt1
Cum_dth_rate_pt2
Cum_dth_rate_pt3
71
0.023
72
0.023
73
0.023
74
0.023
75
0.037
0.023
76
0.037
0.06
77
0.037
0.097
78
0.037
0.134
79
0.037
0.171
0.037
80
0.063
0.208
0.074
81
0.063
0.271
0.137
0.063
82
0.063
0.334
0.2
0.126
83
0.063
0.397
0.263
0.189
84
0.063
0.46
0.326
0.252
85
0.147
0.389
0.315
86
0.147
0.536
0.462
87
0.147
0.683
0.609
88
0.147
0.83
0.756
89
0.147
0.903
90
0.147
1.05
The generated values are an extension of Table 2b where the cumulative death rates are calculated until the end of the entire study period (in this case, 10th year).
-----
Again, thank you very much for your help!
Yoyong.
... View more
01-07-2020
02:17 PM
I will have three tables as a result of my proc freq datasetp. The tables will look like:
site_1
Gender A B C Total
F 1 1 1 3
M 2 2 0 4
Total 3 3 1 7
site_2
Gender A B C Total
F 3 4 6 13
M 2 0 3 5
Total 5 4 9 18
site_3
Gender A B C Total
F 2 1 1 4
M 4 2 5 11
Total 6 3 6 15
How do I merge the results of these tables to look like this:
site
Gender A B C Total
F 6 6 8 20
M 8 4 8 20
Total 14 10 16 40
Thank you.
... View more