I am trying to read in a file (csv) in a file (tab separted) in R. When I want to read a column, including /, I get an error message.
doSomething <- function(dataset) {
a <- dataset$data_transfer.Jingle/TCP.total_size_kb
...
}
The error says that this object could not be found. I tried to escape with a backslash, but that didn't work.
If anyone has any idea, I would really appreciate it!
Gnark source
share