How to send data and retrieve data from Qlik ML model through Advanced Analytics Connector
How to send data and retrieve data from Qlik ML model through Advanced Analytics Connector??
I am trying to send the data to Qlik ML model which is been created using Qlik ML experiment. I want to predict and use the data in Qlik analytics app.
Could anyone please help me on this?
Script in data load editor:
Temp1: LOAD Customer_ID, Customer, Gender, Location, Target FROM [lib://Qlik Active Intelligence Challenge:DataFiles/Iteration_4_Simple_Training.csv] (txt, codepage is 28591, embedded labels, delimiter is ',', msq); NoConcatenate Res_Table: Load * Resident Temp1; Drop table Temp1; [Return_Table]: LOAD * EXTENSION endpoints.ScriptEval('{"RequestType":"endpoint", "endpoint":{"connectionname":"Qlik Automation:Advanced_Analytics"}}', Res_Table);