I'm just started using rio to import as have a .tsv file to work with. I'm having the error with multiple files that no such file exists however my working directory is set correctly and I have affirmed this using getwd(). I've done a search online and restarted etc but cannot see what the problem could be.
Working off R version 4.0.3 in RStudio. Is there something stupid I'm missing here?
library(rio)
library(feather)
install_formats()
transcodeData <- import("Data\transcoding_mesurement.tsv")
backward slash
(\)
is a special character in R. either escape \ by using two in a row or use forward slashes to delimit folders.