如何读取 R 中缺少末尾元素的矩阵?
我想向 R 传递一个带有矩阵的 txt 文件,其中行中省略尾随零(第一个尾随零除外,如果有的话)。这些缺失值被视为零。
例如:
8 7 0
5 4 3 2 1
4 8 9
应理解为:
8 7 0 0 0
5 4 3 2 1
4 8 9 0 0
在读取矩阵之前,最大行大小(即矩阵列数)未知。
I would like to pass to R a txt file with a matrix, where tailing zeros are omitted from rows (except the first tailing zero, if any). Those missing values considered as zeros.
for example:
8 7 0
5 4 3 2 1
4 8 9
should be read as:
8 7 0 0 0
5 4 3 2 1
4 8 9 0 0
The max row size (i.e. the number of matrix columns) is unknown prior to reading the matrix.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)