Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
I have a code that completes without errors in SAS EG 4.3 but encounters an error when run in LSF Flow Manager.
ERROR: The informat Z was not found or could not be loaded.
What could be the problem?
Thanks!
没有信息 Zw.d。Zw.d 只是一种格式。这是因为 wd 和 Zw.d 作为信息是相同的。
Informat 是将文本字符串转换为数字的指令。因此,将“5.32”转换为 5.32 的说明和将“05.32”转换为 5.32 的说明将是相同的,不是吗 - 只是将其读取为数字。因此,没有 Zw.d。
您可能在某处有一个输入语句,内容为,
x=input(y,Z5.);
你只需要做到这一点
x=input(y,5.);
如果你想用 Zw.d 格式化 X,那么在之后添加一个 format 语句。