-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #223 from BaselDataScience/master
markovchain accepts sparse transition matrix
- Loading branch information
Showing
7 changed files
with
27 additions
and
13 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,7 +1,7 @@ | ||
Package: markovchain | ||
Type: Package | ||
Title: Easy Handling Discrete Time Markov Chains | ||
Version: 0.10.0 | ||
Version: 0.10.0.9100 | ||
Authors@R: c( | ||
person("Giorgio Alfredo", "Spedicato", role = c("aut", "cre"), | ||
email = "[email protected]",comment = c(ORCID = "0000-0002-0315-8888")), | ||
|
@@ -14,22 +14,22 @@ Authors@R: c( | |
person("Toni", "Giorgino", role="ctb", comment = c(ORCID = "0000-0001-6449-0596")), | ||
person("Richèl J.C.", "Bilderbeek", role = "ctb", comment = c(ORCID = "0000-0003-1107-7049")), | ||
person("Daniel", "Ebbert", email = "[email protected]", role = "ctb", comment = c(ORCID = "0000-0003-3666-7205")), | ||
person("Shreyash", "Maheshwari", email = "[email protected]", role = "ctb") | ||
person("Shreyash", "Maheshwari", email = "[email protected]", role = "ctb"), | ||
person("Reinhold", "Koch", role = "ctb") | ||
) | ||
Maintainer: Giorgio Alfredo Spedicato <[email protected]> | ||
Description: Functions and S4 methods to create and manage discrete time Markov | ||
chains more easily. In addition functions to perform statistical (fitting | ||
and drawing random variates) and probabilistic (analysis of their structural | ||
proprieties) analysis are provided. See Spedicato (2017) <doi:10.32614/RJ-2017-036>. | ||
Some functions for continuous times Markov chains depends on the suggested ctmcd package, that, | ||
as May 2023, can be retrieved from <https://cran.r-project.org/src/contrib/Archive/ctmcd/ctmcd_1.4.2.tar.gz>. | ||
Some functions for continuous times Markov chains depend on the suggested ctmcd package. | ||
License: MIT + file LICENSE | ||
Depends: | ||
R (>= 4.2.0), | ||
Matrix (>= 1.5-0), | ||
methods | ||
Imports: | ||
igraph, | ||
Matrix (>= 1.5-0), | ||
expm, | ||
stats4, | ||
parallel, | ||
|
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
Binary file not shown.
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,3 @@ | ||
test_that("sparse transition matrix is accepted", { | ||
expect_is(as(sparsematrix, "markovchain"), "markovchain") | ||
}) |
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