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.
"character"からに変換するにはどうすればよい"raw"ですか?
"character"
"raw"
class ( plot_binary ) # [1] "raw" plot_binary[3] # [1] 4e class ( plot_binary[3] ) # [1] "raw"
"4e"文字から raw に変換したい4e。
"4e"
4e
どうすればいいですか?
as.raw明らかに機能しない
as.raw
as.raw("4e") # [1] 04
解決策を見つけました:
as.raw ( as.hexmode ( "4e" ) ) #[1] 4e
見てみてください:rawToCharとcharToRaw
rawToChar
charToRaw