nxcals.api.extraction.data.builders.DataFrame.withMetadata
- DataFrame.withMetadata(columnName: str, metadata: Dict[str, Any]) DataFrame
Returns a new
DataFrame
by updating an existing column with metadata.New in version 3.3.0.
- Parameters:
columnName (str) – string, name of the existing column to update the metadata.
metadata (dict) – dict, new metadata to be assigned to df.schema[columnName].metadata
Examples
>>> df_meta = df.withMetadata('age', {'foo': 'bar'}) >>> df_meta.schema['age'].metadata {'foo': 'bar'}