如何在 R 中使用正则表达式转义或清理斜杠?
我正在尝试读取 R 中的(制表符分隔的)csv 文件。当我想读取包含 /
的列时,出现错误。
doSomething <- function(dataset) {
a <- dataset$data_transfer.Jingle/TCP.total_size_kb
...
}
该错误表明无法找到该对象。我尝试用反斜杠转义,但没有成功。
如果有人有任何想法,我将非常感激!
I'm trying to read in a (tab separted) csv file in R. When I want to read the column including a /
, I get an error.
doSomething <- function(dataset) {
a <- dataset$data_transfer.Jingle/TCP.total_size_kb
...
}
The error says, that this object cannot be found. I've tried escaping with backslash but it did not work.
If anybody has got some idea, I'd really appreciate it!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
给出
并观察它所给出的名字。也许会是这样的:
Give
and watch the name it has been given. Perhaps it would be something like:
两种方式:
或者
Two ways:
or