Package adams.data.conversion

Class Summary
AbstractInPlaceSpreadSheetConversion Ancestor for spreadsheet conversion that allow working on the incoming data rather than on a copy (to conserve memory).
AbstractSpreadSheetColumnConverter<T> Ancestor for column converter schemes.
AbstractSpreadSheetConversion Ancestor for conversion schemes that transform one spreadsheet into another one.
AggregateSpreadSheet Aggregates rows (min, max, avg, etc) in a spreadsheet using key columns.
All numeric columns in the specified aggregrate range (excluding the key columns) get aggregated.
ContainerToSpreadSheet Converts any container into a SpreadSheet object.
ConvertSpreadSheetRows Converts the rows in the spreadsheet into a new format.
DoubleMatrixToSpreadSheet Converts adams.data.instance.Instance objects into weka.core.Instance ones.
NotesToSpreadSheet Turns an adams.data.Notes object into a SpreadSheet object.
RenameSpreadSheetColumn Renames a single column in a spreadsheet.
SpreadSheetAddFormulaColumn Adds a column with a user-supploed formula for the specified rows.
SpreadSheetAddFormulaRow Adds a row with a user-supplied formula for the specified columns.
SpreadSheetAddSumColumn Adds a column with 'sum' formulas for the specified rows.
SpreadSheetAddSumRow Adds a row with 'sum' formulas for the specified columns.
SpreadSheetAnyColumnToString Converts the specified spreadsheet column from any type to string.
SpreadSheetDoubleColumnToLong Converts the specified spreadsheet column from double to long.
Simply uses the Double's 'longValue()' method.
SpreadSheetDoubleColumnToString Converts the specified spreadsheet double column to string.
SpreadSheetInsertCellLocation Replaces the specified placeholder with a cell location generated from the user-supplied row and column.
SpreadSheetJoinColumns Merges two or more columns in a spreadsheet into a single column.
SpreadSheetObjectColumnToString Converts the specified spreadsheet column from the object type to string.
SpreadSheetSplitColumn Splits the string representation of the cells of a column into multiple columns using a regular expression.
SpreadSheetStringColumnToBoolean Converts the specified spreadsheet column from string to boolean.
SpreadSheetStringColumnToDate Converts the specified spreadsheet column from string to date, according to the provided format.
For more information on the format, see Javadoc of 'java.text.SimpleDateFormat' class:
http://docs.oracle.com/javase/6/docs/api/java/text/SimpleDateFormat.html

Valid options are:

SpreadSheetStringColumnToDateTime Converts the specified spreadsheet column from string to date/time, according to the provided format.
For more information on the format, see Javadoc of 'java.text.SimpleDateFormat' class:
http://docs.oracle.com/javase/6/docs/api/java/text/SimpleDateFormat.html

Valid options are:

SpreadSheetStringColumnToDouble Converts the specified spreadsheet column from string to double, according to the provided format.
For more information on the format, see Javadoc of 'java.text.DecimalFormat' class:
http://docs.oracle.com/javase/6/docs/api/java/text/DecimalFormat.html

Valid options are:

SpreadSheetStringColumnToLong Converts the specified spreadsheet column from string to long, according to the provided format.
For more information on the format, see Javadoc of 'java.text.DecimalFormat' class:
http://docs.oracle.com/javase/6/docs/api/java/text/DecimalFormat.html

Valid options are:

SpreadSheetStringColumnToObject Converts the specified spreadsheet column from string to an object, using the specified handler.
SpreadSheetStringColumnToTime Converts the specified spreadsheet column from string to time, according to the provided format.
For more information on the format, see Javadoc of 'java.text.SimpleTimeFormat' class:
http://docs.oracle.com/javase/6/docs/api/java/text/SimpleDateFormat.html

Valid options are:

SpreadSheetToDoubleMatrix Turns a spreadsheet into a double matrix, using only the numeric columns.
SpreadSheetUniqueColumnNames Ensures that column names are unique.
StringToSpreadSheet Turns a string representation of a spreadsheet (CSV format) into a SpreadSheet object.
TransposeSpreadSheet Transposes a spreadsheet, i.e., swaps columns with rows.
 

Enum Summary
AggregateSpreadSheet.Aggregate The types of aggregates to generate.
 



Copyright © 2013 University of Waikato, Hamilton, NZ. All Rights Reserved.