[ad_1]
I’m trying to add a column to my data 19 data frames to give IDs to each, so I can combine all 19 into one and have IDs listed. I want to make raster plots with all of them together, so I need to combine the data.
This is how I accomplished it individually, but making 19 values seems tedious.
XCB1 <- read.delim("logXCB1.txt", skip= 41,header = TRUE, sep= "|", stringsAsFactors = TRUE)
ID<- c("XCB1")
XCB1 <- data.frame(XCB1, ID)
[ad_2]