[Solved] Turn extraction list to csv file


If I understand what it is you’re asking, I think you could resolve your situation by using unlist().

d <- c(1:10)      # creates a sample data frame to use

d <- as.list(d)   # converts the data frame into a list

d <- unlist(d)    # converts the list into a vector

0

solved Turn extraction list to csv file