Learn R Programming

bibliometrix (version 2.1.1)

thematicEvolution: Perform a Thematic Evolution Analysis

Description

It performs a Thematic Evolution Analysis based on co-word network analysis and clustering. The methodology is inspired by the proposal of Cobo et al. (2011).

Usage

thematicEvolution(M, field = "ID", years, n = 250, minFreq = 2,
  size = 0.5, stemming = FALSE, repel = TRUE)

Arguments

M

is a bibliographic data frame obtained by the converting function convert2df.

field

is a character object. It indicates the content field to use. Field can be one of c=("ID","DE","TI","AB"). Default value is field="ID".

years

is a numeric vector of two or more unique cut points.

n

is numerical. It indicates the number of words to use in the network analysis

minFreq

is numerical. It indicates the min frequency of words included in to a cluster.

size

is numerical. It indicates del size of the cluster circles and is a numebr in the range (0.01,1).

stemming

is logical. If it is TRUE the word (from titles or abtracts) will be stemmed (using the Porter's algorithm).

repel

is logical. If it is TRUE ggplot uses geom_label_repel instead of geom_label.

Value

a list containing:

nets The thematic nexus graph for each comparison

Details

thematicEvolution starts from two or more thematic maps created by thematicMap function.

See Also

thematicMap function to create a thematic map based on co-word network analysis and clustering.

cocMatrix to compute a bibliographic bipartite network.

networkPlot to plot a bibliographic network.

Examples

Run this code
# NOT RUN {
data(scientometrics)
years=c(2000)

nexus <- thematicEvolution(scientometrics,field="ID", years=years, n=100,minFreq=2)

# }

Run the code above in your browser using DataLab