scikit学习和机器学习问题

时间:2019-10-08 07:32:39

标签: pandas scikit-learn

我偶然发现了一个指南,用于预测潜在客户得分和客户是否会转化的准确性。该指南未解释此代码行的用途。任何善良的灵魂都能教我这是什么意思!

function doGet(e) {
   return ContentService.createTextOutput("GET запрос");
}

function doPost(e){
   return ContentService.createTextOutput("POST запрос");      
}

供参考,这是上一张表

y_pred_final['final_predicted'] = y_pred_final.Converted_prob.map(lambda x: 1 if x > 0.2 else 0)

##no idea what this line of code does, what does "lambda x:1 if x 0.2 else 0"

谢谢!

0 个答案:

没有答案