Skip to content

Commit

Permalink
fix: Use method='fREML' by default
Browse files Browse the repository at this point in the history
  • Loading branch information
tripartio committed Feb 10, 2025
1 parent 58ddb5f commit 74d6cac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# autogam 0.1.0

* Use bam(discrete=TRUE, method='fREML') by default.
* Update required R version to >= 4.1.0 (mainly because it uses the |> pipe).
* Create `autogam` S3 object with support for all `mgcv::gam` s3 methods. The `autogam` methods mostly call the `mgcv::gam` methods. For now, only the `print()` method is lightly modified to add performance measures.

Expand Down
1 change: 1 addition & 0 deletions R/autogam.R
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ autogam <- function(
# Default to bam
gam_fun <- bam
args$discrete <- TRUE
args$method <- 'fREML'

## Detect interactions ---------------------------

Expand Down

0 comments on commit 74d6cac

Please sign in to comment.