Skip to content

Commit 10e9209

Browse files
Default log to false instead of true
1 parent d699d9d commit 10e9209

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/plotting.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,22 +23,22 @@ function quickplot(node::NetworkNode, climate::Climate)
2323
end
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)
2828
end
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)
3232
end
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)
3838
end
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

Comments
 (0)