Displaying 1 result from an estimated 1 matches for "dropped_calls".
2011 Oct 12
0
PMML for Cox Regression
Hi,
We have created a cox regression model (coxph) and exported from R as PMML
using the Rattle package. The resulting PMML is a standard Regression model
in the format y=b1*x1+b2*x2+??.bn*xn:
risk= (0.027968680616809*dropped_Calls)+(0.00777220409115466*helpdesk_Calls)
The PMML is included at the end of this post.
Cox Regression is usually in this format:
h(t)= h0(t)*e^(b1*x1+b2*x2+??.bn*xn)
We couldn't find any documentation about how a scoring engine should
generate scores from the R PMML and it seems that the stan...