From 8b192cfa2f8e5bc73e0f21cbacd3d5c24d771fa9 Mon Sep 17 00:00:00 2001 From: Milan Bouchet-Valat Date: Mon, 22 Feb 2021 10:21:17 +0100 Subject: [PATCH] Add MixedModels (#27) --- Project.toml | 1 + README.md | 3 ++- src/StatsKit.jl | 1 + test/runtests.jl | 2 +- 4 files changed, 5 insertions(+), 2 deletions(-) diff --git a/Project.toml b/Project.toml index 22d52ac..3c0b3b9 100644 --- a/Project.toml +++ b/Project.toml @@ -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" diff --git a/README.md b/README.md index 3235960..bdd89ea 100644 --- a/README.md +++ b/README.md @@ -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) @@ -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. diff --git a/src/StatsKit.jl b/src/StatsKit.jl index 9ed0a56..b031e2d 100644 --- a/src/StatsKit.jl +++ b/src/StatsKit.jl @@ -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 diff --git a/test/runtests.jl b/test/runtests.jl index 1d25e4c..b8684a9 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -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"])