Skip to content

Commit

Permalink
Fix documentation of FastForest keyword args (#286)
Browse files Browse the repository at this point in the history
  • Loading branch information
cmcaine committed Apr 17, 2024
1 parent b365492 commit ccc3d20
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/stats/fasttree.jl
Original file line number Diff line number Diff line change
Expand Up @@ -173,11 +173,11 @@ Calculate a random forest where each variable is summarized by `stat`.
# Keyword Arguments
- `nt=100)`: Number of trees in the forest
- `nt=100`: Number of trees in the forest
- `b=floor(Int, sqrt(p))`: Number of random features for each tree to receive
- `maxsize=1000`: Maximum size for any tree in the forest
- `splitsize=5000`: Number of observations in any given node before splitting
- `λ = .05`: Probability that each tree is updated on a new observation
- `λ = 5 * (1 / nt)`: Probability that each tree is updated on a new observation
# Example
Expand Down

0 comments on commit ccc3d20

Please sign in to comment.