Skip to content

Commit

Permalink
Fix argument position
Browse files Browse the repository at this point in the history
  • Loading branch information
Nandini-Jaiswal committed Dec 28, 2024
1 parent 312a3a1 commit 80f0622
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/bayesian/logistic_regression.jl
Original file line number Diff line number Diff line change
Expand Up @@ -889,8 +889,8 @@ fit(
data::DataFrame,
modelClass::LogisticRegression,
Link::CRRaoLink,
algorithm::BayesianAlgorithm = MCMC(),
prior::Prior_HorseShoe,
algorithm::BayesianAlgorithm = MCMC(),
level::Float64 = 0.95,
)
```
Expand Down Expand Up @@ -1095,8 +1095,8 @@ function fit(
data::DataFrame,
modelClass::LogisticRegression,
Link::CRRaoLink,
algorithm::BayesianAlgorithm = MCMC(),
prior::Prior_HorseShoe,
algorithm::BayesianAlgorithm = MCMC(),
level::Float64 = 0.95
)
@model LogisticRegression(X, y) = begin
Expand Down

0 comments on commit 80f0622

Please sign in to comment.