这是data.txt:
USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
root 1 0.0 0.0 2280 728 ? Ss 20:44 0:00 init [2]
root 2 0.0 0.0 0 0 ? S 20:44 0:00 [kthreadd]
root 202 0.0 0.0 0 0 ? S< 20:44 0:00 [ext4-dio-unwri
root 334 0.0 0.1 2916 1452 ? Ss 20:44 0:00 udevd --daemon
如何将数据读入data.frame?
1.can not to determine separator
最后一个字段有问题,space
不能是分隔符,
init [2] ,udevd --daemon 是一个字段,不能用.分隔space
。
2.没有固定宽度
,每条线都有不同的宽度。
那么,我怎样才能将 data.txt 读入 data.frame?