Categorizing variabels in SAS using a range system

非 Y 不嫁゛ 提交于 2019-11-28 14:41:19

Proc Format is the correct method and you need a numeric format:

 proc format;
 value salfmt
 20000 - <100000 = "At least $20,000 but less than $100,000"
 100000 - 500000 = "100,000 +"
 . = 'Missing'
 other = 'Other';

Then in your print apply the format, similar to what you did for gender.

format salary salfmt.;

This should help get you started.

I created a little function that mimics the R cut functions :

options cmplib=work.functions;
proc fcmp outlib=work.functions.test;
function cut2string(var, cutoffs[*], values[*] $) $;
    if var <cutoffs[1] then return (values[1]);
    if var >=cutoffs[dim(cutoffs)] then return (values[dim(values)]);
    do i=1 to dim(cutoffs);
        if var >=cutoffs[i] & var <cutoffs[i+1] then return (values[i+1]); 
    end;
    return ("Error, this shouldn't ever happen");

endsub;

run;

Then you can use it like this :

data Work.nonsales2;
    set Work.nonsales;
    array cutoffs[3] _temporary_ (20000 100000 500000);
    array valuesString[4] $10 _temporary_ ("<20k " "20k-100k" "100k-500k" ">500k");

    salary_string  = cut2string(salary ,cutoffs,valuesString);
run;
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!