Skip to content

Commit 8535e4d

Browse files
committed
Change maintainer email address
1 parent 4312418 commit 8535e4d

File tree

4 files changed

+15
-7
lines changed

4 files changed

+15
-7
lines changed

DESCRIPTION

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
Package: rospca
2-
Version: 1.1.0
3-
Date: 2024-03-31
2+
Version: 1.1.1
3+
Date: 2024-11-30
44
Title: Robust Sparse PCA using the ROSPCA Algorithm
55
Description: Implementation of robust sparse PCA using the ROSPCA algorithm
66
of Hubert et al. (2016) <DOI:10.1080/00401706.2015.1093962>.
77
Authors@R: c(
8-
person("Tom", "Reynkens", email = "tomreynkens@hotmail.com", role = c("aut", "cre"), comment = c(ORCID = "0000-0002-5516-5107")),
8+
person("Tom", "Reynkens", email = "tomreynkens.r@gmail.com", role = c("aut", "cre"), comment = c(ORCID = "0000-0002-5516-5107")),
99
person("Valentin", "Todorov", role = "ctb", comment = "Original R code for PcaHubert and diagnostic plot in rrcov package"),
1010
person("Mia", "Hubert", role = "ctb"),
1111
person("Eric", "Schmitt", role = "ctb"),
1212
person("Tim", "Verdonck", role = "ctb"))
13-
Maintainer: Tom Reynkens <tomreynkens@hotmail.com>
13+
Maintainer: Tom Reynkens <tomreynkens.r@gmail.com>
1414
Depends: R (>= 2.14.0)
1515
Imports: stats,
1616
graphics,

R/Robpca.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ robpca <- function (x, k = 0, kmax = 10, alpha = 0.75, h = NULL, mcd = FALSE, nd
6060
## The regular observations receive flag 1.
6161

6262
# Based on code for ROBPCA in 'rrcov' package ('PcaHubert' function) by Valentin Todorov.
63-
# Author: Tom Reynkens ([email protected])
63+
# Author: Tom Reynkens
6464

6565
# The number of subsets used in covMCD (MCD version) is set to 1000.
6666
# When not using the MCD version, the outlyingness measure is now computed using the

R/Rospca.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ rospca <- function(X, k, kmax=10, alpha=0.75, h=NULL, ndir="all", grid=TRUE, lam
5454
# The regular observations receive flag 1.
5555
#
5656
# Based on code for ROBPCA in 'rrcov' package ('PcaHubert' function) by Valentin Todorov.
57-
# Author: Tom Reynkens ([email protected])
57+
# Author: Tom Reynkens
5858

5959
# The code for ROBPCA from the 'rrcov' package ('PcaHubert' function) up to the reweighting step forms
6060
# the basis of the function 'rospca_part1'.

inst/NEWS.Rd

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,18 @@
11
\name{NEWS}
22
\title{News for package rospca}
33

4+
5+
\section{Changes in version 1.1.1 (2024-11-30)}{
6+
7+
\itemize{
8+
\item Change maintainer email address.
9+
}
10+
}
11+
412
\section{Changes in version 1.1.0 (2024-03-31)}{
513

614
\itemize{
7-
\item Remove dependecy on \pkg{rrcovHD} as requested by Valentin Todorov, its maintainer.
15+
\item Remove dependency on \pkg{rrcovHD} as requested by Valentin Todorov, its maintainer.
816
\item Fix bug in \code{rospca} for \code{k=1}.
917
}
1018
}

0 commit comments

Comments
 (0)