View source: R/pmx-plots-quantile.R
pmx_qq_plot | R Documentation |
Quantile-quantile plots
Quantile-quantile plot of IWRES
Quantile-quantile plot of eta variables
Quantile-quantile plot of NPDE
Quantile-quantile plot of NPD
Quantile-quantile plot of CWRES
pmx_qq_plot(
dname,
point,
is.reference_line,
reference_line,
is.shrink,
shrink,
is.hline,
hline,
is.vline,
vline,
filter,
strat.facet,
facets,
strat.color,
trans,
pmxgpar,
labels,
axis.title,
axis.text,
ranges,
is.smooth,
smooth,
is.band,
band,
is.draft,
draft,
is.identity_line,
identity_line,
scale_x_log10,
scale_y_log10,
color.scales,
...
)
pmx_plot_iwres_qq(ctr, ...)
pmx_plot_eta_qq(ctr, ...)
pmx_plot_npde_qq(ctr, ...)
pmx_plot_npd_qq(ctr, ...)
pmx_plot_cwres_qq(ctr, ...)
dname |
name of dataset to be used |
point |
|
is.reference_line |
|
reference_line |
|
is.shrink |
|
shrink |
|
is.hline |
|
hline |
|
is.vline |
|
vline |
pmx_update parameters |
filter |
|
strat.facet |
|
facets |
|
strat.color |
|
trans |
|
pmxgpar |
an object of class pmx_gpar |
labels |
|
axis.title |
|
axis.text |
|
ranges |
|
is.smooth |
|
smooth |
|
is.band |
|
band |
|
is.draft |
|
draft |
|
is.identity_line |
|
identity_line |
|
scale_x_log10 |
|
scale_y_log10 |
|
color.scales |
|
... |
others graphics parameters passed :
pmx_qq parameters |
ctr |
pmx controller |
ggplot2 object
# *************** basic use ***************** ------
ctr <- theophylline()
ctr %>% pmx_plot_eta_qq
ctr %>% pmx_plot_npde_qq
ctr %>% pmx_plot_iwres_qq
# update graphical parameter ----------------------
## add reference line
ctr %>% pmx_plot_npde_qq(reference_line=list(color="blue"))
## remove reference line
ctr %>% pmx_plot_eta_qq(reference_line=NULL)
# stratification ----------------------------------
## categorical stratification color parameter
ctr %>% pmx_plot_iwres_qq(strat.facet=~STUD,strat.color="SEX")
## categorical stratification facetting
ctr %>% pmx_plot_eta_qq(strat.facet = ~SEX)
## do not use symmetric axis
ctr %>% pmx_plot_npde_qq(xmax=FALSE,reference_line=list())
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.