twoway.formula: Formula method for twoway analysis using a dataset in long...

Description Usage Arguments Author(s) References Examples

View source: R/twoway.formula.R

Description

The formula method reshapes the data set from long to wide format and calls the default method.

Usage

1
2
## S3 method for class 'formula'
twoway(formula, data, subset, na.action, ...)

Arguments

formula

A formula of the form response ~ rowvar + colvar, where response is numeric

data

The name of the data set, containing a row vector, column factor and a numeric response

subset

An expression to subset the data (unused)

na.action

What to do with NAs? (unused)

...

other arguments, passed down

Author(s)

Michael Friendly and Richard Heiberger

References

the conversion of long to wide in a formula method was suggested on https://stackoverflow.com/questions/50469320/how-to-write-a-formula-method-that-converts-long-to-wide

Examples

1
2
longRT <- to_long(taskRT)
twoway(RT ~ Task + Topic, data=longRT)

friendly/twoway documentation built on Aug. 21, 2020, 7:03 p.m.