delimited
How can I get 2nd and third column in tab delim file in bash?
cut(1) was made expressly for this purpose: cut -f 2-3 input.txt > output.txt
Reading text file with multiple space as delimiter in R
You need to change your delimiter. ” ” refers to one whitespace character. “” refers to any length whitespace as being the delimiter data <- read.table(file, sep = “” , header = F , nrows = 100, na.strings =””, stringsAsFactors= F) From the manual: If sep = “” (the default for read.table) the separator is … Read more