visual3d:documentation:pipeline:metric_commands:metric_mean
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
visual3d:documentation:pipeline:metric_commands:metric_mean [2024/06/19 13:37] – removed sgranger | visual3d:documentation:pipeline:metric_commands:metric_mean [2024/11/22 19:00] (current) – wikisysop | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== Metric Mean ====== | ||
+ | |||
+ | This command computes the Mean Value of a Signal and stores the value as a metric. | ||
+ | |||
+ | ===== Command Syntax ===== | ||
+ | The syntax for the function is as follows: | ||
+ | |||
+ | < | ||
+ | Metric_Mean | ||
+ | ! / | ||
+ | / | ||
+ | ! / | ||
+ | / | ||
+ | ! / | ||
+ | ! / | ||
+ | ! / | ||
+ | / | ||
+ | / | ||
+ | ! / | ||
+ | ! / | ||
+ | ; | ||
+ | |||
+ | </ | ||
+ | |||
+ | ===== Parameters===== | ||
+ | The Parameters for the function is as follows: | ||
+ | |||
+ | |**Metric_Mean** | ||
+ | |/ | ||
+ | |!/ | ||
+ | |!/ | ||
+ | |/ | ||
+ | |/ | ||
+ | |/ | ||
+ | |/ | ||
+ | |/ | ||
+ | | |This specific sequence of events must be true for a metric to be computed. | ||
+ | | |The metric is computed from the first event in the sequence to the last event in the sequence| | ||
+ | |**/ | ||
+ | |**/ | ||
+ | |**/ | ||
+ | |! / | ||
+ | |! / | ||
+ | |||
+ | |||
+ | ==== Example: Include and Exclude Ranges ==== | ||
+ | |||
+ | In the following example, compute the Mean Value of the signal **RKNEE_ANGLE** from **RHS** to **RHS**. The dialog of the command is: | ||
+ | |||
+ | {{: | ||
+ | |||
+ | The associated pipeline command text is: | ||
+ | |||
+ | < | ||
+ | Metric_Mean | ||
+ | / | ||
+ | / | ||
+ | ! / | ||
+ | / | ||
+ | / | ||
+ | ! / | ||
+ | ! / | ||
+ | / | ||
+ | / | ||
+ | ! / | ||
+ | ! / | ||
+ | ; | ||
+ | </ | ||
+ | |||
+ | Executing the command will result in: | ||
+ | |||
+ | * Two metric signals in the **METRIC:: | ||
+ | * **RKNEE_ANGLE_MEAN** - the mean value for each RANGE in the file | ||
+ | * **RKNEE_ANGLE_MEAN_MEAN** - the mean value for all ranges | ||
+ | * Two metric signals in the **GLOBAL_WORKSPACE** | ||
+ | * **RKNEE_ANGLE_MEAN_MEAN** - the mean value for all ranges for all files that were active | ||
+ | * **RKNEE_ANGLE_MEAN_STDDEV** - the standard deviation of the mean values for all ranges. | ||
+ | |||
+ | An example of results is shown below: | ||
+ | |||
+ | {{: | ||
+ | |||
+ | If, for example, we did not want to include the first gait cycle in the file file ' | ||
+ | |||
+ | {{: | ||
+ | |||
+ | In the image above, the two blue lines indicate the **RHS** event. Add an Event Label named **BAD** manually by double clicking on the signal line. | ||
+ | |||
+ | The metric_mean command can be modified as follows: | ||
+ | |||
+ | {{: | ||
+ | |||
+ | which indicates that a range of data containing the label **BAD** should not be included. The result of executing the pipeline command is now: | ||
+ | |||
+ | {{: | ||
+ | |||
+ | **NOTE:** When you run a metric command, and tell it to create a global mean, it uses all the individual ranges to compute the overall mean (ie. one trial has 4 ranges, second trial has 1 range, the global mean is generated from the 5 values). | ||
+ | |||
+ | Each trial will have a mean and then a mean of those means. If you select ALL_FILES as the active file and view the metric, you will see the means of the individual trial ranges and the mean of the means within that trial. The GLOBAL will show the overall mean (mean of all the means). | ||
+ | |||
+ | ===== Example: Metric Mean of Metric signals at Initial Contact ===== | ||
+ | |||
+ | This script will take the mean of Left at Right Knee angles at Initial contact (LON and RON) | ||
+ | |||
+ | < | ||
+ | ! Get the initial contact value of LKNEE_ANGLE at LON | ||
+ | Metric_Signal_Value_At_Event | ||
+ | / | ||
+ | ! / | ||
+ | / | ||
+ | / | ||
+ | ! / | ||
+ | / | ||
+ | / | ||
+ | ! / | ||
+ | ! / | ||
+ | ! / | ||
+ | ; | ||
+ | |||
+ | ! Get the initial contact value of RKNEE_ANGLE at RON and concatenate this with the previous metric | ||
+ | Metric_Signal_Value_At_Event | ||
+ | / | ||
+ | ! / | ||
+ | / | ||
+ | / | ||
+ | ! / | ||
+ | / | ||
+ | / | ||
+ | / | ||
+ | ! / | ||
+ | ! / | ||
+ | ; | ||
+ | |||
+ | ! Compute the mean and standard deviation of these values. | ||
+ | Metric_Mean | ||
+ | / | ||
+ | / | ||
+ | ! / | ||
+ | / | ||
+ | / | ||
+ | / | ||
+ | ! / | ||
+ | / | ||
+ | / | ||
+ | ! / | ||
+ | ! / | ||
+ | ; | ||
+ | </ | ||
+ | |||
+ | |||
visual3d/documentation/pipeline/metric_commands/metric_mean.1718804266.txt.gz · Last modified: 2024/06/19 13:37 by sgranger