search for: foo10

Displaying 1 result from an estimated 1 matches for "foo10".

Did you mean: foo1
2007 Jul 30
1
filenames
Dear all, I want to create filename from a loop, say, i=(1:10), and the final names will be file1.csv, file2.csv, file3.csv in Python, it seems easer as - "file"+str(i) +'.csv , but how can i do in R > list = as.character(1:10) > list [1] "1" "2" "3" "4" "5" "6" "7" "8" "9"