@@ -23,22 +23,22 @@ function quickplot(node::NetworkNode, climate::Climate)
2323end
2424
2525
26- function quickplot (obs, node:: NetworkNode , climate:: Climate , label= " " , log= true ; burn_in= 1 , limit= nothing , metric= Streamfall. mKGE)
26+ function quickplot (obs, node:: NetworkNode , climate:: Climate , label= " " , log= false ; burn_in= 1 , limit= nothing , metric= Streamfall. mKGE)
2727 return quickplot (obs, node. outflow, climate, label, log; burn_in= burn_in, limit= limit, metric= metric)
2828end
2929
30- function quickplot (obs:: DataFrame , sim:: Vector , climate:: Climate , label= " " , log= true ; burn_in= 1 , limit= nothing , metric= Streamfall. mKGE)
30+ function quickplot (obs:: DataFrame , sim:: Vector , climate:: Climate , label= " " , log= false ; burn_in= 1 , limit= nothing , metric= Streamfall. mKGE)
3131 return quickplot (Matrix (obs[:, Not (" Date" )])[:, 1 ], sim, climate, label, log; burn_in, limit, metric)
3232end
33- function quickplot (obs:: Vector , sim:: Vector , climate:: Climate , label= " " , log= true ; burn_in= 1 , limit= nothing , metric= Streamfall. mKGE)
33+ function quickplot (obs:: Vector , sim:: Vector , climate:: Climate , label= " " , log= false ; burn_in= 1 , limit= nothing , metric= Streamfall. mKGE)
3434 date = timesteps (climate)
3535 last_e = ! isnothing (limit) ? limit : lastindex (obs)
3636 show_range = burn_in: last_e
3737 return quickplot (obs[show_range], sim[show_range], date[show_range], label, log; metric= metric)
3838end
3939
4040
41- function quickplot (obs:: Vector , sim:: Vector , xticklabels:: Vector , label= " Modeled" , log= true ; metric= Streamfall. mKGE)
41+ function quickplot (obs:: Vector , sim:: Vector , xticklabels:: Vector , label= " Modeled" , log= false ; metric= Streamfall. mKGE)
4242 @assert length (xticklabels) == length (obs) || " x-axis tick label length and observed lengths do not match!"
4343 @assert length (xticklabels) == length (sim) || " x-axis tick label length and simulated lengths do not match!"
4444
0 commit comments