-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: small update to DESC, CRAN comments, GH actions
- Loading branch information
Showing
4 changed files
with
47 additions
and
49 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
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,63 +1,58 @@ | ||
Package: WeightedTreemaps | ||
Title: Generate and Plot Voronoi or Sunburst Treemaps from Hierarchical Data | ||
Title: Generate and Plot Voronoi or Sunburst Treemaps from Hierarchical | ||
Data | ||
Version: 0.1.1 | ||
Authors@R: c( | ||
person(given = "Michael", | ||
family = "Jahn", | ||
role = c("aut", "cre"), | ||
email = "[email protected]", | ||
person("Michael", "Jahn", , "[email protected]", role = c("aut", "cre"), | ||
comment = c(ORCID = "0000-0002-3913-153X")), | ||
person(given = "David", | ||
family = "Leslie", | ||
role = c("aut"), | ||
email = "[email protected]"), | ||
person(given = "Ahmadou", | ||
family = "Dicko", | ||
role = c("aut"), | ||
email = "[email protected]", | ||
person("David", "Leslie", , "[email protected]", role = "aut"), | ||
person("Ahmadou", "Dicko", , "[email protected]", role = "aut", | ||
comment = c(ORCID = "0000-0002-9654-7582")), | ||
person(given = "Paul", | ||
family = "Murrell", | ||
role = c("aut", "cph"), | ||
email = "[email protected]", | ||
comment = c(ORCID = "0000-0002-3224-8858"))) | ||
Description: Treemaps are a visually appealing graphical representation of numerical data using a | ||
space-filling approach. A plane or 'map' is subdivided into smaller areas called cells. | ||
The cells in the map are scaled according to an underlying metric which allows to grasp the | ||
hierarchical organization and relative importance of many objects at once. This package contains | ||
two different implementations of treemaps, Voronoi treemaps and Sunburst treemaps. | ||
The Voronoi treemap function subdivides the plot area in polygonal cells according to | ||
the highest hierarchical level, then continues to subdivide those parental cells on the | ||
next lower hierarchical level, and so on. The Sunburst treemap is a computationally less | ||
demanding treemap that does not require iterative refinement, but simply generates | ||
circle sectors that are sized according to predefined weights. | ||
The Voronoi tesselation is based on functions from | ||
Paul Murrell (2012) <https://www.stat.auckland.ac.nz/~paul/Reports/VoronoiTreemap/voronoiTreeMap.html>. | ||
person("Paul", "Murrell", , "[email protected]", role = c("aut", "cph"), | ||
comment = c(ORCID = "0000-0002-3224-8858")) | ||
) | ||
Description: Treemaps are a visually appealing graphical representation of | ||
numerical data using a space-filling approach. A plane or 'map' is | ||
subdivided into smaller areas called cells. The cells in the map are | ||
scaled according to an underlying metric which allows to grasp the | ||
hierarchical organization and relative importance of many objects at | ||
once. This package contains two different implementations of treemaps, | ||
Voronoi treemaps and Sunburst treemaps. The Voronoi treemap function | ||
subdivides the plot area in polygonal cells according to the highest | ||
hierarchical level, then continues to subdivide those parental cells | ||
on the next lower hierarchical level, and so on. The Sunburst treemap | ||
is a computationally less demanding treemap that does not require | ||
iterative refinement, but simply generates circle sectors that are | ||
sized according to predefined weights. The Voronoi tesselation is | ||
based on functions from Paul Murrell (2012) | ||
<https://www.stat.auckland.ac.nz/~paul/Reports/VoronoiTreemap/voronoiTreeMap.html>. | ||
License: GPL-3 | ||
Depends: R (>= 3.5.0) | ||
URL: https://github.com/m-jahn/WeightedTreemaps | ||
BugReports: https://github.com/m-jahn/WeightedTreemaps/issues | ||
Depends: | ||
R (>= 3.5.0) | ||
Imports: | ||
colorspace, | ||
dplyr, | ||
grid, | ||
lattice, | ||
methods, | ||
dplyr, | ||
tibble, | ||
sp, | ||
sf, | ||
Rcpp, | ||
scales, | ||
lattice, | ||
colorspace, | ||
Rcpp | ||
sf, | ||
sp, | ||
tibble | ||
Suggests: | ||
parallel, | ||
knitr, | ||
parallel, | ||
rmarkdown | ||
LinkingTo: | ||
BH, | ||
Rcpp, | ||
RcppCGAL, | ||
BH | ||
RcppCGAL | ||
VignetteBuilder: | ||
knitr | ||
Encoding: UTF-8 | ||
LazyData: true | ||
RoxygenNote: 7.2.3 | ||
VignetteBuilder: knitr | ||
SystemRequirements: C++17 | ||
URL: https://github.com/m-jahn/WeightedTreemaps | ||
BugReports: https://github.com/m-jahn/WeightedTreemaps/issues |
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