├── .gitignore ├── 0_Summary_Statistics.ipynb ├── 1_Cleaning_Processing_EDA.ipynb ├── 2_Feature_Analysis_Selection.ipynb ├── 3_Supervised_Learnings.ipynb ├── Captures ├── 0_Summary_Statistics.html ├── 1_Cleaning_Processing_EDA.html ├── 2_Feature_Analysis_Selection.html ├── 3_Supervised_Learnings.html └── README.md ├── LICENSE ├── README.md ├── ROC_Bagged_KNN.png ├── ROC_Bagged_Tree.png ├── ROC_Gradient_Boosting.png ├── ROC_LgReg.png ├── ROC_Linear_SVM.png ├── ROC_MLP_NN.png ├── ROC_NonLinear_SVM.png ├── ROC_Random_Forest.png ├── ROC_Single_KNN.png ├── ROC_Single_Tree.png ├── ROC_selected_RF_tuned.png ├── conversationrate.png ├── data ├── README.md └── UBA_sample_data.txt ├── features.png ├── timescatter_feature_selection.png └── timescatter_signup_split.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leoli3024/User_Behavior_Logs_Quick_Analysis/HEAD/.gitignore -------------------------------------------------------------------------------- /0_Summary_Statistics.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leoli3024/User_Behavior_Logs_Quick_Analysis/HEAD/0_Summary_Statistics.ipynb -------------------------------------------------------------------------------- /1_Cleaning_Processing_EDA.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leoli3024/User_Behavior_Logs_Quick_Analysis/HEAD/1_Cleaning_Processing_EDA.ipynb -------------------------------------------------------------------------------- /2_Feature_Analysis_Selection.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leoli3024/User_Behavior_Logs_Quick_Analysis/HEAD/2_Feature_Analysis_Selection.ipynb -------------------------------------------------------------------------------- /3_Supervised_Learnings.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leoli3024/User_Behavior_Logs_Quick_Analysis/HEAD/3_Supervised_Learnings.ipynb -------------------------------------------------------------------------------- /Captures/0_Summary_Statistics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leoli3024/User_Behavior_Logs_Quick_Analysis/HEAD/Captures/0_Summary_Statistics.html -------------------------------------------------------------------------------- /Captures/1_Cleaning_Processing_EDA.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leoli3024/User_Behavior_Logs_Quick_Analysis/HEAD/Captures/1_Cleaning_Processing_EDA.html -------------------------------------------------------------------------------- /Captures/2_Feature_Analysis_Selection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leoli3024/User_Behavior_Logs_Quick_Analysis/HEAD/Captures/2_Feature_Analysis_Selection.html -------------------------------------------------------------------------------- /Captures/3_Supervised_Learnings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leoli3024/User_Behavior_Logs_Quick_Analysis/HEAD/Captures/3_Supervised_Learnings.html -------------------------------------------------------------------------------- /Captures/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leoli3024/User_Behavior_Logs_Quick_Analysis/HEAD/Captures/README.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leoli3024/User_Behavior_Logs_Quick_Analysis/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leoli3024/User_Behavior_Logs_Quick_Analysis/HEAD/README.md -------------------------------------------------------------------------------- /ROC_Bagged_KNN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leoli3024/User_Behavior_Logs_Quick_Analysis/HEAD/ROC_Bagged_KNN.png -------------------------------------------------------------------------------- /ROC_Bagged_Tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leoli3024/User_Behavior_Logs_Quick_Analysis/HEAD/ROC_Bagged_Tree.png -------------------------------------------------------------------------------- /ROC_Gradient_Boosting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leoli3024/User_Behavior_Logs_Quick_Analysis/HEAD/ROC_Gradient_Boosting.png -------------------------------------------------------------------------------- /ROC_LgReg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leoli3024/User_Behavior_Logs_Quick_Analysis/HEAD/ROC_LgReg.png -------------------------------------------------------------------------------- /ROC_Linear_SVM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leoli3024/User_Behavior_Logs_Quick_Analysis/HEAD/ROC_Linear_SVM.png -------------------------------------------------------------------------------- /ROC_MLP_NN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leoli3024/User_Behavior_Logs_Quick_Analysis/HEAD/ROC_MLP_NN.png -------------------------------------------------------------------------------- /ROC_NonLinear_SVM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leoli3024/User_Behavior_Logs_Quick_Analysis/HEAD/ROC_NonLinear_SVM.png -------------------------------------------------------------------------------- /ROC_Random_Forest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leoli3024/User_Behavior_Logs_Quick_Analysis/HEAD/ROC_Random_Forest.png -------------------------------------------------------------------------------- /ROC_Single_KNN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leoli3024/User_Behavior_Logs_Quick_Analysis/HEAD/ROC_Single_KNN.png -------------------------------------------------------------------------------- /ROC_Single_Tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leoli3024/User_Behavior_Logs_Quick_Analysis/HEAD/ROC_Single_Tree.png -------------------------------------------------------------------------------- /ROC_selected_RF_tuned.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leoli3024/User_Behavior_Logs_Quick_Analysis/HEAD/ROC_selected_RF_tuned.png -------------------------------------------------------------------------------- /conversationrate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leoli3024/User_Behavior_Logs_Quick_Analysis/HEAD/conversationrate.png -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leoli3024/User_Behavior_Logs_Quick_Analysis/HEAD/data/README.md -------------------------------------------------------------------------------- /data/UBA_sample_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leoli3024/User_Behavior_Logs_Quick_Analysis/HEAD/data/UBA_sample_data.txt -------------------------------------------------------------------------------- /features.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leoli3024/User_Behavior_Logs_Quick_Analysis/HEAD/features.png -------------------------------------------------------------------------------- /timescatter_feature_selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leoli3024/User_Behavior_Logs_Quick_Analysis/HEAD/timescatter_feature_selection.png -------------------------------------------------------------------------------- /timescatter_signup_split.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leoli3024/User_Behavior_Logs_Quick_Analysis/HEAD/timescatter_signup_split.png --------------------------------------------------------------------------------