The plotting-capability of the see package mainly evolve around
two functions: data_plot()
, which prepares the data from various
objects to bring it into shape for plotting, and plot()
,
which takes the data from data_plot()
and creates the ggplot-object.
Although ggplot-objects are easily modifiable, it is sometimes necessary to
build up a plot from scratch, using the data that should be plotted. This
is where how_to_plot()
can help. It simply extracts and polishes the
code from the various plot()
methods and prints it to the console.
This code can be used as "basis" for building own ggplots.