Last chance! 50% off unlimited learning
Sale ends in
Eta distribution plots
Eta Distribution boxplot
Eta Distribution histogram plot
eta_distribution_plot(
jitter,
type,
dname,
is.shrink,
shrink,
is.jitter,
histogram,
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_eta_box(ctr, ...)
pmx_plot_eta_hist(ctr, ...)
ggplot2 object
list set jitter parameter
box for boxplot or histogram
name of dataset to be used
logical
if TRUE add shrinkage layer
list
parameters to control shrinkage, must contain "fun"
logical
if TRUE add jitter operator for points
list
histogram graphical parameters
pmx_update parameters
expression
filter which will be applied to plotting data.
formula
optional stratification parameter by facetting.
This split plot by strats(each strat in a facet)
list
facet_wrap parameters.
character
optional stratification parameter by grouping.
This will split the plot by group (color) of strat.
character
define the transformation to apply on x or y or both variables
a object of class pmx_gpar possibly the output of the
pmx_gpar: Shared basic graphics parameters
list
list containing plot and/or axis labels: title, subtitle, x , y
list
containing element_text attributes to customize
the axis title. (similar to ggplot2 axis.title theme)
list
containing element_text attributes to customize
the axis text (similar to ggplot2 axis.text theme)
list
limits of x/y ranges
logical
if set to TRUE add smooth layer
list
geom_smooth graphical/smoothing fun parameters
logical
if TRUE add horizontal band
list
horizontal band parameters. geom_hline graphical parameters.
logical
if TRUE add draft layer
list
draft layer parameters. geom_text graphical parameters.
logical
if TRUE add an identity line
list
geom_abline graphical parameters.
logical
if TRUE use log10 scale for x axis.
logical
if TRUE use log10 scale for y axis.
list
define scales parameter in case of strat.color pmx_settings
others graphics parameters passed :
pmx_gpar
internal function to customize shared graphical parameters
distrib
generic object for distribution plots (histogram/boxplot).
pmx_update
function.
distrib parameters
pmx controller
# \donttest{
# *************** basic use ***************** ------
ctr <- theophylline()
## boxplot variation
p <- ctr %>% pmx_plot_eta_box()
## histogram variation
p <- ctr %>% pmx_plot_eta_hist()
# update graphical parameter ----------------------
## add jitter
ctr %>%
pmx_plot_eta_hist(is.jitter = TRUE, jitter = list(alpha = 0.4, color = "red"))
## remove shrinkage
ctr %>%
pmx_plot_eta_hist(is.shrink = FALSE)
## update histogram graphical parameters
ctr %>%
pmx_plot_eta_hist(
histogram = list(
color = NA,
position = "fill",
binwidth = 1 / 100
)
)
# stratification ----------------------------------
## categorical stratification color parameter
ctr %>% pmx_plot_eta_hist(is.jitter = TRUE, strat.facet = ~STUD, strat.color = ~SEX)
## categorical stratification facetting
ctr %>% pmx_plot_eta_hist(strat.facet = ~SEX)
## using formula categorical stratification facetting
ctr %>% pmx_plot_eta_hist(
strat.facet = STUD ~ SEX,
shrink = pmx_shrink(hjust = 0.5)
)
# subsetting --------------------------------------
## select a set of random effect
ctr %>% pmx_plot_eta_hist(filter = EFFECT %in% c("ka", "Cl"))
## filter and stratify by facets
ctr %>% pmx_plot_eta_hist(
filter = EFFECT %in% c("ka", "Cl"), strat.facet = ~SEX
)
ctr %>% pmx_plot_eta_hist(
filter = EFFECT %in% c("ka", "Cl"), strat.facet = ~SEX
)
# }
Run the code above in your browser using DataLab