Skip to content
Snippets Groups Projects
Commit 710290fc authored by Ruben Haag's avatar Ruben Haag
Browse files

Removed Questions that were answered

parent e17d9671
No related branches found
No related tags found
No related merge requests found
...@@ -53,11 +53,10 @@ function simulate_rp(paths::Dict, N::Int64, x, y, t0::Float64, specs; served = 1 ...@@ -53,11 +53,10 @@ function simulate_rp(paths::Dict, N::Int64, x, y, t0::Float64, specs; served = 1
# Save the calculated Data # Save the calculated Data
data = DataFrame(data) data = DataFrame(data)
#CSV.write(paths[:data]*"$(x)_$(y).csv", data) #QUESTION what savepath #CSV.write(paths[:data]*"$(x)_$(y).csv", data)
open(paths[:data]*"$index.csv", "w") do io open(paths[:data]*"$index.csv", "w") do io
writedlm(io, Iterators.flatten(([names(data)], eachrow(data))), ',') writedlm(io, Iterators.flatten(([names(data)], eachrow(data))), ',')
end end
#Save the model for possible later reference #Save the model for possible later reference
RP.savemodel(paths[:model]*"$index.model",model;route_matrix=false) #QUESTION What savepath RP.savemodel(paths[:model]*"$index.model",model;route_matrix=false)
# QUESTION How do I use the saving
end end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment