由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - Is the following SAS code wrong?
相关主题
如何用代码将多个sas数据集输出成csv文件SAS MACRO question (包子求教重金酬谢)
SAS: automatically generate xls file with updated dateSAS date format 的问题
可以用sas直接改excel的worksheet的名字么?SAS proc import excel file 紧急求助
怎样批量将很多的sas文件转换成stata文件?请教:多个csv文件(>100)怎么用"proc sql" merge成一个文件?
proc export to Excel: can not read it!如何在matlab中直接call R呢?
[求助]用SAS建立多个工作簿的Excel文件How to work on this dataset?
questions about SAS import Excel data如何从sas output里读入数据。
@@请教用SAS import CSV 文件时遇到的状况SAS proc printto 问题。
相关话题的讨论汇总
话题: sas话题: documents话题: users话题: my
进入Statistics版参与讨论
1 (共1页)
c**********e
发帖数: 2007
1
Could you anybody test running the following SAS code? Of course, the output
path should be changed to yours. Thanks a ton!
data one;
input x y;
datalines;
-1 -1
-1 0
0 -1
0 1
1 0
1 1
;
run;
proc export DBMS=CSV
data=one
outfile="C:/Users/CareerChange/My Documents/one.csv"
replace;
putnames=yes;
run;
quit;
t*****w
发帖数: 254
2
outfile="C:/Users/CareerChange/My Documents/one.csv"
should be: outfile="C:\Users\CareerChange\My Documents\one.csv"
c**********e
发帖数: 2007
3
Does it work after the change? Thanks.

【在 t*****w 的大作中提到】
: outfile="C:/Users/CareerChange/My Documents/one.csv"
: should be: outfile="C:\Users\CareerChange\My Documents\one.csv"

D*********Y
发帖数: 3382
4
你不会自己run一下?看着都冒火咋回事。

【在 c**********e 的大作中提到】
: Does it work after the change? Thanks.
c**********e
发帖数: 2007
5
If I had SAS, why would I bother you?

【在 D*********Y 的大作中提到】
: 你不会自己run一下?看着都冒火咋回事。
D*********Y
发帖数: 3382
6
不行,态度不好。

【在 c**********e 的大作中提到】
: If I had SAS, why would I bother you?
1 (共1页)
进入Statistics版参与讨论
相关主题
SAS proc printto 问题。proc export to Excel: can not read it!
哭死,用SAS作logistic regression的coefficients为何全部和proc reg得到的相反??[求助]用SAS建立多个工作簿的Excel文件
[合集] 今年Master工作是不是很难找?questions about SAS import Excel data
[合集] Anyway to do the do loop?@@请教用SAS import CSV 文件时遇到的状况
如何用代码将多个sas数据集输出成csv文件SAS MACRO question (包子求教重金酬谢)
SAS: automatically generate xls file with updated dateSAS date format 的问题
可以用sas直接改excel的worksheet的名字么?SAS proc import excel file 紧急求助
怎样批量将很多的sas文件转换成stata文件?请教:多个csv文件(>100)怎么用"proc sql" merge成一个文件?
相关话题的讨论汇总
话题: sas话题: documents话题: users话题: my