Hi guys.
That time I'll show you a way to use a machine learning model implemented using IntegradeML as source for an IRIS analytics cube dimension.
Creating the ML model:
Execute this SQL in order to create a new ML model using IntegratedML SQL extension:
CREATE MODEL AppointmentsPredection
PREDICTING (Show)
FROM (SELECT
Canal,
CreacionDate,
CreacionHora,
Edad,
Especialidad,
Latencia,
ReservaDate,
ReservaHora,
Sexo,
Tipo
FROM dc_myapp_model.MedicalAppointments
Now, you can train you model:
TRAIN MODEL AppointmentsPredection FROM dc_myapp_model.MedicalAppointm













