在我之前的帖子中,我提出了一个关于 R 中西里尔符号的问题。今天我遇到了另一个问题。例如,我们想查看我们正在运行的进程:
test <- system2(command="tasklist",
stdout=TRUE,
stderr=TRUE,
wait = TRUE)
而我们所看到的...
[1] ""
[2] "€¬п ®Ўа § PID €¬п бҐббЁЁ ь бҐ б Џ ¬пвм"
[3] "========================= ======== ================ =========== ============"
[4] "System Idle Process 0 Services 0 24 ЉЃ"
[5] "System 4 Services 0 580 ЉЃ"
***
"Iconv"
,这在上一个任务中有所帮助 - 在这里无济于事。
sys.setlocale
- 也。
什么可以解决这个问题?