DataFrame.column
Return the elements of the specified column as a Series
danfo.DataFrame.column(column)
Parameters | Type | Description | Default |
---|---|---|---|
column | String | The name of a column in the DataFrame |
Examples
Select a single column from a DataFrame
To select more than one column with specific rows, you can use any of the following: DataFrame.loc, DataFrame.iloc or DataFrame.query
Last updated