We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Note to creators
In file: https://github.com/Microsoft/SQL-Server-R-Services-Samples/blob/master/Churn/SQLR/PredictRx.sql
Line 24:
Scores<-rxPredict(modelObject = mod, data = InputDataSet, outData = NULL, predVarNames = "Score", type = "response", writeModelVars = FALSE, overwrite = TRUE);
should be
Scores<-rxPredict(modelObject = mod, data = InputDataSet, outData = NULL, predVarNames = "TagPred1", type = "response", writeModelVars = FALSE, overwrite = TRUE);
As in line 27 you refer back to TagPred1. Or vice versa offcourse..
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Note to creators
In file:
https://github.com/Microsoft/SQL-Server-R-Services-Samples/blob/master/Churn/SQLR/PredictRx.sql
Line 24:
should be
As in line 27 you refer back to TagPred1.
Or vice versa offcourse..
The text was updated successfully, but these errors were encountered: