Learn R Programming

cowbell (version 0.1.0)

summary.cowbell: Generates the core information of the cowbell analysis.

Description

Generates a list that contains relevant information of the cowbell analysis. concept contains the formula and the minimal and maximal values. baseDefinition contains the information for the cowbell. This is the minimal and the maximal value the cowbell can reach and the position of the breaking point. baseDefinitionReduced only contains the minimal and the maximal value, the breakpoint is not included in that model. functionString is a string version of the R function that generates the cowbell. functionStringReduced is the string version without the breaking point. fstatistic contains the fstatistic information of the cowbell model in contrast to the constant function. fstatisticBreakpoint describes the F-statistics of the full cowbell model against the version without break point.

Usage

# S3 method for cowbell
summary(object, ...)

Arguments

object
The resulting object of generateCowbell.
...
Just for compatibility purposes.

Value

List with the mentioned values.

Details

Implementation of the summary generic.

Examples

Run this code
# Run a simplified anaylsis with 10 iterations only (to save time.)
concept<-generateCowbellConcept(Fun ~ Fluency * Absorption, 1, 9, 1, 7, 1, 7)
data(allFun)
test<-generateCowbell(concept, allFun, 10)
summary(test)$functionString

Run the code above in your browser using DataLab