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.
何らかの理由で dput() と同じ方法で、つまり "c("A","B","C")" のように一連の文字を返す関数があります。文字ベクトルに戻す方法を教えてください。すなわち [1] "A" "B" "C"
次のおもちゃの例を参照してください
x = c("A", "B", "C") dpx = dput(x)
dpx を x に戻すにはどうすればよいですか?