data_var
Calculate variance values for each column in a dataset using MCP Data Wrangler. Specify the input file path and adjust Delta Degrees of Freedom for precise statistical analysis.
Instructions
Variance values for each column
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ddof | No | Delta Degrees of Freedom: the divisor used in the calculation is N - ddof | |
input_data_file_path | Yes | Path to the input data file |
Input Schema (JSON Schema)
{
"properties": {
"ddof": {
"default": 1,
"description": "Delta Degrees of Freedom: the divisor used in the calculation is N - ddof",
"minimum": 0,
"type": "integer"
},
"input_data_file_path": {
"description": "Path to the input data file",
"type": "string"
}
},
"required": [
"input_data_file_path"
],
"type": "object"
}