The hardware and bandwidth for this mirror is donated by METANET, the Webhosting and Full Service-Cloud Provider.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]metanet.ch.

Minimal Example

library(ggflowchart)

Create a tibble (or data frame) with each row representing an edge.

data <- tibble::tibble(from = c("A", "A", "A", "B", "C", "F"),
                       to = c("B", "C", "D", "E", "F", "G"))

Create the flowchart using the ggflowchart() function.

ggflowchart(data)

Change the default styling.

ggflowchart(data,
            colour = "red",
            text_colour = "red",
            arrow_colour = "red",
            family = "serif",
            x_nudge = 0.25)

These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.