Subset multiple rows with condition

后端 未结 3 1230
星月不相逢
星月不相逢 2021-01-27 11:47

I have a .txt file read into a table called power with over 2 million observations of 9 variables. I am trying to subset power

3条回答
  •  刺人心
    刺人心 (楼主)
    2021-01-27 12:24

    Your approach is correct, try reading in the text file with

    power <- read.table("textfile.txt", stringsAsFactors = FALSE)
    

提交回复
热议问题