Closed mvarewyck closed 7 months ago
@mvarewyck is this PR ready for review ?
Yes!
@mvarewyck which column do you use for type on FIGUUR: Gerapporteerd aantal embryo's voor vrouwelijke damherten per jaar? With damhert we get only onbekend while this should be Kalf (V), Smaldier, Hinde & Onbekend ?
Same for Edelhert
@mvarewyck which column do you use for type on FIGUUR: Gerapporteerd aantal embryo's voor vrouwelijke damherten per jaar? With damhert we get only onbekend while this should be Kalf (V), Smaldier, Hinde & Onbekend ?
Same for Edelhert
Good point, we retain the female choices from column type_comp
'by hand' in the code. Currently (mistakenly) the ones from 'Wild zwijn' are taken.
So you want c("Kalf (v)", "Smaldier", "Hinde", "Onbekend")
choices for both 'Damhert' and 'Edelhert'?
> table(droplevels(ecoData$type_comp[ecoData$wildsoort == "Damhert"]))
Kalf (v) Kalf (m) Smaldier Spitser Hinde Hert Onbekend
65 78 126 148 161 188 19
> table(droplevels(ecoData$type_comp[ecoData$wildsoort == "Edelhert"]))
Kalf (v) Kalf (m) Smaldier Spitser Hinde Hert Onbekend
17 8 7 18 11 20 4
Yes
I guess so yes, maybe best to check (to be 200% sure) with @LynnPallemaerts @emiliegelaude
@SanderDevisscher while comparing the table for WBE with the one for grofwild I saw that we didn't include a row for 'Onbekend'. Is it fine if I add a row like below? I think this is better when users compare Total numbers with the graph above in the app.
@SanderDevisscher while comparing the table for WBE with the one for grofwild I saw that we didn't include a row for 'Onbekend'. Is it fine if I add a row like below? I think this is better when users compare Total numbers with the graph above in the app.
Yes its fine
Everything seems to work like it should
@mvarewyck is this PR ready for review ?