plot_2tcmfit: Plot: Two Tissue Compartment Model

View source: R/kinfitr_2tcm.R

plot_2tcmfitR Documentation

Plot: Two Tissue Compartment Model

Description

Function to visualise the fit of the Two Tissue Compartment Model to data.

Usage

plot_2tcmfit(twotcmout, roiname = NULL)

Arguments

twotcmout

The output object of the 2TCM fitting procedure.

roiname

Optional. The name of the Target Region to see it on the plot.

Value

A ggplot2 object of the plot.

Author(s)

Granville J Matheson, mathesong@gmail.com

Examples


data(pbr28)

t_tac <- pbr28$tacs[[2]]$Times / 60
tac <- pbr28$tacs[[2]]$FC
weights <- pbr28$tacs[[2]]$Weights

input <- blood_interp(
  pbr28$procblood[[2]]$Time / 60, pbr28$procblood[[2]]$Cbl_dispcorr,
  pbr28$procblood[[2]]$Time / 60, pbr28$procblood[[2]]$Cpl_metabcorr,
  t_parentfrac = 1, parentfrac = 1
)

fit <- twotcm(t_tac, tac, input, weights, inpshift = 0.1, vB = 0.05)

plot_2tcmfit(fit)

mathesong/kinfitr documentation built on Jan. 15, 2024, 11:07 p.m.