
Performs preliminary analysis of data in a Local Bibliometric Storage by creating some basic descriptive statistics (numeric and graphical). Dataset may be restricted to any given document types or a single survey.
lbsDescriptiveStats(
conn,
documentTypes = NULL,
surveyDescription = NULL,
which = (1L:7L),
main = "",
ask = (prod(par("mfcol")) < length(which) && dev.interactive()),
...,
cex.caption = 1
)
connection object, see lbsConnect
.
character vector or NULL
; specifies document types to restrict to;
a combination of Article
, Article in Press
, Book
, Conference Paper
,
Editorial
, Erratum
, Letter
, Note
, Report
, Review
,
Short Survey
. NULL
means no restriction.
single character string or NULL
; survey to restrict to, or NULL
for no restriction.
numeric vector with elements in 1,...,7, or NULL
; plot types to be displayed.
title for each plot.
logical; if TRUE
, the user is asked to press return before each plot.
additional graphical parameters, see plot.default
.
controls size of default captions.
Plot types (accessed with which
):
1
--- "Document types",
2
--- "Publication years",
3
--- "Citations per document",
4
--- "Citations of cited documents per type",
5
--- "Number of pages per document type",
6
--- "Categories of documents" (based od source categories),
7
--- "Documents per author".
Note that this user interaction scheme is similar in behavior
to the plot.lm
function.
plot.default
,
lbsConnect
/internal/
/internal/
# NOT RUN {
conn <- lbsConnect("Bibliometrics.db");
## ...
lbsDescriptiveStats(conn, surveyDescription="Scientometrics",
documentTypes=c("Article", "Note", "Report", "Review", "Short Survey"));
## ...
lbsDisconnect(conn);
# }
# NOT RUN {
# }
Run the code above in your browser using DataLab