lbsDescriptiveStats {CITAN} | R Documentation |
Perform preliminary analysis of data in a Local Bibliometric Storage
Description
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.
Usage
lbsDescriptiveStats(
conn,
documentTypes = NULL,
surveyDescription = NULL,
which = (1L:7L),
main = "",
ask = (prod(par("mfcol")) < length(which) && dev.interactive()),
...,
cex.caption = 1
)
Arguments
conn |
connection object, see |
documentTypes |
character vector or |
surveyDescription |
single character string or |
which |
numeric vector with elements in 1,...,7, or |
main |
title for each plot. |
ask |
logical; if |
... |
additional graphical parameters, see |
cex.caption |
controls size of default captions. |
Details
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.
See Also
plot.default
,
lbsConnect
/internal/
/internal/
Examples
## Not run:
conn <- lbsConnect("Bibliometrics.db");
## ...
lbsDescriptiveStats(conn, surveyDescription="Scientometrics",
documentTypes=c("Article", "Note", "Report", "Review", "Short Survey"));
## ...
lbsDisconnect(conn);
## End(Not run)