blob: 097ddf81e4c55b8a9e37f411c9fbfbd298f28a95 [file] [log] [blame]
{
"paragraphs": [
{
"text": "%md\n\n# Introduction\n\nThis note is to demonstrate how to do machine learning in flink. Here we use [Alink](https://github.com/alibaba/Alink/). \nWe use logics regression to do classification task. We use the same data as other tutorials [bank](https://archive.ics.uci.edu/ml/datasets/bank+marketing).\n",
"user": "anonymous",
"dateUpdated": "2020-04-29 16:09:44.080",
"config": {
"colWidth": 12.0,
"fontSize": 9.0,
"enabled": true,
"results": {},
"editorSetting": {
"language": "markdown",
"editOnDblClick": true,
"completionKey": "TAB",
"completionSupport": false
},
"editorMode": "ace/mode/markdown",
"editorHide": true,
"tableHide": false
},
"settings": {
"params": {},
"forms": {}
},
"results": {
"code": "SUCCESS",
"msg": [
{
"type": "HTML",
"data": "\u003cdiv class\u003d\"markdown-body\"\u003e\n\u003ch1\u003eIntroduction\u003c/h1\u003e\n\u003cp\u003eThis note is to demonstrate how to do machine learning in flink. Here we use \u003ca href\u003d\"https://github.com/alibaba/Alink/\"\u003eAlink\u003c/a\u003e.\u003cbr /\u003e\nWe use logics regression to do classification task. We use the same data as other tutorials \u003ca href\u003d\"https://archive.ics.uci.edu/ml/datasets/bank+marketing\"\u003ebank\u003c/a\u003e.\u003c/p\u003e\n\n\u003c/div\u003e"
}
]
},
"apps": [],
"runtimeInfos": {},
"progressUpdateIntervalMs": 500,
"jobName": "paragraph_1588147625869_1181490991",
"id": "paragraph_1588147625869_1181490991",
"dateCreated": "2020-04-29 16:07:05.869",
"dateStarted": "2020-04-29 16:09:44.080",
"dateFinished": "2020-04-29 16:09:44.102",
"status": "FINISHED"
},
{
"text": "%flink.pyflink\n\nimport pyflink\nfrom pyflink.dataset import ExecutionEnvironment\nfrom pyflink.datastream import StreamExecutionEnvironment\nfrom pyalink.alink.env import useCustomEnv\nmlenv \u003d useCustomEnv(gateway,\n b_env,bt_env_2, s_env, st_env_2)\nfrom pyalink.alink import *\n\nt \u003d bt_env_2.from_elements([(1, 2), (2, 5), (3, 1)], [\u0027a\u0027, \u0027b\u0027])\nsource \u003d TableSourceBatchOp(t)\nsource.print()",
"user": "anonymous",
"dateUpdated": "2020-04-27 13:48:06.523",
"config": {
"editorMode": "ace/mode/python",
"editorHide": false,
"colWidth": 6.0,
"fontSize": 9.0,
"enabled": true,
"results": {},
"editorSetting": {
"language": "python",
"editOnDblClick": false,
"completionSupport": true,
"completionKey": "TAB"
}
},
"settings": {
"params": {},
"forms": {}
},
"results": {
"code": "SUCCESS",
"msg": [
{
"type": "TEXT",
"data": "\nUse one of the following commands to start using PyAlink:\n - useLocalEnv(parallelism, flinkHome\u003dNone, config\u003dNone)\n - useRemoteEnv(host, port, parallelism, flinkHome\u003dNone, localIp\u003d\"localhost\", config\u003dNone)\nCall resetEnv() to reset environment and switch to another.\n\n a b\n0 1 2\n1 2 5\n2 3 1\n"
}
]
},
"apps": [],
"runtimeInfos": {},
"progressUpdateIntervalMs": 500,
"jobName": "paragraph_1583768872979_-705704388",
"id": "20200309-234752_541772059",
"dateCreated": "2020-03-09 23:47:52.979",
"dateStarted": "2020-04-27 13:48:06.528",
"dateFinished": "2020-04-27 13:48:29.623",
"status": "FINISHED"
},
{
"text": "%flink.pyflink\n\n\ntest_data_path \u003d \"/tmp/bank.csv\"\nfull_data_path \u003d \"/tmp/bank-full.csv\"\nschema_str \u003d \"age int, job string, marital string, education string, default string, balance string, housing string, loan string, contact string, day string, month string, duration int, campaign int, pdays int, previous int, poutcome string, y string\"\n\ntest_data \u003d CsvSourceBatchOp() \\\n .setFilePath(test_data_path) \\\n .setSchemaStr(schema_str) \\\n .setIgnoreFirstLine(True) \\\n .setFieldDelimiter(\";\")\n \nfull_data \u003d CsvSourceBatchOp() \\\n .setFilePath(full_data_path) \\\n .setSchemaStr(schema_str) \\\n .setIgnoreFirstLine(True) \\\n .setFieldDelimiter(\";\")\n \ntrain_set \u003d UnionAllBatchOp().linkFrom(\n full_data.filter(\"y\u003d\u0027yes\u0027\"),\n full_data.filter(\"y\u003d\u0027no\u0027\").sample(0.25)\n \n)",
"user": "anonymous",
"dateUpdated": "2020-04-29 16:10:03.433",
"config": {
"editorMode": "ace/mode/python",
"editorHide": false,
"colWidth": 6.0,
"fontSize": 9.0,
"enabled": true,
"results": {},
"editorSetting": {
"language": "python",
"editOnDblClick": false,
"completionSupport": true,
"completionKey": "TAB"
}
},
"settings": {
"params": {},
"forms": {}
},
"results": {
"code": "SUCCESS",
"msg": []
},
"apps": [],
"runtimeInfos": {},
"progressUpdateIntervalMs": 500,
"jobName": "paragraph_1583768872982_-1596320538",
"id": "20200309-234752_30368548",
"dateCreated": "2020-03-09 23:47:52.982",
"dateStarted": "2020-04-27 13:48:33.820",
"dateFinished": "2020-04-27 13:48:34.969",
"status": "FINISHED"
},
{
"text": "%flink.pyflink\n\n\ncategoricalColNames \u003d [\"job\", \"marital\", \"education\", \"default\",\n \"balance\", \"housing\", \"loan\", \"contact\", \"poutcome\" ]\nnumerialColNames \u003d [\"age\", \"duration\", \"campaign\", \"pdays\",\n \"previous\"]\nlabelColName \u003d \"y\"\n\nonehot \u003d OneHotEncoder().setSelectedCols(categoricalColNames) \\\n .setOutputCols([\"output\"])\nassembler \u003d VectorAssembler().setSelectedCols([\"output\"] + numerialColNames) \\\n .setOutputCol(\"vec\")\npipeline \u003d Pipeline().add(onehot).add(assembler)",
"user": "anonymous",
"dateUpdated": "2020-04-27 13:48:37.221",
"config": {
"editorMode": "ace/mode/python",
"editorHide": false,
"colWidth": 6.0,
"fontSize": 9.0,
"enabled": true,
"results": {},
"editorSetting": {
"language": "python",
"editOnDblClick": false,
"completionSupport": true,
"completionKey": "TAB"
}
},
"settings": {
"params": {},
"forms": {}
},
"results": {
"code": "SUCCESS",
"msg": []
},
"apps": [],
"runtimeInfos": {},
"progressUpdateIntervalMs": 500,
"jobName": "paragraph_1583768872983_-260771927",
"id": "20200309-234752_1624274051",
"dateCreated": "2020-03-09 23:47:52.983",
"dateStarted": "2020-04-27 13:48:37.242",
"dateFinished": "2020-04-27 13:48:37.911",
"status": "FINISHED"
},
{
"text": "%flink.pyflink\n\n\nlogistic \u003d LogisticRegression().setVectorCol(\"vec\").setLabelCol(labelColName) \\\n .setPredictionCol(\"pred\").setPredictionDetailCol(\"detail\")\nmodel \u003d pipeline.add(logistic).fit(train_set)\n\npredict \u003d model.transform(test_data)\n\nmetrics \u003d EvalBinaryClassBatchOp().setLabelCol(labelColName) \\\n .setPredictionDetailCol(\"detail\").linkFrom(predict).collectMetrics()\n \n \n ",
"user": "anonymous",
"dateUpdated": "2020-04-27 13:48:39.232",
"config": {
"editorMode": "ace/mode/python",
"editorHide": false,
"colWidth": 6.0,
"fontSize": 9.0,
"enabled": true,
"results": {},
"editorSetting": {
"language": "python",
"editOnDblClick": false,
"completionSupport": true,
"completionKey": "TAB"
}
},
"settings": {
"params": {},
"forms": {}
},
"results": {
"code": "SUCCESS",
"msg": []
},
"apps": [],
"runtimeInfos": {},
"progressUpdateIntervalMs": 500,
"jobName": "paragraph_1583768872983_-2044786839",
"id": "20200309-234752_452787710",
"dateCreated": "2020-03-09 23:47:52.983",
"dateStarted": "2020-04-27 13:48:39.249",
"dateFinished": "2020-04-27 13:48:50.221",
"status": "FINISHED"
},
{
"text": "%flink.pyflink\n\nprint(\"AUC:\", metrics.getAuc())\nprint(\"KS:\", metrics.getKs())\nprint(\"PRC:\", metrics.getPrc())\nprint(\"Precision:\", metrics.getPrecision())\nprint(\"Recall:\", metrics.getRecall())\nprint(\"F1:\", metrics.getF1())\nprint(\"ConfusionMatrix:\", metrics.getConfusionMatrix())\nprint(\"LabelArray:\", metrics.getLabelArray())\nprint(\"LogLoss:\", metrics.getLogLoss())\nprint(\"TotalSamples:\", metrics.getTotalSamples())\nprint(\"ActualLabelProportion:\", metrics.getActualLabelProportion())\nprint(\"ActualLabelFrequency:\", metrics.getActualLabelFrequency())\nprint(\"Accuracy:\", metrics.getAccuracy())\nprint(\"Kappa:\", metrics.getKappa())",
"user": "anonymous",
"dateUpdated": "2020-04-27 13:48:51.441",
"config": {
"editorMode": "ace/mode/python",
"editorHide": false,
"colWidth": 6.0,
"fontSize": 9.0,
"enabled": true,
"results": {},
"editorSetting": {
"language": "python",
"editOnDblClick": false,
"completionSupport": true,
"completionKey": "TAB"
}
},
"settings": {
"params": {},
"forms": {}
},
"results": {
"code": "SUCCESS",
"msg": [
{
"type": "TEXT",
"data": "AUC: 0.9076425143954201\nKS: 0.6844817658349329\nPRC: 0.5349186786420718\nPrecision: 0.4748803827751196\nRecall: 0.761996161228407\nF1: 0.5851142225497421\nConfusionMatrix: [[397, 439], [124, 3561]]\nLabelArray: [\u0027yes\u0027, \u0027no\u0027]\nLogLoss: 0.3427333415817235\nTotalSamples: 4521\nActualLabelProportion: [0.11523999115239991, 0.8847600088476001]\nActualLabelFrequency: [521, 4000]\nAccuracy: 0.8754700287547003\nKappa: 0.5164554316821129\n"
}
]
},
"apps": [],
"runtimeInfos": {},
"progressUpdateIntervalMs": 500,
"jobName": "paragraph_1583768872984_389357281",
"id": "20200309-234752_912989550",
"dateCreated": "2020-03-09 23:47:52.984",
"dateStarted": "2020-04-27 13:48:51.451",
"dateFinished": "2020-04-27 13:48:52.073",
"status": "FINISHED"
},
{
"text": "%flink.pyflink\n\ndf \u003d predict.filter(\"y\u003c\u003epred\").firstN(300).collectToDataframe()\n\nz.show(df)",
"user": "anonymous",
"dateUpdated": "2020-04-27 13:48:54.873",
"config": {
"editorMode": "ace/mode/python",
"editorHide": false,
"colWidth": 12.0,
"fontSize": 9.0,
"enabled": true,
"results": {
"0": {
"graph": {
"mode": "table",
"height": 300.0,
"optionOpen": false,
"setting": {
"table": {
"tableGridState": {},
"tableColumnTypeState": {
"names": {
"age": "string",
"job": "string",
"marital": "string",
"education": "string",
"default": "string",
"balance": "string",
"housing": "string",
"loan": "string",
"contact": "string",
"day": "string",
"month": "string",
"duration": "string",
"campaign": "string",
"pdays": "string",
"previous": "string",
"poutcome": "string",
"y": "string",
"output": "string",
"vec": "string",
"pred": "string",
"detail": "string"
},
"updated": false
},
"tableOptionSpecHash": "[{\"name\":\"useFilter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable filter for columns\"},{\"name\":\"showPagination\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable pagination for better navigation\"},{\"name\":\"showAggregationFooter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable a footer for displaying aggregated values\"}]",
"tableOptionValue": {
"useFilter": false,
"showPagination": false,
"showAggregationFooter": false
},
"updated": false,
"initialized": false
}
},
"commonSetting": {}
}
}
},
"editorSetting": {
"language": "python",
"editOnDblClick": false,
"completionSupport": true,
"completionKey": "TAB"
}
},
"settings": {
"params": {},
"forms": {}
},
"results": {
"code": "SUCCESS",
"msg": [
{
"type": "TABLE",
"data": "age\tjob\tmarital\teducation\tdefault\tbalance\thousing\tloan\tcontact\tday\tmonth\tduration\tcampaign\tpdays\tprevious\tpoutcome\ty\toutput\tvec\tpred\tdetail\n36\tself-employed\tmarried\ttertiary\tno\t307\tyes\tno\tcellular\t14\tmay\t341\t1\t330\t2\tother\tno\t$4563$6:1.0 13:1.0 17:1.0 19:1.0 2518:1.0 4554:1.0 4556:1.0 4560:1.0\t$4568$6:1.0 13:1.0 17:1.0 19:1.0 2518:1.0 4554:1.0 4556:1.0 4560:1.0 4563:36.0 4564:341.0 4565:1.0 4566:330.0 4567:2.0\tyes\t{\"no\":\"0.24364838869421468\",\"yes\":\"0.7563516113057853\"}\n31\tservices\tmarried\tsecondary\tno\t132\tno\tno\tcellular\t7\tjul\t148\t1\t152\t1\tother\tno\t$4563$7:1.0 13:1.0 16:1.0 19:1.0 1043:1.0 4552:1.0 4554:1.0 4556:1.0 4560:1.0\t$4568$7:1.0 13:1.0 16:1.0 19:1.0 1043:1.0 4552:1.0 4554:1.0 4556:1.0 4560:1.0 4563:31.0 4564:148.0 4565:1.0 4566:152.0 4567:1.0\tyes\t{\"no\":\"0.3501427245267339\",\"yes\":\"0.6498572754732661\"}\n78\tretired\tdivorced\tprimary\tno\t229\tno\tno\ttelephone\t22\toct\t97\t1\t-1\t0\tunknown\tyes\t$4563$5:1.0 12:1.0 15:1.0 19:1.0 1962:1.0 4552:1.0 4554:1.0 4557:1.0\t$4568$5:1.0 12:1.0 15:1.0 19:1.0 1962:1.0 4552:1.0 4554:1.0 4557:1.0 4563:78.0 4564:97.0 4565:1.0 4566:-1.0 4567:0.0\tno\t{\"no\":\"0.6104429520406811\",\"yes\":\"0.3895570479593189\"}\n32\tblue-collar\tmarried\tsecondary\tno\t2089\tyes\tno\tcellular\t14\tnov\t132\t1\t-1\t0\tunknown\tyes\t$4563$1:1.0 13:1.0 16:1.0 19:1.0 1790:1.0 4554:1.0 4556:1.0\t$4568$1:1.0 13:1.0 16:1.0 19:1.0 1790:1.0 4554:1.0 4556:1.0 4563:32.0 4564:132.0 4565:1.0 4566:-1.0 4567:0.0\tno\t{\"no\":\"0.955472844471085\",\"yes\":\"0.04452715552891495\"}\n37\ttechnician\tsingle\tsecondary\tno\t228\tyes\tno\tcellular\t20\taug\t1740\t2\t-1\t0\tunknown\tno\t$4563$9:1.0 16:1.0 19:1.0 1952:1.0 4554:1.0 4556:1.0\t$4568$9:1.0 16:1.0 19:1.0 1952:1.0 4554:1.0 4556:1.0 4563:37.0 4564:1740.0 4565:2.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.0015312625158320214\",\"yes\":\"0.998468737484168\"}\n33\tself-employed\tsingle\ttertiary\tno\t2155\tno\tno\tcellular\t17\tnov\t295\t1\t-1\t0\tunknown\tno\t$4563$6:1.0 17:1.0 19:1.0 1846:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$6:1.0 17:1.0 19:1.0 1846:1.0 4552:1.0 4554:1.0 4556:1.0 4563:33.0 4564:295.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.12667119287866468\",\"yes\":\"0.8733288071213353\"}\n41\tblue-collar\tmarried\tprimary\tno\t-516\tno\tyes\ttelephone\t8\tjul\t554\t3\t-1\t0\tunknown\tno\t$4563$1:1.0 13:1.0 15:1.0 19:1.0 4551:1.0 4552:1.0 4557:1.0\t$4568$1:1.0 13:1.0 15:1.0 19:1.0 4551:1.0 4552:1.0 4557:1.0 4563:41.0 4564:554.0 4565:3.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.47900049763976393\",\"yes\":\"0.5209995023602361\"}\n41\tmanagement\tmarried\tsecondary\tno\t0\tno\tyes\tcellular\t7\tjul\t630\t3\t-1\t0\tunknown\tno\t$4563$4:1.0 13:1.0 16:1.0 19:1.0 591:1.0 4552:1.0 4556:1.0\t$4568$4:1.0 13:1.0 16:1.0 19:1.0 591:1.0 4552:1.0 4556:1.0 4563:41.0 4564:630.0 4565:3.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.44932323385184647\",\"yes\":\"0.5506767661481535\"}\n32\ttechnician\tsingle\ttertiary\tno\t360\tno\tno\tcellular\t19\tnov\t164\t2\t-1\t0\tunknown\tno\t$4563$9:1.0 17:1.0 19:1.0 2821:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$9:1.0 17:1.0 19:1.0 2821:1.0 4552:1.0 4554:1.0 4556:1.0 4563:32.0 4564:164.0 4565:2.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.30085388242720246\",\"yes\":\"0.6991461175727975\"}\n50\tblue-collar\tdivorced\tprimary\tno\t388\tno\tno\tcellular\t5\tfeb\t701\t1\t-1\t0\tunknown\tno\t$4563$1:1.0 12:1.0 15:1.0 19:1.0 2961:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$1:1.0 12:1.0 15:1.0 19:1.0 2961:1.0 4552:1.0 4554:1.0 4556:1.0 4563:50.0 4564:701.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.43241435376779047\",\"yes\":\"0.5675856462322095\"}\n27\tservices\tsingle\tsecondary\tno\t-195\tyes\tno\tcellular\t18\tmay\t391\t1\t-1\t0\tunknown\tyes\t$4563$7:1.0 16:1.0 19:1.0 150:1.0 4554:1.0 4556:1.0\t$4568$7:1.0 16:1.0 19:1.0 150:1.0 4554:1.0 4556:1.0 4563:27.0 4564:391.0 4565:1.0 4566:-1.0 4567:0.0\tno\t{\"no\":\"0.5670406427705115\",\"yes\":\"0.43295935722948853\"}\n30\tadmin.\tsingle\ttertiary\tno\t261\tno\tno\tcellular\t19\toct\t233\t1\t137\t20\tfailure\tno\t$4563$0:1.0 17:1.0 19:1.0 2201:1.0 4552:1.0 4554:1.0 4556:1.0 4559:1.0\t$4568$0:1.0 17:1.0 19:1.0 2201:1.0 4552:1.0 4554:1.0 4556:1.0 4559:1.0 4563:30.0 4564:233.0 4565:1.0 4566:137.0 4567:20.0\tyes\t{\"no\":\"0.2033695162990653\",\"yes\":\"0.7966304837009347\"}\n36\tblue-collar\tdivorced\tsecondary\tno\t2843\tno\tno\tcellular\t12\tfeb\t473\t1\t182\t1\tsuccess\tno\t$4563$1:1.0 12:1.0 16:1.0 19:1.0 2373:1.0 4552:1.0 4554:1.0 4556:1.0 4561:1.0\t$4568$1:1.0 12:1.0 16:1.0 19:1.0 2373:1.0 4552:1.0 4554:1.0 4556:1.0 4561:1.0 4563:36.0 4564:473.0 4565:1.0 4566:182.0 4567:1.0\tyes\t{\"no\":\"0.009990001827027584\",\"yes\":\"0.9900099981729724\"}\n38\tmanagement\tsingle\ttertiary\tno\t493\tyes\tno\tcellular\t11\tmay\t553\t1\t367\t7\tfailure\tno\t$4563$4:1.0 17:1.0 19:1.0 3400:1.0 4554:1.0 4556:1.0 4559:1.0\t$4568$4:1.0 17:1.0 19:1.0 3400:1.0 4554:1.0 4556:1.0 4559:1.0 4563:38.0 4564:553.0 4565:1.0 4566:367.0 4567:7.0\tyes\t{\"no\":\"0.061803797749072964\",\"yes\":\"0.938196202250927\"}\n25\ttechnician\tsingle\tsecondary\tno\t505\tno\tyes\tcellular\t17\tnov\t386\t2\t-1\t0\tunknown\tyes\t$4563$9:1.0 16:1.0 19:1.0 3447:1.0 4552:1.0 4556:1.0\t$4568$9:1.0 16:1.0 19:1.0 3447:1.0 4552:1.0 4556:1.0 4563:25.0 4564:386.0 4565:2.0 4566:-1.0 4567:0.0\tno\t{\"no\":\"0.6715765425918485\",\"yes\":\"0.3284234574081515\"}\n46\tmanagement\tdivorced\ttertiary\tno\t25\tno\tno\tunknown\t17\tjun\t564\t2\t-1\t0\tunknown\tno\t$4563$4:1.0 12:1.0 17:1.0 19:1.0 2124:1.0 4552:1.0 4554:1.0\t$4568$4:1.0 12:1.0 17:1.0 19:1.0 2124:1.0 4552:1.0 4554:1.0 4563:46.0 4564:564.0 4565:2.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.057851301653060405\",\"yes\":\"0.9421486983469396\"}\n31\tadmin.\tdivorced\tsecondary\tno\t1890\tyes\tno\tcellular\t21\tjul\t588\t1\t-1\t0\tunknown\tno\t$4563$0:1.0 12:1.0 16:1.0 19:1.0 4551:1.0 4554:1.0 4556:1.0\t$4568$0:1.0 12:1.0 16:1.0 19:1.0 4551:1.0 4554:1.0 4556:1.0 4563:31.0 4564:588.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.41174142408022874\",\"yes\":\"0.5882585759197713\"}\n36\tblue-collar\tmarried\tsecondary\tno\t-231\tno\tyes\tcellular\t15\tjul\t779\t2\t-1\t0\tunknown\tno\t$4563$1:1.0 13:1.0 16:1.0 19:1.0 4551:1.0 4552:1.0 4556:1.0\t$4568$1:1.0 13:1.0 16:1.0 19:1.0 4551:1.0 4552:1.0 4556:1.0 4563:36.0 4564:779.0 4565:2.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.2065802413636505\",\"yes\":\"0.7934197586363495\"}\n35\tmanagement\tmarried\ttertiary\tno\t106\tno\tyes\tcellular\t11\taug\t588\t2\t-1\t0\tunknown\tno\t$4563$4:1.0 13:1.0 17:1.0 19:1.0 685:1.0 4552:1.0 4556:1.0\t$4568$4:1.0 13:1.0 17:1.0 19:1.0 685:1.0 4552:1.0 4556:1.0 4563:35.0 4564:588.0 4565:2.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.3075232738388288\",\"yes\":\"0.6924767261611712\"}\n40\tadmin.\tsingle\tsecondary\tno\t462\tyes\tyes\tcellular\t6\tapr\t272\t1\t335\t4\tother\tno\t$4563$0:1.0 16:1.0 19:1.0 3281:1.0 4556:1.0 4560:1.0\t$4568$0:1.0 16:1.0 19:1.0 3281:1.0 4556:1.0 4560:1.0 4563:40.0 4564:272.0 4565:1.0 4566:335.0 4567:4.0\tyes\t{\"no\":\"0.49335601149801067\",\"yes\":\"0.5066439885019893\"}\n34\tadmin.\tmarried\ttertiary\tno\t899\tyes\tno\ttelephone\t19\tnov\t377\t3\t7\t4\tsuccess\tno\t$4563$0:1.0 13:1.0 17:1.0 19:1.0 4391:1.0 4554:1.0 4557:1.0 4561:1.0\t$4568$0:1.0 13:1.0 17:1.0 19:1.0 4391:1.0 4554:1.0 4557:1.0 4561:1.0 4563:34.0 4564:377.0 4565:3.0 4566:7.0 4567:4.0\tyes\t{\"no\":\"0.035056861341776324\",\"yes\":\"0.9649431386582237\"}\n56\tretired\tmarried\tsecondary\tno\t-1206\tyes\tno\tcellular\t15\tjun\t382\t2\t-1\t0\tunknown\tyes\t$4563$5:1.0 13:1.0 16:1.0 19:1.0 60:1.0 4554:1.0 4556:1.0\t$4568$5:1.0 13:1.0 16:1.0 19:1.0 60:1.0 4554:1.0 4556:1.0 4563:56.0 4564:382.0 4565:2.0 4566:-1.0 4567:0.0\tno\t{\"no\":\"0.5750329168808137\",\"yes\":\"0.4249670831191863\"}\n23\tstudent\tsingle\tsecondary\tno\t9216\tno\tno\tcellular\t5\tjun\t471\t2\t-1\t0\tunknown\tno\t$4563$8:1.0 16:1.0 19:1.0 4551:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$8:1.0 16:1.0 19:1.0 4551:1.0 4552:1.0 4554:1.0 4556:1.0 4563:23.0 4564:471.0 4565:2.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.10896691273290493\",\"yes\":\"0.8910330872670951\"}\n34\ttechnician\tsingle\ttertiary\tno\t992\tyes\tno\tcellular\t4\tmay\t301\t1\t88\t2\tsuccess\tno\t$4563$9:1.0 17:1.0 19:1.0 4543:1.0 4554:1.0 4556:1.0 4561:1.0\t$4568$9:1.0 17:1.0 19:1.0 4543:1.0 4554:1.0 4556:1.0 4561:1.0 4563:34.0 4564:301.0 4565:1.0 4566:88.0 4567:2.0\tyes\t{\"no\":\"0.03341890357561672\",\"yes\":\"0.9665810964243833\"}\n39\tmanagement\tdivorced\ttertiary\tno\t1315\tyes\tno\tcellular\t19\tnov\t1337\t4\t126\t1\tfailure\tno\t$4563$4:1.0 12:1.0 17:1.0 19:1.0 1034:1.0 4554:1.0 4556:1.0 4559:1.0\t$4568$4:1.0 12:1.0 17:1.0 19:1.0 1034:1.0 4554:1.0 4556:1.0 4559:1.0 4563:39.0 4564:1337.0 4565:4.0 4566:126.0 4567:1.0\tyes\t{\"no\":\"0.0014402622545870436\",\"yes\":\"0.998559737745413\"}\n49\tblue-collar\tmarried\tprimary\tno\t305\tyes\tyes\ttelephone\t10\tjul\t834\t10\t-1\t0\tunknown\tno\t$4563$1:1.0 13:1.0 15:1.0 19:1.0 2504:1.0 4557:1.0\t$4568$1:1.0 13:1.0 15:1.0 19:1.0 2504:1.0 4557:1.0 4563:49.0 4564:834.0 4565:10.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.44266891386087714\",\"yes\":\"0.5573310861391229\"}\n45\tblue-collar\tsingle\tsecondary\tno\t0\tyes\tno\tcellular\t26\tjul\t768\t2\t91\t5\tsuccess\tno\t$4563$1:1.0 16:1.0 19:1.0 591:1.0 4554:1.0 4556:1.0 4561:1.0\t$4568$1:1.0 16:1.0 19:1.0 591:1.0 4554:1.0 4556:1.0 4561:1.0 4563:45.0 4564:768.0 4565:2.0 4566:91.0 4567:5.0\tyes\t{\"no\":\"0.027529914381617115\",\"yes\":\"0.9724700856183829\"}\n30\tstudent\tsingle\tsecondary\tno\t3096\tno\tno\tcellular\t26\tjan\t123\t1\t-1\t0\tunknown\tno\t$4563$8:1.0 16:1.0 19:1.0 4551:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$8:1.0 16:1.0 19:1.0 4551:1.0 4552:1.0 4554:1.0 4556:1.0 4563:30.0 4564:123.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.4495979910761039\",\"yes\":\"0.5504020089238961\"}\n50\tself-employed\tmarried\ttertiary\tno\t4012\tno\tno\tcellular\t19\tnov\t690\t3\t-1\t0\tunknown\tno\t$4563$6:1.0 13:1.0 17:1.0 19:1.0 3022:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$6:1.0 13:1.0 17:1.0 19:1.0 3022:1.0 4552:1.0 4554:1.0 4556:1.0 4563:50.0 4564:690.0 4565:3.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.0812118773096272\",\"yes\":\"0.9187881226903728\"}\n50\tblue-collar\tmarried\tsecondary\tno\t606\tyes\tno\tunknown\t14\tmay\t673\t2\t-1\t0\tunknown\tno\t$4563$1:1.0 13:1.0 16:1.0 19:1.0 3753:1.0 4554:1.0\t$4568$1:1.0 13:1.0 16:1.0 19:1.0 3753:1.0 4554:1.0 4563:50.0 4564:673.0 4565:2.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.28189910665169227\",\"yes\":\"0.7181008933483077\"}\n24\tblue-collar\tsingle\tsecondary\tno\t174\tyes\tyes\tcellular\t18\tmay\t487\t1\t-1\t0\tunknown\tyes\t$4563$1:1.0 16:1.0 19:1.0 1487:1.0 4556:1.0\t$4568$1:1.0 16:1.0 19:1.0 1487:1.0 4556:1.0 4563:24.0 4564:487.0 4565:1.0 4566:-1.0 4567:0.0\tno\t{\"no\":\"0.8562915836574629\",\"yes\":\"0.14370841634253706\"}\n35\thousemaid\tmarried\ttertiary\tno\t11219\tno\tno\tcellular\t12\taug\t699\t2\t79\t1\tfailure\tno\t$4563$3:1.0 13:1.0 17:1.0 19:1.0 4551:1.0 4552:1.0 4554:1.0 4556:1.0 4559:1.0\t$4568$3:1.0 13:1.0 17:1.0 19:1.0 4551:1.0 4552:1.0 4554:1.0 4556:1.0 4559:1.0 4563:35.0 4564:699.0 4565:2.0 4566:79.0 4567:1.0\tyes\t{\"no\":\"0.18429314438247868\",\"yes\":\"0.8157068556175213\"}\n29\tmanagement\tmarried\ttertiary\tno\t451\tno\tno\tcellular\t28\tjan\t451\t1\t-1\t0\tunknown\tno\t$4563$4:1.0 13:1.0 17:1.0 19:1.0 3242:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$4:1.0 13:1.0 17:1.0 19:1.0 3242:1.0 4552:1.0 4554:1.0 4556:1.0 4563:29.0 4564:451.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.28184697217861976\",\"yes\":\"0.7181530278213802\"}\n38\tentrepreneur\tmarried\tsecondary\tno\t593\tyes\tyes\tcellular\t24\tjul\t1484\t24\t-1\t0\tunknown\tyes\t$4563$2:1.0 13:1.0 16:1.0 19:1.0 3717:1.0 4556:1.0\t$4568$2:1.0 13:1.0 16:1.0 19:1.0 3717:1.0 4556:1.0 4563:38.0 4564:1484.0 4565:24.0 4566:-1.0 4567:0.0\tno\t{\"no\":\"0.7213492179211143\",\"yes\":\"0.2786507820788857\"}\n32\tblue-collar\tmarried\tsecondary\tno\t759\tyes\tno\tcellular\t9\tapr\t317\t5\t-1\t0\tunknown\tyes\t$4563$1:1.0 13:1.0 16:1.0 19:1.0 4119:1.0 4554:1.0 4556:1.0\t$4568$1:1.0 13:1.0 16:1.0 19:1.0 4119:1.0 4554:1.0 4556:1.0 4563:32.0 4564:317.0 4565:5.0 4566:-1.0 4567:0.0\tno\t{\"no\":\"0.9177419859089937\",\"yes\":\"0.0822580140910063\"}\n70\tretired\tdivorced\tprimary\tno\t4531\tno\tno\tcellular\t18\tmay\t445\t1\t-1\t0\tunknown\tno\t$4563$5:1.0 12:1.0 15:1.0 19:1.0 4551:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$5:1.0 12:1.0 15:1.0 19:1.0 4551:1.0 4552:1.0 4554:1.0 4556:1.0 4563:70.0 4564:445.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.24943983545476656\",\"yes\":\"0.7505601645452334\"}\n43\tblue-collar\tsingle\tprimary\tno\t2\tyes\tno\tcellular\t30\tjul\t783\t3\t-1\t0\tunknown\tno\t$4563$1:1.0 15:1.0 19:1.0 1710:1.0 4554:1.0 4556:1.0\t$4568$1:1.0 15:1.0 19:1.0 1710:1.0 4554:1.0 4556:1.0 4563:43.0 4564:783.0 4565:3.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.27609936323241\",\"yes\":\"0.72390063676759\"}\n43\tmanagement\tmarried\ttertiary\tno\t2\tno\tyes\tcellular\t20\taug\t472\t2\t-1\t0\tunknown\tno\t$4563$4:1.0 13:1.0 17:1.0 19:1.0 1710:1.0 4552:1.0 4556:1.0\t$4568$4:1.0 13:1.0 17:1.0 19:1.0 1710:1.0 4552:1.0 4556:1.0 4563:43.0 4564:472.0 4565:2.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.4545412121873147\",\"yes\":\"0.5454587878126853\"}\n25\tadmin.\tsingle\ttertiary\tno\t760\tyes\tno\tcellular\t27\tmay\t223\t3\t89\t2\tfailure\tyes\t$4563$0:1.0 17:1.0 19:1.0 4122:1.0 4554:1.0 4556:1.0 4559:1.0\t$4568$0:1.0 17:1.0 19:1.0 4122:1.0 4554:1.0 4556:1.0 4559:1.0 4563:25.0 4564:223.0 4565:3.0 4566:89.0 4567:2.0\tno\t{\"no\":\"0.8327066418520535\",\"yes\":\"0.16729335814794655\"}\n35\tentrepreneur\tmarried\tsecondary\tno\t2971\tno\tno\tcellular\t4\tmay\t429\t4\t164\t2\tfailure\tyes\t$4563$2:1.0 13:1.0 16:1.0 19:1.0 2449:1.0 4552:1.0 4554:1.0 4556:1.0 4559:1.0\t$4568$2:1.0 13:1.0 16:1.0 19:1.0 2449:1.0 4552:1.0 4554:1.0 4556:1.0 4559:1.0 4563:35.0 4564:429.0 4565:4.0 4566:164.0 4567:2.0\tno\t{\"no\":\"0.5237976547528757\",\"yes\":\"0.47620234524712435\"}\n33\ttechnician\tmarried\tsecondary\tno\t6699\tno\tno\tcellular\t9\tnov\t425\t1\t462\t1\tfailure\tno\t$4563$9:1.0 13:1.0 16:1.0 19:1.0 3909:1.0 4552:1.0 4554:1.0 4556:1.0 4559:1.0\t$4568$9:1.0 13:1.0 16:1.0 19:1.0 3909:1.0 4552:1.0 4554:1.0 4556:1.0 4559:1.0 4563:33.0 4564:425.0 4565:1.0 4566:462.0 4567:1.0\tyes\t{\"no\":\"0.42794838131674573\",\"yes\":\"0.5720516186832543\"}\n29\ttechnician\tsingle\ttertiary\tno\t828\tyes\tno\tcellular\t16\tapr\t215\t3\t321\t3\tother\tno\t$4563$9:1.0 17:1.0 19:1.0 4264:1.0 4554:1.0 4556:1.0 4560:1.0\t$4568$9:1.0 17:1.0 19:1.0 4264:1.0 4554:1.0 4556:1.0 4560:1.0 4563:29.0 4564:215.0 4565:3.0 4566:321.0 4567:3.0\tyes\t{\"no\":\"0.2874505502063134\",\"yes\":\"0.7125494497936866\"}\n30\tmanagement\tsingle\ttertiary\tno\t424\tno\tno\tcellular\t16\tapr\t298\t4\t-1\t0\tunknown\tyes\t$4563$4:1.0 17:1.0 19:1.0 3127:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$4:1.0 17:1.0 19:1.0 3127:1.0 4552:1.0 4554:1.0 4556:1.0 4563:30.0 4564:298.0 4565:4.0 4566:-1.0 4567:0.0\tno\t{\"no\":\"0.6527281702343373\",\"yes\":\"0.34727182976566273\"}\n63\tretired\tmarried\tprimary\tno\t1084\tno\tno\tcellular\t14\toct\t201\t1\t183\t1\tsuccess\tno\t$4563$5:1.0 13:1.0 15:1.0 19:1.0 720:1.0 4552:1.0 4554:1.0 4556:1.0 4561:1.0\t$4568$5:1.0 13:1.0 15:1.0 19:1.0 720:1.0 4552:1.0 4554:1.0 4556:1.0 4561:1.0 4563:63.0 4564:201.0 4565:1.0 4566:183.0 4567:1.0\tyes\t{\"no\":\"0.11404292070125122\",\"yes\":\"0.8859570792987488\"}\n37\tmanagement\tsingle\tunknown\tno\t504\tyes\tno\tcellular\t16\tapr\t555\t1\t-1\t0\tunknown\tno\t$4563$4:1.0 19:1.0 3441:1.0 4554:1.0 4556:1.0\t$4568$4:1.0 19:1.0 3441:1.0 4554:1.0 4556:1.0 4563:37.0 4564:555.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.48459620066340237\",\"yes\":\"0.5154037993365976\"}\n47\tself-employed\tmarried\ttertiary\tno\t2303\tyes\tno\tcellular\t6\tmay\t323\t2\t364\t1\tfailure\tno\t$4563$6:1.0 13:1.0 17:1.0 19:1.0 1971:1.0 4554:1.0 4556:1.0 4559:1.0\t$4568$6:1.0 13:1.0 17:1.0 19:1.0 1971:1.0 4554:1.0 4556:1.0 4559:1.0 4563:47.0 4564:323.0 4565:2.0 4566:364.0 4567:1.0\tyes\t{\"no\":\"0.46625324240952204\",\"yes\":\"0.533746757590478\"}\n29\tmanagement\tmarried\ttertiary\tno\t318\tyes\tno\tcellular\t18\tmay\t1434\t2\t356\t4\tfailure\tno\t$4563$4:1.0 13:1.0 17:1.0 19:1.0 2583:1.0 4554:1.0 4556:1.0 4559:1.0\t$4568$4:1.0 13:1.0 17:1.0 19:1.0 2583:1.0 4554:1.0 4556:1.0 4559:1.0 4563:29.0 4564:1434.0 4565:2.0 4566:356.0 4567:4.0\tyes\t{\"no\":\"9.78515962611004E-4\",\"yes\":\"0.999021484037389\"}\n26\tstudent\tsingle\tsecondary\tno\t2572\tyes\tno\tcellular\t5\tmay\t620\t1\t-1\t0\tunknown\tno\t$4563$8:1.0 16:1.0 19:1.0 4551:1.0 4554:1.0 4556:1.0\t$4568$8:1.0 16:1.0 19:1.0 4551:1.0 4554:1.0 4556:1.0 4563:26.0 4564:620.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.09764974703407625\",\"yes\":\"0.9023502529659237\"}\n23\tstudent\tsingle\tsecondary\tno\t780\tno\tno\tcellular\t16\tsep\t267\t1\t-1\t0\tunknown\tno\t$4563$8:1.0 16:1.0 19:1.0 4164:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$8:1.0 16:1.0 19:1.0 4164:1.0 4552:1.0 4554:1.0 4556:1.0 4563:23.0 4564:267.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.07986094904174856\",\"yes\":\"0.9201390509582514\"}\n30\tentrepreneur\tmarried\tsecondary\tno\t946\tyes\tno\tcellular\t19\tnov\t1065\t1\t183\t1\tother\tno\t$4563$2:1.0 13:1.0 16:1.0 19:1.0 4472:1.0 4554:1.0 4556:1.0 4560:1.0\t$4568$2:1.0 13:1.0 16:1.0 19:1.0 4472:1.0 4554:1.0 4556:1.0 4560:1.0 4563:30.0 4564:1065.0 4565:1.0 4566:183.0 4567:1.0\tyes\t{\"no\":\"0.04024347054955113\",\"yes\":\"0.9597565294504489\"}\n33\tmanagement\tsingle\ttertiary\tno\t1240\tyes\tno\tcellular\t4\tfeb\t505\t2\t260\t1\tother\tno\t$4563$4:1.0 17:1.0 19:1.0 940:1.0 4554:1.0 4556:1.0 4560:1.0\t$4568$4:1.0 17:1.0 19:1.0 940:1.0 4554:1.0 4556:1.0 4560:1.0 4563:33.0 4564:505.0 4565:2.0 4566:260.0 4567:1.0\tyes\t{\"no\":\"0.13934313404848764\",\"yes\":\"0.8606568659515124\"}\n37\ttechnician\tsingle\ttertiary\tno\t6101\tno\tno\tcellular\t4\tmay\t60\t5\t87\t1\tsuccess\tno\t$4563$9:1.0 17:1.0 19:1.0 3764:1.0 4552:1.0 4554:1.0 4556:1.0 4561:1.0\t$4568$9:1.0 17:1.0 19:1.0 3764:1.0 4552:1.0 4554:1.0 4556:1.0 4561:1.0 4563:37.0 4564:60.0 4565:5.0 4566:87.0 4567:1.0\tyes\t{\"no\":\"0.2260740965951229\",\"yes\":\"0.7739259034048771\"}\n54\tadmin.\tmarried\tsecondary\tno\t0\tno\tno\tcellular\t28\tjan\t161\t1\t98\t2\tfailure\tyes\t$4563$0:1.0 13:1.0 16:1.0 19:1.0 591:1.0 4552:1.0 4554:1.0 4556:1.0 4559:1.0\t$4568$0:1.0 13:1.0 16:1.0 19:1.0 591:1.0 4552:1.0 4554:1.0 4556:1.0 4559:1.0 4563:54.0 4564:161.0 4565:1.0 4566:98.0 4567:2.0\tno\t{\"no\":\"0.6702954173731659\",\"yes\":\"0.3297045826268341\"}\n37\tmanagement\tmarried\ttertiary\tno\t502\tyes\tno\tcellular\t7\tmay\t551\t1\t351\t1\tfailure\tno\t$4563$4:1.0 13:1.0 17:1.0 19:1.0 3433:1.0 4554:1.0 4556:1.0 4559:1.0\t$4568$4:1.0 13:1.0 17:1.0 19:1.0 3433:1.0 4554:1.0 4556:1.0 4559:1.0 4563:37.0 4564:551.0 4565:1.0 4566:351.0 4567:1.0\tyes\t{\"no\":\"0.246104231926636\",\"yes\":\"0.753895768073364\"}\n40\tmanagement\tmarried\ttertiary\tno\t542\tyes\tno\tcellular\t20\tnov\t1816\t1\t-1\t0\tunknown\tno\t$4563$4:1.0 13:1.0 17:1.0 19:1.0 3575:1.0 4554:1.0 4556:1.0\t$4568$4:1.0 13:1.0 17:1.0 19:1.0 3575:1.0 4554:1.0 4556:1.0 4563:40.0 4564:1816.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"1.1029503586912348E-4\",\"yes\":\"0.9998897049641309\"}\n56\tmanagement\tmarried\ttertiary\tno\t217\tno\tyes\tcellular\t21\tjul\t121\t2\t-1\t0\tunknown\tno\t$4563$4:1.0 13:1.0 17:1.0 19:1.0 1858:1.0 4552:1.0 4556:1.0\t$4568$4:1.0 13:1.0 17:1.0 19:1.0 1858:1.0 4552:1.0 4556:1.0 4563:56.0 4564:121.0 4565:2.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.38749339555439655\",\"yes\":\"0.6125066044456035\"}\n30\tmanagement\tmarried\ttertiary\tno\t1221\tyes\tno\ttelephone\t25\tjul\t279\t4\t-1\t0\tunknown\tyes\t$4563$4:1.0 13:1.0 17:1.0 19:1.0 913:1.0 4554:1.0 4557:1.0\t$4568$4:1.0 13:1.0 17:1.0 19:1.0 913:1.0 4554:1.0 4557:1.0 4563:30.0 4564:279.0 4565:4.0 4566:-1.0 4567:0.0\tno\t{\"no\":\"0.7115409782499342\",\"yes\":\"0.28845902175006577\"}\n59\thousemaid\tmarried\tsecondary\tno\t0\tno\tno\ttelephone\t3\tfeb\t722\t1\t99\t4\tfailure\tno\t$4563$3:1.0 13:1.0 16:1.0 19:1.0 591:1.0 4552:1.0 4554:1.0 4557:1.0 4559:1.0\t$4568$3:1.0 13:1.0 16:1.0 19:1.0 591:1.0 4552:1.0 4554:1.0 4557:1.0 4559:1.0 4563:59.0 4564:722.0 4565:1.0 4566:99.0 4567:4.0\tyes\t{\"no\":\"0.1308715926218108\",\"yes\":\"0.8691284073781892\"}\n34\tself-employed\tmarried\tsecondary\tno\t-370\tyes\tno\tunknown\t21\tmay\t748\t1\t-1\t0\tunknown\tno\t$4563$6:1.0 13:1.0 16:1.0 19:1.0 314:1.0 4554:1.0\t$4568$6:1.0 13:1.0 16:1.0 19:1.0 314:1.0 4554:1.0 4563:34.0 4564:748.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.33999760600399254\",\"yes\":\"0.6600023939960075\"}\n46\tadmin.\tmarried\tsecondary\tno\t22\tno\tno\tcellular\t26\taug\t388\t6\t-1\t0\tunknown\tyes\t$4563$0:1.0 13:1.0 16:1.0 19:1.0 1883:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$0:1.0 13:1.0 16:1.0 19:1.0 1883:1.0 4552:1.0 4554:1.0 4556:1.0 4563:46.0 4564:388.0 4565:6.0 4566:-1.0 4567:0.0\tno\t{\"no\":\"0.6495031449766563\",\"yes\":\"0.3504968550233437\"}\n42\tmanagement\tsingle\ttertiary\tno\t515\tyes\tno\tcellular\t19\tnov\t501\t2\t-1\t0\tunknown\tno\t$4563$4:1.0 17:1.0 19:1.0 3485:1.0 4554:1.0 4556:1.0\t$4568$4:1.0 17:1.0 19:1.0 3485:1.0 4554:1.0 4556:1.0 4563:42.0 4564:501.0 4565:2.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.20032959150050678\",\"yes\":\"0.7996704084994932\"}\n19\tstudent\tsingle\tprimary\tno\t103\tno\tno\tcellular\t10\tjul\t104\t2\t-1\t0\tunknown\tyes\t$4563$8:1.0 15:1.0 19:1.0 645:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$8:1.0 15:1.0 19:1.0 645:1.0 4552:1.0 4554:1.0 4556:1.0 4563:19.0 4564:104.0 4565:2.0 4566:-1.0 4567:0.0\tno\t{\"no\":\"0.8826012144352103\",\"yes\":\"0.11739878556478966\"}\n32\tmanagement\tmarried\ttertiary\tno\t820\tyes\tno\tcellular\t17\tjul\t738\t3\t-1\t0\tunknown\tno\t$4563$4:1.0 13:1.0 17:1.0 19:1.0 4249:1.0 4554:1.0 4556:1.0\t$4568$4:1.0 13:1.0 17:1.0 19:1.0 4249:1.0 4554:1.0 4556:1.0 4563:32.0 4564:738.0 4565:3.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.044215576421124614\",\"yes\":\"0.9557844235788754\"}\n52\ttechnician\tmarried\tsecondary\tno\t195\tyes\tno\tcellular\t18\tfeb\t220\t1\t63\t5\tfailure\tyes\t$4563$9:1.0 13:1.0 16:1.0 19:1.0 1667:1.0 4554:1.0 4556:1.0 4559:1.0\t$4568$9:1.0 13:1.0 16:1.0 19:1.0 1667:1.0 4554:1.0 4556:1.0 4559:1.0 4563:52.0 4564:220.0 4565:1.0 4566:63.0 4567:5.0\tno\t{\"no\":\"0.8668052673882624\",\"yes\":\"0.13319473261173764\"}\n61\tretired\tmarried\tsecondary\tno\t5207\tno\tno\tcellular\t11\tsep\t336\t1\t81\t2\tother\tno\t$4563$5:1.0 13:1.0 16:1.0 19:1.0 4551:1.0 4552:1.0 4554:1.0 4556:1.0 4560:1.0\t$4568$5:1.0 13:1.0 16:1.0 19:1.0 4551:1.0 4552:1.0 4554:1.0 4556:1.0 4560:1.0 4563:61.0 4564:336.0 4565:1.0 4566:81.0 4567:2.0\tyes\t{\"no\":\"0.20455881879148996\",\"yes\":\"0.79544118120851\"}\n27\tadmin.\tmarried\tsecondary\tno\t1033\tyes\tno\tunknown\t9\tmay\t1713\t1\t-1\t0\tunknown\tno\t$4563$0:1.0 13:1.0 16:1.0 19:1.0 649:1.0 4554:1.0\t$4568$0:1.0 13:1.0 16:1.0 19:1.0 649:1.0 4554:1.0 4563:27.0 4564:1713.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.0018266604444627799\",\"yes\":\"0.9981733395555372\"}\n40\tmanagement\tmarried\ttertiary\tno\t1584\tyes\tno\ttelephone\t21\tnov\t661\t1\t-1\t0\tunknown\tno\t$4563$4:1.0 13:1.0 17:1.0 19:1.0 1333:1.0 4554:1.0 4557:1.0\t$4568$4:1.0 13:1.0 17:1.0 19:1.0 1333:1.0 4554:1.0 4557:1.0 4563:40.0 4564:661.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.039032534694098175\",\"yes\":\"0.9609674653059018\"}\n45\tmanagement\tmarried\ttertiary\tno\t1529\tno\tno\tcellular\t30\tjun\t160\t1\t-1\t0\tunknown\tno\t$4563$4:1.0 13:1.0 17:1.0 19:1.0 1269:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$4:1.0 13:1.0 17:1.0 19:1.0 1269:1.0 4552:1.0 4554:1.0 4556:1.0 4563:45.0 4564:160.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.30586996031586655\",\"yes\":\"0.6941300396841334\"}\n27\ttechnician\tsingle\tunknown\tno\t59\tno\tno\tcellular\t15\tjul\t792\t4\t-1\t0\tunknown\tno\t$4563$9:1.0 19:1.0 3708:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$9:1.0 19:1.0 3708:1.0 4552:1.0 4554:1.0 4556:1.0 4563:27.0 4564:792.0 4565:4.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.47712464285760436\",\"yes\":\"0.5228753571423956\"}\n37\tadmin.\tmarried\tsecondary\tno\t1314\tyes\tno\tcellular\t8\tmay\t682\t2\t85\t7\tsuccess\tno\t$4563$0:1.0 13:1.0 16:1.0 19:1.0 1033:1.0 4554:1.0 4556:1.0 4561:1.0\t$4568$0:1.0 13:1.0 16:1.0 19:1.0 1033:1.0 4554:1.0 4556:1.0 4561:1.0 4563:37.0 4564:682.0 4565:2.0 4566:85.0 4567:7.0\tyes\t{\"no\":\"0.009447593535137688\",\"yes\":\"0.9905524064648623\"}\n41\tblue-collar\tmarried\tsecondary\tyes\t720\tno\tyes\tcellular\t24\tjul\t651\t1\t-1\t0\tunknown\tyes\t$4563$1:1.0 13:1.0 16:1.0 4040:1.0 4552:1.0 4556:1.0\t$4568$1:1.0 13:1.0 16:1.0 4040:1.0 4552:1.0 4556:1.0 4563:41.0 4564:651.0 4565:1.0 4566:-1.0 4567:0.0\tno\t{\"no\":\"0.5536431851933804\",\"yes\":\"0.4463568148066196\"}\n59\tunemployed\tmarried\tprimary\tno\t0\tno\tno\tcellular\t30\tjan\t3025\t2\t-1\t0\tunknown\tno\t$4563$10:1.0 13:1.0 15:1.0 19:1.0 591:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$10:1.0 13:1.0 15:1.0 19:1.0 591:1.0 4552:1.0 4554:1.0 4556:1.0 4563:59.0 4564:3025.0 4565:2.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"2.3308473928729256E-8\",\"yes\":\"0.9999999766915261\"}\n53\tmanagement\tmarried\ttertiary\tno\t1319\tyes\tno\tcellular\t16\tapr\t427\t1\t150\t1\tfailure\tno\t$4563$4:1.0 13:1.0 17:1.0 19:1.0 1042:1.0 4554:1.0 4556:1.0 4559:1.0\t$4568$4:1.0 13:1.0 17:1.0 19:1.0 1042:1.0 4554:1.0 4556:1.0 4559:1.0 4563:53.0 4564:427.0 4565:1.0 4566:150.0 4567:1.0\tyes\t{\"no\":\"0.4326658365449165\",\"yes\":\"0.5673341634550835\"}\n28\ttechnician\tsingle\tsecondary\tno\t227\tno\tno\tcellular\t30\tapr\t278\t1\t-1\t0\tunknown\tyes\t$4563$9:1.0 16:1.0 19:1.0 1944:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$9:1.0 16:1.0 19:1.0 1944:1.0 4552:1.0 4554:1.0 4556:1.0 4563:28.0 4564:278.0 4565:1.0 4566:-1.0 4567:0.0\tno\t{\"no\":\"0.6598196166300312\",\"yes\":\"0.3401803833699688\"}\n33\tmanagement\tsingle\ttertiary\tno\t-53\tno\tno\tcellular\t29\tjan\t617\t2\t-1\t0\tunknown\tno\t$4563$4:1.0 17:1.0 19:1.0 425:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$4:1.0 17:1.0 19:1.0 425:1.0 4552:1.0 4554:1.0 4556:1.0 4563:33.0 4564:617.0 4565:2.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.18870157071919857\",\"yes\":\"0.8112984292808014\"}\n50\tblue-collar\tmarried\tprimary\tno\t12519\tyes\tno\tcellular\t17\tapr\t146\t2\t147\t4\tsuccess\tno\t$4563$1:1.0 13:1.0 15:1.0 19:1.0 953:1.0 4554:1.0 4556:1.0 4561:1.0\t$4568$1:1.0 13:1.0 15:1.0 19:1.0 953:1.0 4554:1.0 4556:1.0 4561:1.0 4563:50.0 4564:146.0 4565:2.0 4566:147.0 4567:4.0\tyes\t{\"no\":\"0.4840967753890837\",\"yes\":\"0.5159032246109163\"}\n51\tunemployed\tsingle\ttertiary\tno\t1594\tno\tno\ttelephone\t4\tfeb\t197\t1\t-1\t0\tunknown\tno\t$4563$10:1.0 17:1.0 19:1.0 4551:1.0 4552:1.0 4554:1.0 4557:1.0\t$4568$10:1.0 17:1.0 19:1.0 4551:1.0 4552:1.0 4554:1.0 4557:1.0 4563:51.0 4564:197.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.32836649185894473\",\"yes\":\"0.6716335081410553\"}\n26\tentrepreneur\tsingle\ttertiary\tno\t81\tno\tno\tcellular\t21\tjul\t262\t3\t-1\t0\tunknown\tno\t$4563$2:1.0 17:1.0 19:1.0 4230:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$2:1.0 17:1.0 19:1.0 4230:1.0 4552:1.0 4554:1.0 4556:1.0 4563:26.0 4564:262.0 4565:3.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.4054792717128407\",\"yes\":\"0.5945207282871593\"}\n28\tmanagement\tsingle\ttertiary\tno\t231\tyes\tyes\tcellular\t25\tjul\t568\t2\t-1\t0\tunknown\tno\t$4563$4:1.0 17:1.0 19:1.0 1979:1.0 4556:1.0\t$4568$4:1.0 17:1.0 19:1.0 1979:1.0 4556:1.0 4563:28.0 4564:568.0 4565:2.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.3529273069322254\",\"yes\":\"0.6470726930677746\"}\n40\tmanagement\tsingle\ttertiary\tno\t1509\tno\tno\tcellular\t12\tmay\t333\t1\t58\t3\tfailure\tno\t$4563$4:1.0 17:1.0 19:1.0 1249:1.0 4552:1.0 4554:1.0 4556:1.0 4559:1.0\t$4568$4:1.0 17:1.0 19:1.0 1249:1.0 4552:1.0 4554:1.0 4556:1.0 4559:1.0 4563:40.0 4564:333.0 4565:1.0 4566:58.0 4567:3.0\tyes\t{\"no\":\"0.41574690395209646\",\"yes\":\"0.5842530960479035\"}\n33\tmanagement\tsingle\ttertiary\tno\t9449\tyes\tno\tcellular\t8\tmay\t428\t1\t-1\t0\tunknown\tno\t$4563$4:1.0 17:1.0 19:1.0 4551:1.0 4554:1.0 4556:1.0\t$4568$4:1.0 17:1.0 19:1.0 4551:1.0 4554:1.0 4556:1.0 4563:33.0 4564:428.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.48285587003481634\",\"yes\":\"0.5171441299651837\"}\n39\tmanagement\tmarried\ttertiary\tno\t2763\tyes\tno\tunknown\t2\tjun\t526\t2\t-1\t0\tunknown\tyes\t$4563$4:1.0 13:1.0 17:1.0 19:1.0 2313:1.0 4554:1.0\t$4568$4:1.0 13:1.0 17:1.0 19:1.0 2313:1.0 4554:1.0 4563:39.0 4564:526.0 4565:2.0 4566:-1.0 4567:0.0\tno\t{\"no\":\"0.5021706636556028\",\"yes\":\"0.4978293363443972\"}\n56\ttechnician\tmarried\ttertiary\tno\t272\tno\tno\tcellular\t26\taug\t103\t2\t-1\t0\tunknown\tno\t$4563$9:1.0 13:1.0 17:1.0 19:1.0 2288:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$9:1.0 13:1.0 17:1.0 19:1.0 2288:1.0 4552:1.0 4554:1.0 4556:1.0 4563:56.0 4564:103.0 4565:2.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.3761639073409555\",\"yes\":\"0.6238360926590445\"}\n27\tentrepreneur\tsingle\ttertiary\tno\t81\tno\tno\tcellular\t5\tfeb\t197\t1\t199\t3\tfailure\tno\t$4563$2:1.0 17:1.0 19:1.0 4230:1.0 4552:1.0 4554:1.0 4556:1.0 4559:1.0\t$4568$2:1.0 17:1.0 19:1.0 4230:1.0 4552:1.0 4554:1.0 4556:1.0 4559:1.0 4563:27.0 4564:197.0 4565:1.0 4566:199.0 4567:3.0\tyes\t{\"no\":\"0.28276591825020425\",\"yes\":\"0.7172340817497957\"}\n64\tretired\tmarried\tprimary\tno\t43\tno\tno\tcellular\t11\tmar\t117\t1\t91\t1\tsuccess\tno\t$4563$5:1.0 13:1.0 15:1.0 19:1.0 3146:1.0 4552:1.0 4554:1.0 4556:1.0 4561:1.0\t$4568$5:1.0 13:1.0 15:1.0 19:1.0 3146:1.0 4552:1.0 4554:1.0 4556:1.0 4561:1.0 4563:64.0 4564:117.0 4565:1.0 4566:91.0 4567:1.0\tyes\t{\"no\":\"0.41474178066418266\",\"yes\":\"0.5852582193358173\"}\n40\tmanagement\tmarried\ttertiary\tno\t-117\tyes\tno\tcellular\t17\tjul\t770\t2\t-1\t0\tunknown\tno\t$4563$4:1.0 13:1.0 17:1.0 19:1.0 53:1.0 4554:1.0 4556:1.0\t$4568$4:1.0 13:1.0 17:1.0 19:1.0 53:1.0 4554:1.0 4556:1.0 4563:40.0 4564:770.0 4565:2.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.3930741977978184\",\"yes\":\"0.6069258022021816\"}\n53\tentrepreneur\tmarried\tprimary\tno\t1034\tyes\tno\tcellular\t19\tnov\t854\t2\t170\t3\tother\tno\t$4563$2:1.0 13:1.0 15:1.0 19:1.0 652:1.0 4554:1.0 4556:1.0 4560:1.0\t$4568$2:1.0 13:1.0 15:1.0 19:1.0 652:1.0 4554:1.0 4556:1.0 4560:1.0 4563:53.0 4564:854.0 4565:2.0 4566:170.0 4567:3.0\tyes\t{\"no\":\"0.03150912051920163\",\"yes\":\"0.9684908794807984\"}\n54\ttechnician\tmarried\tsecondary\tno\t0\tno\tno\ttelephone\t16\tnov\t986\t1\t94\t8\tfailure\tno\t$4563$9:1.0 13:1.0 16:1.0 19:1.0 591:1.0 4552:1.0 4554:1.0 4557:1.0 4559:1.0\t$4568$9:1.0 13:1.0 16:1.0 19:1.0 591:1.0 4552:1.0 4554:1.0 4557:1.0 4559:1.0 4563:54.0 4564:986.0 4565:1.0 4566:94.0 4567:8.0\tyes\t{\"no\":\"0.007441344356556745\",\"yes\":\"0.9925586556434433\"}\n40\ttechnician\tsingle\ttertiary\tno\t445\tyes\tno\tcellular\t24\tjul\t631\t1\t-1\t0\tunknown\tno\t$4563$9:1.0 17:1.0 19:1.0 3214:1.0 4554:1.0 4556:1.0\t$4568$9:1.0 17:1.0 19:1.0 3214:1.0 4554:1.0 4556:1.0 4563:40.0 4564:631.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.22963803367271818\",\"yes\":\"0.7703619663272818\"}\n33\ttechnician\tsingle\ttertiary\tno\t123\tno\tno\tcellular\t19\taug\t264\t1\t-1\t0\tunknown\tno\t$4563$9:1.0 17:1.0 19:1.0 925:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$9:1.0 17:1.0 19:1.0 925:1.0 4552:1.0 4554:1.0 4556:1.0 4563:33.0 4564:264.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.3966674486221825\",\"yes\":\"0.6033325513778175\"}\n28\ttechnician\tsingle\ttertiary\tno\t102\tno\tno\tcellular\t28\tjan\t321\t2\t-1\t0\tunknown\tno\t$4563$9:1.0 17:1.0 19:1.0 628:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$9:1.0 17:1.0 19:1.0 628:1.0 4552:1.0 4554:1.0 4556:1.0 4563:28.0 4564:321.0 4565:2.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.16643196219846224\",\"yes\":\"0.8335680378015378\"}\n26\ttechnician\tsingle\tsecondary\tno\t455\tno\tno\tcellular\t29\tjan\t240\t1\t182\t8\tother\tno\t$4563$9:1.0 16:1.0 19:1.0 3256:1.0 4552:1.0 4554:1.0 4556:1.0 4560:1.0\t$4568$9:1.0 16:1.0 19:1.0 3256:1.0 4552:1.0 4554:1.0 4556:1.0 4560:1.0 4563:26.0 4564:240.0 4565:1.0 4566:182.0 4567:8.0\tyes\t{\"no\":\"0.41788992124551116\",\"yes\":\"0.5821100787544888\"}\n29\tstudent\tsingle\tunknown\tno\t2929\tno\tno\tcellular\t11\taug\t91\t1\t-1\t0\tunknown\tno\t$4563$8:1.0 19:1.0 2422:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$8:1.0 19:1.0 2422:1.0 4552:1.0 4554:1.0 4556:1.0 4563:29.0 4564:91.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.2895150775886206\",\"yes\":\"0.7104849224113794\"}\n59\tadmin.\tmarried\tsecondary\tno\t817\tno\tno\tcellular\t9\tapr\t304\t1\t-1\t0\tunknown\tno\t$4563$0:1.0 13:1.0 16:1.0 19:1.0 4244:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$0:1.0 13:1.0 16:1.0 19:1.0 4244:1.0 4552:1.0 4554:1.0 4556:1.0 4563:59.0 4564:304.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.39705953088367285\",\"yes\":\"0.6029404691163271\"}\n37\tmanagement\tdivorced\tsecondary\tno\t414\tno\tno\tcellular\t29\tjan\t293\t2\t162\t4\tfailure\tno\t$4563$4:1.0 12:1.0 16:1.0 19:1.0 3082:1.0 4552:1.0 4554:1.0 4556:1.0 4559:1.0\t$4568$4:1.0 12:1.0 16:1.0 19:1.0 3082:1.0 4552:1.0 4554:1.0 4556:1.0 4559:1.0 4563:37.0 4564:293.0 4565:2.0 4566:162.0 4567:4.0\tyes\t{\"no\":\"0.25894296311096265\",\"yes\":\"0.7410570368890373\"}\n30\ttechnician\tsingle\tsecondary\tno\t102\tyes\tno\tunknown\t7\tmay\t614\t2\t-1\t0\tunknown\tno\t$4563$9:1.0 16:1.0 19:1.0 628:1.0 4554:1.0\t$4568$9:1.0 16:1.0 19:1.0 628:1.0 4554:1.0 4563:30.0 4564:614.0 4565:2.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.379504836465561\",\"yes\":\"0.620495163534439\"}\n26\tstudent\tsingle\tsecondary\tno\t279\tno\tno\tcellular\t7\tmay\t239\t3\t-1\t0\tunknown\tno\t$4563$8:1.0 16:1.0 19:1.0 2336:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$8:1.0 16:1.0 19:1.0 2336:1.0 4552:1.0 4554:1.0 4556:1.0 4563:26.0 4564:239.0 4565:3.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.46062515836381035\",\"yes\":\"0.5393748416361897\"}\n34\tstudent\tsingle\tunknown\tno\t1281\tno\tno\tcellular\t25\taug\t279\t1\t117\t1\tfailure\tno\t$4563$8:1.0 19:1.0 991:1.0 4552:1.0 4554:1.0 4556:1.0 4559:1.0\t$4568$8:1.0 19:1.0 991:1.0 4552:1.0 4554:1.0 4556:1.0 4559:1.0 4563:34.0 4564:279.0 4565:1.0 4566:117.0 4567:1.0\tyes\t{\"no\":\"0.17793151826860787\",\"yes\":\"0.8220684817313921\"}\n50\tmanagement\tmarried\ttertiary\tno\t2881\tno\tno\tcellular\t5\taug\t510\t2\t2\t5\tother\tno\t$4563$4:1.0 13:1.0 17:1.0 19:1.0 2391:1.0 4552:1.0 4554:1.0 4556:1.0 4560:1.0\t$4568$4:1.0 13:1.0 17:1.0 19:1.0 2391:1.0 4552:1.0 4554:1.0 4556:1.0 4560:1.0 4563:50.0 4564:510.0 4565:2.0 4566:2.0 4567:5.0\tyes\t{\"no\":\"0.010197594480426786\",\"yes\":\"0.9898024055195732\"}\n57\thousemaid\tsingle\tsecondary\tno\t254\tno\tno\tcellular\t8\toct\t676\t1\t-1\t0\tunknown\tno\t$4563$3:1.0 16:1.0 19:1.0 2152:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$3:1.0 16:1.0 19:1.0 2152:1.0 4552:1.0 4554:1.0 4556:1.0 4563:57.0 4564:676.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.2248635162260897\",\"yes\":\"0.7751364837739103\"}\n40\tmanagement\tmarried\ttertiary\tno\t-1212\tyes\tno\tcellular\t15\tmay\t1259\t2\t333\t18\tfailure\tno\t$4563$4:1.0 13:1.0 17:1.0 19:1.0 62:1.0 4554:1.0 4556:1.0 4559:1.0\t$4568$4:1.0 13:1.0 17:1.0 19:1.0 62:1.0 4554:1.0 4556:1.0 4559:1.0 4563:40.0 4564:1259.0 4565:2.0 4566:333.0 4567:18.0\tyes\t{\"no\":\"0.010891059336326725\",\"yes\":\"0.9891089406636733\"}\n40\tself-employed\tmarried\ttertiary\tno\t13669\tno\tno\tcellular\t15\toct\t138\t1\t136\t8\tother\tno\t$4563$6:1.0 13:1.0 17:1.0 19:1.0 4551:1.0 4552:1.0 4554:1.0 4556:1.0 4560:1.0\t$4568$6:1.0 13:1.0 17:1.0 19:1.0 4551:1.0 4552:1.0 4554:1.0 4556:1.0 4560:1.0 4563:40.0 4564:138.0 4565:1.0 4566:136.0 4567:8.0\tyes\t{\"no\":\"0.4347792729392741\",\"yes\":\"0.5652207270607259\"}\n59\tretired\tmarried\tsecondary\tno\t163\tno\tno\tcellular\t24\tjul\t464\t1\t-1\t0\tunknown\tno\t$4563$5:1.0 13:1.0 16:1.0 19:1.0 1379:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$5:1.0 13:1.0 16:1.0 19:1.0 1379:1.0 4552:1.0 4554:1.0 4556:1.0 4563:59.0 4564:464.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.3095887739846074\",\"yes\":\"0.6904112260153926\"}\n43\ttechnician\tmarried\tsecondary\tno\t-932\tyes\tno\tcellular\t16\tapr\t567\t1\t-1\t0\tunknown\tno\t$4563$9:1.0 13:1.0 16:1.0 19:1.0 4551:1.0 4554:1.0 4556:1.0\t$4568$9:1.0 13:1.0 16:1.0 19:1.0 4551:1.0 4554:1.0 4556:1.0 4563:43.0 4564:567.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.4883247147060028\",\"yes\":\"0.5116752852939972\"}\n32\tblue-collar\tsingle\tsecondary\tno\t-255\tno\tyes\tunknown\t2\tjul\t957\t3\t-1\t0\tunknown\tno\t$4563$1:1.0 16:1.0 19:1.0 212:1.0 4552:1.0\t$4568$1:1.0 16:1.0 19:1.0 212:1.0 4552:1.0 4563:32.0 4564:957.0 4565:3.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.21885532440086886\",\"yes\":\"0.7811446755991311\"}\n37\tadmin.\tmarried\tsecondary\tno\t11303\tno\tno\tcellular\t26\tmay\t500\t2\t-1\t0\tunknown\tno\t$4563$0:1.0 13:1.0 16:1.0 19:1.0 786:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$0:1.0 13:1.0 16:1.0 19:1.0 786:1.0 4552:1.0 4554:1.0 4556:1.0 4563:37.0 4564:500.0 4565:2.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.23025653771683086\",\"yes\":\"0.7697434622831691\"}\n31\ttechnician\tsingle\tsecondary\tno\t102\tyes\tno\ttelephone\t17\tapr\t460\t2\t345\t2\tfailure\tno\t$4563$9:1.0 16:1.0 19:1.0 628:1.0 4554:1.0 4557:1.0 4559:1.0\t$4568$9:1.0 16:1.0 19:1.0 628:1.0 4554:1.0 4557:1.0 4559:1.0 4563:31.0 4564:460.0 4565:2.0 4566:345.0 4567:2.0\tyes\t{\"no\":\"0.1782199069121898\",\"yes\":\"0.8217800930878102\"}\n31\ttechnician\tsingle\tsecondary\tyes\t25\tno\tno\tcellular\t2\tfeb\t381\t1\t-1\t0\tunknown\tno\t$4563$9:1.0 16:1.0 2124:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$9:1.0 16:1.0 2124:1.0 4552:1.0 4554:1.0 4556:1.0 4563:31.0 4564:381.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.3281514249226154\",\"yes\":\"0.6718485750773846\"}\n58\ttechnician\tsingle\tsecondary\tno\t409\tno\tyes\tcellular\t14\tjul\t643\t2\t-1\t0\tunknown\tno\t$4563$9:1.0 16:1.0 19:1.0 3057:1.0 4552:1.0 4556:1.0\t$4568$9:1.0 16:1.0 19:1.0 3057:1.0 4552:1.0 4556:1.0 4563:58.0 4564:643.0 4565:2.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.02510246495676638\",\"yes\":\"0.9748975350432336\"}\n45\tmanagement\tmarried\ttertiary\tno\t-459\tno\tno\tcellular\t21\taug\t508\t6\t-1\t0\tunknown\tno\t$4563$4:1.0 13:1.0 17:1.0 19:1.0 379:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$4:1.0 13:1.0 17:1.0 19:1.0 379:1.0 4552:1.0 4554:1.0 4556:1.0 4563:45.0 4564:508.0 4565:6.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.4644931084335281\",\"yes\":\"0.5355068915664719\"}\n28\tservices\tsingle\tsecondary\tno\t198\tno\tno\tcellular\t5\tjul\t128\t2\t-1\t0\tunknown\tyes\t$4563$7:1.0 16:1.0 19:1.0 1693:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$7:1.0 16:1.0 19:1.0 1693:1.0 4552:1.0 4554:1.0 4556:1.0 4563:28.0 4564:128.0 4565:2.0 4566:-1.0 4567:0.0\tno\t{\"no\":\"0.9304510269912742\",\"yes\":\"0.06954897300872576\"}\n39\tmanagement\tmarried\tsecondary\tno\t1072\tyes\tno\tunknown\t27\tmay\t1168\t2\t-1\t0\tunknown\tno\t$4563$4:1.0 13:1.0 16:1.0 19:1.0 703:1.0 4554:1.0\t$4568$4:1.0 13:1.0 16:1.0 19:1.0 703:1.0 4554:1.0 4563:39.0 4564:1168.0 4565:2.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.2599556227123083\",\"yes\":\"0.7400443772876917\"}\n34\tblue-collar\tdivorced\tunknown\tno\t172\tno\tno\tcellular\t15\tjun\t177\t1\t-1\t0\tunknown\tyes\t$4563$1:1.0 12:1.0 19:1.0 1468:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$1:1.0 12:1.0 19:1.0 1468:1.0 4552:1.0 4554:1.0 4556:1.0 4563:34.0 4564:177.0 4565:1.0 4566:-1.0 4567:0.0\tno\t{\"no\":\"0.7577603828385586\",\"yes\":\"0.24223961716144138\"}\n41\ttechnician\tmarried\tsecondary\tno\t1066\tno\tno\tcellular\t11\tfeb\t109\t3\t-1\t0\tunknown\tyes\t$4563$9:1.0 13:1.0 16:1.0 19:1.0 695:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$9:1.0 13:1.0 16:1.0 19:1.0 695:1.0 4552:1.0 4554:1.0 4556:1.0 4563:41.0 4564:109.0 4565:3.0 4566:-1.0 4567:0.0\tno\t{\"no\":\"0.6239992708078453\",\"yes\":\"0.37600072919215466\"}\n37\ttechnician\tsingle\ttertiary\tno\t3315\tyes\tno\tcellular\t9\tapr\t820\t2\t-1\t0\tunknown\tno\t$4563$9:1.0 17:1.0 19:1.0 2666:1.0 4554:1.0 4556:1.0\t$4568$9:1.0 17:1.0 19:1.0 2666:1.0 4554:1.0 4556:1.0 4563:37.0 4564:820.0 4565:2.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.21201113437540453\",\"yes\":\"0.7879888656245955\"}\n52\tadmin.\tmarried\tsecondary\tno\t2347\tno\tyes\tcellular\t12\taug\t603\t3\t-1\t0\tunknown\tno\t$4563$0:1.0 13:1.0 16:1.0 19:1.0 4551:1.0 4552:1.0 4556:1.0\t$4568$0:1.0 13:1.0 16:1.0 19:1.0 4551:1.0 4552:1.0 4556:1.0 4563:52.0 4564:603.0 4565:3.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.27180939365675827\",\"yes\":\"0.7281906063432417\"}\n58\tself-employed\tmarried\tprimary\tno\t1013\tyes\tno\tcellular\t11\taug\t206\t1\t461\t1\tfailure\tyes\t$4563$6:1.0 13:1.0 15:1.0 19:1.0 614:1.0 4554:1.0 4556:1.0 4559:1.0\t$4568$6:1.0 13:1.0 15:1.0 19:1.0 614:1.0 4554:1.0 4556:1.0 4559:1.0 4563:58.0 4564:206.0 4565:1.0 4566:461.0 4567:1.0\tno\t{\"no\":\"0.5677631296418146\",\"yes\":\"0.43223687035818537\"}\n34\tblue-collar\tsingle\tsecondary\tno\t215\tno\tno\tcellular\t3\tmar\t350\t3\t-1\t0\tunknown\tyes\t$4563$1:1.0 16:1.0 19:1.0 1841:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$1:1.0 16:1.0 19:1.0 1841:1.0 4552:1.0 4554:1.0 4556:1.0 4563:34.0 4564:350.0 4565:3.0 4566:-1.0 4567:0.0\tno\t{\"no\":\"0.8888152106367235\",\"yes\":\"0.11118478936327647\"}\n34\tentrepreneur\tdivorced\ttertiary\tno\t262\tno\tno\tcellular\t20\tnov\t371\t1\t-1\t0\tunknown\tno\t$4563$2:1.0 12:1.0 17:1.0 19:1.0 2210:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$2:1.0 12:1.0 17:1.0 19:1.0 2210:1.0 4552:1.0 4554:1.0 4556:1.0 4563:34.0 4564:371.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.1669311647106413\",\"yes\":\"0.8330688352893587\"}\n37\tadmin.\tmarried\ttertiary\tno\t3913\tyes\tno\tcellular\t27\tapr\t124\t1\t-1\t0\tunknown\tyes\t$4563$0:1.0 13:1.0 17:1.0 19:1.0 2977:1.0 4554:1.0 4556:1.0\t$4568$0:1.0 13:1.0 17:1.0 19:1.0 2977:1.0 4554:1.0 4556:1.0 4563:37.0 4564:124.0 4565:1.0 4566:-1.0 4567:0.0\tno\t{\"no\":\"0.7984106534621536\",\"yes\":\"0.20158934653784644\"}\n31\tadmin.\tmarried\tsecondary\tno\t314\tyes\tno\tcellular\t17\tapr\t279\t1\t-1\t0\tunknown\tno\t$4563$0:1.0 13:1.0 16:1.0 19:1.0 2559:1.0 4554:1.0 4556:1.0\t$4568$0:1.0 13:1.0 16:1.0 19:1.0 2559:1.0 4554:1.0 4556:1.0 4563:31.0 4564:279.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.45277146848599803\",\"yes\":\"0.547228531514002\"}\n23\tstudent\tsingle\tsecondary\tno\t8494\tno\tno\tcellular\t25\taug\t158\t2\t-1\t0\tunknown\tno\t$4563$8:1.0 16:1.0 19:1.0 4551:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$8:1.0 16:1.0 19:1.0 4551:1.0 4552:1.0 4554:1.0 4556:1.0 4563:23.0 4564:158.0 4565:2.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.49323093543712915\",\"yes\":\"0.5067690645628709\"}\n53\tretired\tmarried\tsecondary\tno\t665\tyes\tno\tcellular\t22\tapr\t371\t2\t-1\t0\tunknown\tyes\t$4563$5:1.0 13:1.0 16:1.0 19:1.0 3898:1.0 4554:1.0 4556:1.0\t$4568$5:1.0 13:1.0 16:1.0 19:1.0 3898:1.0 4554:1.0 4556:1.0 4563:53.0 4564:371.0 4565:2.0 4566:-1.0 4567:0.0\tno\t{\"no\":\"0.8011375925607671\",\"yes\":\"0.1988624074392329\"}\n42\ttechnician\tmarried\tsecondary\tno\t994\tyes\tno\tcellular\t11\taug\t149\t1\t78\t5\tfailure\tyes\t$4563$9:1.0 13:1.0 16:1.0 19:1.0 4545:1.0 4554:1.0 4556:1.0 4559:1.0\t$4568$9:1.0 13:1.0 16:1.0 19:1.0 4545:1.0 4554:1.0 4556:1.0 4559:1.0 4563:42.0 4564:149.0 4565:1.0 4566:78.0 4567:5.0\tno\t{\"no\":\"0.5962091311426668\",\"yes\":\"0.4037908688573332\"}\n45\tadmin.\tmarried\tsecondary\tno\t5346\tyes\tyes\tunknown\t21\toct\t187\t1\t-1\t0\tunknown\tyes\t$4563$0:1.0 13:1.0 16:1.0 19:1.0 3550:1.0\t$4568$0:1.0 13:1.0 16:1.0 19:1.0 3550:1.0 4563:45.0 4564:187.0 4565:1.0 4566:-1.0 4567:0.0\tno\t{\"no\":\"0.9222154928973245\",\"yes\":\"0.07778450710267548\"}\n55\tblue-collar\tdivorced\tsecondary\tno\t1613\tyes\tno\tcellular\t3\tapr\t296\t1\t270\t3\tfailure\tyes\t$4563$1:1.0 12:1.0 16:1.0 19:1.0 1363:1.0 4554:1.0 4556:1.0 4559:1.0\t$4568$1:1.0 12:1.0 16:1.0 19:1.0 1363:1.0 4554:1.0 4556:1.0 4559:1.0 4563:55.0 4564:296.0 4565:1.0 4566:270.0 4567:3.0\tno\t{\"no\":\"0.5297773431269363\",\"yes\":\"0.47022265687306375\"}\n27\tblue-collar\tmarried\tsecondary\tno\t872\tyes\tno\tcellular\t17\tapr\t1130\t3\t-1\t0\tunknown\tno\t$4563$1:1.0 13:1.0 16:1.0 19:1.0 4341:1.0 4554:1.0 4556:1.0\t$4568$1:1.0 13:1.0 16:1.0 19:1.0 4341:1.0 4554:1.0 4556:1.0 4563:27.0 4564:1130.0 4565:3.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.3531652725166814\",\"yes\":\"0.6468347274833186\"}\n36\tmanagement\tsingle\ttertiary\tno\t3343\tno\tno\tcellular\t18\tnov\t307\t1\t-1\t0\tunknown\tno\t$4563$4:1.0 17:1.0 19:1.0 2684:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$4:1.0 17:1.0 19:1.0 2684:1.0 4552:1.0 4554:1.0 4556:1.0 4563:36.0 4564:307.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.19344645735454113\",\"yes\":\"0.8065535426454589\"}\n50\ttechnician\tmarried\tsecondary\tno\t-568\tyes\tyes\tunknown\t28\tmay\t860\t2\t-1\t0\tunknown\tno\t$4563$9:1.0 13:1.0 16:1.0 19:1.0 4551:1.0\t$4568$9:1.0 13:1.0 16:1.0 19:1.0 4551:1.0 4563:50.0 4564:860.0 4565:2.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.49091185082156286\",\"yes\":\"0.5090881491784371\"}\n30\tunemployed\tmarried\ttertiary\tno\t0\tyes\tno\tcellular\t18\tnov\t756\t1\t-1\t0\tunknown\tno\t$4563$10:1.0 13:1.0 17:1.0 19:1.0 591:1.0 4554:1.0 4556:1.0\t$4568$10:1.0 13:1.0 17:1.0 19:1.0 591:1.0 4554:1.0 4556:1.0 4563:30.0 4564:756.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.17022989610015893\",\"yes\":\"0.8297701038998411\"}\n36\tblue-collar\tmarried\tsecondary\tno\t1049\tyes\tno\tcellular\t14\tmay\t224\t4\t-1\t0\tunknown\tyes\t$4563$1:1.0 13:1.0 16:1.0 19:1.0 668:1.0 4554:1.0 4556:1.0\t$4568$1:1.0 13:1.0 16:1.0 19:1.0 668:1.0 4554:1.0 4556:1.0 4563:36.0 4564:224.0 4565:4.0 4566:-1.0 4567:0.0\tno\t{\"no\":\"0.9535928071007328\",\"yes\":\"0.0464071928992672\"}\n38\tadmin.\tmarried\ttertiary\tno\t1988\tno\tno\tcellular\t27\tmar\t164\t2\t130\t2\tfailure\tyes\t$4563$0:1.0 13:1.0 17:1.0 19:1.0 1700:1.0 4552:1.0 4554:1.0 4556:1.0 4559:1.0\t$4568$0:1.0 13:1.0 17:1.0 19:1.0 1700:1.0 4552:1.0 4554:1.0 4556:1.0 4559:1.0 4563:38.0 4564:164.0 4565:2.0 4566:130.0 4567:2.0\tno\t{\"no\":\"0.6085809011231882\",\"yes\":\"0.3914190988768118\"}\n64\thousemaid\tmarried\tprimary\tno\t768\tno\tno\tcellular\t15\tjul\t250\t2\t182\t1\tsuccess\tno\t$4563$3:1.0 13:1.0 15:1.0 19:1.0 4138:1.0 4552:1.0 4554:1.0 4556:1.0 4561:1.0\t$4568$3:1.0 13:1.0 15:1.0 19:1.0 4138:1.0 4552:1.0 4554:1.0 4556:1.0 4561:1.0 4563:64.0 4564:250.0 4565:2.0 4566:182.0 4567:1.0\tyes\t{\"no\":\"0.4608198697026503\",\"yes\":\"0.5391801302973497\"}\n46\ttechnician\tmarried\ttertiary\tno\t217\tyes\tno\tcellular\t14\tmay\t141\t1\t346\t2\tother\tno\t$4563$9:1.0 13:1.0 17:1.0 19:1.0 1858:1.0 4554:1.0 4556:1.0 4560:1.0\t$4568$9:1.0 13:1.0 17:1.0 19:1.0 1858:1.0 4554:1.0 4556:1.0 4560:1.0 4563:46.0 4564:141.0 4565:1.0 4566:346.0 4567:2.0\tyes\t{\"no\":\"0.22754116044881356\",\"yes\":\"0.7724588395511864\"}\n43\tmanagement\tsingle\ttertiary\tno\t146\tno\tno\tcellular\t21\tnov\t50\t1\t113\t5\tother\tno\t$4563$4:1.0 17:1.0 19:1.0 1202:1.0 4552:1.0 4554:1.0 4556:1.0 4560:1.0\t$4568$4:1.0 17:1.0 19:1.0 1202:1.0 4552:1.0 4554:1.0 4556:1.0 4560:1.0 4563:43.0 4564:50.0 4565:1.0 4566:113.0 4567:5.0\tyes\t{\"no\":\"0.11264504775325279\",\"yes\":\"0.8873549522467472\"}\n59\ttechnician\tmarried\tsecondary\tno\t1\tno\tno\tcellular\t15\tapr\t159\t2\t378\t3\tfailure\tyes\t$4563$9:1.0 13:1.0 16:1.0 19:1.0 592:1.0 4552:1.0 4554:1.0 4556:1.0 4559:1.0\t$4568$9:1.0 13:1.0 16:1.0 19:1.0 592:1.0 4552:1.0 4554:1.0 4556:1.0 4559:1.0 4563:59.0 4564:159.0 4565:2.0 4566:378.0 4567:3.0\tno\t{\"no\":\"0.5884972454391968\",\"yes\":\"0.4115027545608032\"}\n35\ttechnician\tmarried\ttertiary\tno\t188\tno\tno\tcellular\t26\taug\t286\t2\t-1\t0\tunknown\tno\t$4563$9:1.0 13:1.0 17:1.0 19:1.0 1618:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$9:1.0 13:1.0 17:1.0 19:1.0 1618:1.0 4552:1.0 4554:1.0 4556:1.0 4563:35.0 4564:286.0 4565:2.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.12629201759323716\",\"yes\":\"0.8737079824067628\"}\n77\tretired\tmarried\tsecondary\tno\t610\tno\tno\tcellular\t13\taug\t766\t3\t-1\t0\tunknown\tno\t$4563$5:1.0 13:1.0 16:1.0 19:1.0 3762:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$5:1.0 13:1.0 16:1.0 19:1.0 3762:1.0 4552:1.0 4554:1.0 4556:1.0 4563:77.0 4564:766.0 4565:3.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.13810169440705067\",\"yes\":\"0.8618983055929493\"}\n43\ttechnician\tdivorced\tsecondary\tno\t167\tno\tno\tcellular\t4\taug\t211\t3\t-1\t0\tunknown\tno\t$4563$9:1.0 12:1.0 16:1.0 19:1.0 1415:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$9:1.0 12:1.0 16:1.0 19:1.0 1415:1.0 4552:1.0 4554:1.0 4556:1.0 4563:43.0 4564:211.0 4565:3.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.3620836776721006\",\"yes\":\"0.6379163223278994\"}\n57\tretired\tmarried\ttertiary\tno\t0\tyes\tyes\tunknown\t28\tmay\t648\t1\t-1\t0\tunknown\tyes\t$4563$5:1.0 13:1.0 17:1.0 19:1.0 591:1.0\t$4568$5:1.0 13:1.0 17:1.0 19:1.0 591:1.0 4563:57.0 4564:648.0 4565:1.0 4566:-1.0 4567:0.0\tno\t{\"no\":\"0.6511134765756766\",\"yes\":\"0.34888652342432336\"}\n52\tentrepreneur\tdivorced\tprimary\tno\t278\tyes\tno\tunknown\t7\tmay\t688\t2\t-1\t0\tunknown\tno\t$4563$2:1.0 12:1.0 15:1.0 19:1.0 2326:1.0 4554:1.0\t$4568$2:1.0 12:1.0 15:1.0 19:1.0 2326:1.0 4554:1.0 4563:52.0 4564:688.0 4565:2.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.4623977130314134\",\"yes\":\"0.5376022869685866\"}\n44\tadmin.\tmarried\tsecondary\tno\t205\tno\tno\tcellular\t3\tnov\t289\t1\t-1\t0\tunknown\tyes\t$4563$0:1.0 13:1.0 16:1.0 19:1.0 1756:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$0:1.0 13:1.0 16:1.0 19:1.0 1756:1.0 4552:1.0 4554:1.0 4556:1.0 4563:44.0 4564:289.0 4565:1.0 4566:-1.0 4567:0.0\tno\t{\"no\":\"0.5368613389563217\",\"yes\":\"0.4631386610436783\"}\n32\ttechnician\tsingle\ttertiary\tno\t259\tno\tno\tcellular\t22\tjul\t407\t4\t-1\t0\tunknown\tno\t$4563$9:1.0 17:1.0 19:1.0 2188:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$9:1.0 17:1.0 19:1.0 2188:1.0 4552:1.0 4554:1.0 4556:1.0 4563:32.0 4564:407.0 4565:4.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.4524181554014267\",\"yes\":\"0.5475818445985733\"}\n31\tmanagement\tsingle\ttertiary\tno\t62\tyes\tno\tcellular\t18\tmay\t175\t1\t293\t5\tfailure\tno\t$4563$4:1.0 17:1.0 19:1.0 3789:1.0 4554:1.0 4556:1.0 4559:1.0\t$4568$4:1.0 17:1.0 19:1.0 3789:1.0 4554:1.0 4556:1.0 4559:1.0 4563:31.0 4564:175.0 4565:1.0 4566:293.0 4567:5.0\tyes\t{\"no\":\"0.32750479796980536\",\"yes\":\"0.6724952020301946\"}\n29\tunemployed\tsingle\ttertiary\tno\t991\tno\tno\tcellular\t5\tfeb\t563\t1\t-1\t0\tunknown\tno\t$4563$10:1.0 17:1.0 19:1.0 4541:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$10:1.0 17:1.0 19:1.0 4541:1.0 4552:1.0 4554:1.0 4556:1.0 4563:29.0 4564:563.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.18058471406648402\",\"yes\":\"0.819415285933516\"}\n37\tadmin.\tmarried\tsecondary\tno\t1193\tno\tno\tcellular\t12\tmay\t396\t2\t-1\t0\tunknown\tno\t$4563$0:1.0 13:1.0 16:1.0 19:1.0 872:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$0:1.0 13:1.0 16:1.0 19:1.0 872:1.0 4552:1.0 4554:1.0 4556:1.0 4563:37.0 4564:396.0 4565:2.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.3760918830115725\",\"yes\":\"0.6239081169884275\"}\n36\tadmin.\tsingle\tsecondary\tno\t0\tno\tno\tcellular\t20\tapr\t637\t1\t-1\t0\tunknown\tno\t$4563$0:1.0 16:1.0 19:1.0 591:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$0:1.0 16:1.0 19:1.0 591:1.0 4552:1.0 4554:1.0 4556:1.0 4563:36.0 4564:637.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.10716691851906213\",\"yes\":\"0.8928330814809379\"}\n34\ttechnician\tsingle\tsecondary\tno\t2729\tyes\tno\tcellular\t6\tapr\t945\t1\t139\t1\tsuccess\tno\t$4563$9:1.0 16:1.0 19:1.0 2292:1.0 4554:1.0 4556:1.0 4561:1.0\t$4568$9:1.0 16:1.0 19:1.0 2292:1.0 4554:1.0 4556:1.0 4561:1.0 4563:34.0 4564:945.0 4565:1.0 4566:139.0 4567:1.0\tyes\t{\"no\":\"0.005117946978256738\",\"yes\":\"0.9948820530217433\"}\n60\thousemaid\tmarried\tprimary\tno\t517\tno\tno\tunknown\t12\tjun\t1178\t3\t-1\t0\tunknown\tno\t$4563$3:1.0 13:1.0 15:1.0 19:1.0 3490:1.0 4552:1.0 4554:1.0\t$4568$3:1.0 13:1.0 15:1.0 19:1.0 3490:1.0 4552:1.0 4554:1.0 4563:60.0 4564:1178.0 4565:3.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.03761336098041823\",\"yes\":\"0.9623866390195818\"}\n31\ttechnician\tmarried\ttertiary\tno\t636\tyes\tno\tcellular\t4\tmay\t352\t4\t-1\t0\tunknown\tyes\t$4563$9:1.0 13:1.0 17:1.0 19:1.0 3827:1.0 4554:1.0 4556:1.0\t$4568$9:1.0 13:1.0 17:1.0 19:1.0 3827:1.0 4554:1.0 4556:1.0 4563:31.0 4564:352.0 4565:4.0 4566:-1.0 4567:0.0\tno\t{\"no\":\"0.726746590532186\",\"yes\":\"0.27325340946781396\"}\n71\ttechnician\tmarried\ttertiary\tno\t383\tno\tno\tcellular\t27\toct\t327\t2\t183\t3\tsuccess\tno\t$4563$9:1.0 13:1.0 17:1.0 19:1.0 2937:1.0 4552:1.0 4554:1.0 4556:1.0 4561:1.0\t$4568$9:1.0 13:1.0 17:1.0 19:1.0 2937:1.0 4552:1.0 4554:1.0 4556:1.0 4561:1.0 4563:71.0 4564:327.0 4565:2.0 4566:183.0 4567:3.0\tyes\t{\"no\":\"0.15465900525353382\",\"yes\":\"0.8453409947464662\"}\n34\ttechnician\tsingle\tsecondary\tno\t201\tno\tno\tcellular\t22\tjul\t257\t2\t-1\t0\tunknown\tno\t$4563$9:1.0 16:1.0 19:1.0 1721:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$9:1.0 16:1.0 19:1.0 1721:1.0 4552:1.0 4554:1.0 4556:1.0 4563:34.0 4564:257.0 4565:2.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.18875751707455435\",\"yes\":\"0.8112424829254457\"}\n35\tentrepreneur\tsingle\tsecondary\tno\t475\tno\tyes\tcellular\t21\tjul\t936\t4\t-1\t0\tunknown\tno\t$4563$2:1.0 16:1.0 19:1.0 3333:1.0 4552:1.0 4556:1.0\t$4568$2:1.0 16:1.0 19:1.0 3333:1.0 4552:1.0 4556:1.0 4563:35.0 4564:936.0 4565:4.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.25486335370302005\",\"yes\":\"0.74513664629698\"}\n33\tblue-collar\tsingle\tsecondary\tno\t706\tyes\tno\tcellular\t7\tapr\t329\t1\t322\t1\tfailure\tno\t$4563$1:1.0 16:1.0 19:1.0 4000:1.0 4554:1.0 4556:1.0 4559:1.0\t$4568$1:1.0 16:1.0 19:1.0 4000:1.0 4554:1.0 4556:1.0 4559:1.0 4563:33.0 4564:329.0 4565:1.0 4566:322.0 4567:1.0\tyes\t{\"no\":\"0.36527761897532807\",\"yes\":\"0.6347223810246719\"}\n53\ttechnician\tdivorced\tsecondary\tno\t320\tno\tno\tcellular\t9\tjul\t175\t1\t-1\t0\tunknown\tno\t$4563$9:1.0 12:1.0 16:1.0 19:1.0 2597:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$9:1.0 12:1.0 16:1.0 19:1.0 2597:1.0 4552:1.0 4554:1.0 4556:1.0 4563:53.0 4564:175.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.412613839285064\",\"yes\":\"0.587386160714936\"}\n39\tblue-collar\tmarried\tunknown\tno\t0\tno\tno\tcellular\t2\tfeb\t731\t1\t193\t3\tfailure\tno\t$4563$1:1.0 13:1.0 19:1.0 591:1.0 4552:1.0 4554:1.0 4556:1.0 4559:1.0\t$4568$1:1.0 13:1.0 19:1.0 591:1.0 4552:1.0 4554:1.0 4556:1.0 4559:1.0 4563:39.0 4564:731.0 4565:1.0 4566:193.0 4567:3.0\tyes\t{\"no\":\"0.12091511186173176\",\"yes\":\"0.8790848881382682\"}\n36\tmanagement\tsingle\ttertiary\tno\t490\tno\tno\tcellular\t28\taug\t207\t8\t98\t1\tfailure\tyes\t$4563$4:1.0 17:1.0 19:1.0 3389:1.0 4552:1.0 4554:1.0 4556:1.0 4559:1.0\t$4568$4:1.0 17:1.0 19:1.0 3389:1.0 4552:1.0 4554:1.0 4556:1.0 4559:1.0 4563:36.0 4564:207.0 4565:8.0 4566:98.0 4567:1.0\tno\t{\"no\":\"0.858755986712394\",\"yes\":\"0.14124401328760605\"}\n29\tmanagement\tsingle\ttertiary\tno\t15459\tno\tno\tcellular\t26\tmay\t245\t3\t97\t7\tsuccess\tno\t$4563$4:1.0 17:1.0 19:1.0 1291:1.0 4552:1.0 4554:1.0 4556:1.0 4561:1.0\t$4568$4:1.0 17:1.0 19:1.0 1291:1.0 4552:1.0 4554:1.0 4556:1.0 4561:1.0 4563:29.0 4564:245.0 4565:3.0 4566:97.0 4567:7.0\tyes\t{\"no\":\"0.052948700511105784\",\"yes\":\"0.9470512994888942\"}\n47\tblue-collar\tmarried\tprimary\tno\t320\tno\tno\ttelephone\t30\tjul\t203\t2\t-1\t0\tunknown\tno\t$4563$1:1.0 13:1.0 15:1.0 19:1.0 2597:1.0 4552:1.0 4554:1.0 4557:1.0\t$4568$1:1.0 13:1.0 15:1.0 19:1.0 2597:1.0 4552:1.0 4554:1.0 4557:1.0 4563:47.0 4564:203.0 4565:2.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.45457668081241676\",\"yes\":\"0.5454233191875832\"}\n33\tadmin.\tmarried\ttertiary\tno\t640\tno\tno\tcellular\t24\tjul\t318\t1\t-1\t0\tunknown\tno\t$4563$0:1.0 13:1.0 17:1.0 19:1.0 3836:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$0:1.0 13:1.0 17:1.0 19:1.0 3836:1.0 4552:1.0 4554:1.0 4556:1.0 4563:33.0 4564:318.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.19359443998940795\",\"yes\":\"0.806405560010592\"}\n75\tretired\tdivorced\tsecondary\tno\t1341\tno\tno\tcellular\t18\tdec\t415\t7\t-1\t0\tunknown\tyes\t$4563$5:1.0 12:1.0 16:1.0 19:1.0 1066:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$5:1.0 12:1.0 16:1.0 19:1.0 1066:1.0 4552:1.0 4554:1.0 4556:1.0 4563:75.0 4564:415.0 4565:7.0 4566:-1.0 4567:0.0\tno\t{\"no\":\"0.6776800272163738\",\"yes\":\"0.32231997278362623\"}\n22\tstudent\tsingle\tunknown\tno\t549\tno\tno\tcellular\t2\tsep\t154\t1\t-1\t0\tunknown\tno\t$4563$8:1.0 19:1.0 3598:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$8:1.0 19:1.0 3598:1.0 4552:1.0 4554:1.0 4556:1.0 4563:22.0 4564:154.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.37658551711284427\",\"yes\":\"0.6234144828871557\"}\n41\tmanagement\tdivorced\ttertiary\tno\t5037\tno\tno\tcellular\t23\tapr\t252\t9\t185\t5\tother\tyes\t$4563$4:1.0 12:1.0 17:1.0 19:1.0 3439:1.0 4552:1.0 4554:1.0 4556:1.0 4560:1.0\t$4568$4:1.0 12:1.0 17:1.0 19:1.0 3439:1.0 4552:1.0 4554:1.0 4556:1.0 4560:1.0 4563:41.0 4564:252.0 4565:9.0 4566:185.0 4567:5.0\tno\t{\"no\":\"0.5264381791288603\",\"yes\":\"0.47356182087113974\"}\n46\tadmin.\tdivorced\tsecondary\tno\t2232\tno\tno\tcellular\t13\tfeb\t121\t1\t-1\t0\tunknown\tyes\t$4563$0:1.0 12:1.0 16:1.0 19:1.0 1914:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$0:1.0 12:1.0 16:1.0 19:1.0 1914:1.0 4552:1.0 4554:1.0 4556:1.0 4563:46.0 4564:121.0 4565:1.0 4566:-1.0 4567:0.0\tno\t{\"no\":\"0.5362144046001756\",\"yes\":\"0.46378559539982445\"}\n54\tblue-collar\tmarried\tsecondary\tno\t-932\tyes\tno\tunknown\t7\tmay\t799\t1\t-1\t0\tunknown\tno\t$4563$1:1.0 13:1.0 16:1.0 19:1.0 4551:1.0 4554:1.0\t$4568$1:1.0 13:1.0 16:1.0 19:1.0 4551:1.0 4554:1.0 4563:54.0 4564:799.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.43714928221116556\",\"yes\":\"0.5628507177888344\"}\n32\tmanagement\tmarried\ttertiary\tno\t913\tyes\tno\tcellular\t23\tjun\t883\t1\t674\t4\tfailure\tno\t$4563$4:1.0 13:1.0 17:1.0 19:1.0 4418:1.0 4554:1.0 4556:1.0 4559:1.0\t$4568$4:1.0 13:1.0 17:1.0 19:1.0 4418:1.0 4554:1.0 4556:1.0 4559:1.0 4563:32.0 4564:883.0 4565:1.0 4566:674.0 4567:4.0\tyes\t{\"no\":\"0.10448171504290593\",\"yes\":\"0.8955182849570941\"}\n31\tmanagement\tmarried\ttertiary\tno\t2603\tyes\tno\tcellular\t11\tfeb\t280\t4\t-1\t0\tunknown\tyes\t$4563$4:1.0 13:1.0 17:1.0 19:1.0 2199:1.0 4554:1.0 4556:1.0\t$4568$4:1.0 13:1.0 17:1.0 19:1.0 2199:1.0 4554:1.0 4556:1.0 4563:31.0 4564:280.0 4565:4.0 4566:-1.0 4567:0.0\tno\t{\"no\":\"0.7463017111405843\",\"yes\":\"0.2536982888594157\"}\n58\tentrepreneur\tmarried\tsecondary\tno\t2\tno\tno\tunknown\t16\tjun\t684\t1\t-1\t0\tunknown\tno\t$4563$2:1.0 13:1.0 16:1.0 19:1.0 1710:1.0 4552:1.0 4554:1.0\t$4568$2:1.0 13:1.0 16:1.0 19:1.0 1710:1.0 4552:1.0 4554:1.0 4563:58.0 4564:684.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.40486319816459226\",\"yes\":\"0.5951368018354077\"}\n31\tmanagement\tmarried\tsecondary\tno\t625\tyes\tno\tcellular\t7\tapr\t424\t1\t138\t1\tfailure\tno\t$4563$4:1.0 13:1.0 16:1.0 19:1.0 3801:1.0 4554:1.0 4556:1.0 4559:1.0\t$4568$4:1.0 13:1.0 16:1.0 19:1.0 3801:1.0 4554:1.0 4556:1.0 4559:1.0 4563:31.0 4564:424.0 4565:1.0 4566:138.0 4567:1.0\tyes\t{\"no\":\"0.05706654323029359\",\"yes\":\"0.9429334567697064\"}\n49\tblue-collar\tmarried\ttertiary\tno\t1784\tno\tno\tunknown\t12\tjun\t753\t1\t-1\t0\tunknown\tno\t$4563$1:1.0 13:1.0 17:1.0 19:1.0 1529:1.0 4552:1.0 4554:1.0\t$4568$1:1.0 13:1.0 17:1.0 19:1.0 1529:1.0 4552:1.0 4554:1.0 4563:49.0 4564:753.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.19601984041348142\",\"yes\":\"0.8039801595865186\"}\n28\tmanagement\tsingle\ttertiary\tno\t1027\tyes\tno\tcellular\t14\tmay\t433\t1\t-1\t0\tunknown\tno\t$4563$4:1.0 17:1.0 19:1.0 640:1.0 4554:1.0 4556:1.0\t$4568$4:1.0 17:1.0 19:1.0 640:1.0 4554:1.0 4556:1.0 4563:28.0 4564:433.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.2426426247300273\",\"yes\":\"0.7573573752699727\"}\n45\tadmin.\tmarried\tsecondary\tno\t204\tyes\tno\tcellular\t3\tjun\t224\t2\t-1\t0\tunknown\tyes\t$4563$0:1.0 13:1.0 16:1.0 19:1.0 1747:1.0 4554:1.0 4556:1.0\t$4568$0:1.0 13:1.0 16:1.0 19:1.0 1747:1.0 4554:1.0 4556:1.0 4563:45.0 4564:224.0 4565:2.0 4566:-1.0 4567:0.0\tno\t{\"no\":\"0.8063848647539155\",\"yes\":\"0.19361513524608454\"}\n31\ttechnician\tsingle\tsecondary\tno\t628\tyes\tno\tunknown\t12\tmay\t1083\t2\t-1\t0\tunknown\tno\t$4563$9:1.0 16:1.0 19:1.0 3807:1.0 4554:1.0\t$4568$9:1.0 16:1.0 19:1.0 3807:1.0 4554:1.0 4563:31.0 4564:1083.0 4565:2.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.2754494277515158\",\"yes\":\"0.7245505722484842\"}\n40\ttechnician\tsingle\ttertiary\tno\t226\tno\tno\tcellular\t15\tjan\t176\t2\t-1\t0\tunknown\tno\t$4563$9:1.0 17:1.0 19:1.0 1937:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$9:1.0 17:1.0 19:1.0 1937:1.0 4552:1.0 4554:1.0 4556:1.0 4563:40.0 4564:176.0 4565:2.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.2485310699538672\",\"yes\":\"0.7514689300461328\"}\n48\ttechnician\tmarried\tsecondary\tno\t127\tno\tyes\tcellular\t7\taug\t524\t5\t-1\t0\tunknown\tno\t$4563$9:1.0 13:1.0 16:1.0 19:1.0 977:1.0 4552:1.0 4556:1.0\t$4568$9:1.0 13:1.0 16:1.0 19:1.0 977:1.0 4552:1.0 4556:1.0 4563:48.0 4564:524.0 4565:5.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.153543054525754\",\"yes\":\"0.846456945474246\"}\n47\ttechnician\tmarried\tsecondary\tno\t1233\tyes\tno\tunknown\t11\tsep\t91\t1\t100\t2\tother\tyes\t$4563$9:1.0 13:1.0 16:1.0 19:1.0 930:1.0 4554:1.0 4560:1.0\t$4568$9:1.0 13:1.0 16:1.0 19:1.0 930:1.0 4554:1.0 4560:1.0 4563:47.0 4564:91.0 4565:1.0 4566:100.0 4567:2.0\tno\t{\"no\":\"0.8608799938606907\",\"yes\":\"0.1391200061393093\"}\n28\tmanagement\tsingle\tsecondary\tno\t171\tno\tno\tcellular\t10\tmar\t93\t1\t-1\t0\tunknown\tyes\t$4563$4:1.0 16:1.0 19:1.0 1459:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$4:1.0 16:1.0 19:1.0 1459:1.0 4552:1.0 4554:1.0 4556:1.0 4563:28.0 4564:93.0 4565:1.0 4566:-1.0 4567:0.0\tno\t{\"no\":\"0.9747374696264581\",\"yes\":\"0.02526253037354187\"}\n36\tmanagement\tmarried\ttertiary\tno\t61\tno\tyes\tcellular\t19\taug\t452\t2\t-1\t0\tunknown\tno\t$4563$4:1.0 13:1.0 17:1.0 19:1.0 3761:1.0 4552:1.0 4556:1.0\t$4568$4:1.0 13:1.0 17:1.0 19:1.0 3761:1.0 4552:1.0 4556:1.0 4563:36.0 4564:452.0 4565:2.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.19516888618466322\",\"yes\":\"0.8048311138153368\"}\n29\tadmin.\tsingle\tsecondary\tno\t1448\tno\tno\tcellular\t10\tmar\t217\t1\t184\t7\tother\tno\t$4563$0:1.0 16:1.0 19:1.0 1189:1.0 4552:1.0 4554:1.0 4556:1.0 4560:1.0\t$4568$0:1.0 16:1.0 19:1.0 1189:1.0 4552:1.0 4554:1.0 4556:1.0 4560:1.0 4563:29.0 4564:217.0 4565:1.0 4566:184.0 4567:7.0\tyes\t{\"no\":\"0.30896407191708897\",\"yes\":\"0.691035928082911\"}\n30\tmanagement\tsingle\ttertiary\tno\t604\tno\tyes\tcellular\t2\tfeb\t475\t1\t-1\t0\tunknown\tno\t$4563$4:1.0 17:1.0 19:1.0 3749:1.0 4552:1.0 4556:1.0\t$4568$4:1.0 17:1.0 19:1.0 3749:1.0 4552:1.0 4556:1.0 4563:30.0 4564:475.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.22628377677001799\",\"yes\":\"0.773716223229982\"}\n27\tadmin.\tsingle\ttertiary\tno\t73\tno\tno\tcellular\t29\tjan\t242\t1\t-1\t0\tunknown\tno\t$4563$0:1.0 17:1.0 19:1.0 4057:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$0:1.0 17:1.0 19:1.0 4057:1.0 4552:1.0 4554:1.0 4556:1.0 4563:27.0 4564:242.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.174805363660532\",\"yes\":\"0.825194636339468\"}\n45\tself-employed\tmarried\tsecondary\tno\t706\tno\tno\tcellular\t30\tapr\t78\t2\t176\t1\tsuccess\tno\t$4563$6:1.0 13:1.0 16:1.0 19:1.0 4000:1.0 4552:1.0 4554:1.0 4556:1.0 4561:1.0\t$4568$6:1.0 13:1.0 16:1.0 19:1.0 4000:1.0 4552:1.0 4554:1.0 4556:1.0 4561:1.0 4563:45.0 4564:78.0 4565:2.0 4566:176.0 4567:1.0\tyes\t{\"no\":\"0.14795063933667874\",\"yes\":\"0.8520493606633213\"}\n46\tadmin.\tmarried\tsecondary\tno\t368\tno\tno\tcellular\t20\taug\t293\t1\t90\t4\tother\tyes\t$4563$0:1.0 13:1.0 16:1.0 19:1.0 2862:1.0 4552:1.0 4554:1.0 4556:1.0 4560:1.0\t$4568$0:1.0 13:1.0 16:1.0 19:1.0 2862:1.0 4552:1.0 4554:1.0 4556:1.0 4560:1.0 4563:46.0 4564:293.0 4565:1.0 4566:90.0 4567:4.0\tno\t{\"no\":\"0.581489440583421\",\"yes\":\"0.418510559416579\"}\n59\tservices\tmarried\tsecondary\tno\t204\tno\tno\tcellular\t23\tjul\t286\t2\t-1\t0\tunknown\tno\t$4563$7:1.0 13:1.0 16:1.0 19:1.0 1747:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$7:1.0 13:1.0 16:1.0 19:1.0 1747:1.0 4552:1.0 4554:1.0 4556:1.0 4563:59.0 4564:286.0 4565:2.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.4221690960815483\",\"yes\":\"0.5778309039184517\"}\n34\tmanagement\tmarried\ttertiary\tno\t4170\tyes\tno\tunknown\t21\tmay\t935\t1\t-1\t0\tunknown\tno\t$4563$4:1.0 13:1.0 17:1.0 19:1.0 3102:1.0 4554:1.0\t$4568$4:1.0 13:1.0 17:1.0 19:1.0 3102:1.0 4554:1.0 4563:34.0 4564:935.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.14285353837538928\",\"yes\":\"0.8571464616246107\"}\n21\tservices\tsingle\tsecondary\tno\t361\tno\tno\ttelephone\t5\tjun\t329\t1\t95\t1\tother\tno\t$4563$7:1.0 16:1.0 19:1.0 2825:1.0 4552:1.0 4554:1.0 4557:1.0 4560:1.0\t$4568$7:1.0 16:1.0 19:1.0 2825:1.0 4552:1.0 4554:1.0 4557:1.0 4560:1.0 4563:21.0 4564:329.0 4565:1.0 4566:95.0 4567:1.0\tyes\t{\"no\":\"0.40906855052803137\",\"yes\":\"0.5909314494719686\"}\n35\ttechnician\tmarried\tsecondary\tno\t2\tno\tno\ttelephone\t28\tjan\t653\t3\t-1\t0\tunknown\tno\t$4563$9:1.0 13:1.0 16:1.0 19:1.0 1710:1.0 4552:1.0 4554:1.0 4557:1.0\t$4568$9:1.0 13:1.0 16:1.0 19:1.0 1710:1.0 4552:1.0 4554:1.0 4557:1.0 4563:35.0 4564:653.0 4565:3.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.22703920942585598\",\"yes\":\"0.772960790574144\"}\n48\tmanagement\tdivorced\ttertiary\tno\t507\tyes\tno\tcellular\t9\tapr\t528\t1\t-1\t0\tunknown\tno\t$4563$4:1.0 12:1.0 17:1.0 19:1.0 3455:1.0 4554:1.0 4556:1.0\t$4568$4:1.0 12:1.0 17:1.0 19:1.0 3455:1.0 4554:1.0 4556:1.0 4563:48.0 4564:528.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.12168758751012798\",\"yes\":\"0.878312412489872\"}\n29\tblue-collar\tmarried\tsecondary\tno\t912\tyes\tno\tcellular\t13\tmay\t785\t1\t-1\t0\tunknown\tno\t$4563$1:1.0 13:1.0 16:1.0 19:1.0 4417:1.0 4554:1.0 4556:1.0\t$4568$1:1.0 13:1.0 16:1.0 19:1.0 4417:1.0 4554:1.0 4556:1.0 4563:29.0 4564:785.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.49485675050745637\",\"yes\":\"0.5051432494925436\"}\n36\tunemployed\tsingle\ttertiary\tno\t9019\tyes\tno\tunknown\t11\tjun\t952\t3\t-1\t0\tunknown\tno\t$4563$10:1.0 17:1.0 19:1.0 4551:1.0 4554:1.0\t$4568$10:1.0 17:1.0 19:1.0 4551:1.0 4554:1.0 4563:36.0 4564:952.0 4565:3.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.11156361284737026\",\"yes\":\"0.8884363871526297\"}\n57\tadmin.\tdivorced\tunknown\tno\t4012\tno\tno\tcellular\t20\tnov\t915\t1\t-1\t0\tunknown\tno\t$4563$0:1.0 12:1.0 19:1.0 3022:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$0:1.0 12:1.0 19:1.0 3022:1.0 4552:1.0 4554:1.0 4556:1.0 4563:57.0 4564:915.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.011883670322537454\",\"yes\":\"0.9881163296774625\"}\n32\tstudent\tsingle\ttertiary\tno\t0\tno\tno\tcellular\t6\taug\t101\t5\t3\t6\tother\tno\t$4563$8:1.0 17:1.0 19:1.0 591:1.0 4552:1.0 4554:1.0 4556:1.0 4560:1.0\t$4568$8:1.0 17:1.0 19:1.0 591:1.0 4552:1.0 4554:1.0 4556:1.0 4560:1.0 4563:32.0 4564:101.0 4565:5.0 4566:3.0 4567:6.0\tyes\t{\"no\":\"0.3123722382290698\",\"yes\":\"0.6876277617709302\"}\n34\tadmin.\tsingle\tsecondary\tno\t846\tyes\tno\tcellular\t17\tapr\t758\t2\t-1\t0\tunknown\tno\t$4563$0:1.0 16:1.0 19:1.0 4294:1.0 4554:1.0 4556:1.0\t$4568$0:1.0 16:1.0 19:1.0 4294:1.0 4554:1.0 4556:1.0 4563:34.0 4564:758.0 4565:2.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.08081553632886707\",\"yes\":\"0.9191844636711329\"}\n49\tunknown\tmarried\tunknown\tno\t301\tno\tno\tcellular\t14\taug\t789\t2\t-1\t0\tunknown\tno\t$4563$13:1.0 19:1.0 2479:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$13:1.0 19:1.0 2479:1.0 4552:1.0 4554:1.0 4556:1.0 4563:49.0 4564:789.0 4565:2.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.22411645915656508\",\"yes\":\"0.7758835408434349\"}\n73\tretired\tmarried\tprimary\tno\t1388\tno\tno\tcellular\t20\tjul\t146\t3\t190\t3\tsuccess\tno\t$4563$5:1.0 13:1.0 15:1.0 19:1.0 1121:1.0 4552:1.0 4554:1.0 4556:1.0 4561:1.0\t$4568$5:1.0 13:1.0 15:1.0 19:1.0 1121:1.0 4552:1.0 4554:1.0 4556:1.0 4561:1.0 4563:73.0 4564:146.0 4565:3.0 4566:190.0 4567:3.0\tyes\t{\"no\":\"0.23377783120889195\",\"yes\":\"0.766222168791108\"}\n32\tself-employed\tmarried\tsecondary\tno\t413\tyes\tno\tcellular\t11\tjul\t712\t2\t-1\t0\tunknown\tno\t$4563$6:1.0 13:1.0 16:1.0 19:1.0 3077:1.0 4554:1.0 4556:1.0\t$4568$6:1.0 13:1.0 16:1.0 19:1.0 3077:1.0 4554:1.0 4556:1.0 4563:32.0 4564:712.0 4565:2.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.331481973326459\",\"yes\":\"0.668518026673541\"}\n33\tmanagement\tmarried\ttertiary\tno\t3696\tno\tno\tcellular\t19\tnov\t305\t1\t182\t3\tfailure\tno\t$4563$4:1.0 13:1.0 17:1.0 19:1.0 2869:1.0 4552:1.0 4554:1.0 4556:1.0 4559:1.0\t$4568$4:1.0 13:1.0 17:1.0 19:1.0 2869:1.0 4552:1.0 4554:1.0 4556:1.0 4559:1.0 4563:33.0 4564:305.0 4565:1.0 4566:182.0 4567:3.0\tyes\t{\"no\":\"0.31281818949233087\",\"yes\":\"0.6871818105076691\"}\n31\ttechnician\tsingle\tsecondary\tno\t433\tno\tno\tcellular\t11\taug\t1504\t2\t-1\t0\tunknown\tno\t$4563$9:1.0 16:1.0 19:1.0 3162:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$9:1.0 16:1.0 19:1.0 3162:1.0 4552:1.0 4554:1.0 4556:1.0 4563:31.0 4564:1504.0 4565:2.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.0012210525224305435\",\"yes\":\"0.9987789474775695\"}\n31\tblue-collar\tmarried\tsecondary\tno\t1766\tno\tyes\tcellular\t5\tjun\t166\t2\t-1\t0\tunknown\tyes\t$4563$1:1.0 13:1.0 16:1.0 19:1.0 1512:1.0 4552:1.0 4556:1.0\t$4568$1:1.0 13:1.0 16:1.0 19:1.0 1512:1.0 4552:1.0 4556:1.0 4563:31.0 4564:166.0 4565:2.0 4566:-1.0 4567:0.0\tno\t{\"no\":\"0.8576551630045437\",\"yes\":\"0.1423448369954563\"}\n53\tservices\tdivorced\tsecondary\tno\t0\tno\tno\tcellular\t12\tmar\t80\t2\t-1\t0\tunknown\tyes\t$4563$7:1.0 12:1.0 16:1.0 19:1.0 591:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$7:1.0 12:1.0 16:1.0 19:1.0 591:1.0 4552:1.0 4554:1.0 4556:1.0 4563:53.0 4564:80.0 4565:2.0 4566:-1.0 4567:0.0\tno\t{\"no\":\"0.888804076178797\",\"yes\":\"0.11119592382120302\"}\n53\tblue-collar\tmarried\tsecondary\tno\t70\tyes\tno\tunknown\t5\tmay\t611\t2\t-1\t0\tunknown\tno\t$4563$1:1.0 13:1.0 16:1.0 19:1.0 3985:1.0 4554:1.0\t$4568$1:1.0 13:1.0 16:1.0 19:1.0 3985:1.0 4554:1.0 4563:53.0 4564:611.0 4565:2.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.25183759925846316\",\"yes\":\"0.7481624007415368\"}\n26\tadmin.\tsingle\tsecondary\tno\t443\tno\tno\tcellular\t30\tjul\t84\t3\t-1\t0\tunknown\tno\t$4563$0:1.0 16:1.0 19:1.0 3206:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$0:1.0 16:1.0 19:1.0 3206:1.0 4552:1.0 4554:1.0 4556:1.0 4563:26.0 4564:84.0 4565:3.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.44042579518109837\",\"yes\":\"0.5595742048189016\"}\n55\tretired\tmarried\ttertiary\tno\t197\tno\tyes\tcellular\t8\tjul\t256\t1\t-1\t0\tunknown\tno\t$4563$5:1.0 13:1.0 17:1.0 19:1.0 1684:1.0 4552:1.0 4556:1.0\t$4568$5:1.0 13:1.0 17:1.0 19:1.0 1684:1.0 4552:1.0 4556:1.0 4563:55.0 4564:256.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.15360353875657617\",\"yes\":\"0.8463964612434238\"}\n46\ttechnician\tmarried\tsecondary\tno\t57\tno\tno\tunknown\t28\tmay\t796\t1\t-1\t0\tunknown\tyes\t$4563$9:1.0 13:1.0 16:1.0 19:1.0 3654:1.0 4552:1.0 4554:1.0\t$4568$9:1.0 13:1.0 16:1.0 19:1.0 3654:1.0 4552:1.0 4554:1.0 4563:46.0 4564:796.0 4565:1.0 4566:-1.0 4567:0.0\tno\t{\"no\":\"0.659416626998853\",\"yes\":\"0.34058337300114705\"}\n40\tmanagement\tmarried\ttertiary\tno\t-7\tno\tyes\ttelephone\t25\tjul\t697\t1\t-1\t0\tunknown\tno\t$4563$4:1.0 13:1.0 17:1.0 19:1.0 504:1.0 4552:1.0 4557:1.0\t$4568$4:1.0 13:1.0 17:1.0 19:1.0 504:1.0 4552:1.0 4557:1.0 4563:40.0 4564:697.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.23124474699359931\",\"yes\":\"0.7687552530064007\"}\n33\tmanagement\tsingle\ttertiary\tno\t1998\tno\tno\tcellular\t19\tnov\t570\t1\t-1\t0\tunknown\tno\t$4563$4:1.0 17:1.0 19:1.0 1709:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$4:1.0 17:1.0 19:1.0 1709:1.0 4552:1.0 4554:1.0 4556:1.0 4563:33.0 4564:570.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.04244169319558522\",\"yes\":\"0.9575583068044148\"}\n54\tservices\tmarried\tunknown\tno\t386\tno\tyes\tcellular\t19\tnov\t74\t1\t152\t1\tsuccess\tno\t$4563$7:1.0 13:1.0 19:1.0 2953:1.0 4552:1.0 4556:1.0 4561:1.0\t$4568$7:1.0 13:1.0 19:1.0 2953:1.0 4552:1.0 4556:1.0 4561:1.0 4563:54.0 4564:74.0 4565:1.0 4566:152.0 4567:1.0\tyes\t{\"no\":\"0.19246837951076912\",\"yes\":\"0.8075316204892309\"}\n42\tmanagement\tdivorced\tunknown\tno\t7702\tno\tno\tcellular\t16\tfeb\t138\t2\t-1\t0\tunknown\tyes\t$4563$4:1.0 12:1.0 19:1.0 4143:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$4:1.0 12:1.0 19:1.0 4143:1.0 4552:1.0 4554:1.0 4556:1.0 4563:42.0 4564:138.0 4565:2.0 4566:-1.0 4567:0.0\tno\t{\"no\":\"0.6898551090191858\",\"yes\":\"0.3101448909808142\"}\n48\tmanagement\tmarried\tsecondary\tno\t117\tyes\tno\tcellular\t16\tapr\t635\t1\t-1\t0\tunknown\tno\t$4563$4:1.0 13:1.0 16:1.0 19:1.0 839:1.0 4554:1.0 4556:1.0\t$4568$4:1.0 13:1.0 16:1.0 19:1.0 839:1.0 4554:1.0 4556:1.0 4563:48.0 4564:635.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.32609108817275767\",\"yes\":\"0.6739089118272423\"}\n37\tmanagement\tmarried\ttertiary\tno\t539\tno\tno\tcellular\t18\tjan\t540\t2\t115\t3\tfailure\tno\t$4563$4:1.0 13:1.0 17:1.0 19:1.0 3564:1.0 4552:1.0 4554:1.0 4556:1.0 4559:1.0\t$4568$4:1.0 13:1.0 17:1.0 19:1.0 3564:1.0 4552:1.0 4554:1.0 4556:1.0 4559:1.0 4563:37.0 4564:540.0 4565:2.0 4566:115.0 4567:3.0\tyes\t{\"no\":\"0.19935610389487002\",\"yes\":\"0.80064389610513\"}\n70\tretired\tmarried\tsecondary\tno\t2815\tno\tno\tcellular\t26\tapr\t125\t2\t182\t1\tfailure\tno\t$4563$5:1.0 13:1.0 16:1.0 19:1.0 2353:1.0 4552:1.0 4554:1.0 4556:1.0 4559:1.0\t$4568$5:1.0 13:1.0 16:1.0 19:1.0 2353:1.0 4552:1.0 4554:1.0 4556:1.0 4559:1.0 4563:70.0 4564:125.0 4565:2.0 4566:182.0 4567:1.0\tyes\t{\"no\":\"0.46187553460242026\",\"yes\":\"0.5381244653975797\"}\n29\tself-employed\tsingle\tsecondary\tno\t3672\tyes\tyes\tunknown\t28\tmay\t1210\t1\t-1\t0\tunknown\tno\t$4563$6:1.0 16:1.0 19:1.0 4551:1.0\t$4568$6:1.0 16:1.0 19:1.0 4551:1.0 4563:29.0 4564:1210.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.07428580995715472\",\"yes\":\"0.9257141900428453\"}\n32\ttechnician\tmarried\tunknown\tno\t14533\tno\tno\tcellular\t31\tdec\t646\t3\t198\t2\tsuccess\tno\t$4563$9:1.0 13:1.0 19:1.0 1197:1.0 4552:1.0 4554:1.0 4556:1.0 4561:1.0\t$4568$9:1.0 13:1.0 19:1.0 1197:1.0 4552:1.0 4554:1.0 4556:1.0 4561:1.0 4563:32.0 4564:646.0 4565:3.0 4566:198.0 4567:2.0\tyes\t{\"no\":\"0.013321069052180778\",\"yes\":\"0.9866789309478192\"}\n49\tmanagement\tsingle\ttertiary\tno\t151\tyes\tno\tcellular\t8\tjul\t97\t3\t-1\t0\tunknown\tyes\t$4563$4:1.0 17:1.0 19:1.0 1250:1.0 4554:1.0 4556:1.0\t$4568$4:1.0 17:1.0 19:1.0 1250:1.0 4554:1.0 4556:1.0 4563:49.0 4564:97.0 4565:3.0 4566:-1.0 4567:0.0\tno\t{\"no\":\"0.8222397218693579\",\"yes\":\"0.1777602781306421\"}\n33\tmanagement\tsingle\tsecondary\tno\t8004\tno\tno\tcellular\t19\tnov\t414\t3\t-1\t0\tunknown\tno\t$4563$4:1.0 16:1.0 19:1.0 4551:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$4:1.0 16:1.0 19:1.0 4551:1.0 4552:1.0 4554:1.0 4556:1.0 4563:33.0 4564:414.0 4565:3.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.49735190665224305\",\"yes\":\"0.502648093347757\"}\n58\ttechnician\tmarried\tsecondary\tno\t116\tno\tno\tunknown\t16\tjun\t580\t3\t-1\t0\tunknown\tno\t$4563$9:1.0 13:1.0 16:1.0 19:1.0 824:1.0 4552:1.0 4554:1.0\t$4568$9:1.0 13:1.0 16:1.0 19:1.0 824:1.0 4552:1.0 4554:1.0 4563:58.0 4564:580.0 4565:3.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.3666558894027723\",\"yes\":\"0.6333441105972277\"}\n27\tblue-collar\tsingle\tsecondary\tno\t23\tno\tno\tcellular\t26\tfeb\t590\t2\t-1\t0\tunknown\tno\t$4563$1:1.0 16:1.0 19:1.0 1968:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$1:1.0 16:1.0 19:1.0 1968:1.0 4552:1.0 4554:1.0 4556:1.0 4563:27.0 4564:590.0 4565:2.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.3333149330269155\",\"yes\":\"0.6666850669730845\"}\n32\ttechnician\tsingle\tsecondary\tno\t493\tno\tno\tcellular\t13\taug\t289\t2\t-1\t0\tunknown\tno\t$4563$9:1.0 16:1.0 19:1.0 3400:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$9:1.0 16:1.0 19:1.0 3400:1.0 4552:1.0 4554:1.0 4556:1.0 4563:32.0 4564:289.0 4565:2.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.3662166755027656\",\"yes\":\"0.6337833244972344\"}\n66\tmanagement\tmarried\ttertiary\tno\t1048\tyes\tno\tcellular\t23\tjun\t971\t2\t-1\t0\tunknown\tno\t$4563$4:1.0 13:1.0 17:1.0 19:1.0 4551:1.0 4554:1.0 4556:1.0\t$4568$4:1.0 13:1.0 17:1.0 19:1.0 4551:1.0 4554:1.0 4556:1.0 4563:66.0 4564:971.0 4565:2.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.025502211031419253\",\"yes\":\"0.9744977889685807\"}\n32\ttechnician\tsingle\ttertiary\tno\t569\tno\tyes\tcellular\t29\tjan\t348\t1\t-1\t0\tunknown\tno\t$4563$9:1.0 17:1.0 19:1.0 3650:1.0 4552:1.0 4556:1.0\t$4568$9:1.0 17:1.0 19:1.0 3650:1.0 4552:1.0 4556:1.0 4563:32.0 4564:348.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.2885500909118266\",\"yes\":\"0.7114499090881734\"}\n37\ttechnician\tsingle\tsecondary\tno\t2442\tno\tno\tcellular\t16\tfeb\t91\t3\t-1\t0\tunknown\tyes\t$4563$9:1.0 16:1.0 19:1.0 2081:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$9:1.0 16:1.0 19:1.0 2081:1.0 4552:1.0 4554:1.0 4556:1.0 4563:37.0 4564:91.0 4565:3.0 4566:-1.0 4567:0.0\tno\t{\"no\":\"0.8990948351719102\",\"yes\":\"0.10090516482808976\"}\n35\tadmin.\tsingle\ttertiary\tno\t62\tno\tyes\tcellular\t30\tapr\t67\t1\t-1\t0\tunknown\tno\t$4563$0:1.0 17:1.0 19:1.0 3789:1.0 4552:1.0 4556:1.0\t$4568$0:1.0 17:1.0 19:1.0 3789:1.0 4552:1.0 4556:1.0 4563:35.0 4564:67.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.35990994630827666\",\"yes\":\"0.6400900536917233\"}\n60\tretired\tmarried\tsecondary\tno\t262\tno\tno\tcellular\t18\taug\t393\t4\t-1\t0\tunknown\tno\t$4563$5:1.0 13:1.0 16:1.0 19:1.0 2210:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$5:1.0 13:1.0 16:1.0 19:1.0 2210:1.0 4552:1.0 4554:1.0 4556:1.0 4563:60.0 4564:393.0 4565:4.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.2061370779797993\",\"yes\":\"0.7938629220202007\"}\n56\tmanagement\tmarried\tsecondary\tno\t238\tyes\tno\tcellular\t19\tnov\t808\t1\t-1\t0\tunknown\tno\t$4563$4:1.0 13:1.0 16:1.0 19:1.0 2031:1.0 4554:1.0 4556:1.0\t$4568$4:1.0 13:1.0 16:1.0 19:1.0 2031:1.0 4554:1.0 4556:1.0 4563:56.0 4564:808.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.1860710558422417\",\"yes\":\"0.8139289441577583\"}\n20\tstudent\tsingle\tsecondary\tno\t1191\tno\tno\tcellular\t12\tfeb\t274\t1\t-1\t0\tunknown\tno\t$4563$8:1.0 16:1.0 19:1.0 870:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$8:1.0 16:1.0 19:1.0 870:1.0 4552:1.0 4554:1.0 4556:1.0 4563:20.0 4564:274.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.2678198558933744\",\"yes\":\"0.7321801441066256\"}\n44\tmanagement\tdivorced\ttertiary\tno\t2058\tno\tyes\tcellular\t21\tnov\t661\t1\t-1\t0\tunknown\tno\t$4563$4:1.0 12:1.0 17:1.0 19:1.0 1761:1.0 4552:1.0 4556:1.0\t$4568$4:1.0 12:1.0 17:1.0 19:1.0 1761:1.0 4552:1.0 4556:1.0 4563:44.0 4564:661.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.2948195288944926\",\"yes\":\"0.7051804711055074\"}\n47\tservices\tmarried\ttertiary\tno\t871\tno\tno\tcellular\t22\taug\t602\t9\t-1\t0\tunknown\tno\t$4563$7:1.0 13:1.0 17:1.0 19:1.0 4340:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$7:1.0 13:1.0 17:1.0 19:1.0 4340:1.0 4552:1.0 4554:1.0 4556:1.0 4563:47.0 4564:602.0 4565:9.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.4264124859592022\",\"yes\":\"0.5735875140407978\"}\n35\tself-employed\tsingle\ttertiary\tno\t44\tno\tno\tcellular\t7\tsep\t310\t2\t96\t2\tother\tno\t$4563$6:1.0 17:1.0 19:1.0 3191:1.0 4552:1.0 4554:1.0 4556:1.0 4560:1.0\t$4568$6:1.0 17:1.0 19:1.0 3191:1.0 4552:1.0 4554:1.0 4556:1.0 4560:1.0 4563:35.0 4564:310.0 4565:2.0 4566:96.0 4567:2.0\tyes\t{\"no\":\"0.09046209967214736\",\"yes\":\"0.9095379003278526\"}\n56\tmanagement\tmarried\ttertiary\tno\t15520\tno\tno\tcellular\t18\tnov\t420\t1\t-1\t0\tunknown\tno\t$4563$4:1.0 13:1.0 17:1.0 19:1.0 1301:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$4:1.0 13:1.0 17:1.0 19:1.0 1301:1.0 4552:1.0 4554:1.0 4556:1.0 4563:56.0 4564:420.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.4111964890737656\",\"yes\":\"0.5888035109262344\"}\n32\ttechnician\tsingle\ttertiary\tno\t13711\tyes\tno\tcellular\t14\tmay\t638\t1\t175\t3\tsuccess\tno\t$4563$9:1.0 17:1.0 19:1.0 1104:1.0 4554:1.0 4556:1.0 4561:1.0\t$4568$9:1.0 17:1.0 19:1.0 1104:1.0 4554:1.0 4556:1.0 4561:1.0 4563:32.0 4564:638.0 4565:1.0 4566:175.0 4567:3.0\tyes\t{\"no\":\"0.018944741808414545\",\"yes\":\"0.9810552581915855\"}\n57\tadmin.\tmarried\tsecondary\tno\t808\tno\tno\tcellular\t14\tjul\t417\t3\t-1\t0\tunknown\tno\t$4563$0:1.0 13:1.0 16:1.0 19:1.0 4226:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$0:1.0 13:1.0 16:1.0 19:1.0 4226:1.0 4552:1.0 4554:1.0 4556:1.0 4563:57.0 4564:417.0 4565:3.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.4696063311500027\",\"yes\":\"0.5303936688499973\"}\n34\tmanagement\tmarried\ttertiary\tno\t180\tno\tno\tcellular\t16\tjun\t298\t3\t-1\t0\tunknown\tno\t$4563$4:1.0 13:1.0 17:1.0 19:1.0 1547:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$4:1.0 13:1.0 17:1.0 19:1.0 1547:1.0 4552:1.0 4554:1.0 4556:1.0 4563:34.0 4564:298.0 4565:3.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.2359927776290366\",\"yes\":\"0.7640072223709634\"}\n40\ttechnician\tmarried\tsecondary\tno\t1819\tno\tno\tcellular\t5\tjun\t398\t2\t-1\t0\tunknown\tno\t$4563$9:1.0 13:1.0 16:1.0 19:1.0 1567:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$9:1.0 13:1.0 16:1.0 19:1.0 1567:1.0 4552:1.0 4554:1.0 4556:1.0 4563:40.0 4564:398.0 4565:2.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.4698773824438066\",\"yes\":\"0.5301226175561934\"}\n39\ttechnician\tdivorced\ttertiary\tyes\t3\tno\tno\tcellular\t6\tmay\t488\t1\t-1\t0\tunknown\tyes\t$4563$9:1.0 12:1.0 17:1.0 2470:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$9:1.0 12:1.0 17:1.0 2470:1.0 4552:1.0 4554:1.0 4556:1.0 4563:39.0 4564:488.0 4565:1.0 4566:-1.0 4567:0.0\tno\t{\"no\":\"0.6722484515439986\",\"yes\":\"0.3277515484560014\"}\n54\tmanagement\tmarried\ttertiary\tno\t8295\tno\tno\tcellular\t5\tjun\t207\t1\t-1\t0\tunknown\tyes\t$4563$4:1.0 13:1.0 17:1.0 19:1.0 4266:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$4:1.0 13:1.0 17:1.0 19:1.0 4266:1.0 4552:1.0 4554:1.0 4556:1.0 4563:54.0 4564:207.0 4565:1.0 4566:-1.0 4567:0.0\tno\t{\"no\":\"0.512676411564536\",\"yes\":\"0.487323588435464\"}\n38\tblue-collar\tmarried\tprimary\tno\t2240\tyes\tno\tcellular\t19\tnov\t551\t1\t183\t1\tfailure\tno\t$4563$1:1.0 13:1.0 15:1.0 19:1.0 1920:1.0 4554:1.0 4556:1.0 4559:1.0\t$4568$1:1.0 13:1.0 15:1.0 19:1.0 1920:1.0 4554:1.0 4556:1.0 4559:1.0 4563:38.0 4564:551.0 4565:1.0 4566:183.0 4567:1.0\tyes\t{\"no\":\"0.13960615360174056\",\"yes\":\"0.8603938463982594\"}\n41\ttechnician\tsingle\tsecondary\tno\t618\tno\tno\tcellular\t5\tfeb\t1056\t1\t-1\t0\tunknown\tno\t$4563$9:1.0 16:1.0 19:1.0 3785:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$9:1.0 16:1.0 19:1.0 3785:1.0 4552:1.0 4554:1.0 4556:1.0 4563:41.0 4564:1056.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.002817180867403679\",\"yes\":\"0.9971828191325963\"}\n32\tadmin.\tsingle\tsecondary\tno\t45\tyes\tyes\tcellular\t14\tmay\t908\t3\t344\t7\tother\tno\t$4563$0:1.0 16:1.0 19:1.0 3237:1.0 4556:1.0 4560:1.0\t$4568$0:1.0 16:1.0 19:1.0 3237:1.0 4556:1.0 4560:1.0 4563:32.0 4564:908.0 4565:3.0 4566:344.0 4567:7.0\tyes\t{\"no\":\"0.06685238336374744\",\"yes\":\"0.9331476166362526\"}\n32\tadmin.\tmarried\tsecondary\tno\t923\tyes\tno\tcellular\t17\tapr\t819\t4\t-1\t0\tunknown\tno\t$4563$0:1.0 13:1.0 16:1.0 19:1.0 4434:1.0 4554:1.0 4556:1.0\t$4568$0:1.0 13:1.0 16:1.0 19:1.0 4434:1.0 4554:1.0 4556:1.0 4563:32.0 4564:819.0 4565:4.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.2730747037732346\",\"yes\":\"0.7269252962267654\"}\n86\tretired\tmarried\tsecondary\tno\t1503\tno\tno\ttelephone\t18\tmar\t165\t3\t101\t1\tother\tno\t$4563$5:1.0 13:1.0 16:1.0 19:1.0 1243:1.0 4552:1.0 4554:1.0 4557:1.0 4560:1.0\t$4568$5:1.0 13:1.0 16:1.0 19:1.0 1243:1.0 4552:1.0 4554:1.0 4557:1.0 4560:1.0 4563:86.0 4564:165.0 4565:3.0 4566:101.0 4567:1.0\tyes\t{\"no\":\"0.4867129104426625\",\"yes\":\"0.5132870895573375\"}\n44\tmanagement\tmarried\ttertiary\tno\t773\tno\tyes\tcellular\t9\tjul\t618\t1\t-1\t0\tunknown\tno\t$4563$4:1.0 13:1.0 17:1.0 19:1.0 4151:1.0 4552:1.0 4556:1.0\t$4568$4:1.0 13:1.0 17:1.0 19:1.0 4151:1.0 4552:1.0 4556:1.0 4563:44.0 4564:618.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.42792109872291717\",\"yes\":\"0.5720789012770828\"}\n25\tstudent\tsingle\tunknown\tno\t10788\tno\tno\tcellular\t23\tdec\t102\t2\t210\t2\tother\tno\t$4563$8:1.0 19:1.0 713:1.0 4552:1.0 4554:1.0 4556:1.0 4560:1.0\t$4568$8:1.0 19:1.0 713:1.0 4552:1.0 4554:1.0 4556:1.0 4560:1.0 4563:25.0 4564:102.0 4565:2.0 4566:210.0 4567:2.0\tyes\t{\"no\":\"0.49439485508329994\",\"yes\":\"0.5056051449167001\"}\n30\tblue-collar\tsingle\tsecondary\tno\t180\tno\tno\tcellular\t14\tjul\t203\t1\t183\t2\tfailure\tno\t$4563$1:1.0 16:1.0 19:1.0 1547:1.0 4552:1.0 4554:1.0 4556:1.0 4559:1.0\t$4568$1:1.0 16:1.0 19:1.0 1547:1.0 4552:1.0 4554:1.0 4556:1.0 4559:1.0 4563:30.0 4564:203.0 4565:1.0 4566:183.0 4567:2.0\tyes\t{\"no\":\"0.28180000139966843\",\"yes\":\"0.7181999986003316\"}\n35\tmanagement\tsingle\ttertiary\tno\t0\tno\tno\tcellular\t29\taug\t669\t6\t-1\t0\tunknown\tno\t$4563$4:1.0 17:1.0 19:1.0 591:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$4:1.0 17:1.0 19:1.0 591:1.0 4552:1.0 4554:1.0 4556:1.0 4563:35.0 4564:669.0 4565:6.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.2120262849589687\",\"yes\":\"0.7879737150410313\"}\n60\tretired\tmarried\tsecondary\tno\t197\tno\tno\tcellular\t7\toct\t1386\t1\t-1\t0\tunknown\tno\t$4563$5:1.0 13:1.0 16:1.0 19:1.0 1684:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$5:1.0 13:1.0 16:1.0 19:1.0 1684:1.0 4552:1.0 4554:1.0 4556:1.0 4563:60.0 4564:1386.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"9.692932481419891E-5\",\"yes\":\"0.9999030706751858\"}\n54\tblue-collar\tmarried\tsecondary\tno\t0\tno\tno\ttelephone\t16\tapr\t1366\t1\t150\t1\tfailure\tno\t$4563$1:1.0 13:1.0 16:1.0 19:1.0 591:1.0 4552:1.0 4554:1.0 4557:1.0 4559:1.0\t$4568$1:1.0 13:1.0 16:1.0 19:1.0 591:1.0 4552:1.0 4554:1.0 4557:1.0 4559:1.0 4563:54.0 4564:1366.0 4565:1.0 4566:150.0 4567:1.0\tyes\t{\"no\":\"0.001018254771523397\",\"yes\":\"0.9989817452284766\"}\n53\tunemployed\tmarried\tprimary\tno\t980\tyes\tno\tcellular\t3\tdec\t352\t1\t-1\t0\tunknown\tyes\t$4563$10:1.0 13:1.0 15:1.0 19:1.0 4523:1.0 4554:1.0 4556:1.0\t$4568$10:1.0 13:1.0 15:1.0 19:1.0 4523:1.0 4554:1.0 4556:1.0 4563:53.0 4564:352.0 4565:1.0 4566:-1.0 4567:0.0\tno\t{\"no\":\"0.8197300437929417\",\"yes\":\"0.18026995620705832\"}\n71\tretired\tmarried\tprimary\tno\t4657\tno\tno\tcellular\t16\tfeb\t93\t5\t-1\t0\tunknown\tyes\t$4563$5:1.0 13:1.0 15:1.0 19:1.0 3294:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$5:1.0 13:1.0 15:1.0 19:1.0 3294:1.0 4552:1.0 4554:1.0 4556:1.0 4563:71.0 4564:93.0 4565:5.0 4566:-1.0 4567:0.0\tno\t{\"no\":\"0.720338348442288\",\"yes\":\"0.27966165155771205\"}\n46\tunemployed\tsingle\ttertiary\tno\t705\tno\tno\tcellular\t4\tfeb\t398\t1\t-1\t0\tunknown\tno\t$4563$10:1.0 17:1.0 19:1.0 3997:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$10:1.0 17:1.0 19:1.0 3997:1.0 4552:1.0 4554:1.0 4556:1.0 4563:46.0 4564:398.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.08389735766157036\",\"yes\":\"0.9161026423384296\"}\n27\ttechnician\tsingle\tsecondary\tno\t489\tyes\tno\tcellular\t30\tjul\t356\t4\t-1\t0\tunknown\tyes\t$4563$9:1.0 16:1.0 19:1.0 3386:1.0 4554:1.0 4556:1.0\t$4568$9:1.0 16:1.0 19:1.0 3386:1.0 4554:1.0 4556:1.0 4563:27.0 4564:356.0 4565:4.0 4566:-1.0 4567:0.0\tno\t{\"no\":\"0.6483288041408077\",\"yes\":\"0.35167119585919226\"}\n37\tmanagement\tsingle\ttertiary\tno\t695\tno\tno\tcellular\t28\tjan\t233\t1\t-1\t0\tunknown\tno\t$4563$4:1.0 17:1.0 19:1.0 3972:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$4:1.0 17:1.0 19:1.0 3972:1.0 4552:1.0 4554:1.0 4556:1.0 4563:37.0 4564:233.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.3240840851708692\",\"yes\":\"0.6759159148291308\"}\n33\tblue-collar\tsingle\tsecondary\tno\t4404\tyes\tno\tcellular\t20\tnov\t766\t3\t-1\t0\tunknown\tno\t$4563$1:1.0 16:1.0 19:1.0 4551:1.0 4554:1.0 4556:1.0\t$4568$1:1.0 16:1.0 19:1.0 4551:1.0 4554:1.0 4556:1.0 4563:33.0 4564:766.0 4565:3.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.2995084925380137\",\"yes\":\"0.7004915074619863\"}\n78\tretired\tmarried\ttertiary\tno\t226\tno\tno\ttelephone\t6\tnov\t136\t1\t-1\t0\tunknown\tno\t$4563$5:1.0 13:1.0 17:1.0 19:1.0 1937:1.0 4552:1.0 4554:1.0 4557:1.0\t$4568$5:1.0 13:1.0 17:1.0 19:1.0 1937:1.0 4552:1.0 4554:1.0 4557:1.0 4563:78.0 4564:136.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.1423159627163899\",\"yes\":\"0.8576840372836101\"}\n77\tretired\tmarried\tprimary\tno\t680\tno\tno\ttelephone\t24\tfeb\t513\t2\t89\t7\tfailure\tno\t$4563$5:1.0 13:1.0 15:1.0 19:1.0 3937:1.0 4552:1.0 4554:1.0 4557:1.0 4559:1.0\t$4568$5:1.0 13:1.0 15:1.0 19:1.0 3937:1.0 4552:1.0 4554:1.0 4557:1.0 4559:1.0 4563:77.0 4564:513.0 4565:2.0 4566:89.0 4567:7.0\tyes\t{\"no\":\"0.34523134258466726\",\"yes\":\"0.6547686574153327\"}\n44\tblue-collar\tmarried\tsecondary\tno\t2523\tyes\tno\tunknown\t29\tmay\t1236\t2\t-1\t0\tunknown\tno\t$4563$1:1.0 13:1.0 16:1.0 19:1.0 2140:1.0 4554:1.0\t$4568$1:1.0 13:1.0 16:1.0 19:1.0 2140:1.0 4554:1.0 4563:44.0 4564:1236.0 4565:2.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.21942206648667906\",\"yes\":\"0.7805779335133209\"}\n56\tadmin.\tmarried\tunknown\tno\t2038\tno\tno\tcellular\t8\tfeb\t405\t1\t305\t1\tsuccess\tno\t$4563$0:1.0 13:1.0 19:1.0 1745:1.0 4552:1.0 4554:1.0 4556:1.0 4561:1.0\t$4568$0:1.0 13:1.0 19:1.0 1745:1.0 4552:1.0 4554:1.0 4556:1.0 4561:1.0 4563:56.0 4564:405.0 4565:1.0 4566:305.0 4567:1.0\tyes\t{\"no\":\"0.021038158670635854\",\"yes\":\"0.9789618413293641\"}\n43\tadmin.\tmarried\tsecondary\tno\t0\tyes\tno\tcellular\t17\tjul\t674\t3\t-1\t0\tunknown\tno\t$4563$0:1.0 13:1.0 16:1.0 19:1.0 591:1.0 4554:1.0 4556:1.0\t$4568$0:1.0 13:1.0 16:1.0 19:1.0 591:1.0 4554:1.0 4556:1.0 4563:43.0 4564:674.0 4565:3.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.41899368107224366\",\"yes\":\"0.5810063189277563\"}\n31\tblue-collar\tsingle\tsecondary\tno\t609\tyes\tno\tcellular\t14\tapr\t1126\t1\t335\t1\tfailure\tno\t$4563$1:1.0 16:1.0 19:1.0 3760:1.0 4554:1.0 4556:1.0 4559:1.0\t$4568$1:1.0 16:1.0 19:1.0 3760:1.0 4554:1.0 4556:1.0 4559:1.0 4563:31.0 4564:1126.0 4565:1.0 4566:335.0 4567:1.0\tyes\t{\"no\":\"0.05263279768305307\",\"yes\":\"0.9473672023169469\"}\n40\tmanagement\tsingle\ttertiary\tno\t0\tyes\tno\tcellular\t23\tfeb\t228\t2\t182\t6\tfailure\tyes\t$4563$4:1.0 17:1.0 19:1.0 591:1.0 4554:1.0 4556:1.0 4559:1.0\t$4568$4:1.0 17:1.0 19:1.0 591:1.0 4554:1.0 4556:1.0 4559:1.0 4563:40.0 4564:228.0 4565:2.0 4566:182.0 4567:6.0\tno\t{\"no\":\"0.7555202168942312\",\"yes\":\"0.2444797831057688\"}\n30\tmanagement\tmarried\ttertiary\tno\t1942\tyes\tyes\tcellular\t21\tnov\t436\t2\t178\t3\tother\tyes\t$4563$4:1.0 13:1.0 17:1.0 19:1.0 1660:1.0 4556:1.0 4560:1.0\t$4568$4:1.0 13:1.0 17:1.0 19:1.0 1660:1.0 4556:1.0 4560:1.0 4563:30.0 4564:436.0 4565:2.0 4566:178.0 4567:3.0\tno\t{\"no\":\"0.5395094454048031\",\"yes\":\"0.46049055459519694\"}\n31\tadmin.\tsingle\tsecondary\tno\t747\tyes\tno\tunknown\t26\tmay\t543\t2\t-1\t0\tunknown\tyes\t$4563$0:1.0 16:1.0 19:1.0 4093:1.0 4554:1.0\t$4568$0:1.0 16:1.0 19:1.0 4093:1.0 4554:1.0 4563:31.0 4564:543.0 4565:2.0 4566:-1.0 4567:0.0\tno\t{\"no\":\"0.7650524206601576\",\"yes\":\"0.23494757933984245\"}\n50\tmanagement\tdivorced\ttertiary\tno\t201\tyes\tno\tcellular\t24\tjul\t248\t1\t-1\t0\tunknown\tno\t$4563$4:1.0 12:1.0 17:1.0 19:1.0 1721:1.0 4554:1.0 4556:1.0\t$4568$4:1.0 12:1.0 17:1.0 19:1.0 1721:1.0 4554:1.0 4556:1.0 4563:50.0 4564:248.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.2669989417888867\",\"yes\":\"0.7330010582111133\"}\n56\tmanagement\tdivorced\ttertiary\tno\t2959\tyes\tno\ttelephone\t18\tmay\t325\t1\t-1\t0\tunknown\tno\t$4563$4:1.0 12:1.0 17:1.0 19:1.0 2442:1.0 4554:1.0 4557:1.0\t$4568$4:1.0 12:1.0 17:1.0 19:1.0 2442:1.0 4554:1.0 4557:1.0 4563:56.0 4564:325.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.4435741505596811\",\"yes\":\"0.5564258494403189\"}\n80\tretired\tmarried\tsecondary\tno\t8304\tno\tno\ttelephone\t6\tapr\t681\t1\t118\t11\tsuccess\tno\t$4563$5:1.0 13:1.0 16:1.0 19:1.0 4270:1.0 4552:1.0 4554:1.0 4557:1.0 4561:1.0\t$4568$5:1.0 13:1.0 16:1.0 19:1.0 4270:1.0 4552:1.0 4554:1.0 4557:1.0 4561:1.0 4563:80.0 4564:681.0 4565:1.0 4566:118.0 4567:11.0\tyes\t{\"no\":\"7.423003873754386E-4\",\"yes\":\"0.9992576996126246\"}\n69\tretired\tmarried\ttertiary\tno\t473\tno\tno\tcellular\t7\tjul\t112\t1\t78\t1\tfailure\tno\t$4563$5:1.0 13:1.0 17:1.0 19:1.0 3324:1.0 4552:1.0 4554:1.0 4556:1.0 4559:1.0\t$4568$5:1.0 13:1.0 17:1.0 19:1.0 3324:1.0 4552:1.0 4554:1.0 4556:1.0 4559:1.0 4563:69.0 4564:112.0 4565:1.0 4566:78.0 4567:1.0\tyes\t{\"no\":\"0.19081726515241892\",\"yes\":\"0.8091827348475811\"}\n31\tself-employed\tsingle\tsecondary\tno\t1086\tno\tno\tcellular\t20\tnov\t410\t1\t-1\t0\tunknown\tno\t$4563$6:1.0 16:1.0 19:1.0 722:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$6:1.0 16:1.0 19:1.0 722:1.0 4552:1.0 4554:1.0 4556:1.0 4563:31.0 4564:410.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.4386037356359803\",\"yes\":\"0.5613962643640197\"}\n38\tmanagement\tdivorced\ttertiary\tno\t4335\tyes\tno\tcellular\t20\tnov\t640\t1\t-1\t0\tunknown\tno\t$4563$4:1.0 12:1.0 17:1.0 19:1.0 4551:1.0 4554:1.0 4556:1.0\t$4568$4:1.0 12:1.0 17:1.0 19:1.0 4551:1.0 4554:1.0 4556:1.0 4563:38.0 4564:640.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.24693387261842537\",\"yes\":\"0.7530661273815746\"}\n52\tmanagement\tmarried\ttertiary\tno\t6922\tno\tno\tcellular\t20\tnov\t371\t1\t-1\t0\tunknown\tno\t$4563$4:1.0 13:1.0 17:1.0 19:1.0 4551:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$4:1.0 13:1.0 17:1.0 19:1.0 4551:1.0 4552:1.0 4554:1.0 4556:1.0 4563:52.0 4564:371.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.3125481445330247\",\"yes\":\"0.6874518554669753\"}\n38\tself-employed\tdivorced\ttertiary\tno\t1513\tno\tno\tcellular\t7\tmay\t330\t1\t342\t1\tfailure\tno\t$4563$6:1.0 12:1.0 17:1.0 19:1.0 4551:1.0 4552:1.0 4554:1.0 4556:1.0 4559:1.0\t$4568$6:1.0 12:1.0 17:1.0 19:1.0 4551:1.0 4552:1.0 4554:1.0 4556:1.0 4559:1.0 4563:38.0 4564:330.0 4565:1.0 4566:342.0 4567:1.0\tyes\t{\"no\":\"0.3802505246511034\",\"yes\":\"0.6197494753488966\"}\n47\tentrepreneur\tmarried\tprimary\tno\t668\tno\tno\tcellular\t12\tmay\t908\t1\t-1\t0\tunknown\tno\t$4563$2:1.0 13:1.0 15:1.0 19:1.0 3905:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$2:1.0 13:1.0 15:1.0 19:1.0 3905:1.0 4552:1.0 4554:1.0 4556:1.0 4563:47.0 4564:908.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.009912615979759232\",\"yes\":\"0.9900873840202408\"}\n33\tmanagement\tmarried\ttertiary\tno\t1412\tyes\tno\tunknown\t19\taug\t480\t1\t-1\t0\tunknown\tyes\t$4563$4:1.0 13:1.0 17:1.0 19:1.0 1152:1.0 4554:1.0\t$4568$4:1.0 13:1.0 17:1.0 19:1.0 1152:1.0 4554:1.0 4563:33.0 4564:480.0 4565:1.0 4566:-1.0 4567:0.0\tno\t{\"no\":\"0.8086564633729298\",\"yes\":\"0.19134353662707015\"}\n62\tretired\tdivorced\ttertiary\tno\t0\tno\tno\tcellular\t13\tnov\t227\t2\t-1\t0\tunknown\tyes\t$4563$5:1.0 12:1.0 17:1.0 19:1.0 591:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$5:1.0 12:1.0 17:1.0 19:1.0 591:1.0 4552:1.0 4554:1.0 4556:1.0 4563:62.0 4564:227.0 4565:2.0 4566:-1.0 4567:0.0\tno\t{\"no\":\"0.6160802571506779\",\"yes\":\"0.38391974284932207\"}\n35\thousemaid\tmarried\ttertiary\tno\t1265\tyes\tno\tcellular\t15\tmay\t326\t5\t179\t4\tfailure\tyes\t$4563$3:1.0 13:1.0 17:1.0 19:1.0 971:1.0 4554:1.0 4556:1.0 4559:1.0\t$4568$3:1.0 13:1.0 17:1.0 19:1.0 971:1.0 4554:1.0 4556:1.0 4559:1.0 4563:35.0 4564:326.0 4565:5.0 4566:179.0 4567:4.0\tno\t{\"no\":\"0.5010992652004181\",\"yes\":\"0.49890073479958186\"}\n26\tadmin.\tmarried\tsecondary\tno\t0\tno\tno\tunknown\t27\tmay\t755\t1\t-1\t0\tunknown\tno\t$4563$0:1.0 13:1.0 16:1.0 19:1.0 591:1.0 4552:1.0 4554:1.0\t$4568$0:1.0 13:1.0 16:1.0 19:1.0 591:1.0 4552:1.0 4554:1.0 4563:26.0 4564:755.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.2905902470113845\",\"yes\":\"0.7094097529886155\"}\n27\ttechnician\tsingle\tsecondary\tno\t282\tno\tyes\tcellular\t9\tjul\t676\t5\t-1\t0\tunknown\tno\t$4563$9:1.0 16:1.0 19:1.0 2358:1.0 4552:1.0 4556:1.0\t$4568$9:1.0 16:1.0 19:1.0 2358:1.0 4552:1.0 4556:1.0 4563:27.0 4564:676.0 4565:5.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.3196987760258575\",\"yes\":\"0.6803012239741425\"}\n31\ttechnician\tsingle\tsecondary\tno\t1970\tno\tno\ttelephone\t17\tapr\t284\t3\t-1\t0\tunknown\tno\t$4563$9:1.0 16:1.0 19:1.0 1685:1.0 4552:1.0 4554:1.0 4557:1.0\t$4568$9:1.0 16:1.0 19:1.0 1685:1.0 4552:1.0 4554:1.0 4557:1.0 4563:31.0 4564:284.0 4565:3.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.3298073357303548\",\"yes\":\"0.6701926642696452\"}\n60\tmanagement\tmarried\ttertiary\tno\t3387\tno\tno\tcellular\t14\taug\t636\t2\t-1\t0\tunknown\tno\t$4563$4:1.0 13:1.0 17:1.0 19:1.0 2705:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$4:1.0 13:1.0 17:1.0 19:1.0 2705:1.0 4552:1.0 4554:1.0 4556:1.0 4563:60.0 4564:636.0 4565:2.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.18481073780946067\",\"yes\":\"0.8151892621905393\"}\n55\tservices\tmarried\tunknown\tno\t1210\tyes\tno\tunknown\t30\tmay\t868\t1\t-1\t0\tunknown\tno\t$4563$7:1.0 13:1.0 19:1.0 897:1.0 4554:1.0\t$4568$7:1.0 13:1.0 19:1.0 897:1.0 4554:1.0 4563:55.0 4564:868.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.35877694201456967\",\"yes\":\"0.6412230579854303\"}\n27\tstudent\tsingle\tsecondary\tno\t671\tyes\tno\tunknown\t7\tmay\t332\t2\t-1\t0\tunknown\tno\t$4563$8:1.0 16:1.0 19:1.0 3913:1.0 4554:1.0\t$4568$8:1.0 16:1.0 19:1.0 3913:1.0 4554:1.0 4563:27.0 4564:332.0 4565:2.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.42405861385570276\",\"yes\":\"0.5759413861442972\"}\n46\tadmin.\tsingle\tsecondary\tno\t1693\tyes\tno\tcellular\t25\tjan\t137\t1\t97\t1\tsuccess\tno\t$4563$0:1.0 16:1.0 19:1.0 1440:1.0 4554:1.0 4556:1.0 4561:1.0\t$4568$0:1.0 16:1.0 19:1.0 1440:1.0 4554:1.0 4556:1.0 4561:1.0 4563:46.0 4564:137.0 4565:1.0 4566:97.0 4567:1.0\tyes\t{\"no\":\"0.1751430365476354\",\"yes\":\"0.8248569634523646\"}\n23\tentrepreneur\tsingle\tprimary\tno\t4\tyes\tno\tunknown\t13\tmay\t395\t2\t-1\t0\tunknown\tyes\t$4563$2:1.0 15:1.0 19:1.0 3017:1.0 4554:1.0\t$4568$2:1.0 15:1.0 19:1.0 3017:1.0 4554:1.0 4563:23.0 4564:395.0 4565:2.0 4566:-1.0 4567:0.0\tno\t{\"no\":\"0.9959543861046667\",\"yes\":\"0.004045613895333311\"}\n35\ttechnician\tsingle\ttertiary\tno\t3552\tno\tno\tcellular\t21\tnov\t267\t1\t-1\t0\tunknown\tno\t$4563$9:1.0 17:1.0 19:1.0 2799:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$9:1.0 17:1.0 19:1.0 2799:1.0 4552:1.0 4554:1.0 4556:1.0 4563:35.0 4564:267.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.26181584486803644\",\"yes\":\"0.7381841551319636\"}\n55\tmanagement\tdivorced\ttertiary\tno\t1598\tno\tno\tcellular\t22\taug\t607\t4\t-1\t0\tunknown\tno\t$4563$4:1.0 12:1.0 17:1.0 19:1.0 1345:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$4:1.0 12:1.0 17:1.0 19:1.0 1345:1.0 4552:1.0 4554:1.0 4556:1.0 4563:55.0 4564:607.0 4565:4.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.1649746358968116\",\"yes\":\"0.8350253641031884\"}\n51\tself-employed\tmarried\ttertiary\tno\t2007\tno\tno\tunknown\t16\tjun\t1021\t1\t-1\t0\tunknown\tno\t$4563$6:1.0 13:1.0 17:1.0 19:1.0 1718:1.0 4552:1.0 4554:1.0\t$4568$6:1.0 13:1.0 17:1.0 19:1.0 1718:1.0 4552:1.0 4554:1.0 4563:51.0 4564:1021.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.0063754065018454265\",\"yes\":\"0.9936245934981546\"}\n31\tself-employed\tsingle\ttertiary\tno\t96\tno\tno\tcellular\t5\tfeb\t577\t1\t-1\t0\tunknown\tno\t$4563$6:1.0 17:1.0 19:1.0 4490:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$6:1.0 17:1.0 19:1.0 4490:1.0 4552:1.0 4554:1.0 4556:1.0 4563:31.0 4564:577.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.25243641473807865\",\"yes\":\"0.7475635852619213\"}\n47\ttechnician\tmarried\tsecondary\tno\t3973\tno\tno\tcellular\t6\taug\t732\t2\t-1\t0\tunknown\tno\t$4563$9:1.0 13:1.0 16:1.0 19:1.0 3007:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$9:1.0 13:1.0 16:1.0 19:1.0 3007:1.0 4552:1.0 4554:1.0 4556:1.0 4563:47.0 4564:732.0 4565:2.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.2690112359085356\",\"yes\":\"0.7309887640914644\"}\n46\tmanagement\tsingle\ttertiary\tno\t46\tno\tyes\tcellular\t17\tnov\t80\t1\t152\t1\tfailure\tno\t$4563$4:1.0 17:1.0 19:1.0 3275:1.0 4552:1.0 4556:1.0 4559:1.0\t$4568$4:1.0 17:1.0 19:1.0 3275:1.0 4552:1.0 4556:1.0 4559:1.0 4563:46.0 4564:80.0 4565:1.0 4566:152.0 4567:1.0\tyes\t{\"no\":\"0.3792240485046767\",\"yes\":\"0.6207759514953233\"}\n49\tunemployed\tdivorced\ttertiary\tno\t780\tno\tno\tcellular\t8\tnov\t148\t1\t871\t2\tfailure\tno\t$4563$10:1.0 12:1.0 17:1.0 19:1.0 4164:1.0 4552:1.0 4554:1.0 4556:1.0 4559:1.0\t$4568$10:1.0 12:1.0 17:1.0 19:1.0 4164:1.0 4552:1.0 4554:1.0 4556:1.0 4559:1.0 4563:49.0 4564:148.0 4565:1.0 4566:871.0 4567:2.0\tyes\t{\"no\":\"0.2083405707400745\",\"yes\":\"0.7916594292599255\"}\n70\tretired\tmarried\tprimary\tno\t3782\tno\tno\tcellular\t16\tmar\t618\t1\t-1\t0\tunknown\tno\t$4563$5:1.0 13:1.0 15:1.0 19:1.0 4551:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$5:1.0 13:1.0 15:1.0 19:1.0 4551:1.0 4552:1.0 4554:1.0 4556:1.0 4563:70.0 4564:618.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.09900191430631278\",\"yes\":\"0.9009980856936872\"}\n55\tadmin.\tmarried\tsecondary\tno\t0\tno\tno\tcellular\t23\tsep\t180\t2\t238\t3\tsuccess\tno\t$4563$0:1.0 13:1.0 16:1.0 19:1.0 591:1.0 4552:1.0 4554:1.0 4556:1.0 4561:1.0\t$4568$0:1.0 13:1.0 16:1.0 19:1.0 591:1.0 4552:1.0 4554:1.0 4556:1.0 4561:1.0 4563:55.0 4564:180.0 4565:2.0 4566:238.0 4567:3.0\tyes\t{\"no\":\"0.23347807828909195\",\"yes\":\"0.766521921710908\"}\n33\tmanagement\tsingle\tsecondary\tno\t-424\tyes\tno\tunknown\t26\tmay\t863\t1\t-1\t0\tunknown\tno\t$4563$4:1.0 16:1.0 19:1.0 358:1.0 4554:1.0\t$4568$4:1.0 16:1.0 19:1.0 358:1.0 4554:1.0 4563:33.0 4564:863.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.4610608738174222\",\"yes\":\"0.5389391261825778\"}\n58\tretired\tmarried\tsecondary\tno\t983\tno\tno\tcellular\t5\taug\t139\t1\t-1\t0\tunknown\tno\t$4563$5:1.0 13:1.0 16:1.0 19:1.0 4527:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$5:1.0 13:1.0 16:1.0 19:1.0 4527:1.0 4552:1.0 4554:1.0 4556:1.0 4563:58.0 4564:139.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.16875596312683128\",\"yes\":\"0.8312440368731687\"}\n30\ttechnician\tsingle\tsecondary\tno\t790\tno\tno\tcellular\t20\taug\t696\t3\t-1\t0\tunknown\tno\t$4563$9:1.0 16:1.0 19:1.0 4185:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$9:1.0 16:1.0 19:1.0 4185:1.0 4552:1.0 4554:1.0 4556:1.0 4563:30.0 4564:696.0 4565:3.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.19169321766479608\",\"yes\":\"0.8083067823352039\"}\n48\ttechnician\tmarried\tsecondary\tno\t197\tno\tyes\tcellular\t3\tfeb\t47\t2\t222\t3\tother\tno\t$4563$9:1.0 13:1.0 16:1.0 19:1.0 1684:1.0 4552:1.0 4556:1.0 4560:1.0\t$4568$9:1.0 13:1.0 16:1.0 19:1.0 1684:1.0 4552:1.0 4556:1.0 4560:1.0 4563:48.0 4564:47.0 4565:2.0 4566:222.0 4567:3.0\tyes\t{\"no\":\"0.37543103760075547\",\"yes\":\"0.6245689623992445\"}\n57\tmanagement\tmarried\tsecondary\tno\t139\tno\tno\tcellular\t17\taug\t80\t1\t-1\t0\tunknown\tno\t$4563$4:1.0 13:1.0 16:1.0 19:1.0 1124:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$4:1.0 13:1.0 16:1.0 19:1.0 1124:1.0 4552:1.0 4554:1.0 4556:1.0 4563:57.0 4564:80.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.36302488662961285\",\"yes\":\"0.6369751133703871\"}\n57\tmanagement\tmarried\ttertiary\tno\t320\tno\tno\tcellular\t7\taug\t76\t2\t-1\t0\tunknown\tno\t$4563$4:1.0 13:1.0 17:1.0 19:1.0 2597:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$4:1.0 13:1.0 17:1.0 19:1.0 2597:1.0 4552:1.0 4554:1.0 4556:1.0 4563:57.0 4564:76.0 4565:2.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.4620007122568557\",\"yes\":\"0.5379992877431443\"}\n27\tservices\tsingle\tsecondary\tno\t54\tyes\tno\tunknown\t28\tmay\t543\t2\t-1\t0\tunknown\tyes\t$4563$7:1.0 16:1.0 19:1.0 3569:1.0 4554:1.0\t$4568$7:1.0 16:1.0 19:1.0 3569:1.0 4554:1.0 4563:27.0 4564:543.0 4565:2.0 4566:-1.0 4567:0.0\tno\t{\"no\":\"0.8414993978177303\",\"yes\":\"0.1585006021822697\"}\n35\tblue-collar\tmarried\tprimary\tno\t46\tno\tno\tcellular\t8\tjul\t338\t3\t-1\t0\tunknown\tno\t$4563$1:1.0 13:1.0 15:1.0 19:1.0 3275:1.0 4552:1.0 4554:1.0 4556:1.0\t$4568$1:1.0 13:1.0 15:1.0 19:1.0 3275:1.0 4552:1.0 4554:1.0 4556:1.0 4563:35.0 4564:338.0 4565:3.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.4518996236299029\",\"yes\":\"0.5481003763700971\"}\n33\tadmin.\tdivorced\tsecondary\tno\t661\tyes\tno\tcellular\t18\tnov\t411\t1\t173\t2\tother\tno\t$4563$0:1.0 12:1.0 16:1.0 19:1.0 3888:1.0 4554:1.0 4556:1.0 4560:1.0\t$4568$0:1.0 12:1.0 16:1.0 19:1.0 3888:1.0 4554:1.0 4556:1.0 4560:1.0 4563:33.0 4564:411.0 4565:1.0 4566:173.0 4567:2.0\tyes\t{\"no\":\"0.16056568210230915\",\"yes\":\"0.8394343178976909\"}\n30\tstudent\tsingle\tsecondary\tno\t0\tyes\tno\tcellular\t19\tnov\t661\t1\t-1\t0\tunknown\tno\t$4563$8:1.0 16:1.0 19:1.0 591:1.0 4554:1.0 4556:1.0\t$4568$8:1.0 16:1.0 19:1.0 591:1.0 4554:1.0 4556:1.0 4563:30.0 4564:661.0 4565:1.0 4566:-1.0 4567:0.0\tyes\t{\"no\":\"0.09462962597556057\",\"yes\":\"0.9053703740244394\"}\n"
}
]
},
"apps": [],
"runtimeInfos": {},
"progressUpdateIntervalMs": 500,
"jobName": "paragraph_1583768872984_-1459808170",
"id": "20200309-234752_1664292334",
"dateCreated": "2020-03-09 23:47:52.984",
"dateStarted": "2020-04-27 13:48:54.934",
"dateFinished": "2020-04-27 13:49:01.921",
"status": "FINISHED"
},
{
"text": "%flink.pyflink\n",
"user": "anonymous",
"dateUpdated": "2020-03-10 11:04:48.771",
"config": {
"editorMode": "ace/mode/python",
"editorHide": false,
"colWidth": 12.0,
"fontSize": 9.0,
"enabled": true,
"results": {},
"editorSetting": {
"language": "python",
"editOnDblClick": false,
"completionSupport": true,
"completionKey": "TAB"
}
},
"settings": {
"params": {},
"forms": {}
},
"results": {
"code": "SUCCESS",
"msg": [
{
"type": "TEXT",
"data": "UsageError: Line magic function `%flink.pyflink` not found.\n"
}
]
},
"apps": [],
"runtimeInfos": {},
"progressUpdateIntervalMs": 500,
"jobName": "paragraph_1583768872984_-575920971",
"id": "20200309-234752_517801851",
"dateCreated": "2020-03-09 23:47:52.984",
"dateStarted": "2020-03-10 00:25:39.912",
"dateFinished": "2020-03-10 00:25:39.981",
"status": "FINISHED"
}
],
"name": "8. Logistic Regression (Alink)",
"id": "2F4HJNWVN",
"defaultInterpreterGroup": "flink",
"version": "0.9.0-SNAPSHOT",
"noteParams": {},
"noteForms": {},
"angularObjects": {},
"config": {
"isZeppelinNotebookCronEnable": false
},
"info": {}
}