Learn R Programming

nonmemica (version 0.7.4)

metaplot.character: Metaplot Character

Description

Plots character by treating as model name. A dataset is constructed by combining the meta version of the model input with a meta version of the model output and calling metaplot with the result.

Usage

# S3 method for character
metaplot(x, ..., groups, meta = match.fun("meta")(x),
  simplify = TRUE, sort = TRUE, subset)

Arguments

x

object

...

unquoted names of variables to plot, or other named arguments (passed)

groups

columns by which to group the dataset, passed to fold()

meta

pre-folded metadata; meta(x) by default

simplify

whether to simplify the result, passed to fold()

sort

whether to sort the result, passed to fold()

subset

a condition for filtering data, passed to fold()

See Also

fold

Examples

Run this code
# NOT RUN {
library(magrittr)
library(metaplot)
options(project = system.file('project/model',package='nonmemica'))
1001 %>% metaplot(
 CWRESI, TAD, SEX, 
 groups = c('ID','TIME'), 
 subset = 'MDV == 0',
 yref=0, 
 alpha = 0.1, 
 ysmooth = TRUE
)
# }

Run the code above in your browser using DataLab