-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bringing Github back in sync with CRAN versioning - my bad.
- Loading branch information
killick
committed
Nov 8, 2022
1 parent
e3959de
commit 7aacc73
Showing
20 changed files
with
103 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,28 @@ | ||
Package: changepoint | ||
Type: Package | ||
Title: Methods for Changepoint Detection | ||
Version: 2.2.2 | ||
Date: 2016-10-04 | ||
Version: 2.2.3 | ||
Date: 2022-03-08 | ||
Authors@R: c(person("Rebecca", "Killick", | ||
role=c("aut","cre"),email="r.killick@lancs.ac.uk"), | ||
person("Kaylea", "Haynes", role="aut"), | ||
person("Idris", "Eckley", role=c("ths","aut")), | ||
person("Idris", "Eckley", role=c("ths")), | ||
person("Paul","Fearnhead",role=c("ctb","ths")), person("Jamie","Lee",role="ctr")) | ||
Maintainer: Rebecca Killick <r.killick@lancs.ac.uk> | ||
BugReports: <changepoints@lancs.ac.uk> | ||
BugReports: https://github.com/rkillick/changepoint/issues | ||
URL: https://github.com/rkillick/changepoint/ | ||
Description: Implements various mainstream and specialised changepoint methods for finding single and multiple changepoints within data. Many popular non-parametric and frequentist methods are included. The cpt.mean(), cpt.var(), cpt.meanvar() functions should be your first point of call. | ||
Depends: R(>= 3.1), methods, stats, zoo(>= 0.9-1) | ||
Suggests: testthat | ||
License: GPL | ||
LazyLoad: yes | ||
Packaged: 2016-10-04 12:36:29 UTC; killick | ||
LazyData: true | ||
Packaged: 2022-03-14 14:14:13 UTC; killick | ||
NeedsCompilation: yes | ||
Repository: CRAN | ||
Date/Publication: 2022-03-14 15:50:02 UTC | ||
Author: Rebecca Killick [aut, cre], | ||
Kaylea Haynes [aut], | ||
Idris Eckley [ths], | ||
Paul Fearnhead [ctb, ths], | ||
Jamie Lee [ctr] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#include <stdlib.h> // for NULL | ||
#include <R_ext/Rdynload.h> | ||
|
||
/* FIXME: | ||
Check these declarations against the C/Fortran source code. | ||
*/ | ||
|
||
/* .C calls */ | ||
extern void binseg(void *, void *, void *, void *, void *, void *, void *, void *, void *, void *); | ||
extern void FreePELT(void *); | ||
extern void PELTC(void *, void *, void *, void *, void *, void *, void *, void *, void *, void *, void *); | ||
|
||
static const R_CMethodDef CEntries[] = { | ||
{"binseg", (DL_FUNC) &binseg, 10}, | ||
{"FreePELT", (DL_FUNC) &FreePELT, 1}, | ||
{"PELTC", (DL_FUNC) &PELTC, 11}, | ||
{NULL, NULL, 0} | ||
}; | ||
|
||
void R_init_changepoint(DllInfo *dll) | ||
{ | ||
R_registerRoutines(dll, CEntries, NULL, NULL, NULL); | ||
R_useDynamicSymbols(dll, FALSE); | ||
} | ||
|