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.
この文字列を正しく変換するために必要な SAS 形式を知っている人はいますか?
data _null_; x="0.14553821459"; y=input(x,best32.); put y=; run;
これを試して
data _null_; x="0.14553821459"; y=input(x,13.11); put y= 13.11; run;
私は得た
y=0.14553821459