rpolicastro, thanks for your help. The map function worked well! Now I have an issue related with plotting the data. I want to generate barplots to visualize the data in the tibbles, respect to NES value. I want to create multiple plots by running:
samps <- as.vector(names(result))
for (i in samps) {
pdf(paste0(i, ".pdf"), width = 1000, height = 800)
plt <- barplot.NES(result[[i]])
dev.off()
}
However, dammaged pdf files are generated.