Displaying 1 result from an estimated 1 matches for "and_about_1500_more".
2009 Apr 15
1
Looping through file names and loading...
...statistics class.
He has asked me to do this:
Read in a file, of filenames, line by line:
Student_models.txt : (contains 1500+ filenames)
________________________
Experiment_name_student_name_date_time_Model_number_etc_etc
Another_file_name_with_similar_info_as_above
And_another
And_another_one
And_about_1500_more
..........
..........
________________________
function(filename)# I pass in filename
{
for(i in 1:length(filename))
{
s <- filename[i,1]
print(s) # I check the file name, and it is OK.
load(s) # This returns all sorts of errors, most common is: object
"mod" not found.
...............