Skip to content

Commit

Permalink
update basic_example removing legend=False
Browse files Browse the repository at this point in the history
  • Loading branch information
AldoGl committed Oct 9, 2024
1 parent 60e3188 commit 8639767
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/basic_example.jl
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ plot(data.real_gdp, title = "gdp", titlefont = 10)
# Or we can plot multiple time series at once using the function `plot_data`

ps = Bit.plot_data(data, quantities = [:real_gdp, :real_household_consumption, :real_government_consumption, :real_capitalformation, :real_exports, :real_imports, :wages, :euribor, :gdp_deflator])
plot(ps..., layout = (3, 3), legend = false)
plot(ps..., layout = (3, 3))

# To run multiple monte-carlo repetitions in parallel we can use

Expand All @@ -66,5 +66,5 @@ Threads.nthreads()
# We can then plot the results of the monte-carlo repetitions using the function `plot_data_vector`

ps = Bit.plot_data_vector(data_vector)
plot(ps..., legend = false)
plot(ps..., layout = (3, 3))

0 comments on commit 8639767

Please sign in to comment.