Description Usage Arguments Value See Also Examples
characterize_au calculates several author related metrics from a
scimeetr object. The results are returned in a list of data frame. The
metrics in the table are: title-words frequency, title-words relative
frequency, title-words relevance.
1 | characterize_au(scimeetr_data, lambda = 0.7)
|
scimeetr_data |
An object of class scimeetr. |
lambda |
A number from 0 to 1. 0 for relative frequency 1 for total occurence only |
A list of dataframe. The list length matchs the number of communities that the scimeetr object contains.
characterize_jo for journal characterization,
characterize_ab for abstract-word characterization,
characterize_kw for keyword characterization,
characterize_ti for title characterization,
characterize_un for university characterization,
characterize_co for country characterization
1 2 3 4 5 6 7 8 9 10 | # Example with an object of class scimeetr (see import_wos_files() or
# import_scopus_files()) already in the workspace
author_list <- characterize_au(scimeetr_list)
# Since this example shows how to load WOS from your system we need to run
# the following line to find the path to the exemple file
fpath <- system.file("extdata", package="scimeetr")
fpath <- paste(fpath, "/wos_folder/", sep = "")
# Then we can run the actual example
example_scimeetr_object <- import_wos_files(files_directory = fpath)
characterize_au(example_scimeetr_object)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.