Learn R Programming

voiceR (version 0.1.0)

tableANOVA: Create a Table of ANOVA results

Description

Automatically generates HTML table with results for one-way or two-way ANOVAs.

Usage

tableANOVA(
  audioData,
  by = c(),
  measure = "duration",
  nameMeasure = c(),
  figureNumber = 1
)

Value

HTML table showing the ANOVA results in APA formatting style.

Arguments

audioData

A data.frame generated by the autoExtract() function.

by

A character vector indicating the name of the factor(s).

measure

Name of the dependent variable.

nameMeasure

Optional relabelling of dependent variable for the output table. If no value is provided, the original variable name is used.

figureNumber

An integer indicating the figure number to create the title for the table. Default corresponds to 1.

Examples

Run this code
tableANOVA(testAudioData, by = c("Condition", "Dimension"), measure = "duration")

Run the code above in your browser using DataLab