由买买提看人间百态

topics

全部话题 - 话题: localfee
(共0页)
a****m
发帖数: 693
1
来自主题: Statistics版 - sas base question
The data set WORK.REALESTATE has the variable LocalFee with a
format of 9. and a variable CountryFee with a format of 7.;
The following SAS program is submitted:
data WORK.FEE_STRUCTURE;
format LocalFee CountryFee percent7.2;
set WORK.REALESTAT;
LocalFee=LocalFee/100;
CountryFee=CountryFee/100;
run;
What are the formats of the variables LOCALFEE and COUNTRYFEE in the
output dataset?
A.
LocalFee has format of 9. and CountryFee has a format of 7.
B.
LocalFee ha... 阅读全帖
j*******9
发帖数: 27
2
来自主题: Statistics版 - SAS Base 70题 第20题求教
20::The data set WORK.REALESTATE has the variable LocalFee with a
format of 9. and a variable CountryFee with a format of 7.;
The following SAS program is submitted:
data WORK.FEE_STRUCTURE;
format LocalFee CountryFee percent7.2;
set WORK.REALESTAT;
LocalFee=LocalFee/100;
CountryFee=CountryFee/100;
run;
What are the formats of the variables LOCALFEE and COUNTRYFEE in the output
dataset?
A.
LocalFee has format of 9. and CountryFee has a format of 7.
B.
LocalFe... 阅读全帖
p****8
发帖数: 50
3
来自主题: Statistics版 - sas base 70 第 20题
sas base 70题第20,答案给D,可我认为应该是C。
请大家帮助斟酌一下。
Item 20 of 70 Mark item for review
The data set WORK.REALESTATE has the variable LocalFee with a
format of 9. and a variable CountryFee with a format of 7.;
The following SAS program is submitted:
data WORK.FEE_STRUCTURE;
format LocalFee CountryFee percent7.2;
set WORK.REALESTAT;
LocalFee=LocalFee/100;
CountryFee=CountryFee/100;
run;
What are the formats of the variables LOCALFEE and COUNTRYFEE in the output
dataset?
A.
L... 阅读全帖
x******n
发帖数: 92
4
来自主题: Statistics版 - SAS Base question
I have a question about SAS Base
The data set WORK.REALESTATE has the variable LocalFee with a
format of 9. and a variable CountryFee with a format of 7.;
The following SAS program is submitted:
data WORK.FEE_STRUCTURE;
format LocalFee CountryFee percent7.2;
set WORK.REALESTAT;
LocalFee=LocalFee/100;
CountryFee=CountryFee/100;
run;
What are the formats of the variables LOCALFEE and COUNTRYFEE in the output
dataset?
A.LocalFee has format of 9. and CountryFee has a format o
b******e
发帖数: 202
5
来自主题: Statistics版 - SAS Base&Adv真题答案&打折code总结
Thank you so much!
I have different answers for several questions. Let me know if I am wrong. I
will take the test soon.
Item 20 of 70 Mark item for review
The data set WORK.REALESTATE has the variable LocalFee with a
format of 9. and a variable CountryFee with a format of 7.;
The following SAS program is submitted:
data WORK.FEE_STRUCTURE;
format LocalFee CountryFee percent7.2;
set WORK.REALESTAT;
LocalFee=LocalFee/100;
CountryFee=CountryFee/100;
run;
What are the forma
(共0页)