Administrative functions > Preparing a study for Quanvert > Flip configuration file
 
Flip configuration file
Quick reference
To determine which numeric variables exist in a database, create a configuration file, named flip.cnf, containing one line of the form:
inc = all [except var1[, var2, ... ] ];
or
inc = none [except var1[, var2, ... ] ];
More information
The flip configuration file provides additional control over the way a Quanvert database is created from a Quantum program and data file. Currently, it is only used for numeric variables.
A Quantum flip run normally creates one numeric variable for each namedinc= in the run. By placing statements in the flip configuration file, you can exercise more control over exactly which numeric variables are created.
The statement which controls numeric variables is:
inc = specification;
Note the semicolon at the end of the specification.
Quantum recognizes four specifications:
inc = all;
to flip all numeric variables; this is the default if there is no configuration file.
inc = none;
to suppress all numeric variables.
inc = all except var1[, var2, ... ];
to flip all numeric variables except those named on this statement.
inc = none except var1[, var2, ... ];
to flip only the named numeric variables.
As the database is created, Quantum builds a flip output file reporting which numeric variables have and have not been flipped. For example, if the flip configuration file contains the line:
inc = all except total;
and the variables serial, numpots and total exist in the data, the flip output file contains three statements:
Numeric variable serial flipped
Numeric variable numpots flipped
Numeric variable total not flipped
The names of the flip configuration and output files are flip.cnf and flip.out.
See also
Preparing a study for Quanvert