Time-variant Clearance model not outputing in Inspect

Hello everyone,

I am trying to run a time-variant Clearance model as shown below. My problem is that when I use the Inspect function and see the CSV file I only get one estimation for CL for every patient and it is not changing over time as expected.

image

Here is the CSV file:

image

Everyone has been so helpful with my issues thank you in advance,
Thanos

Can you try DataFrame(icoef(fit_result))

I also get one output per patient when i run this function:

image

@achamzas have a time varying clearance component in one of my models and The results look reasonable as following:

Row │ id      time       KTV       CL        Vc       
      │ String  Float64    Float64   Float64   Float64  
──────┼─────────────────────────────────────────────────
    1 │ 1         0.0      0.15893   0.0       38.6628
    2 │ 1         3.0      0.15893   0.591361  38.6628
    3 │ 1         6.2      0.15893   0.977262  38.6628
    4 │ 1         9.0      0.15893   1.18635   38.6628
    5 │ 1         9.66667  0.15893   1.22385   38.6628
    6 │ 1        17.0      0.15893   1.45477   38.6628
    7 │ 1        28.0      0.15893   1.54117   38.6628
    8 │ 1        28.0833   0.15893   1.54141   38.6628
  ⋮   │   ⋮         ⋮         ⋮         ⋮         ⋮
 3779 │ 263     126.0      0.125396  0.529506   7.28198
 3780 │ 263     133.0      0.125396  0.529506   7.28198
 3781 │ 263     142.2      0.125396  0.529506   7.28198
 3782 │ 263     143.617    0.125396  0.529506   7.28198
 3783 │ 263     167.2      0.125396  0.529506   7.28198
 3784 │ 263     167.933    0.125396  0.529506   7.28198
 3785 │ 263     191.733    0.125396  0.529506   7.28198

Could you please show the way you specified the parameters in your model ?

Hello Ahmed, this is my param block:

Which version of Pumas are you using?

I just run the same code today and it works. It was probably a bug that was fixed with the new version. Thank you!