g***n 发帖数: 16 | 1 已有数据为char的,怎样用IML读?
比如
data mydata;
input x $;
cards;
a
b
;
proc iml;
use mydata;
read all into mymatrix;
print mymatrix;
quit;
显示没有数据。请高人指教,多谢。 | s*****h 发帖数: 232 | 2 matrix should only contain numerical values, right???
I don't understand why you want to put characters into matrix. | g***n 发帖数: 16 | 3 matrix如果做计算的话,当然只能有数值。
可以在proc iml下创立含文字的matrix,这样的matrix类似表格,我只是不知道怎样读
取已有的含文字的数据。 | h**h 发帖数: 488 | 4 Can proc iml handle character? What is your purpose to use IML for this kind
of dataset if they contain characters?
【在 g***n 的大作中提到】 : matrix如果做计算的话,当然只能有数值。 : 可以在proc iml下创立含文字的matrix,这样的matrix类似表格,我只是不知道怎样读 : 取已有的含文字的数据。
|
|