Combining the first 25 elements from a data frame's column with an empty vector using the while loop

前端 未结 0 1099
执笔经年
执笔经年 2021-01-16 03:00

I made the following code:

NovelID <- NULL

x <- 1

while(x < 25) {
  if(length(NovelID) < 25) {
    NovelID <- c(NovelID, SalesList$BookID[Sal         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题