plot.dd           package:DescribeDisplay           R Documentation

_D_r_a_w _d_d _p_l_o_t

_D_e_s_c_r_i_p_t_i_o_n:

     Draw a complete describe display.

_U_s_a_g_e:

     plot.dd(x, ..., draw = TRUE, axislocation = c(0.1, 0.1))

_A_r_g_u_m_e_n_t_s:

       x: dd object to plot

     ...: (unused)

    draw: draw plot, or just return grob

axislocation: 

_D_e_t_a_i_l_s:

     If you want to layout multiple dd plots on the same page, you can
     use 'grid.layout'.  If you need even more control, set 'draw =
     FALSE' and then 'grid.draw' the resulting grob yourself.

     This function reads a number of options directly out of the
     descripedisplay datastructure.  See the examples for ways to use
     these.

_V_a_l_u_e:

     frame grob containing all panels, note that this does not contain
     the title or border

_A_u_t_h_o_r(_s):

     Hadley Wickham <h.wickham@gmail.com>

_E_x_a_m_p_l_e_s:

     ash <- dd_load(system.file("examples", "test-ash.r", package="DescribeDisplay"))
     plot(ash)
     ash$plots[[1]]$drawlines <- TRUE

     texture <- dd_load(system.file("examples", "1d-texture.r", package="DescribeDisplay"))
     plot(texture)
     texture$plots[[1]]$yscale <- expand_range(texture$plots[[1]]$yscale, 0.5)
     plot(texture)

