由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - #刚考完SAS BASE,问其中的一个题目#
相关主题
求助: SAS BASE (70题) 第45题Data Cleaning Problem (SAS or Excel)
包子答谢,一个txt file 转换成sas的问题SAS BASE 六一儿童节
sas base 70的两道题Proc SQL 能不能直接读 非 SAS format 的数据,txt , csv 等
用SAS生成CSV 文件Questions about opreate large data set, thank you!
sas base 70 key -errors输出一个sas dataset为csv文件,有没有办法在一个变量的名字前加个#?
questions about SAS import Excel data怎样用R做重复性的工作
SAS proc import excel file 紧急求助How well is SAS/IML studio integrating with R.?
包子请教:SASoutput encoding的问题Question: Importing csv file into SAS 9----太多变量
相关话题的讨论汇总
话题: excel话题: file话题: opened话题: text话题: named
进入Statistics版参与讨论
1 (共1页)
t*****2
发帖数: 94
1
ods csvall file='c:\test.cvs';
proc print data=work.one;
var Name Score Grade;
by IdNumber;
run;
ods csvall close;
what is produced as output?
A. A file named test.cvs that can only be opened in Excel.
B. A text file named test.cvs that can be opened in Excel or in any
text editor.
C. A text file named test.cvs that can only be opened in a text editor.
D. A file named test.cvs that can only be opened by SAS.
在网上搜了半天还是没有得到确定的答案。请各位高手赐教!
n********A
发帖数: 321
2
我猜是B,但不确定。请高人解答!

【在 t*****2 的大作中提到】
: ods csvall file='c:\test.cvs';
: proc print data=work.one;
: var Name Score Grade;
: by IdNumber;
: run;
: ods csvall close;
: what is produced as output?
: A. A file named test.cvs that can only be opened in Excel.
: B. A text file named test.cvs that can be opened in Excel or in any
: text editor.

s********7
发帖数: 100
3
You are right
t**c
发帖数: 539
4
B
t*****2
发帖数: 94
5
有人能明确地分析一下吗?
L****n
发帖数: 3545
6
it can generate .csv file which you should know.
a simple way is to test using your own csv file, opening with notepad/excel,
etc. You'll see. That's the nature of .csv file.

【在 t*****2 的大作中提到】
: 有人能明确地分析一下吗?
o*******w
发帖数: 2310
7
标准答案是C.
注意题中是TEST.CVS 不是CSV.
70题里有.

【在 t*****2 的大作中提到】
: ods csvall file='c:\test.cvs';
: proc print data=work.one;
: var Name Score Grade;
: by IdNumber;
: run;
: ods csvall close;
: what is produced as output?
: A. A file named test.cvs that can only be opened in Excel.
: B. A text file named test.cvs that can be opened in Excel or in any
: text editor.

t*****2
发帖数: 94
8
但是CVS是什么文件哦,好像没有这个extension.查了半天都没弄明白。70题 的答案不
是标准的吧,只是人家给的吧?

【在 o*******w 的大作中提到】
: 标准答案是C.
: 注意题中是TEST.CVS 不是CSV.
: 70题里有.

o*******w
发帖数: 2310
9
I tried.
if you use test.cvs then the excel can open it with messy format, all the
observation in the same excel cell.
if you use test.csv then it is a perfect excel format.
both can be open in text file with good format.
therefore, I think C is the answer.

【在 t*****2 的大作中提到】
: 但是CVS是什么文件哦,好像没有这个extension.查了半天都没弄明白。70题 的答案不
: 是标准的吧,只是人家给的吧?

t****y
发帖数: 576
10
I tried also.
.cvs can be both opened by excel or notepad. The display are the same. But
it's no the normal readable data format.

【在 o*******w 的大作中提到】
: I tried.
: if you use test.cvs then the excel can open it with messy format, all the
: observation in the same excel cell.
: if you use test.csv then it is a perfect excel format.
: both can be open in text file with good format.
: therefore, I think C is the answer.

相关主题
questions about SAS import Excel dataData Cleaning Problem (SAS or Excel)
SAS proc import excel file 紧急求助SAS BASE 六一儿童节
包子请教:SASoutput encoding的问题Proc SQL 能不能直接读 非 SAS format 的数据,txt , csv 等
进入Statistics版参与讨论
s********6
发帖数: 180
11
请问题目是不是都是50,70,123上的?谢谢
t*****2
发帖数: 94
12
ods csvall file='c:\test.cvs';
proc print data=work.one;
var Name Score Grade;
by IdNumber;
run;
ods csvall close;
what is produced as output?
A. A file named test.cvs that can only be opened in Excel.
B. A text file named test.cvs that can be opened in Excel or in any
text editor.
C. A text file named test.cvs that can only be opened in a text editor.
D. A file named test.cvs that can only be opened by SAS.
在网上搜了半天还是没有得到确定的答案。请各位高手赐教!
n********A
发帖数: 321
13
我猜是B,但不确定。请高人解答!

