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
x**7 发帖数: 341
2
are you checking the right answer sheet?
【在 x******n 的大作中提到】 : 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;