pyspark.sql.functions.col

pyspark.sql.functions.col(col: str) → pyspark.sql.column.Column[source]

Returns a Column based on the given column name.

Examples

>>> col('x')
Column<'x'>
>>> column('x')
Column<'x'>

New in version 1.3.