careless: Careless Summary

Description Usage Arguments Value See Also Examples

Description

careless is a convenience function that calls the various methods within the package and, by default, appends them onto the original dataframe. This function is designed to work with dataframe or matrix objects.

Usage

1
2
careless(x, append = TRUE, na.rm = FALSE, antonyms = FALSE,
  synonyms = FALSE, cutoff = 0.6)

Arguments

x

An R dataframe or matrix object.

append

A boolean scalar. If append = TRUE the original dataframe is returned with the careless responding metrics bound to it. If append = FALSE, only the careless responding metrics are returned.

na.rm

A logical scalar. This is passed to longString() and withinsd().

cutoff

A numeric scalar. If psySyn or psyAnt are TRUE, cutoff is the absolute value at which correlations should be declared "antonyms" and "synonyms". Default is set to r +/- .60.

psySyn

A boolean scalar. Should Psychological Synonyms be evaluated?

psyAnt

A boolean scaler. Should Psychological Antonyms be evaluated?

Value

A dataframe object.

See Also

longString,malDist

Examples

1
2
3
4
5
6
7
## Not run: 
set.seed(77)
dat <- matrix(sample(1:3, 200, replace = TRUE),20,10)
stats <- careless(dat, append = FALSE)
dat <- careless(dat, append = TRUE)

## End(Not run)

mattsigal/careless documentation built on May 21, 2019, 1:25 p.m.