/*************Figure 3***************************/ libname sasdata '\\storage.wpi.edu\academics\courses\MA\SAS-Data\sasdata8'; /************************************************************************** NOTE: By default, left endpoint is included in the intervals. To include the right endpoint, add the rtinclude option. So, the histogram statement below would read: histogram height/vscale=count endpoints=140 to 204 by 8 rtinclude; **************************************************************************/ proc univariate data=sasdata.armspan; ods select histogram; var height; histogram height/vscale=count endpoints=140 to 204 by 8; run;