FelicienLL / mapbayr

Easy Maximum A Posteriori Bayesian Estimation of PK parameters in R.
21 stars 2 forks source link

warning of `update()` with mrgsolve 1.1.1 #211

Open FelicienLL opened 1 year ago

FelicienLL commented 1 year ago
library(mrgsolve)
#> Warning: le package 'mrgsolve' a été compilé avec la version R 4.2.3
#> 
#> Attachement du package : 'mrgsolve'
#> L'objet suivant est masqué depuis 'package:stats':
#> 
#>     filter
library(mapbayr)
#> 
#> Attachement du package : 'mapbayr'
#> 
#> L'objet suivant est masqué depuis 'package:stats':
#> 
#>     filter
packageVersion("mrgsolve")
#> [1] '1.1.1'
packageVersion("mapbayr")
#> [1] '0.10.0'

dat <- adm_rows(amt = 100, cmt = 2)
dat <- obs_rows(dat, cmt = 2, time = 0)

mod <- omat(house(), dmat(0.2, 0.2, 0.2, 0.2))
mapbayr_vpc(mod, dat)
#> Warning: The following argument was passed to `mrgsolve::update()`, but
#> it is either an invalid name (check your spelling?) or not an
#> eligible attribute for update:
#> x ORIGID
#> Warning: The following argument was passed to `mrgsolve::update()`, but
#> it is either an invalid name (check your spelling?) or not an
#> eligible attribute for update:
#> x ORIGID

Created on 2023-08-28 with reprex v2.0.2