Search


Ploticus > Scripts >
proc tabulate


proc tabulate uses the current data set to compute a one-way distribution on one data field, or a two-way distribution using two data fields. It produces a new data set, which becomes the "current" data set, ie. the data that will be accessed by subsequently executed plotting procs.

proc tabulate has a fixed maximum of 200 rows and 200 columns. Data does not have to be ordered in any particular way.

The showresults option is recommended so that you can see what the resulting data set looks like while developing a plot.




Note

We recommend using proc processdata (action: count) to do tabulations if possible, however this requires that input be sorted. Proc tabulate may still be useful when it's necessary to tabulate on unsorted input data, and perhaps in certain other situations.




Variables set by proc tabulate

NRECORDS = Number of rows in the data result.

NFIELDS = Number of fields per row in the data result.

Thus, if a one-way distribution is being done and there are 7 varieties, NRECORDS will hold 7, which may then be used (e.g. xrange: @NRECORDS+1) to automatically set scaling for a bargraph.




Modes

Either one-dimensional or two-dimensional modes.

If datafield1 is specified but datafield2 is not, a one-dimensional distribution will be computed. The result will be two data fields\(em the first field will be the value and the second field will be the number of instances. The number of records in the result will be the number of bins.

If both datafield1 and datafield2 are specified then a two-dimensional distribution will be computed. Datafield1 will be distributed downward and datafield2 will be distributed across. The result's column headings will be usable as field names (the first column is always named rowname).

Many of the attributes are named with either 1 or 2 to correspond with either the distribution on datafield1, or datafield2.

Notes

After proc tabulate executes, all subsequent plotting procedures in the script file will access its results for plotting. However, the original data is still in memory. If later it is necessary to plot the original data, proc usedata may be invoked.

Attributes

The datafield1 attribute must be specified. If a valuelist is not specified, all values encountered will get their own bin in the distribution.

datafield1 dfield

    Compute a distribution on this data field. Value will be in result data field 1 and N will be in result data field2. Example: datafield1: 1

datafield2 dfield

    Compute a two way distribution on datafield1 and this field. Distribution on datafield2 will be horizontal. See also MODES above. Example: datafield2: 5

axis1 x | y

    Axis to equivicate with the distribution on datafield1. This needs to be specified when working with data which is to be scaled using units such as date or time. Otherwise it does not need to be specified.

axis2 x|y

    Same as axis1, but goes with datafield2.

valuelist1 stringlist

    Define a set of values that will be included in the distribution of datafield1. The ordering of this set determines the order that categories are presented in the result. This is a space- or comma-delimited list of values.
    Example: valuelist: red green blue
    If ranges are being used (dorange1: yes), then this attribute may be used to explicitly define the ranges. See the following example for the syntax; by default, dash (-) is used to separate the low and hi values in a range, with no embedded spaces allowed.
    As a convenience, the letter "C" may be used in place of a low value in a range to indicate "continuous"; its effect if for the previous high value to be copied and taken as the next low value. This saves the tedium and error-prone-ness of having to enter values twice.
    Example: valuelist1: 0-2.5 C-5 C-7.5 C-10
    This would be equivalent to valuelist1: 0-2.5 2.5-5 5-7.5 7.5-10. Either way, a value of 2.5 would end up in the 2nd bin.

valuelist2

    Value list for datafield2. (see valuelist1)

doranges1 yes | no

    If yes, distribution on datafield1 will use ranges rather than values. If defined ranges overlap the higher bin has presidence. The ranges may be defined using either valuelist1, or rangespec1.

doranges2 yes | no

    If yes, distribution on datafield2 will use ranges rather than values. The ranges may be defined using either valuelist2, or rangespec2.

rangespec1 lowval binsize [hival]

    If doing ranges, this attribute may be used instead of valuelist if ranges of uniform size are to be used when tabulating. Ranges will begin at lowval and be of size binsize. Ranges will end when hival is passed, or when the high end of the axis is passed (if an axis has been defined). lowval and hival should be plotvalues
    Example: rangespec1: 0 5 39
    This would set up ranges 0-5, 5-10, 10-15, and so on, up to 35-40 (remember that where ranges overlap, the higher bin has presidence).

rangespec2 lowval binsize [hival]

    Same as rangespec1, but for datafield2.

accumfield dfield

    Normally, proc tabulate works by counting occurances. However, If accumfield is specified, instead of counting, an accumulation will be done using the specified field.

order1 natural | magnitude | reversemagnitude

    Specify order that categories are presented in the result.

order2 natural | magnitude | reversemagnitude

    Same as above for datafield2.

percents yes | no

    If yes, each tabulation column will be accompanied by a column of percents.

numfmt printf-spec

    Sets the internal representation of numeric quantities. Default is %g but other formats may be useful in working with very large or very small numbers.

showresults yes | no

    If yes, the result data table will be written to the diagnostic stream for debugging purposes.

savetable filename | stdout | stderr

    [This attribute superseded by showresults above]

select select expression

    Select data rows for inclusion.
    Example: select: @4 = G

rangesepchar char

    Allows user specification of the range separator character (the character that should be used to separate the low and high values of a range in the valuelists). Default range separator charactor is dash (-). Example: rangesepchar: ,

showrange low | avg

    If specified, controls the content of row or column labels when ranges are being used. Normal behavior is for the label to be formatted lowend - hiend. If this attribute is low, only the low value will be given. If this attribute is avg, an average of the low and high will be given. This attribute is useful when proc tabulate result range bins will be plotted by location, e.g. for a histogram (the 1st result data field can be used as the bar location).

resultfieldnames commalist

    Field names for the resulting data set. Example: resultfieldnames: name, count, pct

 


Ploticus 2.42 ... May 2013 Terms of use /