home *** CD-ROM | disk | FTP | other *** search
-
- _X-_Y _P_l_o_t_t_i_n_g
-
- plot(x, y, xlim=range(x), ylim=range(y), type="p",
- main, xlab, ylab, ...)
-
- _A_r_g_u_m_e_n_t_s:
-
- x,y : the coordinates of points in the plot.
- Alternatively, a single plotting structure
- can be provided.
-
- xlim,ylim : the ranges to be encompased by the x and y
- axes.
-
- type : what type of plot should be drawn. Possible
- types are "p" for points, "l" for lines, "b"
- for both, and "n" for no plotting.
-
- main : an overall title for the plot.
-
- xlab : a title for the x axis.
-
- ylab : a title for the y axis.
-
- ... : graphical parameters can be given as argu-
- ments to plot.
-
- _D_e_s_c_r_i_p_t_i_o_n:
-
- A longer description will go here eventually.
-
- _E_x_a_m_p_l_e_s:
-
- plot(cars)
- lines(lowess(cars))
-
-