1
0
mirror of https://github.com/Microsoft/sql-server-samples.git synced 2025-12-08 14:58:54 +00:00
Files
sql-server-samples/samples/features/r-services/Telco Customer Churn v1/R/README.md
2016-08-25 18:08:24 +08:00

21 lines
991 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

**Instructions**
- Run the telcoChurn-main.R to drive the R demo
- Run the telcoChurn-modelComparison.R to compare different algorithms that we tried to build churn models
----------
**Description**
- **telcoChurn-setUp.R** - Setting up relevant R packages
- **telcoChurn-evaluate.R** - Defining pre-functions for model evaluation
- **telcoChurn-dataExploration.R** - Creating a Shiny application to explore and visualize the data
- **telcoChurn-dataPreparation.R** - Defining functions to do data pre-processing and spliting in order to generate suitable training and testing data sets
- **telcoChurn-trainModel.R** - Defining a function to train the telco churn model with rxDForest algorithm
- **telcoChurn-main.R** - Main R file driving the demo execution
- **telcoChurn-modelComparison.R** - R file to build and compare different tree-based classification models, including CRAN R algorithms - randomForest and xgboost, RevoScaleR algorithms rxDForest and rxBTrees
----------