I am trying to separate data into columns using "\n" in rstudio and then separate that data further into rows using "\t". So far I have been able to separate the data by "\n", but I can't figure out how to further split the data by "\t". I can't find any header names in the data I am using since its a table that I downloaded from the msigdb website. Here's what I have so far:
matrix_sep_by_enter<-read.table("msigdb.v5.2.symbols.txt",sep = "\n")
how do I further separate this using "\t"
Thank you!