Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can PMML models be read in R?

Tags:

file

import

r

pmml

I have a PMML file which I am trying to import/read in R to do some analysis based on it. I couldn't find a suitable function to read the model, although I found a package that is related to PMML. Is there is a simple way to read this type of file into R?

Thanks,

like image 208
Error404 Avatar asked Oct 31 '13 23:10

Error404


People also ask

How do I open a PMML file?

In the models palette, right-click the palette and select Import PMML from the menu. Select the file to import and specify options for variable labels as required. Click Open.

What is a PMML file?

PMML stands for Predictive Model Markup Language. It is an XML-based file format developed by the Data Mining Group to provide a way for applications to describe and exchange models produced by data mining and machine learning algorithms.


1 Answers

Unfortunately, it is not possible to import a model in PMML format in order to predict the classes of some instances using R.

The pmml package only allow you to train a model in R and then export it.

like image 142
jllopezpino Avatar answered Oct 02 '22 20:10

jllopezpino