You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the UPSS script for bootscm task 9 is using xp.boot.par.est, which displayed an empty plot. I think that the problem is related to the levels function call here:
It returns NULL since there is no levels attribute set on the object. Perhaps an earlier behaviour of R levels was to return the elements themselves in this case.
I managed to patch it, by replacing levels with unique
In the UPSS script for bootscm task 9 is using
xp.boot.par.est
, which displayed an empty plot. I think that the problem is related to thelevels
function call here:xpose4/R/bootgam.plots.R
Line 111 in f79acae
It returns
NULL
since there is nolevels
attribute set on the object. Perhaps an earlier behaviour of Rlevels
was to return the elements themselves in this case.I managed to patch it, by replacing
levels
withunique
This isn't a 100% solution since there will now be an extra
.1
in the covariate effect labels as can be seen here:The text was updated successfully, but these errors were encountered: