Open ablaette opened 3 years ago
The # sign is interpreted as a comment and causes an error here:
read.table(text = x, blank.lines.skip = TRUE, header = FALSE, sep = "\t", quote = "")
The obvious solution is to add comment.char = ""
comment.char = ""
Has been implemented where we use read.table() for in-memory processing. Should also be introduced for data.table::fread() for reading conll from temporary output?!
read.table()
data.table::fread()
The # sign is interpreted as a comment and causes an error here:
The obvious solution is to add
comment.char = ""