CJ Yetman
CJ Yetman
add a matrix diagram plot type, as described here: https://bost.ocks.org/mike/miserables/ It doesn't benefit much from the interactive possibilities of D3, but it's a valid network visualization type, so to be...
add a hive plot type, as described here: https://bost.ocks.org/mike/hive/ There's an open PR #110 from over a year ago that adds a hive plot type. At a minimum it would...
allow for hierarchical edge bundling in various plot type, as demonstrated here: https://bl.ocks.org/mbostock/7607999 but more easily achieved with [d3.curveBundle](https://github.com/d3/d3-shape/blob/master/README.md#curveBundle) in D3v4
add a zoomable treemap plot type, as described here: https://bost.ocks.org/mike/treemap/ https://github.com/d3/d3-hierarchy#treemap
Semantic zooming, versus geometric zooming, may better serve the intended purpose of zooming for these network graphs. I propose to implement it, and either set it as default or allow...
- [ ] 1. there's no mention of `chordNetwork()` - [ ] 2. maybe "Radial networks with radialNetwork" should be changed to "Tree networks with diagonalNetwork and radialNetwork"
d3-force v4 now strives to have deterministic behavior. They sound cautiously confident of that [here](https://github.com/d3/d3/blob/master/CHANGES.md#forces-d3-force ): “The new forces and simulation have been carefully crafted to avoid nondeterminism. Rather than...
Honestly, I can only reliably replicate this in one specific environment ([2dii/r-packages](https://hub.docker.com/r/2dii/r-packages/builds)), but it seems to be related to how UTF-8 characters are defined in [replace_special_characters_internal.R](https://github.com/Tazinho/snakecase/blob/64e1726b7717047a8363a3c38c79cca187512dde/R/replace_special_characters_internal.R#L23-L43). ``` r snakecase::to_any_case("\u00E4ngstlicher Has\u00EA",...
This PR address the problem in #106 where a warning is received about illegal reflective access. In my testing, this warning is only received the first time it occurs in...
A user on [StackOverflow recently asked](https://stackoverflow.com/questions/67373611/how-to-convert-iso-4217-code-to-currency-name-in-r) how to convert a currency code to a currency name for nicer looking labels on a plot. In the specific example data they gave,...