Newer
Older
using Plots
using CSV
paths = Dict(:data => path*"/data/",
:model => path*"/model/")
csv_filenames = readdir(paths[:data], join=true)
df = DataFrame(CSV.File(csv_filenames[1]))
for name in csv_filenames
#TODO put all the generated CSV Files together into one big file which is then saved to the correct location
println("Saving Combined Dataframe to $archive_path")
println("Moving $(length(model_filenames)) Models to $archive_path")
try
mkdir("$archive_path/models/")
catch e
println(e)
end
for name in model_filenames
mv(paths[:model]*name, "$archive_path/models/"*name)
#TODO put all the generated models in an archive file and save it to the archiving location