Visualize and explore stylo data using ggplot2.
Using the remotes package, install stylo2gg with the following command:
remotes::install_github("jmclawson/stylo2gg")
Pipe the output from stylo()
into stylo2gg()
, or save it as an object reused by the stylo2gg()
function:
# pipe it directly
stylo() |> stylo2gg
# or save it as an object to use and re-use later
my_data <- stylo()
stylo2gg(my_data)
For more explanation on use, see the introductory blog post, the function reference pages or the package website.