I am writing a column-combined data (say three 500*100 matrices), but write_csv repeats the first one matrix three times in the output.csv.
reprex(
library(tidyverse);
set.seed(100)
temp1 <- data.frame(matrix(rnorm(8760*100),nrow = 8760, ncol = 100));
temp2 <- data.frame(matrix(rnorm(8760*100,200),nrow = 8760, ncol = 100));
temp3 <- data.frame(matrix(rnorm(8760*100,300),nrow = 8760, ncol = 100));
temp4 <- cbind(temp1,temp2,temp3);
write_csv(temp4, './test.csv'))