It is an internal function used by convert2df
to convert a Dimensions CSV(bibliomentric mapping)/Excel file and create a data frame from it, with cases corresponding to articles and variables to Field Tag in the original file.
dimensions2df(file, format = "csv")
is a character vector containing Dimensions CSV/Excel file names.
is a character indicating the format of the Dimensions export files. format
can be "csv"
or "excel"
. Default is format = "csv"
.
a data frame with cases corresponding to articles and variables to Field Tag in the original SCOPUS file.
scopus2df
for converting SCOPUS Export file (in bibtex format)
isibib2df
for converting ISI Export file (in bibtex format)
isi2df
for converting ISI Export file (in plain text format)
pubmed2df
for converting an object of the class pubmed (RISmed package)
Other converting functions: bib2df
,
cochrane2df
, convert2df
,
isi2df
, isibib2df
,
pubmed2df
, scopus2df
# NOT RUN {
## Dimensions CSV (for bibliomentric mapping) file format example
# file <- c("filename1.csv", "filename2.csv")
# M <- dimensions2df(file, format = "csv")
## Dimensions Excel file format example
# file <- c("filename1.xlsx, "filename2.xlsx")
# M <- dimensions2df(file, format = "xlsx")
# }
Run the code above in your browser using DataLab