-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rewritten the references in a proper way. Added two new functions to …
…plot a biadjacency matrix.
- Loading branch information
Showing
21 changed files
with
502 additions
and
233 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,19 @@ | ||
Package: RKS | ||
Package: ReKS | ||
Type: Package | ||
Title: Regional Knowledge Space | ||
Version: 0.2.6 | ||
Version: 0.2.9 | ||
Authors@R: person("Carlo", "Bottai", | ||
email = "[email protected]", | ||
role = c("aut", "cre")) | ||
Maintainer: Carlo Bottai <[email protected]> | ||
Description: By the moment RKS ("rocks") provides four nice functions. | ||
Description: By the moment ReKS (``rex'') provides four functions. | ||
The first computes the entropy of a given array and implement an | ||
algoritm able to decompose it into between and within group entropy | ||
(aka unrelated and related variety). The second calculates the | ||
Coherence Index. The third and the fourth yield the ECI and the | ||
Fitness/Complexity, respectively. In the future how knows?! | ||
URL: https://github.com/n3ssuno/RKS | ||
BugReports: https://github.com/n3ssuno/RKS/issues | ||
(aka Unrelated and Related Variety, respectively). The second calculates | ||
the Coherence Index. The third and the fourth yield the ECI and the | ||
Fitness of a region, respectively. | ||
URL: https://github.com/n3ssuno/ReKS | ||
BugReports: https://github.com/n3ssuno/ReKS/issues | ||
License: GPL-3 + file LICENSE | ||
Encoding: UTF-8 | ||
RoxygenNote: 6.0.1 | ||
|
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,4 +1,6 @@ | ||
exportPattern("^[^\\.]") | ||
# exportPattern("^[[:alpha:]]+") | ||
S3method(plot, rks_biadj_matrix) | ||
|
||
importFrom("stats", "complete.cases", "formula", "cor", "quantile") | ||
importFrom("graphics", "plot", "image", "box") |
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,17 @@ | ||
#' ReKS: A package for computating some measure about the knowledge space | ||
#' of a economic region. | ||
#' | ||
#' @section ReKS functions: | ||
#' \itemize{ | ||
#' \item{\code{\link{entropy}}} | ||
#' \item{\code{\link{entropy_decomposition}}} | ||
#' \item{\code{\link{entropy_decomposition_panel}}} | ||
#' \item{\code{\link{coherence}}} | ||
#' \item{\code{\link{coherence_panel}}} | ||
#' \item{\code{\link{complexity}}} | ||
#' \item{\code{\link{fitness}}} | ||
#' } | ||
#' | ||
#' @docType package | ||
#' @name ReKS | ||
NULL |
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
Oops, something went wrong.