cosine_distance: cosine distance of two character strings (each string...

Description Usage Arguments Value Examples

View source: R/utils.R

Description

cosine distance of two character strings (each string consists of more than one words)

Usage

1
cosine_distance(sentence1, sentence2, split_separator = " ")

Arguments

sentence1

a character string consisting of multiple words

sentence2

a character string consisting of multiple words

split_separator

a character string specifying the delimiter(s) to split the sentence

Value

a float number

Examples

1
2
3
4
5
6
7
library(textTinyR)

sentence1 = 'this is one sentence'

sentence2 = 'this is a similar sentence'

cds = cosine_distance(sentence1, sentence2)

textTinyR documentation built on Oct. 26, 2021, 9:06 a.m.