Uses of Class
tech.tablesaw.api.StringColumn
-
-
Uses of StringColumn in tech.tablesaw.aggregate
Methods in tech.tablesaw.aggregate with parameters of type StringColumn Modifier and Type Method Description abstract StringStringAggregateFunction. summarize(StringColumn column) -
Uses of StringColumn in tech.tablesaw.api
Methods in tech.tablesaw.api that return StringColumn Modifier and Type Method Description StringColumnStringColumn. addAll(List<String> stringValues)Add all the strings in the list to this columnStringColumnStringColumn. append(String value)Added for naming consistency with all other columnsStringColumnStringColumn. append(Column<String> column)Appends all the values in the argument to the bottom of this column and return this columnStringColumnStringColumn. appendCell(String object)Add one element to the bottom of this column and set its value to the parsed value of the given String.StringColumnStringColumn. appendCell(String object, AbstractColumnParser<?> parser)Add one element to the bottom of this column and set its value to the parsed value of the given String, as performed by the given parserStringColumnStringColumn. appendMissing()Appends a missing value appropriate to the columnStringColumnStringColumn. appendObj(Object obj)Appends the given value to the bottom of this column and return this columnStringColumnNumericColumn. asStringColumn()Returns a StringColumn consisting of the (unformatted) String representation of this column valuesStringColumnStringColumn. asStringColumn()Returns a StringColumn consisting of the (unformatted) String representation of this column valuesStringColumnStringColumn. copy()Returns a deep copy of the receiverstatic StringColumnStringColumn. create(String name)static StringColumnStringColumn. create(String name, int size)static StringColumnStringColumn. create(String name, String... strings)static StringColumnStringColumn. create(String name, Collection<String> strings)static StringColumnStringColumn. create(String name, Stream<String> stream)static StringColumnStringColumn. createInternal(String name, DictionaryMap map)StringColumnStringColumn. emptyCopy()Returns a copy of the receiver with no data.StringColumnStringColumn. emptyCopy(int rowSize)Returns an empty copy of the receiver, with its internal storage initialized to the given row size.StringColumnStringColumn. lag(int n)Returns a column of the same type and size as the receiver, containing the receivers values offset by n.StringColumnStringColumn. lead(int n)Returns a column of the same type as the receiver, containing the receivers values offset -n For example if you lead a column containing 2, 3, 4 by 1, you get a column containing 3, 4, NA.StringColumnStringColumn. removeMissing()Returns a copy of this column with the missing values removedStringColumnStringColumn. set(int rowIndex, String stringValue)Sets the value at index row to the given value and return this columnStringColumnStringColumn. set(Selection rowSelection, String newValue)Conditionally update this column, replacing current values with newValue for all rows where the current value matches the selection criteriaStringColumnStringColumn. setMissing(int i)Sets the value at index i to the missing-value indicator for this column type, and return this columnStringColumnStringColumn. unique()Returns a new Column containing all the unique values in this columnStringColumnStringColumn. where(Selection selection)Returns a new column containing the subset referenced by theSelection -
Uses of StringColumn in tech.tablesaw.columns
Methods in tech.tablesaw.columns that return StringColumn Modifier and Type Method Description StringColumnAbstractColumn. asStringColumn()Returns a StringColumn consisting of the (unformatted) String representation of this column valuesStringColumnColumn. asStringColumn()Returns a StringColumn consisting of the (unformatted) String representation of this column values -
Uses of StringColumn in tech.tablesaw.columns.dates
Methods in tech.tablesaw.columns.dates that return StringColumn Modifier and Type Method Description default StringColumnDateMapFunctions. dayOfWeek()default StringColumnDateMapFunctions. month()default StringColumnDateMapFunctions. yearDay()Returns a StringColumn with the year and day-of-year derived from this column concatenated into a String that will sort lexicographically in temporal order.default StringColumnDateMapFunctions. yearMonth()Returns a StringColumn with the year and month from this column concatenated into a String that will sort lexicographically in temporal order.default StringColumnDateMapFunctions. yearQuarter()Returns a StringColumn with the year and quarter from this column concatenated into a String that will sort lexicographically in temporal order.default StringColumnDateMapFunctions. yearWeek()Returns a StringColumn with the year and week-of-year derived from this column concatenated into a String that will sort lexicographically in temporal order. -
Uses of StringColumn in tech.tablesaw.columns.datetimes
Methods in tech.tablesaw.columns.datetimes that return StringColumn Modifier and Type Method Description default StringColumnDateTimeMapFunctions. dayOfWeek()default StringColumnDateTimeMapFunctions. hourMinute()Returns a StringColumn with the year and week-of-year derived from this column concatenated into a String that will sort lexicographically in temporal order.default StringColumnDateTimeMapFunctions. month()Returns a StringColumn containing the name of the month for each date/time in this columndefault StringColumnDateTimeMapFunctions. yearDay()Returns a StringColumn with the year and day-of-year derived from this column concatenated into a String that will sort lexicographically in temporal order.default StringColumnDateTimeMapFunctions. yearMonth()Returns a StringColumn with the year and month from this column concatenated into a String that will sort lexicographically in temporal order.default StringColumnDateTimeMapFunctions. yearQuarter()Returns a StringColumn with the year and quarter from this column concatenated into a String that will sort lexicographically in temporal order.default StringColumnDateTimeMapFunctions. yearWeek()Returns a StringColumn with the year and week-of-year derived from this column concatenated into a String that will sort lexicographically in temporal order. -
Uses of StringColumn in tech.tablesaw.columns.strings
Methods in tech.tablesaw.columns.strings that return StringColumn Modifier and Type Method Description default StringColumnStringMapFunctions. abbreviate(int maxWidth)Abbreviates a String using ellipses.default StringColumnStringMapFunctions. capitalize()Capitalizes each String changing the first character of each to title case as perCharacter.toTitleCase(int), as if in a sentence.default StringColumnStringMapFunctions. commonPrefix(Column<String> column2)default StringColumnStringMapFunctions. commonSuffix(Column<String> column2)default StringColumnStringMapFunctions. concatenate(Object... stringsToAppend)Return a copy of this column with the given string appended to each elementdefault StringColumnStringMapFunctions. concatenate(Column<?>... stringColumns)Return a copy of this column with the corresponding value of each column argument appended to each element.StringColumnStringColumnType. create(String name)default StringColumnStringMapFunctions. format(String formatString)default StringColumnStringMapFunctions. join(String separator, Column<?>... columns)Return a copy of this column with the given string appendeddefault StringColumnStringMapFunctions. lowerCase()default StringColumnStringMapFunctions. padEnd(int minLength, char padChar)default StringColumnStringMapFunctions. padStart(int minLength, char padChar)default StringColumnStringMapFunctions. repeat(int times)Repeats each the column's values elementwise, concatinating the results into a new StringColumndefault StringColumnStringMapFunctions. replaceAll(String[] regexArray, String replacement)Creates a new column, replacing each string in this column with a new string formed by replacing any substring that matches the regexdefault StringColumnStringMapFunctions. replaceAll(String regex, String replacement)default StringColumnStringMapFunctions. replaceFirst(String regex, String replacement)default StringColumnStringMapFunctions. substring(int start)Returns a column containing the substrings from start to the end of the inputdefault StringColumnStringMapFunctions. substring(int start, int end)default StringColumnStringMapFunctions. tokenizeAndRemoveDuplicates(String separator)default StringColumnStringMapFunctions. tokenizeAndSort()Splits on Whitespace and returns the lexicographically sorted result.default StringColumnStringMapFunctions. tokenizeAndSort(String separator)default StringColumnStringMapFunctions. tokens(String separator)Returns a column of arbitrary size containing each token in this column, where a token is defined using the given separator.default StringColumnStringMapFunctions. trim()default StringColumnStringMapFunctions. uniqueTokens(String separator)Returns a column of arbitrary size containing each unique token in this column, where a token is defined using the given separator, and uniqueness is calculated across the entire columndefault StringColumnStringMapFunctions. upperCase() -
Uses of StringColumn in tech.tablesaw.columns.times
Methods in tech.tablesaw.columns.times that return StringColumn Modifier and Type Method Description default StringColumnTimeMapFunctions. hourMinute()Returns a StringColumn with the hour and minute-of-hour derived from this column concatenated into a String that will sort lexicographically in temporal order. -
Uses of StringColumn in tech.tablesaw.index
Constructors in tech.tablesaw.index with parameters of type StringColumn Constructor Description StringIndex(StringColumn column)Creates an index on the given AbstractStringColumn -
Uses of StringColumn in tech.tablesaw.table
Methods in tech.tablesaw.table that return StringColumn Modifier and Type Method Description StringColumnRelation. stringColumn(int columnIndex)Returns the StringColumn at the given 0-based index if present.StringColumnRelation. stringColumn(String columnName)Returns a StringColumn with the given name if it is present in this Relation.StringColumn[]Relation. stringColumns()Returns all the StringColumns in this Relation as an Array
-