home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / NEXTSTEP / UNIX / Educational / R-0.49-MI / R-0.49-I / mansrc / man281 / dotplot < prev    next >
Encoding:
Text File  |  1996-11-24  |  1.1 KB  |  29 lines

  1. TITLE(dotplot @@ Plot Dotplot(s))
  2. USAGE(
  3. dotplot(data, group, data.order=true,
  4.         jitter=true, vert=true, DOTS)
  5. )
  6. ARGUMENTS(
  7. ARG(data @@ data to be plotted.)
  8. ARG(group @@ vector of group labels.)
  9. ARG(data.order @@ determines the order of the plotting.)
  10. ARG(jitter @@ if LANG(group) is missing and LANG(vert=false),
  11. determines whether points are stacked or jittered.)
  12. ARG(vert @@ if LANG(group) is missing and LANG(vert=true),
  13. the points are plotted vertically and identified with case labels.)
  14. ARG(DOTS @@ graphical parameters can be specified as
  15. arguments to this function.)
  16. )
  17. DESCRIPTION(
  18. LANG(dotplot) draws dotplot(s) of the data in the vector LANG(data).
  19. If LANG(group) is present, then the function draws vertical dotplots
  20. of each group. The arguments LANG(jitter) and LANG(vert) are ignored.
  21. If LANG(group) is missing a single dotplot of all the data is drawn.
  22. If LANG(vert=true), then the plot is drawn vertically,
  23. the points are identified by case labels and the argument LANG(jitter)
  24. is ignored.
  25. If LANG(vert=true), then the plot is drawn horizontally,
  26. and the ponts are either stacked if LANG(jitter) is LANG(false)
  27. or jittered if LANG(jitter=true).
  28. )
  29.