Standard Deviation
A Callable for returning the standard deviation of a column.
Definition
- class controller.callable.transformer.Median(self, column: ColumnReference, output_name: str, output_list: list[str])
- Callable name:
standard_deviation- Callable type:
- Parameters:
column (ColumnReference) – A column reference where the values in the column are used to calculate the standard deviation.
output_name (str) – The name of the new column containing the Callable output.
Parameters
- column
A column reference where the values in the column are used to calculate the standard deviation.
- Type:
- Required:
True
- Choices:
All columns in the target DataFrame
Output
A DataFrame is returned where it contains all columns specified in the output_list, potentially including a new column with the name <callable_id>.<output_name>.
Example configuration
{
"name": "foo",
"callable": "median",
"params": {
"column": "$get_submissions.submission.score",
"output_name": "standard_deviation_score",
"output_list": [
"get_submissions.submission.id",
"get_submissions.submission.score",
"foo.standard_deviation_score"
]
}
}