Closed mkborregaard closed 4 years ago
Merging #25 into rr/linkedlist will decrease coverage by
1.34%
. The diff coverage is0%
.
@@ Coverage Diff @@
## rr/linkedlist #25 +/- ##
=================================================
- Coverage 56.43% 55.08% -1.35%
=================================================
Files 16 16
Lines 1834 1877 +43
=================================================
- Hits 1035 1034 -1
- Misses 799 843 +44
Impacted Files | Coverage Δ | |
---|---|---|
src/plot.jl | 0% <0%> (ø) |
:arrow_up: |
src/trim.jl | 96.96% <0%> (-3.04%) |
:arrow_down: |
Continue to review full report at Codecov.
Legend - Click here to learn more
Δ = absolute <relative> (impact)
,ø = not affected
,? = missing data
Powered by Codecov. Last update 65c1be6...8dcafe1. Read the comment docs.
@richardreeve you never commented on this - look how gorgeous those plots are though :-D
It is truly beautiful! Sorry for missing this - it was right in the middle of my teaching and it just got lost... I’m back off strike next week and I’ll have a look.
This does look very nice. I'm still working through the linkedlist changes, but was there more you had planned to do here? You mention the line_group
keyword and adding Dict
s, but I don't actually know what you mean by those comments?
A keyword to color lines by a categorical variable. And coloring with a node=>trait Dict rather than passing vectors. It's just enhancements and shouldn't block merging
This is still WIP - it improves the plotting of traits. It allows traits to be plotted by passing their name, and also enables plotting of discrete traits by adding keywords
marker_group
andline_group
. So far mostly implemented for markers. The implementation is a bit DWIM as it tries to guess whether the user wants markers only on internal nodes (which is standard in R) or nodes + tips (as seems to be your expectation here), based on the number of passed marker attributes.With this:
I need to implement the
line_group
keyword, and also want to add the possibility for addingDict
s.