-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Final adjustments for GSOC submission (#17)
* Add attributions on Description file * Setup project readme * Fix code quality in Readme * Change License in Description
- Loading branch information
1 parent
4f1c110
commit 84beabe
Showing
6 changed files
with
175 additions
and
7 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,2 +1,3 @@ | ||
^\.github$ | ||
^\codecov.yml$ | ||
^\codecov.yml$ | ||
^\.idea$ |
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 |
---|---|---|
|
@@ -3,14 +3,16 @@ Type: Package | |
Title: Efficient Binary Segmentation for several distributions | ||
Version: 1.0 | ||
Date: 2021-06-10 | ||
Author: Diego Enrique Jimenez Urgell | ||
Authors@R: c(person("Diego Enrique", "Jimenez Urgell", role=c("aut", "cre"), email="[email protected]"), | ||
person("Rebecca", "Killick", role=c("aut", "rev")), | ||
person("Toby", "Hocking", role=c("aut", "rev"))) | ||
Maintainer: Diego Enrique Jimenez Urgell <[email protected]> | ||
URL: https://github.com/diego-urgell/BinSeg | ||
BugReports: https://github.com/diego-urgell/BinSeg/issues | ||
Description: Implements the regular Binary Segmentation Algorithm in a very efficient way. It supports distribution specific cost functions for several different distributions and types of changes. The changepoint analysis is implemented in C++, by using an Object Oriented approach such that the package is seamlessly extensible in terms of cost functions and Binary Segmentation based algorithms. | ||
- | ||
Use BinSegInfo to know the available algorithms, and BinSegModel to compute a changepoint analysis with the specified data, algorithm, and distribution. Then, use the BinSeg class methods to interact with and visualize the models. | ||
License: GPL (>= 2) | ||
License: MIT | ||
Depends: | ||
R(>= 4.0) | ||
Imports: | ||
|
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