Skip to content

Commit

Permalink
no plot and mean
Browse files Browse the repository at this point in the history
  • Loading branch information
thorek1 committed Sep 24, 2023
1 parent 506f915 commit b38eaa0
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 10 deletions.
4 changes: 2 additions & 2 deletions src/MacroModelling.jl
Original file line number Diff line number Diff line change
Expand Up @@ -57,13 +57,13 @@ end


export @model, @parameters, solve!
export plot_irfs, plot_irf, plot_IRF, plot_simulations, plot_solution, plot
export plot_irfs, plot_irf, plot_IRF, plot_simulations, plot_solution#, plot
export plot_conditional_variance_decomposition, plot_forecast_error_variance_decomposition, plot_fevd, plot_model_estimates, plot_shock_decomposition
export get_irfs, get_irf, get_IRF, simulate, get_simulation, irfs, irf, IRF
export get_conditional_forecast, plot_conditional_forecast
export get_solution, get_first_order_solution, get_perturbation_solution, get_second_order_solution, get_third_order_solution
export get_steady_state, get_SS, get_ss, get_non_stochastic_steady_state, get_stochastic_steady_state, get_SSS, steady_state, SS, SSS, ss, sss
export get_moments, get_statistics, get_covariance, get_standard_deviation, get_variance, get_var, get_std, get_cov, var, std, cov, get_mean
export get_moments, get_statistics, get_covariance, get_standard_deviation, get_variance, get_var, get_std, get_cov, var, std, cov, get_mean#, mean
export get_autocorrelation, get_correlation, get_variance_decomposition, get_corr, get_autocorr, get_var_decomp, corr, autocorr
export get_fevd, fevd, get_forecast_error_variance_decomposition, get_conditional_variance_decomposition
export calculate_jacobian, calculate_hessian, calculate_third_order_derivatives
Expand Down
8 changes: 4 additions & 4 deletions src/get_functions.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2370,10 +2370,10 @@ Wrapper for [`get_moments`](@ref) with `mean = true`, and `non_stochastic_steady
get_mean(𝓂::β„³; kwargs...) = get_moments(𝓂; kwargs..., variance = false, non_stochastic_steady_state = false, standard_deviation = false, covariance = false, mean = true)[1]


"""
Wrapper for [`get_moments`](@ref) with `mean = true`, the default algorithm being `:pruned_second_order`, and `non_stochastic_steady_state = false, variance = false, standard_deviation = false, covariance = false`
"""
mean(𝓂::β„³; kwargs...) = get_mean(𝓂; kwargs...)
# """
# Wrapper for [`get_moments`](@ref) with `mean = true`, the default algorithm being `:pruned_second_order`, and `non_stochastic_steady_state = false, variance = false, standard_deviation = false, covariance = false`
# """
# mean(𝓂::β„³; kwargs...) = get_mean(𝓂; kwargs...)



Expand Down
10 changes: 6 additions & 4 deletions src/plotting.jl
Original file line number Diff line number Diff line change
Expand Up @@ -585,10 +585,12 @@ end



"""
See [`plot_irf`](@ref)
"""
plot(𝓂::β„³; kwargs...) = plot_irf(𝓂; kwargs...)
# """
# See [`plot_irf`](@ref)
# """
# plot(𝓂::β„³; kwargs...) = plot_irf(𝓂; kwargs...)

# plot(args...;kwargs...) = StatsPlots.plot(args...;kwargs...) #fallback

"""
See [`plot_irf`](@ref)
Expand Down

0 comments on commit b38eaa0

Please sign in to comment.