Python UDF

This article provides information on how to use Python UDFs in Upsolver.

You can extend Upsolver by adding user-defined Python functions through the Python UDF page (More > Python UDF). These functions can also be disabled once they are no longer needed.

You can also add PMML functions (version 3.x-4.x). These are parsed using the following library: https://github.com/jpmml/jpmml-evaluator

Add a Python/PMML function

1. From the Python UDF page, click New Python UDF or click the vertical dots next to it to select New PMML UDF.

2. Click Select.

3. Once you've selected the file to import from your computer, click Open. A list of all the functions defined in the file along with their docstring will appear.

5. Once selected, you will be able to configure the input parameters and return value types (e.g. Any, String, Number, Boolean).

6. Check Array next to any input or return value that should be array.

You can test out your UDF on a data source by clicking Preview.

A pane will appear on the right where you can select input parameters from an existing data source.

7. Click Add.

Rename a Python/PMML function

2. Modify the name as desired.

3. Click Update.

Disable a Python/PMML function

When adding calculated fields, disabled functions will be marked as deprecated and are not available for use.

If you disable a custom function that is already in use (e.g. in a lookup table enriched using the deprecated function), the function is still available, ensuring that nothing is broken.

2. Click Yes to confirm.

The function has now moved to the Deprecated Functions list.

Enable a Python function

2. Click Yes to confirm.

The function has now moved to the list of active functions.

Last updated