gpt4 book ai didi

R: read.table 带引号

转载 作者:行者123 更新时间:2023-12-05 09:21:46 26 4
gpt4 key购买 nike

我有以下结构,保存在 txt.file 中:

" punc "
x nounsg x
" punc "
" punc "
artikel nounsg "
" punc "

我想将这个 txt.file 读入 R,所以我用

试过了
read.table("pos.txt",header=F, sep=" ")

但是在 R 中这个产量:

"tpunc\t"
x\tnounsg\tx
"\tpunc\t
"\tpunc\t
artikel\tnounsg\tartikel
"\tpunc\t"

我想要一个 3 列 6 行的矩阵。这是怎么做到的?

当我添加 fill = TRUE 并使用 sep = "\t", 时,我得到:

 \tpunc\t             x                  \tpunc\t
\tpunc\t artikel \tpunc\t

所以有一些信息丢失了

> readLines("pos.txt")[1:2]
[1] "\"\tpunc\t\"" "artikel\tnounsg\tartikel"

最佳答案

看看这是不是你想要的:

 data <- read.table(file = "pos.txt", quote = "")

默认情况下,read.table 的引号设置为 "'。从你的问题来看,我认为你正在尝试对待它们作为普通数据元素。因此,将引号设置为空字符。

关于R: read.table 带引号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30148254/

26 4 0