【在 t*****2 的大作中提到】
: ods csvall file='c:\test.cvs';
: proc print data=work.one;
: var Name Score Grade;
: by IdNumber;
: run;
: ods csvall close;
: what is produced as output?
: A. A file named test.cvs that can only be opened in Excel.
: B. A text file named test.cvs that can be opened in Excel or in any
: text editor.

s********7
发帖数: 100
14
You are right
t**c
发帖数: 539
15
B
t*****2
发帖数: 94
16
有人能明确地分析一下吗?
L****n
发帖数: 3545
17
it can generate .csv file which you should know.
a simple way is to test using your own csv file, opening with notepad/excel,
etc. You'll see. That's the nature of .csv file.

【在 t*****2 的大作中提到】
: 有人能明确地分析一下吗?
o*******w
发帖数: 2310
18
标准答案是C.
注意题中是TEST.CVS 不是CSV.
70题里有.

【在 t*****2 的大作中提到】
: ods csvall file='c:\test.cvs';
: proc print data=work.one;
: var Name Score Grade;
: by IdNumber;
: run;
: ods csvall close;
: what is produced as output?
: A. A file named test.cvs that can only be opened in Excel.
: B. A text file named test.cvs that can be opened in Excel or in any
: text editor.

t*****2
发帖数: 94
19
但是CVS是什么文件哦,好像没有这个extension.查了半天都没弄明白。70题 的答案不
是标准的吧,只是人家给的吧?

【在 o*******w 的大作中提到】
: 标准答案是C.
: 注意题中是TEST.CVS 不是CSV.
: 70题里有.

o*******w
发帖数: 2310
20
I tried.
if you use test.cvs then the excel can open it with messy format, all the
observation in the same excel cell.
if you use test.csv then it is a perfect excel format.
both can be open in text file with good format.
therefore, I think C is the answer.

【在 t*****2 的大作中提到】
: 但是CVS是什么文件哦,好像没有这个extension.查了半天都没弄明白。70题 的答案不
: 是标准的吧,只是人家给的吧?

相关主题
Questions about opreate large data set, thank you!How well is SAS/IML studio integrating with R.?
输出一个sas dataset为csv文件,有没有办法在一个变量的名字前加个#?Question: Importing csv file into SAS 9----太多变量
怎样用R做重复性的工作SAS读数据乱码的问题
进入Statistics版参与讨论
t****y
发帖数: 576
21
I tried also.
.cvs can be both opened by excel or notepad. The display are the same. But
it's no the normal readable data format.

【在 o*******w 的大作中提到】
: I tried.
: if you use test.cvs then the excel can open it with messy format, all the
: observation in the same excel cell.
: if you use test.csv then it is a perfect excel format.
: both can be open in text file with good format.
: therefore, I think C is the answer.

s********6
发帖数: 180
22
请问题目是不是都是50,70,123上的?谢谢
l*******0
发帖数: 12
23
If you specify proper delimiters when you open the file with EXCEL, the file
will be clean and neat.

【在 o*******w 的大作中提到】
: I tried.
: if you use test.cvs then the excel can open it with messy format, all the
: observation in the same excel cell.
: if you use test.csv then it is a perfect excel format.
: both can be open in text file with good format.
: therefore, I think C is the answer.

t******1
发帖数: 1263
24
到底是啥?我也觉得是b

【在 t*****2 的大作中提到】
: ods csvall file='c:\test.cvs';
: proc print data=work.one;
: var Name Score Grade;
: by IdNumber;
: run;
: ods csvall close;
: what is produced as output?
: A. A file named test.cvs that can only be opened in Excel.
: B. A text file named test.cvs that can be opened in Excel or in any
: text editor.

H**********1
发帖数: 3056
25
hehe, if you change its name from cvs to csv, even easier...

file

【在 l*******0 的大作中提到】
: If you specify proper delimiters when you open the file with EXCEL, the file
: will be clean and neat.

a********0
发帖数: 81
26
这道不是练习题上的一道么~ 应该选C 因为她的扩展名写错了 应该是csv而不是cvs
l******h
发帖数: 855
27
这道题目的考点太怪了吧那有人考csv和cvs的差别,切,我还wal-green呢
w********a
发帖数: 2381
28
不得不说,我笑了。。。

【在 l******h 的大作中提到】
: 这道题目的考点太怪了吧那有人考csv和cvs的差别,切,我还wal-green呢
y******8
发帖数: 171
29
确实好笑

【在 w********a 的大作中提到】
: 不得不说,我笑了。。。
1 (共1页)
进入Statistics版参与讨论
相关主题
Question: Importing csv file into SAS 9----太多变量sas base 70 key -errors
SAS读数据乱码的问题questions about SAS import Excel data
SAS help: programming 中遇到的一些问题SAS proc import excel file 紧急求助
请教一个数据输入的问题包子请教:SASoutput encoding的问题
求助: SAS BASE (70题) 第45题Data Cleaning Problem (SAS or Excel)
包子答谢,一个txt file 转换成sas的问题SAS BASE 六一儿童节
sas base 70的两道题Proc SQL 能不能直接读 非 SAS format 的数据,txt , csv 等
用SAS生成CSV 文件Questions about opreate large data set, thank you!
相关话题的讨论汇总
话题: excel话题: file话题: opened话题: text话题: named