Skip to content

Commit 09047d0

Browse files
committed
update citation of robhatreg :balloon
1 parent f3f1daa commit 09047d0

3 files changed

Lines changed: 11 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# v0.11.6 (Upcoming Release)
22

3+
- Update citation of `robhatreg` a.k.a Robust Hat Matrix based Regression Estimator
4+
35

46
# v0.11.5
57

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ A Julia package for outlier detection in linear regression.
3939
- Chatterjee & Mächler (1997)
4040
- Theil-Sen estimator for multiple regression
4141
- Deepest Regression Estimator
42+
- Robust Hat Matrix based Initial Subset Regressor
4243
- Summary
4344

4445

src/robhatreg.jl

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,10 @@ Perform robust regression using the robust hat matrix method.
6060
6161
# References
6262
63-
Satman, Mehmet Hakan, A robust initial basic subset selection
64-
method for outlier detection algorithms in linear regression, In Press
63+
Satman, Mehmet Hakan. "A Robust Initial Basic Subset Selection Method for
64+
Outlier Detection Algorithms in Linear Regression."
65+
Journal of Statistics and Applied Sciences 10 (2024): 76-85.
66+
https://doi.org/10.52693/jsas.1512794
6567
"""
6668
function robhatreg(setting::RegressionSetting)::Dict
6769
X, y = @extractRegressionSetting setting
@@ -86,8 +88,10 @@ Perform robust regression using the robust hat matrix method.
8688
8789
# References
8890
89-
Satman, Mehmet Hakan, A robust initial basic subset selection
90-
method for outlier detection algorithms in linear regression, In Press
91+
Satman, Mehmet Hakan. "A Robust Initial Basic Subset Selection Method for
92+
Outlier Detection Algorithms in Linear Regression."
93+
Journal of Statistics and Applied Sciences 10 (2024): 76-85.
94+
https://doi.org/10.52693/jsas.1512794
9195
"""
9296
function robhatreg(X::AbstractMatrix{T}, y::AbstractVector{T})::Dict where {T<:Real}
9397
n, p = size(X)

0 commit comments

Comments
 (0)