hits: matches attribute of a findFn object

View source: R/hits.R

hitsR Documentation

matches attribute of a findFn object

Description

Returns the matches attribute of a findFn object. For the output of findFn, this is the number of matches for the search term. For a findFn object returned by unionFindFn or intersectFindFn, this is a numeric vector if the matches attributes of the arguments to unionFindFn or intersectFindFn.

Usage

matches(x)
hits(x)

Arguments

x

object of class findFn.

Details

nrow(x) attr(x, 'matches')

Value

a list with components nrows and matches

Author(s)

Spencer Graves

See Also

findFn unionFindFn intersectFindFn

Examples

des1 <- try(findFn('differential equations', 1))

if(inherits(des1, 'try-error')){
des1. <- matches(des1)
des. <- list(nrow=nrow(des1), matches=attr(des1, 'matches'))

all.equal(des1., des.)

}

sos documentation built on May 31, 2023, 7:46 p.m.