multicos: Vector x Vector Comparison

View source: R/multicos.r

multicosR Documentation

Vector x Vector Comparison

Description

Computes a cosine matrix from given word vectors

Usage

multicos(x,y=x,tvectors=tvectors)

Arguments

x

a character vector or numeric of length=ncol(tvectors) (vector with same dimensionality as LSA space)

y

a character vector; y = x by default

tvectors

the semantic space in which the computation is to be done (a numeric matrix where every row is a word vector)

Details

Submit a character vector consisting of n words to get a n x n cosine matrix of all their pairwise cosines.

Alternatively, submit two different character vectors to get their pairwise cosines. Single words are also possible arguments.

Also allows for computation of cosines between a given numeric vector with the same dimensionality as the LSA space and a vector consisting of n words.

Value

A matrix containing the pairwise cosines of x and y

Author(s)

Fritz Guenther

References

Landauer, T.K., & Dumais, S.T. (1997). A solution to Plato's problem: The Latent Semantic Analysis theory of acquisition, induction and representation of knowledge. Psychological Review, 104, 211-240.

Dennis, S. (2007). How to use the LSA Web Site. In T. K. Landauer, D. S. McNamara, S. Dennis, & W. Kintsch (Eds.), Handbook of Latent Semantic Analysis (pp. 35-56). Mahwah, NJ: Erlbaum.

http://wordvec.colorado.edu/

See Also

cosine, Cosine, costring, multicostring

Examples

data(wonderland)
multicos("mouse rabbit cat","king queen",
          tvectors=wonderland)

LSAfun documentation built on Nov. 18, 2023, 1:10 a.m.