lbsGetInfoDocuments(conn, idDocuments)
lbsConnect
.IdDocument
in the table Biblio_Documents
).docinfo
objects, that is lists with the following components:
IdDocument
--- numeric; document identifier in the tableBiblio_Documents
,Authors
--- list ofauthorinfo
objects (see e.g.as.character.authorinfo
).Title
--- title of the document,BibEntry
--- bibliographic entry,UniqueId
--- unique character identifier,Pages
--- number of pages,Citations
--- number of citations,Year
--- publication year,Type
--- document type, e.g.Article
orConference Paper
.print.docinfo
, lbsSearchDocuments
,
lbsGetInfoAuthors
,
as.character.authorinfo
, as.character.docinfo
conn <- dbBiblioConnect("Bibliometrics.db");
## ...
id <- lbsSearchDocuments(conn,
idAuthors=lbsSearchAuthors(conn, "Knuth%"));
lbsGetInfoDocuments(conn, id);
## ...
Run the code above in your browser using DataLab