CalmrExperiment-methods | R Documentation |
S4 methods for CalmrExperiment
class.
## S4 method for signature 'CalmrExperiment'
show(object)
## S4 method for signature 'CalmrExperiment'
design(x)
## S4 method for signature 'CalmrExperiment'
trials(object)
## S4 method for signature 'CalmrExperiment'
parameters(x)
## S4 replacement method for signature 'CalmrExperiment'
parameters(x) <- value
## S4 method for signature 'CalmrExperiment'
experiences(x)
## S4 replacement method for signature 'CalmrExperiment'
experiences(x) <- value
## S4 method for signature 'CalmrExperiment'
results(object)
## S4 method for signature 'CalmrExperiment'
raw_results(object)
## S4 method for signature 'CalmrExperiment'
parsed_results(object)
## S4 method for signature 'CalmrExperiment'
length(x)
## S4 method for signature 'CalmrExperiment'
parse(object, outputs = NULL)
## S4 method for signature 'CalmrExperiment'
aggregate(x, outputs = NULL)
## S4 method for signature 'CalmrExperiment'
plot(x, type = NULL, ...)
## S4 method for signature 'CalmrExperiment'
graph(x, ...)
## S4 method for signature 'CalmrExperiment'
timings(x)
## S4 replacement method for signature 'CalmrExperiment'
timings(x) <- value
## S4 method for signature 'CalmrExperiment'
filter(x, trial_types = NULL, phases = NULL, stimuli = NULL)
object , x |
A |
value |
A list of parameters (or list of parameter lists). |
outputs |
A character vector specifying the model outputs to parse. |
type |
A character vector specifying the type(s) of plots to create. Defaults to NULL. See supported_plots. |
... |
Extra arguments passed to |
trial_types |
A character vector with trial types to filter. |
phases |
A character vector with phase names to filter. |
stimuli |
A character vector with stimulus names to filter. |
show()
returns NULL (invisibly).
design()
returns the CalmrDesign
contained in the object.
trials()
returns NULL (invisibly).
parameters()
returns the list of parameters
contained in the object.
parameters()<-
returns the object after updating parameters.
experiences()
returns a list of data.frame
objects
containing model training routines.
experiences()<-
returns the object after updating experiences.
results()
returns a data.table
objects with aggregated results.
raw_results()
returns a list with raw model results.
parsed_results()
returns a list of data.table
objects with parsed results.
length()
returns an integer specifying the total length
of the experiment (groups by iterations).
parse()
returns the object after parsing raw results.
aggregate()
returns the object after aggregating parsed results.
plot()
returns a list of 'ggplot' plot objects.
graph()
returns a list of 'ggplot' plot objects.
timings()
returns the list of timings
contained in the object.
timings()<-
returns the object after updating timings.
filter()
returns the object after filtering
parsed aggregated results
plotting_functions()
,calmr_model_plot()
,calmr_model_graph()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.