powered by
It creates a thematic map based on co-word network analysis and clustering. The methodology is inspired by the proposal of Cobo et al. (2011).
thematicMap(M, field = "ID", n = 250, minfreq = 5, stemming = FALSE, size = 0.5, repel = TRUE)
is a bibliographic dataframe.
is the textual attribute used to build up the thematic map. It can be field = c("ID","DE", "TI", "AB"). biblioNetwork or cocMatrix.
field = c("ID","DE", "TI", "AB")
biblioNetwork
cocMatrix
is an integer. It indicates the number of terms to include in the analysis.
is a integer. It indicates the minimun frequency of a cluster.
is logical. If it is TRUE the word (from titles or abtracts) will be stemmed (using the Porter's algorithm).
is numerical. It indicates del size of the cluster circles and is a numebr in the range (0.01,1).
is logical. If it is TRUE ggplot uses geom_label_repel instead of geom_label.
a list containing:
map
clusters
thematicMap starts from a co-occurrence keyword network to plot in a two-dimesional map the typological themes of a domain.
thematicMap
biblioNetwork function to compute a bibliographic network.
cocMatrix to compute a bibliographic bipartite network.
networkPlot to plot a bibliographic network.
networkPlot
# NOT RUN { data(scientometrics) res <- thematicMap(scientometrics, field = "ID", n = 250, minfreq = 5, size = 0.5, repel = TRUE) plot(res$map) # }
Run the code above in your browser using DataLab