[Solved] How to analyze the data whose different rows have different number of elements using R?


using the readLines and strsplit to solve this problem.

text <- readLines("./xx.txt",encoding='UTF-8', n = -1L)

txt = unlist(strsplit(text, sep = " "))

solved How to analyze the data whose different rows have different number of elements using R?