tableANOVA {voiceR}R Documentation

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
)

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.

Value

HTML table showing the ANOVA results in APA formatting style.

Examples

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


[Package voiceR version 0.1.0 Index]