[关闭]
@HaomingJiang 2018-02-21T08:34:41.000000Z 字数 4553 阅读 1179

Code Template



In order to easily manage our code and project, you should develope the model following this document.

Introduction

For simplicity, currently, you only need to work with two R scripts:
- testmodel.R
- your_model_file_name.R (an example is model_los_poireg.R)

For other scripts:
- server.R and ui.R are for the R shiny visualization application
- model.R is used for provide a unified interface of all models; For now you can just ignore that.
- scorecard.R is used for generate pdf scorecard. (TODO)

Data has been cleaned and saved in .RData format under the data folder:
- Procedure all.RData, the data related to a certain procedure. We only forcus on Colectomy for now.
- Procedure train.RData, the data before 2017, which is used for training the model
- Procedure test.RData, the data after 2017, which is used for testing the model
- Procedure surgeon.RData, the data related to randomly selected surgeon for this procedure. It is used for testing the visualization.
- cleandata.R, the code used for data cleaning
- NSQIP CDW Metadata.csv , the variable dictionary
- NSQIP_CDW_v1.0_DEIDENTIFIED.csv, the raw data

Workflow

Step1

First, you should make a local copy on your own computer.
Then, take a look at testmodel.R

testmodel.R
Please feel free to modify testmodel.R for your own purpose, since it is only a triger script for testing the functionality of your model. It will not be included in the final application.

Step2

Create a R script for your model under the same folder, so that testmodel.R can load it. Please follow our naming convention: model_<metric>_<method>.R, where <metric> is the short name of metric and should be one of these: los (length of stay), read (readmission), vdcost (variable direct cost), or (unplanned return to OR). You may come up with a short name for your method. An example is model_los_poireg.R

Step3

Implement two functions model and model_eval in model_<metric>_<method>.R (If you need other libraries, you can load them at the begining of the code):
1. model

  1. model <- function(x,y,parameter=list(),doeval = FALSE){
  2. ########################################################
  3. # Model Implementation #
  4. ########################################################
  5. if(doeval)
  6. {
  7. ########################################################
  8. # Model Evaluation #
  9. ########################################################
  10. }
  11. return(fit)
  12. }

x is the predictor, and y is the response, parameter is a list which might be useful for controlling your model. If your model do not need any additional control variable, just leave it alone.
For the return value you must return something which will be used and only be used in the second function model_eval.
You can also do some basic analysis in Model Evaluation section, like showing the residue plot or printing model summary. Printing these information will be helpful for building the model. Notice that in the final visualization application the switch of doeval will be turned off. But in testmodel.R, it is turned on.
Actually you can inplment the function anyway you like. There are only three rules:
i. Do not change the input, put any additional things in parameter
ii. Make sure there will not be any additional output, print or plot when doeval = FALSE in the final application
iii. Return the model through the return value, which will be used in the second function model_eval

2. model_eval

  1. model_eval <- function(fitted_model, newx, newy, parameter=list(), doeval = FALSE){
  2. ########################################################
  3. # Model Implementation #
  4. ########################################################
  5. if(doeval)
  6. {
  7. ########################################################
  8. # Model Evaluation #
  9. ########################################################
  10. }
  11. return(evaluation)
  12. }

fitted_model is the return value from the first function, model. newx,newy are the predictors and reponses of the new data set, such as testing data when you evaluate the model and surgeon data when you evaluate the performance of surgeons. doeval and doeval serve the same functions as the ones in model. evaluation is a list containing everything important to the final application, such as the model accuracy, the estimated stay of length, the estimated variance and the confidence interval.

There are also three rules that you have to sticked with:
i. Do not change the input, put any additional things in parameter
ii. Make sure there will not be any additional output, print or plot when doeval = FALSE in the final application
iii. Return the evaluation on new data, which will be used in the final application such as the scorecard

Some Basic Ideas of Models and Evaluation

  1. linear/poisson model for regression (linear model might be easier to analyze)
  2. logistic regression for classification
  3. see residuals vs. reponse distribution to see if the residuals satisfies the iid normal assumption. If you see some irregular pattern, you may consider apply transformation.
  4. If you need apply transformation, you may apply box-cox or see the reference
  5. You can print the summary of the model to see if there exists many insignificant variable. Then you can do variable selection, including step-wise selection and manual selection.
  6. Evaluate model via F-test/R^2/MSE/AUC, etc.
添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注