Description Usage Arguments Details Value Author(s) See Also Examples
Read data from Web of Science 'WoS' and Scopus. It's possible read one o more files and set the column names.
1 2 |
database |
|
extension |
|
directory |
the path to find the files, if the files are in a different directory. |
col.names |
logical, if TRUE return optional name of column to the data. |
col.names.style |
|
Write the details about the functions here! Can be in more that one line.
a data frame with the data imported.
Roney Fraga Souza, Winicius Sabino
1 2 3 4 5 6 7 8 9 10 11 12 | ## Not run: Import data from Web of Science (WoS)
p <- read_bib(
database='WoS',
extension='txt',
directory='/Users/roney/data/WoS tab-delimited Windows',
col.names=TRUE,
col.names.style='good4read'
)
names(p);dim(p)
## Not run: or for a scopus csv data
p <- read_bib( database='Scopus', extension='csv', col.names=TRUE, col.names.style='good4read')
names(p);dim(p)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.