11.7.4 Special Control Arguments (Autonomous Database)
Use the PAR_LST
parameter to specify special control arguments and additional arguments to be passed into the Python script.
Argument | Syntax and Description |
---|---|
oml_input_type |
Syntax
Description Specifies the type of object to construct from data in the Autonomous Database. By default, a two-dimensional |
oml_na_omit |
Syntax
Description Determines if rows with any missing values will be omitted from the table to be evaluated. If If |
oml_async_flag |
Syntax
Description If If |
oml_graphics_flag |
Syntax
Description If If |
oml_parallel_flag |
Syntax
Description If If |
oml_service_level |
Syntax
Description Controls the different levels of performance and concurrency in Autonomous Database. |
Examples
-
Input data is
pandas.DataFrame
:par_lst => '{"oml_input_type":"pandas.DataFrame"}'
-
Drop rows with missing values from input data:
par_lst => '{"oml_na_omit":true}'
-
Submit a job in asynchronous mode:
par_lst => '{"oml_async_flag":true}'
-
Use
MEDIUM
service level:par_lst => '{"oml_service_level":"MEDIUM"}'