Last active
November 14, 2017 09:35
-
-
Save verajosemanuel/83305ca4bda1f83ba7a362bd4f30f17c to your computer and use it in GitHub Desktop.
#loop to assign in #R
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for (i in 1:4) { | |
assign(paste("df_name",i,sep = ""), read.csv(paste0("df",i,".csv"), sep = ";", stringsAsFactors = FALSE)) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment