-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* warning for wrong type for * print test_args * qrpred not exported by GLM v1.9.0 format undo format qrpred not fully defined in GLM v1.9 qrpred is not defined in GLM v1.9 * GHA: do not duplicate jobs * add julia-format action add julia-format action format docs files gha naming * docs add CategoricalArrays dep * refactor and improve treating edge cases * correct function entries in docs * refactorize input validation for fit method * fix doctest * use format-check from MixedModels.jl * add typos github action * run typos * follow .JuliaFormatter.toml * run format correct type correct type correct type * do not show QR pivoted warning when installing the package * fix docs fix docs * fix some docs
- Loading branch information
Showing
21 changed files
with
440 additions
and
200 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# https://github.com/crate-ci/typos#false-positives | ||
[default] | ||
|
||
[default.extend-identifiers] | ||
missings = "missings" | ||
Missings = "Missings" | ||
Artic = "Artic" | ||
|
||
[default.extend-words] | ||
qest = "qest" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,14 @@ | ||
[deps] | ||
CategoricalArrays = "324d7699-5711-5eae-9e2f-1d82baa6b597" | ||
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0" | ||
Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f" | ||
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4" | ||
GLM = "38e38edf-8417-5370-95a0-9cbb8c7f171a" | ||
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e" | ||
RDatasets = "ce6b1742-4840-55fa-b093-852dadbb1d8b" | ||
RobustModels = "d6ea1423-9682-4bbd-952f-b1577cbf8c98" | ||
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf" | ||
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2" | ||
StatsAPI = "82ae8749-77ed-4fe6-ae5f-f523153014b0" | ||
StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91" | ||
StatsModels = "3eaba693-59b7-5ba5-a881-562e759f1c8d" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,18 @@ | ||
using Documenter | ||
using GLM, StatsBase, SparseArrays, LinearAlgebra | ||
using GLM, StatsBase, StatsAPI, SparseArrays, LinearAlgebra | ||
using RobustModels | ||
|
||
DocMeta.setdocmeta!( | ||
RobustModels, :DocTestSetup, :(using RobustModels, StatsBase, GLM); recursive=true | ||
RobustModels, | ||
:DocTestSetup, | ||
:(using RobustModels, StatsBase, GLM, StatsAPI); | ||
recursive=true, | ||
) | ||
|
||
prettyurls = get(ENV, "CI", "false") == "true" | ||
|
||
makedocs(; | ||
modules=[RobustModels, GLM, StatsBase], | ||
modules=[RobustModels, GLM, StatsBase, StatsAPI], | ||
sitename="RobustModels", | ||
authors="Bertrand Lacoste <[email protected]>", | ||
repo="https://github.com/getzze/RobustModels.jl/blob/{commit}{path}#{line}", | ||
|
@@ -18,17 +21,18 @@ makedocs(; | |
canonical="https://getzze.github.io/RobustModels.jl", | ||
assets=["assets/favicon.ico"], | ||
), | ||
#! format: off | ||
pages=[ | ||
"Home" => "index.md", | ||
"manual.md", | ||
"examples.md", | ||
"Home" => "index.md", | ||
"manual.md", | ||
"examples.md", | ||
"api.md", | ||
], | ||
#! format: on | ||
## Uncomment the line below to re-generate doctest outputs | ||
# doctest = :fix, | ||
warnonly=[:missing_docs], | ||
debug=false, | ||
) | ||
|
||
deploydocs(; | ||
devbranch="main", | ||
repo="github.com/getzze/RobustModels.jl", | ||
) | ||
deploydocs(; devbranch="main", repo="github.com/getzze/RobustModels.jl") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.