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
if you load the mvp package and then the spray package, loads of functions get masked. e.g. in the mvp package, sourcing inst/coercion.R gives:
> source("coercion.R") # low-level functions, e.g. as.mvp()
Attaching package: ‘spray’
The following objects are masked from ‘package:mvp’:
aderiv, coeffs, coeffs<-, constant, constant<-, homog, is.zero,
knight, linear, nterms, ooom, product, subs, xyz
The following objects are masked from ‘package:base’:
pmax, pmin
It would be good to make at least some of the masked functions generic.
The text was updated successfully, but these errors were encountered:
some of these are already generic in the spray package but not the mvp package, where I will raise a new issue. But it would be good to genericalize is.zero() and possibly subs().
if you load the
mvp
package and then thespray
package, loads of functions get masked. e.g. in themvp
package, sourcinginst/coercion.R
gives:It would be good to make at least some of the masked functions generic.
The text was updated successfully, but these errors were encountered: