11-28-2021
Julie4
Fluorite | Level 6
Member since
10-20-2021
- 10 Posts
- 4 Likes Given
- 0 Solutions
- 0 Likes Received
-
Latest posts by Julie4
Subject Views Posted 957 11-28-2021 06:34 AM 975 11-28-2021 06:07 AM 976 11-28-2021 06:06 AM 1063 11-27-2021 08:49 PM 797 11-11-2021 07:32 AM 1080 11-09-2021 08:24 PM 1081 11-09-2021 08:22 PM 1164 11-09-2021 04:37 AM 1119 10-24-2021 09:11 PM 1263 10-20-2021 11:37 AM -
Activity Feed for Julie4
- Posted Re: Question regarding weighting population for each individual on SAS Programming. 11-28-2021 06:34 AM
- Posted Re: Question regarding weighting population for each individual on SAS Programming. 11-28-2021 06:07 AM
- Posted Re: Question regarding weighting population for each individual on SAS Programming. 11-28-2021 06:06 AM
- Posted Question regarding weighting population for each individual on SAS Programming. 11-27-2021 08:49 PM
- Posted Need help with macro code on SAS Programming. 11-11-2021 07:32 AM
- Posted Re: Question about error message on New SAS User. 11-09-2021 08:24 PM
- Liked Re: Question about error message for Kurt_Bremser. 11-09-2021 08:23 PM
- Liked Re: Question about error message for AMSAS. 11-09-2021 08:23 PM
- Liked Re: Question about error message for Ksharp. 11-09-2021 08:23 PM
- Posted Re: Question about error message on New SAS User. 11-09-2021 08:22 PM
- Liked Re: Question about error message for Reeza. 11-09-2021 08:22 PM
- Posted Question about error message on New SAS User. 11-09-2021 04:37 AM
- Posted Re: concentration index & horizontal equity index(HIwv Index) on SAS Programming. 10-24-2021 09:11 PM
- Posted concentration index & horizontal equity index(HIwv Index) on SAS Programming. 10-20-2021 11:37 AM
- Tagged concentration index & horizontal equity index(HIwv Index) on SAS Programming. 10-20-2021 11:37 AM
- Tagged concentration index & horizontal equity index(HIwv Index) on SAS Programming. 10-20-2021 11:37 AM
- Tagged concentration index & horizontal equity index(HIwv Index) on SAS Programming. 10-20-2021 11:37 AM
-
Posts I Liked
Subject Likes Author Latest Post 1 1 1 1
11-28-2021
06:34 AM
INSUR_LEVEL should be weighted(analytic weight) by POPULATION. After that, I should compute fractional rank with the syntax that I wrote.
... View more
11-11-2021
08:55 AM
This:
proc means data = &xvar.ranka noprint;
var wealthrank;
/* wealthrank_max*/
output out = wealthrank_max max = wealthrank_max;
run;
/* wealthrank _ max,wealthrank_max*/
data &xvar.rank;
set &xvar.ranka ;
if _n_ = 1 then set wealthrank_max;
wealthrank_frac = wealthrank/wealthrank_max;
run;
can be done in a single SQL:
proc sql;
create table &xvar.rank as
select
*,
wealthrank / max(wealthrank) as wealthrank_frac
from &xvar.ranka
;
quit;
PS: you must test this with your real data to see which of the two methods performs better. If the two-step PROC MEANS / DATA is significantly better, keep it.
... View more
11-09-2021
08:24 PM
Thank you so much! I solve the problem with your reply by downloading the notepad!!
... View more
10-24-2021
09:11 PM
I attached the file that I found below and contents below are the calculations of Concentration index and HIwv. This is about Concentration Index. This is about HIwv index. HIwv index is calculated by ‘the difference between the concentration index for actual utilization and that for need-predicted utilization’ and this is the 'indirect standardization with nonlinear models'.
... View more