-
- All Implemented Interfaces:
-
org.jetbrains.kotlinx.dataframe.DataColumn
,org.jetbrains.kotlinx.dataframe.columns.BaseColumn
,org.jetbrains.kotlinx.dataframe.columns.ColumnReference
,org.jetbrains.kotlinx.dataframe.columns.ColumnSet
,org.jetbrains.kotlinx.dataframe.columns.SingleColumn
public interface FrameColumn<T extends Object> implements DataColumn<DataFrame<T>>
-
-
Method Summary
Modifier and Type Method Description abstract FrameColumn<T>
distinct()
ColumnKind
kind()
abstract FrameColumn<T>
rename(String newName)
abstract FrameColumn<T>
get(Iterable<Integer> indices)
abstract Lazy<DataFrameSchema>
getSchema()
-
Methods inherited from class org.jetbrains.kotlinx.dataframe.columns.FrameColumn
get, getValue, hasNulls, iterator, resolveSingle
-
Methods inherited from class org.jetbrains.kotlinx.dataframe.DataColumn
countDistinct, defaultValue, get, get, get, get, size, toList, toSet, type, values
-
Methods inherited from class org.jetbrains.kotlinx.dataframe.columns.BaseColumn
getValue, name, path
-
Methods inherited from class org.jetbrains.kotlinx.dataframe.columns.ColumnReference
resolve
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Method Detail
-
distinct
abstract FrameColumn<T> distinct()
-
kind
ColumnKind kind()
-
rename
abstract FrameColumn<T> rename(String newName)
-
get
abstract FrameColumn<T> get(Iterable<Integer> indices)
-
getSchema
abstract Lazy<DataFrameSchema> getSchema()
-
-
-
-