[问题] csv储存格存成记事本txt档

楼主: nina8598 (Nina)   2018-02-28 13:30:51
[问题类型]:
程式咨询(我想用R 做某件事情,但是我不知道要怎么用R 写出来)
[软件熟悉度]:
新手(没写过程式,R 是我的第一次)
[问题叙述]:
有个csv档(约三万笔资料)
no id time message
1 12345 2016-07-07T02:07:15+0000
Sounds great!
2 67890 2016-07-07T02:12:14+0000
Good good eat!
3 66666 2016-07-07T02:28:44+0000
I like it.
. . . .
. . . .
30000 34567 2017-11-01T09:47:53+0000 The end~
我想做的是,把message那栏的每个储存格都存成一个txt档,
例如
Sounds great! >> 1.txt
Good good eat! >> 2.txt
I like it. >> 3.txt
.
.
The end~ >> 30000.txt
请问应该怎么做?
感谢各位大神了~
作者: sw52099 (sw52099)   2018-02-28 13:41:00
for(i in 1:length(data$message)){path = paste0('~/your path/', i, '.txt')write.table(data$message[i], path)}
作者: celestialgod (天)   2018-02-28 13:59:00
楼上的write.table改成write可能比较合适
楼主: nina8598 (Nina)   2018-02-28 14:54:00
谢谢各位~~问题解决了!我最后是用write.table这个函数,因为我用write的话输出的记事本内容是"1" "2" "3"...,不是我要的message内容,还是谢谢大家!
作者: clansoda (小笨)   2018-02-28 15:02:00
我比较好奇创造出三万个TXT会怎么样
作者: celestialgod (天)   2018-02-28 15:27:00
那是因为write的输出跟输入跟write.table相反= ="我记错了@@喔喔,因为data$message是factor阿...我会推荐write原因是因为write.table会输出rownames跟colnames,write就可以直接避免掉了
作者: sw52099 (sw52099)   2018-03-01 13:54:00
原来如此,谢谢c大指教!

Links booklink

Contact Us: admin [ a t ] ucptt.com