0
我正嘗試使用Proc SurveySelect語句從SAS中的數據集創建分層採樣。我收到錯誤'分配比例總和應該等於1'。有誰知道如何解決這個錯誤?SAS中分層採樣中分配比例的錯誤
請找我使用下面的代碼:
data Treatment;
set cashback4;
where CASHBACK=1;
run;
proc surveyselect data=cashback4
method=sys N=300000 out=sample_main;
strata Free_Card event event_lifestage edu_qual surrogate Zone CHANNEL /ALLOC=prop;
RUN;
proc surveyselect data=treatment
method=sys N=50000 out=sample1;
strata Free_Card event event_lifestage edu_qual surrogate Zone CHANNEL/ALLOC=sample_main;
RUN;
Sample_main是越來越創建的,但SAMPLE1不是。
請提供導致此錯誤的[最小,可驗證和完整](http://stackoverflow.com/help/mcve)代碼示例。 – user667489