R: How to index R objects within a for loop (Seurat)
0
I'm trying to use a for loop to simplify the following code: a1 <- CreateSeuratObject (raw.data = a1.data) a2 <- CreateSeuratObject (raw.data = a2.data) a3 <- ... I've tried the following: samples <- c("a1", "a2", "a3") samples.data <- c("a1.data", "a2.data", "a3.data") for (i in samples) { for (j in samples.data) { i <- CreateSeuratObject(raw.data = j) } } But it returns the following error: Error in base::colSums(x, na.rm = na.rm, dims = dims, ...) : 'x' must be an array of at least two dimensions The CreateSeuratObject function essentially tries to read the samples.data vector instead of indexing the corresponding item in the vector. How can I fix this?