diff --git a/src/DiffEqBayes.jl b/src/DiffEqBayes.jl index e31aedd1..81b0f260 100644 --- a/src/DiffEqBayes.jl +++ b/src/DiffEqBayes.jl @@ -23,11 +23,6 @@ function __init__() include("dynamichmc_inference.jl") export dynamichmc_inference end - - @require StatsPlots="f3b207a7-027a-5e70-b257-86293d7955fd" begin - include("utils.jl") - export plot_chain - end end export turing_inference, abc_inference diff --git a/src/utils.jl b/src/utils.jl deleted file mode 100644 index dd75af4b..00000000 --- a/src/utils.jl +++ /dev/null @@ -1,3 +0,0 @@ -function plot_chain(bayesian_result::T,filename=nothing) where {T<:MCMCChains.Chains} - StatsPlots.plot(bayesian_result) -end