funnel_web_plot {animbook}R Documentation

Turn the data into a facetted plot

Description

This function takes in the data which has been prepared by either anim_prep() or anim_prep_cat() and return the ggplot object. The user can still modify the plot the same as normal using the ggplot2 function.

Usage

funnel_web_plot(data, group_palette = NULL, ...)

Arguments

data

The animbook object returned from the prep function.

group_palette

The vector of the palette used by the function to supply the color to each group.

...

Additional arguments for customization. See details for more information.

Details

This function takes prepared data and generates a ggplot object. The funnel web plot is the plot that shows the line facetted plot showing the pattern between time period. The line jitter can be controlled using additional arguments such as height and width to control the appearance. For the shading area, the alpha argument can be used.

Value

Return a ggplot object.

Examples

animbook <- anim_prep(data = osiris, id = ID, values = sales, time = year, group = japan)

funnel_web_plot(animbook)


[Package animbook version 1.0.0 Index]