|
ROW LABELName:
command. This command stores the character fields in the file "dpchzf.dat". The two primary uses of character data are:
The ROWLABEL command is used to convert one of the previosuly read character variables to a row label. Once a row label has been defined, you can use the
command to label plot points. Additional uses for row labels are anticipated in future releases of Dataplot.
where <ix> specifies the name of the character variable in the file dpzchf.dat. The character variable is originally created with a READ command where the SET CONVERT CHARACTER ON was entered prior to the READ.
READ TEST.DAT Y X IX LET IG = GROUP LABEL IX
set convert character on
skip 25
read draft69c.dat rank day month
.
let rowlabel = month
character rowlabel
let xcode = character code month
.
xlimits 1 12
xtic offset 1 1
.
plot rank xcode
Date created: 2/3/2004 |