├── .Rbuildignore ├── .gitignore ├── CITATION.cff ├── DESCRIPTION ├── INLAjoint.Rproj ├── NAMESPACE ├── R ├── INLAjoint.R ├── INLAjoint.object.R ├── LongMS.R ├── Longsim.R ├── SurvMS.R ├── Survsim.R ├── coef.INLAjoint.R ├── family.INLAjoint.R ├── fitted.INLAjoint.R ├── fixef.INLAjoint.R ├── formula.INLAjoint.R ├── joint.R ├── joint.rerun.R ├── joint.run.R ├── logLik.INLAjoint.R ├── nobs.INLAjoint.R ├── plot.INLAjoint.R ├── predict.INLAjoint.R ├── print.INLAjoint.R ├── print.INLAjoint.R.bak ├── print.plot.INLAjoint.R ├── print.summary.INLAjoint.R ├── ranef.INLAjoint.R ├── setupFonctions.R ├── summary.INLAjoint.R └── zzz.R ├── README.md ├── data ├── LongMS.RData ├── Longsim.RData ├── SurvMS.RData └── Survsim.RData ├── inst └── CITATION ├── man ├── INLAjoint.Rd ├── INLAjoint.ginv.Rd ├── INLAjoint.object.Rd ├── INLAjoint.rw.Rd ├── INLAjoint.rw2.Rd ├── INLAjoint.scopy.define.Rd ├── LongMS.Rd ├── Longsim.Rd ├── SurvMS.Rd ├── Survsim.Rd ├── coef.INLAjoint.Rd ├── family.INLAjoint.Rd ├── fitted.INLAjoint.Rd ├── fixef.INLAjoint.Rd ├── formula.INLAjoint.Rd ├── joint.Rd ├── joint.rerun.Rd ├── joint.run.Rd ├── logLik.INLAjoint.Rd ├── nobs.INLAjoint.Rd ├── plot.INLAjoint.Rd ├── predict.INLAjoint.Rd ├── print.plot.INLAjoint.Rd ├── ranef.INLAjoint.Rd ├── setup_FE_model.Rd ├── setup_RE_model.Rd ├── setup_S_model.Rd └── setup_Y_model.Rd └── vignettes ├── INLAjoint.Rmd ├── INLAjoint.pdf └── INLAjoint.pdf.asis /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenisRustand/INLAjoint/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenisRustand/INLAjoint/HEAD/.gitignore -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenisRustand/INLAjoint/HEAD/CITATION.cff -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenisRustand/INLAjoint/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /INLAjoint.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenisRustand/INLAjoint/HEAD/INLAjoint.Rproj -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenisRustand/INLAjoint/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/INLAjoint.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenisRustand/INLAjoint/HEAD/R/INLAjoint.R -------------------------------------------------------------------------------- /R/INLAjoint.object.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenisRustand/INLAjoint/HEAD/R/INLAjoint.object.R -------------------------------------------------------------------------------- /R/LongMS.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenisRustand/INLAjoint/HEAD/R/LongMS.R -------------------------------------------------------------------------------- /R/Longsim.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenisRustand/INLAjoint/HEAD/R/Longsim.R -------------------------------------------------------------------------------- /R/SurvMS.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenisRustand/INLAjoint/HEAD/R/SurvMS.R -------------------------------------------------------------------------------- /R/Survsim.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenisRustand/INLAjoint/HEAD/R/Survsim.R -------------------------------------------------------------------------------- /R/coef.INLAjoint.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenisRustand/INLAjoint/HEAD/R/coef.INLAjoint.R -------------------------------------------------------------------------------- /R/family.INLAjoint.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenisRustand/INLAjoint/HEAD/R/family.INLAjoint.R -------------------------------------------------------------------------------- /R/fitted.INLAjoint.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenisRustand/INLAjoint/HEAD/R/fitted.INLAjoint.R -------------------------------------------------------------------------------- /R/fixef.INLAjoint.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenisRustand/INLAjoint/HEAD/R/fixef.INLAjoint.R -------------------------------------------------------------------------------- /R/formula.INLAjoint.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenisRustand/INLAjoint/HEAD/R/formula.INLAjoint.R -------------------------------------------------------------------------------- /R/joint.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenisRustand/INLAjoint/HEAD/R/joint.R -------------------------------------------------------------------------------- /R/joint.rerun.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenisRustand/INLAjoint/HEAD/R/joint.rerun.R -------------------------------------------------------------------------------- /R/joint.run.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenisRustand/INLAjoint/HEAD/R/joint.run.R -------------------------------------------------------------------------------- /R/logLik.INLAjoint.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenisRustand/INLAjoint/HEAD/R/logLik.INLAjoint.R -------------------------------------------------------------------------------- /R/nobs.INLAjoint.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenisRustand/INLAjoint/HEAD/R/nobs.INLAjoint.R -------------------------------------------------------------------------------- /R/plot.INLAjoint.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenisRustand/INLAjoint/HEAD/R/plot.INLAjoint.R -------------------------------------------------------------------------------- /R/predict.INLAjoint.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenisRustand/INLAjoint/HEAD/R/predict.INLAjoint.R -------------------------------------------------------------------------------- /R/print.INLAjoint.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenisRustand/INLAjoint/HEAD/R/print.INLAjoint.R -------------------------------------------------------------------------------- /R/print.INLAjoint.R.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenisRustand/INLAjoint/HEAD/R/print.INLAjoint.R.bak -------------------------------------------------------------------------------- /R/print.plot.INLAjoint.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenisRustand/INLAjoint/HEAD/R/print.plot.INLAjoint.R -------------------------------------------------------------------------------- /R/print.summary.INLAjoint.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenisRustand/INLAjoint/HEAD/R/print.summary.INLAjoint.R -------------------------------------------------------------------------------- /R/ranef.INLAjoint.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenisRustand/INLAjoint/HEAD/R/ranef.INLAjoint.R -------------------------------------------------------------------------------- /R/setupFonctions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenisRustand/INLAjoint/HEAD/R/setupFonctions.R -------------------------------------------------------------------------------- /R/summary.INLAjoint.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenisRustand/INLAjoint/HEAD/R/summary.INLAjoint.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenisRustand/INLAjoint/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenisRustand/INLAjoint/HEAD/README.md -------------------------------------------------------------------------------- /data/LongMS.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenisRustand/INLAjoint/HEAD/data/LongMS.RData -------------------------------------------------------------------------------- /data/Longsim.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenisRustand/INLAjoint/HEAD/data/Longsim.RData -------------------------------------------------------------------------------- /data/SurvMS.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenisRustand/INLAjoint/HEAD/data/SurvMS.RData -------------------------------------------------------------------------------- /data/Survsim.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenisRustand/INLAjoint/HEAD/data/Survsim.RData -------------------------------------------------------------------------------- /inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenisRustand/INLAjoint/HEAD/inst/CITATION -------------------------------------------------------------------------------- /man/INLAjoint.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenisRustand/INLAjoint/HEAD/man/INLAjoint.Rd -------------------------------------------------------------------------------- /man/INLAjoint.ginv.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenisRustand/INLAjoint/HEAD/man/INLAjoint.ginv.Rd -------------------------------------------------------------------------------- /man/INLAjoint.object.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenisRustand/INLAjoint/HEAD/man/INLAjoint.object.Rd -------------------------------------------------------------------------------- /man/INLAjoint.rw.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenisRustand/INLAjoint/HEAD/man/INLAjoint.rw.Rd -------------------------------------------------------------------------------- /man/INLAjoint.rw2.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenisRustand/INLAjoint/HEAD/man/INLAjoint.rw2.Rd -------------------------------------------------------------------------------- /man/INLAjoint.scopy.define.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenisRustand/INLAjoint/HEAD/man/INLAjoint.scopy.define.Rd -------------------------------------------------------------------------------- /man/LongMS.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenisRustand/INLAjoint/HEAD/man/LongMS.Rd -------------------------------------------------------------------------------- /man/Longsim.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenisRustand/INLAjoint/HEAD/man/Longsim.Rd -------------------------------------------------------------------------------- /man/SurvMS.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenisRustand/INLAjoint/HEAD/man/SurvMS.Rd -------------------------------------------------------------------------------- /man/Survsim.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenisRustand/INLAjoint/HEAD/man/Survsim.Rd -------------------------------------------------------------------------------- /man/coef.INLAjoint.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenisRustand/INLAjoint/HEAD/man/coef.INLAjoint.Rd -------------------------------------------------------------------------------- /man/family.INLAjoint.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenisRustand/INLAjoint/HEAD/man/family.INLAjoint.Rd -------------------------------------------------------------------------------- /man/fitted.INLAjoint.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenisRustand/INLAjoint/HEAD/man/fitted.INLAjoint.Rd -------------------------------------------------------------------------------- /man/fixef.INLAjoint.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenisRustand/INLAjoint/HEAD/man/fixef.INLAjoint.Rd -------------------------------------------------------------------------------- /man/formula.INLAjoint.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenisRustand/INLAjoint/HEAD/man/formula.INLAjoint.Rd -------------------------------------------------------------------------------- /man/joint.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenisRustand/INLAjoint/HEAD/man/joint.Rd -------------------------------------------------------------------------------- /man/joint.rerun.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenisRustand/INLAjoint/HEAD/man/joint.rerun.Rd -------------------------------------------------------------------------------- /man/joint.run.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenisRustand/INLAjoint/HEAD/man/joint.run.Rd -------------------------------------------------------------------------------- /man/logLik.INLAjoint.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenisRustand/INLAjoint/HEAD/man/logLik.INLAjoint.Rd -------------------------------------------------------------------------------- /man/nobs.INLAjoint.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenisRustand/INLAjoint/HEAD/man/nobs.INLAjoint.Rd -------------------------------------------------------------------------------- /man/plot.INLAjoint.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenisRustand/INLAjoint/HEAD/man/plot.INLAjoint.Rd -------------------------------------------------------------------------------- /man/predict.INLAjoint.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenisRustand/INLAjoint/HEAD/man/predict.INLAjoint.Rd -------------------------------------------------------------------------------- /man/print.plot.INLAjoint.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenisRustand/INLAjoint/HEAD/man/print.plot.INLAjoint.Rd -------------------------------------------------------------------------------- /man/ranef.INLAjoint.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenisRustand/INLAjoint/HEAD/man/ranef.INLAjoint.Rd -------------------------------------------------------------------------------- /man/setup_FE_model.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenisRustand/INLAjoint/HEAD/man/setup_FE_model.Rd -------------------------------------------------------------------------------- /man/setup_RE_model.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenisRustand/INLAjoint/HEAD/man/setup_RE_model.Rd -------------------------------------------------------------------------------- /man/setup_S_model.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenisRustand/INLAjoint/HEAD/man/setup_S_model.Rd -------------------------------------------------------------------------------- /man/setup_Y_model.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenisRustand/INLAjoint/HEAD/man/setup_Y_model.Rd -------------------------------------------------------------------------------- /vignettes/INLAjoint.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenisRustand/INLAjoint/HEAD/vignettes/INLAjoint.Rmd -------------------------------------------------------------------------------- /vignettes/INLAjoint.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenisRustand/INLAjoint/HEAD/vignettes/INLAjoint.pdf -------------------------------------------------------------------------------- /vignettes/INLAjoint.pdf.asis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenisRustand/INLAjoint/HEAD/vignettes/INLAjoint.pdf.asis --------------------------------------------------------------------------------