q.cor.print: Print q.cor

Description Usage Arguments Details Author(s) See Also Examples

Description

This function is now deprecated. Please use print instead. Prints the results of a q.cor object in a more interpretable fashion. Also includes a convenient export option.

Usage

1
q.cor.print(obj, var.content, initial, rnd = 2, EXPORT = FALSE, short = FALSE)

Arguments

obj

An object returned by the q.cor() function.

var.content

A vector containing the content of the items or variables used as the "set" in a q.cor analysis.

initial

A character element indicating the initial letters for the item codes or names in set.

rnd

A numeric element specifying the number of places to round each correlation coefficient.

EXPORT

A file location to export the print results. If FALSE (default) no exportation is done.

short

A logical indicating whether long output (default) or short output is to be returned.

Details

This function serves as a compliment to the q.cor() function by summarizing the results of a q.cor object. This function easily adds the content of the items to the correlation table, sorts the correlation table, and allows the user to limit the table to only those items that are statistically significant at the p < .10 for the combined or .05 level for each gender by setting the short option = TRUE. In addition, the export option allows the user to output the results (either long or short) into a .csv file.

Author(s)

Ryne A. Sherman

See Also

q.cor

Examples

1
2
3
4
5
6
7
data(rbqv3.items)
data(RSPdata)
data(v2rbq)
names(v2rbq)
q.obj <- q.cor(RSPdata$sEXT, v2rbq, sex = RSPdata$ssex, fem = 1, male = 2, sims = 1000)
	#It might be necessary to adjust size of the width of your console to make this content fit.
q.cor.print(q.obj, rbqv3.items, initial = "RBQ", short = TRUE, EXPORT = FALSE)

multicon documentation built on May 2, 2019, 3:18 a.m.