create From CSVFile
Reads in a CSV file and converts it to a tabular output file. The separator must be a comma.
Each row is individually processed. The number of columns for each row must be equal to the number of (name, data type) pairs supplied to define the columns.
Return
the created tabular output file
Parameters
the path to the CSV files for reading in
the specification for each column of its name and data type (NUMERIC, TEXT)
the name of the output file. It will be created in the parent directory specified by pathToCSVFile
indicates if the file has a header row. It will be skipped during conversion. The default is true to skip the header. The column names become the names of the columns in the tabular output file.
Reads in a CSV file and converts it to a tabular output file. The separator must be a comma.
Each row is individually processed. The number of columns for each row must be equal to the number of (name, data type) pairs supplied to define the columns.
Return
the created tabular output file
Parameters
the path to the CSV files for reading in
the specification for each column of its name and data type (NUMERIC, TEXT)
the path to the TabularOutputFile that is created. The default is a file name the same as specified by pathToCSVFile with _TabularFile appended and in the same parent directory of pathToCSVFile
indicates if the file has a header row. It will be skipped during conversion. The default is true to skip the header. The column names become the names of the columns in the tabular output file.