A.1.3 How to push content represented by an OML proxy object into a table in the Oracle Autonomous AI Database?

From a table in Autonomous Data Warehouse , in Oracle Machine Learning notebook we have converted the table data as 'oml.core.frame.DataFrame' and using my model have done the predictions. Now my predicted column is in 'oml.core.frame.DataFrame'. How can I insert the predicted column back into the database table?

For this, use the materialize() function. This function pushes the contents represented by an OML proxy object into a table in the database.
proxy_object.materialize(table="MYTABLENAME")