1. Home
  2. BKDISPLAY procedure

BKDISPLAY procedure

Displays an identification key (R.W. Payne).

Option

PRINT = string tokens Controls printed output (indented, bracketed, diagram, graph); default * i.e. none

Parameter

KEY = tree Key to be displayed

Description

BKDISPLAY displays an identification key, as constructed by the BKEY procedure. The key can be saved from BKEY as a Genstat tree structure (using the KEY option of BKEY), and is supplied to BKDISPLAY using the KEY parameter. The type of output is specified by the PRINT option, with settings:

    indented indented key – prints the key branch by branch;
    bracketed bracketed key – prints the key test by test;
    diagram diagrammatic representation of the key;
    graph plots the key using high resolution graphics.

Option: PRINT.

Parameter: KEY.

Method

BKDISPLAY displays the key using procedures BPRINT and BGRAPH.

See also

Procedures: BKEY, BKIDENTIFY, BKKEEP, IDENTIFY.

Commands for: Multivariate and cluster analysis.

Example

CAPTION 'BKDISPLAY example',\
        'Common clinical yeasts from Payne (1992) COMPSTAT paper';\
        STYLE=meta,plain
TEXT    [VALUES='Candida albicans','Candida glabrata',\
        'Candida parapsilosis','Candida tropicalis',\
        'Cryptococcus albidus','Cryptococcus laurentii',\
        'Filobasidiella neoformans',\
        'Issatchenkia orientalis',\
        'Kluyveromyces marxianus',\
        'Pichia guilliermondii','Rhodotorula glutinis',\
        'Rhodotorula mucilaginosa','Trichosporon beigelii'] Yeasts
FACTOR     [NVALUES=Yeasts; LABELS=!t('-','+')]\
      C11; EXTRA='Maltose growth'
&     C18; EXTRA='Lactose growth'
&     C19; EXTRA='Raffinose growth'
&     C36; EXTRA='D-Glucuronate growth'
&      N1; EXTRA='Nitrate growth'
&      V5; EXTRA='Growth w/o Thiamin'
&      O2; EXTRA='0.1% Cycloheximide growth'
&      E5; EXTRA='Splitting cells'
READ [PRINT=errors] C11,C18,C19,C36,N1,V5,O2,E5; FREPRESENTATION=labels
 '+'  '-'  '-'  '-'  '-'  '+'  '+'  '-'
 '-'  '-'  '-'  '-'  '-'  '-'  '-'  '-'
 '+'  '-'  '-'  '-'  '-'  '+'  '-'  '-'
 '+'  '-'  '-'  '-'  '-'  '+'  '+'  '-'
 '+'   *    *   '+'  '+'  '-'  '-'  '-'
 '+'  '+'  '+'  '+'  '-'   *    *   '-'
 '+'  '-'   *   '+'  '-'  '-'  '-'  '-'
 '-'  '-'  '-'  '-'  '-'  '+'  '-'  '-'
 '-'   *   '+'  '-'  '-'  '+'  '+'  '-'
 '+'  '-'  '+'  '-'  '-'  '+'  '+'  '-'
 '+'  '-'   *   '-'  '+'   *    *   '-'
  *   '-'  '+'  '-'   *   '-'   *   '-'
  *   '+'   *   '+'  '-'  '-'   *   '+' :
PRINT  [MISSING='V'] C11,C18,C19,C36,N1,V5,O2,E5; FIELDWIDTH=4; DECIMALS=0
FACTOR [MODIFY=yes; LABELS=!t(negative,positive)] C11,C18,C19,C36,N1,V5,O2,E5
BKEY   [PRINT=*; TAXONNAMES=Yeasts; CRITERION=cme; KEY=YeastKey]\
       C11,C18,C19,C36,N1,V5,O2,E5
BKDISPLAY [PRINT=indented,bracketed] YeastKey
Updated on March 8, 2019

Was this article helpful?