CITAN (version 2014.12-1)

lbsGetInfoDocuments: Retrieve document information

Description

Retrieves information on given documents.

Usage

lbsGetInfoDocuments(conn, idDocuments)

Arguments

conn
a connection object as produced by lbsConnect.
idDocuments
a numeric or integer vector with document identifiers (see column IdDocument in the table Biblio_Documents).

Value

  • A list of docinfo objects, that is lists with the following components:
    • IdDocument--- numeric; document identifier in the tableBiblio_Documents,
    • Authors--- list ofauthorinfoobjects (see e.g.as.character.authorinfo).
    • Title--- title of the document,
    • BibEntry--- bibliographic entry,
    • AlternativeId--- unique character identifier,
    • Pages--- number of pages,
    • Citations--- number of citations,
    • Year--- publication year,
    • Type--- document type, e.g.ArticleorConference Paper.

See Also

print.docinfo, lbsSearchDocuments, lbsGetInfoAuthors, as.character.authorinfo, as.character.docinfo

Examples

Run this code
conn <- dbBiblioConnect("Bibliometrics.db");
## ...
id <- lbsSearchDocuments(conn,
	idAuthors=lbsSearchAuthors(conn, "Knuth\%"));
lbsGetInfoDocuments(conn, id);
## ...

Run the code above in your browser using DataCamp Workspace