Skip to contents

Takes as input data produced by one of the gallicagram, gallicagram_coocur or gallicagram_associated functions or their lexicon counterparts and produces the corresponding base graph.

Usage

gallicagraph(data, color = NULL, labels_color = NA)

Arguments

data

A data frame produced by one of the gallicagram, gallicagram_coocur or gallicagram_associated functions or their lexicon counterparts (or several of such data frames bound by rows).

color

A variable to set colors for the graph

labels_color

A character string. The color in which to print the labels. Set to NA for no label.

Value

A graph describing the evolution of the proportion of (co-)occurrences of one or several keywords in one or several corpora.

Details

This function can also be combined with faceting by adding for instance + facet_wrap(~ keyword) after calling the function.

Examples

  gallicagram("président") |>
    gallicagraph()


  gallicagram_cooccur("président", "ancien") |>
    gallicagraph()


  gallicagram_associated("patate", from = 2020) |>
    gallicagraph()