由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - 求助 SAS 一个error 老改不对
相关主题
SAS proc format的问题SAS macro Debug
SAS format file--- when I load the file 急~~~谢谢~~~two sas adv questions
后天考ADV,请教一题where is error in SAS
SAS adv 130题两问,快考了,urgentNOTE: Format MMDYY was not found or could not be loaded.
再问一道SAS adv题库的题SAS9.3 运行fmtsearch为什么会出错?
请教两个关于SAS的问题SAS MACRO和Procedure
Proc SQL 能不能直接读 非 SAS format 的数据,txt , csv 等Re: SAS help : How to use Macro to select procedurs
请教SAS中libname 的一个问题SAS ODBC连接MySQL安装过程小结
相关话题的讨论汇总
话题: note话题: format话题: itemfmt话题: time话题: data
进入Statistics版参与讨论
1 (共1页)
k**********a
发帖数: 255
1
3222 libname sw 'C:\Users\given\Desktop\sw';
NOTE: Libref SW was successfully assigned as follows:
Engine: V9
Physical Name: C:\Users\given\Desktop\sw
3223 proc format lib=sw;
3224 value $itemfmt
3225 'C'='Cassette'
3226 'R'='Radio'
3227 'T'='Television';
NOTE: Format $ITEMFMT is already on the library.
NOTE: Format $ITEMFMT has been written to SW.FORMATS.
3228 run;
NOTE: PROCEDURE FORMAT used (Total process time):
real time 0.00 seconds
cpu time 0.00 seconds
3229 data sasuser.orders;
3230 infile aug99dat;
3231 input ID 3. @5 Date date7.
3232 Item $13 Quantity 15-17
3233 Price 19-24 TotalCost 26-32;
3234 format date date9.
3235 item $itemfmt.
---------
48
ERROR 48-59: The format $ITEMFMT was not found or could not be loaded.
3236 totalcost dollar9.2;
3237 run;
NOTE: The SAS System stopped processing this step because of errors.
WARNING: The data set SASUSER.ORDERS may be incomplete. When this step was
stopped there were 0
observations and 6 variables.
WARNING: Data set SASUSER.ORDERS was not replaced because this step was
stopped.
NOTE: DATA statement used (Total process time):
real time 0.00 seconds
cpu time 0.00 seconds
3238 proc print data=sasuser.orders;
3239 run;
NOTE: No observations in data set SASUSER.ORDERS.
NOTE: PROCEDURE PRINT used (Total process time):
real time 0.00 seconds
cpu time 0.00 seconds
k**********a
发帖数: 255
2
ERROR 48-59: The format $ITEMFMT was not found or could not be loaded
明明定义了啊
y********0
发帖数: 638
3
这个是在default的sas 库里没找到你的format.
加个搜索路径选项试试.
OPTIONS FMTSEARCH= (sw sasuser);

【在 k**********a 的大作中提到】
: ERROR 48-59: The format $ITEMFMT was not found or could not be loaded
: 明明定义了啊

k**********a
发帖数: 255
4
thanks works as you suggested

【在 y********0 的大作中提到】
: 这个是在default的sas 库里没找到你的format.
: 加个搜索路径选项试试.
: OPTIONS FMTSEARCH= (sw sasuser);

1 (共1页)
进入Statistics版参与讨论
相关主题
SAS ODBC连接MySQL安装过程小结再问一道SAS adv题库的题
一道SAS考试的练习题请教两个关于SAS的问题
SAS question:Please give me your suggestions!Proc SQL 能不能直接读 非 SAS format 的数据,txt , csv 等
How to import/Export XML file by SAS?请教SAS中libname 的一个问题
SAS proc format的问题SAS macro Debug
SAS format file--- when I load the file 急~~~谢谢~~~two sas adv questions
后天考ADV,请教一题where is error in SAS
SAS adv 130题两问,快考了,urgentNOTE: Format MMDYY was not found or could not be loaded.
相关话题的讨论汇总
话题: note话题: format话题: itemfmt话题: time话题: data