The PMML format is used to export a logistic regression model from SAS for deployment in a non-SAS scoring environment. Which SAS procedure can export a fitted logistic regression model to PMML?
Select an answer to reveal the explanation.
Short Explanation and Infographic
Here's the deal — b is correct because PROC LOGISTIC supports the CODE statement with a PMMLFILE= option that writes the fitted model in PMML XML format. This PMML file can be deployed in any PMML-compatible scoring engine.
Full explanation below image
Full Explanation
B is correct because PROC LOGISTIC supports the CODE statement with a PMMLFILE= option that writes the fitted model in PMML XML format. This PMML file can be deployed in any PMML-compatible scoring engine. A is wrong; PROC EXPORT does not support DBMS=PMML. C is wrong; PROC PMML is not a SAS procedure. D is wrong; PROC SCORE generates SAS score datasets, not PMML XML.