-
Notifications
You must be signed in to change notification settings - Fork 1
flat
Jaromír Beneš edited this page Mar 20, 2026
·
1 revision
VAR estimation with flat (uninformative) prior that provides minimal prior restrictions on coefficients. Equivalent to a Minnesota prior with very large λ₁ (> 999), effectively making the prior diffuse.
- Implements prior = 41 in BEAR5 terminology
- Uses Minnesota prior structure but with λ₁ > 999 to make priors uninformative
- Provides Bayesian estimation with minimal prior influence
- Useful when prior information is limited or when data should drive results
- Description: Number of burn-in draws for posterior sampling
-
Default:
0 - Details: Number of initial MCMC draws to discard before collecting posterior samples
- Description: Threshold for maximum eigenvalue magnitude to ensure VAR stability
-
Default:
Inf(no stability check) - Details: Maximum allowed eigenvalue magnitude; draws with eigenvalues exceeding this are rejected
- Description: Maximum number of unstable sampling attempts before giving up
-
Default:
1000 - Details: If stability checking is enabled, this limits the number of consecutive unstable draws before termination
- Description: Block exogeneity restriction flag
-
Default:
false - Details: Accessed by implementation but block exogeneity logic not implemented in current Flat algorithm
- Implements its own Gibbs sampling algorithm with diffuse (flat) priors directly
- Does not use the Minnesota prior framework or lambda parameters
- Uses Natural Conjugate (Normal-Inverse-Wishart) priors with diffuse parameterization
- Alternates between sampling VAR coefficients β and error covariance Σ
- Accesses
BlockExogenoussetting but lambda parameters are ignored - Posterior results are dominated by the likelihood (data)
- Limited prior information: Use when you have minimal prior beliefs about coefficients
- Data-driven analysis: When you want results to be primarily determined by the data
- Benchmark comparisons: Compare against informative priors to assess prior sensitivity
- Large sample sizes: Most effective when sample size is sufficient for stable estimation
- Model exploration: Useful for initial model exploration before imposing informative priors
- vs. Ordinary: Provides Bayesian uncertainty quantification vs. classical inference
- vs. Minnesota: Removes informative shrinkage toward random walk
- vs. Normal-Diffuse: Similar philosophy but different technical implementation ???
- May lead to unstable estimates in small samples without prior regularization
- Less efficient than informative priors when prior beliefs are reasonable
- Can produce overfitting in large VAR models without sufficient data