Remove Parameter Function
- Updated2022-07-11
- 1 minute(s) read
Remove Parameter Function
remove_parameter removes a specific parameter from the current instance of Metadata.
Note If you attempt to remove a parameter that does not exist, or has already been
removed previously, the Logging Library will generate an error.
with run.Metadata() as data:
for mode in modes:
data.add_string_parameter("Mode", mode)
for voltage in Vin:
data.add_numeric_parameter("Vin", voltage, "V")
data.remove_parameter("Vin")
| Parameter | Required? | Data Type | Description |
|---|---|---|---|
| parameter_name | Yes | String | Name of the parameter to remove. |