Command line UI launching¶
The function mwarp1d.launch_gui can be used to launch the GUI from the command line. Five argument patterns are supported:
launch_gui( )
launch_gui( fnameCSV )
launch_gui( fnameNPZ )
launch_gui( fnameCSV, mode )
launch_gui( fnameCSV, mode, fnameNPZ )
The arguments include:
Arg |
Description |
---|---|
fnameCSV |
CSV file name (rows = observations, columns = domain nodes) |
fnameNPZ |
numpy zipped file name into which results will be saved |
mode |
“landmark” or “manual” |
- Example
import mwarp1d
fnameCSV = "/Users/username/Desktop/mydata.csv"
mode = "manual"
mwarp1d.launch_gui( fnameCSV, mode )