Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add MixedModels #27

Merged
merged 1 commit into from
Feb 22, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ GLM = "38e38edf-8417-5370-95a0-9cbb8c7f171a"
HypothesisTests = "09f84164-cd44-5f33-b23f-e6b0d136a0d5"
KernelDensity = "5ab0869b-81aa-558d-bb23-cbf5423bbe9b"
Loess = "4345ca2d-374a-55d4-8d30-97f9976e7612"
MixedModels = "ff71e718-51f3-5ec2-a782-8ffcbfa3c316"
MultivariateStats = "6f286f6a-111f-5878-ab1e-185364afe411"
Reexport = "189a3867-3050-52da-a836-e630ba90ab69"
ShiftedArrays = "1277b4bf-5013-50f5-be3d-901d8477a67a"
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ using StatsKit

Currently this loads the [Statistics](https://docs.julialang.org/en/stable/stdlib/Statistics/)
standard library module, and the following packages:

* [Bootstrap](https://github.com/juliangehring/Bootstrap.jl)
* [CategoricalArrays](https://github.com/JuliaData/CategoricalArrays.jl)
* [Clustering](https://github.com/JuliaStats/Clustering.jl)
Expand All @@ -22,10 +23,10 @@ standard library module, and the following packages:
* [KernelDensity](https://github.com/JuliaStats/KernelDensity.jl)
* [Loess](https://github.com/JuliaStats/Loess.jl)
* [MultivariateStats](https://github.com/JuliaStats/MultivariateStats.jl)
* [MixedModels](https://github.com/JuliaStats/MixedModels.jl)
* [StatsBase](https://github.com/JuliaStats/StatsBase.jl)
* [ShiftedArrays](https://github.com/JuliaArrays/ShiftedArrays.jl)
* [TimeSeries](https://github.com/JuliaStats/TimeSeries.jl)


This package is intended for users of statistics packages who want to get started with one import. Packages themselves should continue
to list individual packages in they dependencies rather than `StatsKit` as a whole.
1 change: 1 addition & 0 deletions src/StatsKit.jl
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ module StatsKit
@reexport using HypothesisTests
@reexport using KernelDensity
@reexport using Loess
@reexport using MixedModels
@reexport using MultivariateStats
@reexport using ShiftedArrays
@reexport using Statistics
Expand Down
2 changes: 1 addition & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ using Pkg
# to check that they pass when all packages are loaded at the same time
Pkg.test(["Bootstrap", "CategoricalArrays", "Clustering", "CSV", "DataFrames",
"Distances", "Distributions", "GLM", "HypothesisTests", "KernelDensity",
"Loess", "MultivariateStats", "StatsBase", "ShiftedArrays", "TimeSeries"])
"Loess", "MultivariateStats", "MixedModels", "StatsBase", "ShiftedArrays", "TimeSeries"])