| lbsSearchAuthors {CITAN} | R Documentation | 
Find authors that satisfy given criteria
Description
Finds authors by name.
Usage
lbsSearchAuthors(conn, names.like = NULL, group = NULL)
Arguments
conn | 
 connection object, see   | 
names.like | 
 character vector of SQL-LIKE patterns to match authors' names.  | 
group | 
 character vector of author group identifiers.  | 
Details
names.like is a set of search patterns in an SQL LIKE format,
i.e. an underscore _ matches a single character and a percent sign
% matches any set of characters. The search is case-insensitive.
Value
Integer vector of authors' identifiers which match at least one of given SQL-LIKE patterns.
See Also
lbsGetInfoAuthors,
lbsSearchDocuments,
lbsGetInfoDocuments
Examples
## Not run: 
conn <- dbBiblioConnect("Bibliometrics.db");
## ...
id <- lbsSearchAuthors(conn, c("Smith\
lbsGetInfoAuthors(conn, id);
## ...
## End(Not run)
[Package CITAN version 2022.1.1 Index]