A.State=scan(address2,2);
B.State=scan(address2,13,2);
C.State=substr(address2,2);
D.State=substr(address2,13,2);
您可能感興趣的試卷
你可能感興趣的試題
A.mean(var1,var4)
B.mean(var1-var4)
C.mean(of var1,var4)
D.mean(of var1-var4)
哪個SAS程序讀取ID的值并保存每個Quantity值的記錄,以便為每個記錄創(chuàng)建三個觀察值?()
A.data work.sales;infile unitsold;input ID $;do week=1to 3;input Quantity :comma.;output;end;run;
B.data work.sales;infile unitsold;input ID $@@;do week=1to 3;input Quantity :comma.;output;end;run;
C.data work.sales;infile unitsold;input ID $@;do week=1to 3;input Quantity :comma.;output;end;run;
D.data work.sales;infile unitsold;input ID $@;do week=1to 3;input Quantity :comma.@;output;end;run;
A.@n
B.+n
C./
D.all of the above
A.1959-12-31
B.1960-01-01
C.1960-01-02
D.1960-01-03
下面哪一段代碼可以生成下述結(jié)果?()
A.data _null_;set work.scores;file ’c:\data\teamdat’dlm=’,’;put name highscore team;run;
B.data _null_;set work.scores;file ’c:\data\teamdat’dlm=’’;put name highscore team;run;
C.data _null_;set work.scores;file ’c:\data\teamdat’dsd;put name highscore team;run;
D.data _null_;set work.scores;file ’c:\data\teamdat’;put name highscore team;run;
最新試題
下列哪種選項(xiàng)不是時間序列分析的模式辨識方法?()
下列哪項(xiàng)時對Var1,Var2,Var3,Var4求均值?()
下列哪個不是單位根檢驗(yàn)的可檢驗(yàn)的類型?()
下面哪一段代碼可以生成下述結(jié)果?()
關(guān)于混淆矩陣,下列說法錯誤的是()。
當(dāng)你運(yùn)行一段程序后,日志報(bào)了三條error,請問自動變量_error_的取值?()
下列哪個代碼表示對時間序列進(jìn)行二階差分?()
欲研究高血壓(HBP,1=患病、0=未患病)與年齡(age)、性別(gender)、體質(zhì)指數(shù)(BMI)、日攝入鈉量(NA)的關(guān)系。將年齡分組處理,以及根據(jù)我國體質(zhì)指數(shù)標(biāo)準(zhǔn)劃分體型后,用logistic回歸對高血壓與所有自變量建模,下面代碼哪個是正確的?()
下列哪張圖不是該代碼可以輸出的圖?()proc logistic data=ez.loanplots(only)=(effect (clband x=(DELINQ))oddsratio);model BAD(event="1")=DELINQ;oddsratio DELINQ/diff=all cl=pl;run;
變量Address2包含諸如Piscataway,NJ之類的值。如何將兩個字母的州縮寫分配給名為State的新變量?()