get_net_cooccur_gexf {rdracor} | R Documentation |
Retrieve co-occurrence network for a play in 'GEXF'
Description
get_net_cooccur_gexf()
requests a play co-occurrence network in 'GEXF'
(Graph Exchange XML Format), given play and corpus names. 'GEXF' is a format
used in 'Gephi' — an open source software for network analysis and
visualization.
Usage
get_net_cooccur_gexf(play = NULL, corpus = NULL, parse = TRUE, ...)
get_net_relations_gexf(play = NULL, corpus = NULL, ...)
Arguments
play |
Character, name of a play (you can find all play names in
|
corpus |
Character, name of the corpus (you can find all corpus names in
|
parse |
Logical, if |
... |
Additional arguments passed to |
Value
'GEXF' data.
Functions
-
get_net_relations_gexf()
: Retrieves kinship and other relationship data, following the encoding scheme proposed in (Wiedmer et al. 2020).
References
Wiedmer N, Pagel J, Reiter N (2020). “Romeo, Freund des Mercutio: Semi-Automatische Extraktion von Beziehungen zwischen dramatischen Figuren.” In Konferenz Digital Humanities im deutschsprachigen Raum. doi:10.5281/zenodo.4621778.
See Also
get_net_cooccur_igraph
get_net_cooccur_metrics
get_net_cooccur_graphml
get_net_cooccur_edges
get_net_relations_igraph
Examples
get_net_cooccur_gexf(play = "lessing-emilia-galotti", corpus = "ger")
# If you want 'GEXF' without parsing by xml2::read_xml():
get_net_cooccur_gexf(
play = "lessing-emilia-galotti",
corpus = "ger",
parse = FALSE
)