Pedro J. Aphalo
Pedro J. Aphalo
Unit tests need to build plots to test that this works. Although tests' code coverage is > 90% the positions are mostly tested by building `Position` objects without testing that...
'ggplot2` (== 4.0.0): (issue numbers are for 'ggplot2'. Information from NEWS.md * `position_dodge()` and `position_jitterdodge()` now have a reverse argument (@teunbrand, #3610) * Position adjustments can now have auxiliary aesthetics...
See [pull request in ggplot2 repo](https://github.com/tidyverse/ggplot2/pull/6307). The approach curently in use in `geom_label_s()` in conceptually similar but with a different user interface than in `geom_label()`. This is logical for `geom_label()`...
Model fitting statistics are in pairs of 'line' and 'eq' versions. The model fitting should be identical, while the quering and further processing after model fitting differs. Except for `stat_distrmix_eq()`...
Automatically generating `eq.label` for linear splines seems too complex to be worthwhile the effort, at least at the moment. However, a few changes to `stat_poly_eq()` would be very useful, as...
Even without solving the problem of redundant calculations such a function could save typing and ensure consistency between fitted line and equation. Such "multilayer" functions could be implemented in a...
There is a lot of duplication, both in relation to parameters common to all stats and between matching `line` and `eq` stats. Using inheritance would help with consistency and maintenance.
These stats are currently tested only by examples in the documentation, including the on-line only articles. As the model fit methods supported are open-ended, at least test with all documented...
A very comprehensive R package including bootstraping methods for non-linear and NLME models. [nlraa documentation](https://femiguez.github.io/nlraa-docs/index.html) [github repo](https://github.com/femiguez/nlraa) - [ ] Investigate how 'nlraa' could be supported without adding to much...
As with other model fits, but in this case for univariate data, support plotting of prediction and annotation with parameter estimates. - `stat_edf_area()`: `ggplot2::stat_density()` does the job for plotting, a...