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")
Table 15. Python Remove Parameter Function Parameter
Parameter Required? Data Type Description
parameter_name Yes String Name of the parameter to remove.