Closed vpnsctl closed 1 day ago
Hi, what version of inlabru? I believe this was fixed as part of the general summary&print method expansion in version 2.11.1.9002. Can you please verify that by checking against the current github devel version (2.11.1.9016)? We'll then leave this issue open until the next CRAN release, in case someone else runs into the same issue.
Perfect! Confirmed!! Really solved. Thank you very much!!! Edit: Just adding the version that had the problem. It was, indeed, CRAN version: 2.11.1.
Closing, as inlabru 2.12.0 is on its way onto CRAN.
Hi Finn and inlabru team,
We were fitting a simple model:
and this
summary
gives an error. By digging a bit, we can see the problem here: in this term (and actually all the ones with weights)the "input" element only has one "level", meaning that we have (with the commented part being the output):
So, when we do
it is trying to subset an element of class "name", and gives that error.
We can see that it is indeed trying to do the subsetting
[["input"]][["input"]]
(two "input"), by looking atsummary.component
, in which we have this snippet:So, for weights this does not seem to be a valid subsetting.
Thanks for considering this issue.
Best, Alexandre