summary.powRICLPM {powRICLPM} | R Documentation |
Summarize setup and results from powRICLPM
object
Description
S3 method for class powRICLPM
. summary.powRICLPM
summarizes and outputs the setup and results of the powRICLPM
analysis. Depending on the arguments that are set, summary.powRICLPM
provides a different summary (see "Details").
Usage
## S3 method for class 'powRICLPM'
summary(
object,
...,
parameter = NULL,
sample_size = NULL,
time_points = NULL,
ICC = NULL
)
Arguments
object |
A |
... |
(don't use) Additional arguments not affecting the summary produced. |
parameter |
Character string of length denoting the parameter to visualize the results for. |
sample_size |
(optional) An |
time_points |
(optional) An |
ICC |
(optional) A |
Details
summary.powRICLPM
provides a different summary of the powRICLPM
object, depending on the additional arguments that are set:
When
sample_size = ...
,time_points = ...
, andICC = ...
are set: Estimation information and results for all parameters of the experimental condition denoted bysample_size
,time_points
, andICC
.When
parameter = "..."
is set: Estimation information and results for a specific parameter across all experimental conditions.No additional arguments: Characteristics of the different experimental conditions are summarized, as well as session info (information that applies to each conditions, such the number of replications, etc.).
Value
No return value, called for side effects.
Examples
# Get setup of powRICLPM analysis and convergence issues
summary(out_preliminary)
# Performance measures for "wB2~wA1" parameter across experimental conditions
summary(out_preliminary, parameter = "wB2~wA1")
# Performance measures for all parameters, for specific experimental condition
summary(out_preliminary, sample_size = 600, time_points = 4, ICC = .4)