specifies the variable names and types for a CSV file.
Alias: | COLS= |
Applies to: | Reading CSV files |
is a name-value pair
that specifies the column name and data type. For numeric data, specify double
as
the data type. For character data, specify 'char(length)'
.
Default | Any variables that are not named are assigned the name VARn. |
Example | columns=(station='char(4)' obsdate='char(18)' tempf=double precip=double) |
VARn
,
starting at 1. If the data type is not specified and cannot be determined,
the variable is assigned as char(8)
.
'char(n)'
in
quotation marks.