开发者

How escape or sanatize slash using regex in R?

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.to开发者_JAVA百科tal_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!


Give

head(dataset)

and watch the name it has been given. Perhaps it would be something like:

dataset$data_transfer.Jingle.TCP.total_size_kb


Two ways:

dataset[["data_transfer.Jingle/TCP.total_size_kb"]]

or

dataset$`data_transfer.Jingle/TCP.total_size_kb`
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