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?
|