The dotse glyph is also based on the dat gryph. In the dotse graphic, col2 in the panelDesc data.frame provides the standard error value for the row. Using the standard error value, dotse creates a dot at the data point specified by col1 and a line through the dot representing the standard error associated with the dot's data. Value of the dot and it's standard error value is provided in the statsDFrame data columns referenced by the column name/number is panelDesc col1 and col2 rows. The upper and lower values are calculated based on
zval <- stats::qnorm( .5 + Dot.SE / 200 ) # where Dot.SE is defaulted to 95
inc <- zval * col2 referenced data
upper <- col1 referenced data + inc
lower <- col1 referenced data - inc
The dotse is plotted at the col1 data value from statsDFrame. The line is drawn from the lower to upper calculated values based on the significant error values provided in the statsDFrame column referenced by the panelDesc col2 row. The range of the X-Axis of the graphic is based on the values of all of the data points to be graphed from all of the area. All of the data must be numberic. The dot will be filled with the color of the related area in the geographic map. If the median consist of only a single area, only one area row and graphic will be plotted. The data in the referred statsDFrame by col1 and col2 must be numeric values and can be used to sort the order of the areas using the sortVar call parameter.
None
Jim Pearson, StatNet Consulting, LLC, Gaithersburg, MD
The col1 panelDesc parameter is indexed by j to obtain the data column's names/numbers of the col1 and col2 referred columns in the statsDFrame data.frame to plot the dot, calculate the standard error lower and upper values. The col1 referenced data column is the value of the dot, the col2 referenced data is the low interval, and the col3 referenced data is the high interval. j is used to index into panelDesc to get the user specified lab1, lab2, lab3, lab4, refval, and reftxt information to create the column headers, trailers, and reference information. An X-axis is drawn above and below the column based on the data provided in the col1 and col2 referenced column of data in the statsDFrame by the user.
For the dotse glyph, the col1 and col2 column name/numbers refereninc the statsDFrame data.frame must be provided and valid. All data in these columns must be numeric.
panelDesc rows not used by the glyph should be set to NA. The dotse glyph does not use the col3, panelData, and parm rows.
The following is an example of a section of a boxplot glyph column in a linked micromap:
The statsDFrame and panelDesc data.frames reside in the global environment and automatically accessible to the process along with several other major structures.
micromapST