covariance 0.2.0.0 → 0.2.0.1
raw patch · 11 files changed
+15/−10 lines, 11 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGELOG.md +5/−0
- LICENSE +1/−1
- covariance.cabal +1/−1
- src/Statistics/Covariance.hs +1/−1
- src/Statistics/Covariance/GraphicalLasso.hs +1/−1
- src/Statistics/Covariance/Internal/Tools.hs +1/−1
- src/Statistics/Covariance/LedoitWolf.hs +1/−1
- src/Statistics/Covariance/OracleApproximatingShrinkage.hs +1/−1
- src/Statistics/Covariance/RaoBlackwellLedoitWolf.hs +1/−1
- src/Statistics/Covariance/Types.hs +1/−1
- test/Test.hs +1/−1
CHANGELOG.md view
@@ -5,6 +5,11 @@ ## Unreleased changes +## 0.2.0.1++- Compilation and tooling with GHC 9.2.3.++ ## 0.2.0.0 - Rename `rescaleWith` to `rescaleSWith` to indicate the rescaling of
LICENSE view
@@ -652,7 +652,7 @@ If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: - <program> Copyright (C) 2021 Dominik Schrempf+ <program> Copyright 2021 Dominik Schrempf This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details.
covariance.cabal view
@@ -1,6 +1,6 @@ cabal-version: 3.0 name: covariance-version: 0.2.0.0+version: 0.2.0.1 synopsis: Well-conditioned estimation of large-dimensional covariance matrices
src/Statistics/Covariance.hs view
@@ -1,7 +1,7 @@ -- | -- Module : Statistics.Covariance -- Description : Estimate covariance matrices from sample data--- Copyright : (c) 2021 Dominik Schrempf+-- Copyright : 2021 Dominik Schrempf -- License : GPL-3.0-or-later -- -- Maintainer : dominik.schrempf@gmail.com
src/Statistics/Covariance/GraphicalLasso.hs view
@@ -1,7 +1,7 @@ -- | -- Module : Statistics.Covariance.GraphicalLasso -- Description : Graphical lasso--- Copyright : (c) 2021 Dominik Schrempf+-- Copyright : 2021 Dominik Schrempf -- License : GPL-3.0-or-later -- -- Maintainer : dominik.schrempf@gmail.com
src/Statistics/Covariance/Internal/Tools.hs view
@@ -1,7 +1,7 @@ -- | -- Module : Statistics.Covariance.Internal.Tools -- Description : Common functions--- Copyright : (c) 2021 Dominik Schrempf+-- Copyright : 2021 Dominik Schrempf -- License : GPL-3.0-or-later -- -- Maintainer : dominik.schrempf@gmail.com
src/Statistics/Covariance/LedoitWolf.hs view
@@ -1,7 +1,7 @@ -- | -- Module : Statistics.Covariance.LedoitWolf -- Description : Shrinkage based covariance estimator by Ledoit and Wolf--- Copyright : (c) 2021 Dominik Schrempf+-- Copyright : 2021 Dominik Schrempf -- License : GPL-3.0-or-later -- -- Maintainer : dominik.schrempf@gmail.com
src/Statistics/Covariance/OracleApproximatingShrinkage.hs view
@@ -1,7 +1,7 @@ -- | -- Module : Statistics.Covariance.OracleApproximatingShrinkage -- Description : Iterative shrinkage based covariance estimator--- Copyright : (c) 2021 Dominik Schrempf+-- Copyright : 2021 Dominik Schrempf -- License : GPL-3.0-or-later -- -- Maintainer : dominik.schrempf@gmail.com
src/Statistics/Covariance/RaoBlackwellLedoitWolf.hs view
@@ -1,7 +1,7 @@ -- | -- Module : Statistics.Covariance.RaoBlackwellLedoitWolf -- Description : Improved shrinkage based covariance estimator--- Copyright : (c) 2021 Dominik Schrempf+-- Copyright : 2021 Dominik Schrempf -- License : GPL-3.0-or-later -- -- Maintainer : dominik.schrempf@gmail.com
src/Statistics/Covariance/Types.hs view
@@ -1,7 +1,7 @@ -- | -- Module : Statistics.Covariance.Types -- Description : Common types--- Copyright : (c) 2021 Dominik Schrempf+-- Copyright : 2021 Dominik Schrempf -- License : GPL-3.0-or-later -- -- Maintainer : dominik.schrempf@gmail.com
test/Test.hs view
@@ -1,7 +1,7 @@ -- | -- Module : Spec -- Description : Covariance test suite--- Copyright : (c) 2021 Dominik Schrempf+-- Copyright : 2021 Dominik Schrempf -- License : GPL-3.0-or-later -- -- Maintainer : dominik.schrempf@gmail.com