library(fitdistrplus)
library(MASS)
library(survival)
library(tidyverse)
library(ggplot2)
library(actuar)
library(e1071)
library(FAdist)
library(gld)
library(MonteCarlo)
library(snow)
archivos <- c("2014_1.csv",
"2014_2.csv",
"2014_3.csv",
"2014_4.csv",
"2015_1.csv",
"2015_2.csv",
"2015_3.csv",
"2015_4.csv",
"2016_1.csv",
"2016_2.csv",
"2016_3.csv",
"2016_4.csv",
"2017_1.csv",
"2017_2.csv",
"2017_3.csv",
"2017_4.csv",
"2018_1.csv",
"2018_2.csv",
"2018_3.csv",
"2018_4.csv",
"2019_1.csv")
lista_df <- lapply(archivos, function (x) read.table(x, sep=";",header=T))
df_unido <- reduce(rbind,lista_df)
I don´t know what happened, but before df_unido works, and now return me the error: Error in x[[1]] : object of type 'closure' is not subsettable