Closed timriffe closed 6 years ago
Not sure what the solution is but if I remove ageMin
and ageMax
the function will not be affected. I guess all the methods called in doHeaping()
have default ageMin
and ageMax
.
The messages will pop-up informing the user about these arguments.
ageMin
and ageMax
removed from all do
functions. The messages are working like a charm.
The changes are coming soon to master
too.
doHeaping()
gives the following defaults:which are intended to define an age range (inclusive at the top). However, the
"WI"
method takes anAges = c(95,100,105)
argument, with essentially the same purpose, but with a clearly different default range. I should probably change it on theDemoTools
side to also rely onageMin
andageMax
, but this will introduce a conundrum here, since different available methods would have different appropriate defaults. Is the solution to removeageMin
andageMax
from the top level indoHeaping()
?The same phenomenon could arise elsewhere.