diff --git a/.typos.toml b/.typos.toml
index 60cccd8d..4317cdbb 100644
--- a/.typos.toml
+++ b/.typos.toml
@@ -56,6 +56,7 @@ mape = "mape"
yhat = "yhat"
yhat_lower = "yhat_lower"
yhat_upper = "yhat_upper"
+fpr = "fpr"
[default]
locale = "en-us"
diff --git a/bank_subscription_prediction/Dockerfile.codespace b/bank_subscription_prediction/Dockerfile.codespace
new file mode 100644
index 00000000..014a8f92
--- /dev/null
+++ b/bank_subscription_prediction/Dockerfile.codespace
@@ -0,0 +1,38 @@
+# Sandbox base image
+FROM zenmldocker/zenml-sandbox:latest
+
+# Install uv from official distroless image
+COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/
+
+# Set uv environment variables for optimization
+ENV UV_SYSTEM_PYTHON=1
+ENV UV_COMPILE_BYTECODE=1
+
+# Project metadata
+LABEL project_name="bank_subscription_prediction"
+LABEL project_version="0.1.0"
+
+# Install dependencies with uv and cache optimization
+RUN --mount=type=cache,target=/root/.cache/uv \
+ uv pip install --system \
+ "zenml[server]>=0.80.0" \
+ "notebook" \
+ "scikit-learn" \
+ "pyarrow" \
+ "pandas" \
+ "xgboost" \
+ "matplotlib" \
+ "plotly" \
+ "jupyter"
+
+# Set workspace directory
+WORKDIR /workspace
+
+# Clone only the project directory and reorganize
+RUN git clone --depth 1 https://github.com/zenml-io/zenml-projects.git /tmp/zenml-projects && \
+ cp -r /tmp/zenml-projects/bank_subscription_prediction/* /workspace/ && \
+ rm -rf /tmp/zenml-projects
+
+# VSCode settings
+RUN mkdir -p /workspace/.vscode && \
+ printf '{\n "workbench.colorTheme": "Default Dark Modern"\n}' > /workspace/.vscode/settings.json
\ No newline at end of file
diff --git a/bank_subscription_prediction/README.md b/bank_subscription_prediction/README.md
new file mode 100644
index 00000000..af97af1e
--- /dev/null
+++ b/bank_subscription_prediction/README.md
@@ -0,0 +1,194 @@
+# 🏦 Bank Subscription Prediction
+
+A production-ready MLOps pipeline for predicting bank term deposit subscriptions using XGBoost.
+
+
+
+

+
+
ZenML visualization of the training pipeline DAG
+
+
+## 🎯 Business Context
+
+In banking, accurate prediction of which customers are likely to subscribe to term deposits helps optimize marketing campaigns and increase conversion rates. This project provides a production-ready prediction solution that:
+
+- Predicts the likelihood of customers subscribing to term deposits
+- Handles class imbalance common in marketing datasets
+- Implements feature selection to identify key factors influencing subscriptions
+- Provides interactive visualizations of model performance
+
+## 📊 Data Overview
+
+This project uses the [Bank Marketing dataset](https://archive.ics.uci.edu/ml/datasets/bank+marketing) from the UCI Machine Learning Repository. The dataset contains:
+
+- Customer demographic information (age, job, marital status, education)
+- Financial attributes (housing, loan, balance)
+- Campaign details (contact channel, day, month, duration)
+- Previous campaign outcomes
+- Target variable: whether the client subscribed to a term deposit (yes/no)
+
+The data loader will automatically download and cache the dataset if it's not available locally. No need to manually download the data!
+
+## 🚀 Pipeline Architecture
+
+The project implements a complete ML pipeline with the following steps:
+
+1. **Data Loading**: Auto-download or load the bank marketing dataset
+2. **Data Cleaning**: Handle missing values and outliers
+3. **Data Preprocessing**: Process categorical variables, drop unnecessary columns
+4. **Data Splitting**: Split data into training and test sets
+5. **Model Training**: Train an XGBoost classifier with selected features
+6. **Model Evaluation**: Evaluate model performance and visualize results with interactive HTML visualization
+
+
+
+

+
+
ZenML visualization of the evals
+
+
+## 💡 Model Details
+
+This solution uses XGBoost, specifically designed to handle:
+
+- **Class Imbalance**: Targets the common problem in marketing datasets where positive responses are rare
+- **Feature Importance**: Automatically identifies and ranks the most influential factors
+- **Scalability**: Efficiently processes large customer datasets
+- **Performance**: Consistently outperforms traditional classifiers for this type of prediction task
+
+## 🛠️ Getting Started
+
+### Prerequisites
+
+- Python 3.9+
+- ZenML installed and configured
+
+### Installation
+
+```bash
+# Clone the repository
+git clone https://github.com/zenml-io/zenml-projects.git
+cd zenml-projects/bank_subscription_prediction
+
+# Install dependencies
+pip install -r requirements.txt
+
+# Initialize ZenML (if needed)
+zenml init
+```
+
+### Running the Pipeline
+
+#### Basic Usage
+
+```bash
+python run.py
+```
+
+#### Using Different Configurations
+
+```bash
+python run.py --config configs/more_trees.yaml
+```
+
+### Available Configurations
+
+| Config File | Description | Key Parameters |
+|-------------|-------------|----------------|
+| `baseline.yaml` | Default XGBoost parameters | Base estimators and depth |
+| `more_trees.yaml` | Increased number of estimators | 200 estimators |
+| `deeper_trees.yaml` | Increased maximum tree depth | Max depth of 5 |
+
+## 📁 Project Structure
+
+```
+bank_subscription_prediction/
+├── configs/ # YAML Configuration files
+│ ├── __init__.py
+│ ├── baseline.yaml # Baseline experiment config
+│ ├── more_trees.yaml # Config with more trees
+│ └── deeper_trees.yaml# Config with deeper trees
+├── pipelines/ # ZenML pipeline definitions
+│ ├── __init__.py
+│ └── training_pipeline.py
+├── steps/ # ZenML pipeline steps
+│ ├── __init__.py
+│ ├── data_loader.py
+│ ├── data_cleaner.py
+│ ├── data_preprocessor.py
+│ ├── data_splitter.py
+│ ├── model_trainer.py
+│ └── model_evaluator.py
+├── utils/ # Utility functions and helpers
+│ ├── __init__.py
+│ └── model_utils.py
+├── __init__.py
+├── requirements.txt # Project dependencies
+├── README.md # Project documentation
+└── run.py # Main script to run the pipeline
+```
+
+## 🔧 Creating Custom Configurations
+
+You can create new YAML configuration files by copying and modifying existing ones:
+
+```yaml
+# my_custom_config.yaml
+# Start with copying an existing config and modify the values
+# environment configuration
+settings:
+ docker:
+ required_integrations:
+ - sklearn
+ - pandas
+ - numpy
+ requirements:
+ - matplotlib
+ - xgboost
+ - plotly
+ - click
+ - pyarrow
+
+# Model Control Plane config
+model:
+ name: bank_subscription_classifier
+ version: 0.1.0
+ license: MIT
+ description: A bank term deposit subscription classifier
+ tags: ["bank_marketing", "classifier", "xgboost"]
+
+# Custom step parameters
+steps:
+ # ...other step params...
+ train_xgb_model_with_feature_selection:
+ n_estimators: 300
+ max_depth: 4
+ # ...other parameters...
+```
+
+## 📈 Example Use Case: Marketing Campaign Optimization
+
+A retail bank uses this pipeline to:
+
+1. Train models on historical marketing campaign data
+2. Identify key customer segments most likely to convert
+3. Deploy targeted campaigns to high-probability customers
+4. Achieve 35% higher conversion rates with 25% lower campaign costs
+
+## 🔄 Integration with Banking Systems
+
+This solution can be integrated with existing banking systems:
+
+- **CRM Systems**: Feed predictions into customer relationship management systems
+- **Marketing Automation**: Provide segments for targeted campaign execution
+- **BI Dashboards**: Export prediction insights to business intelligence tools
+- **Customer Service**: Prioritize high-value potential customers for follow-up
+
+## 👏 Credits
+
+This project is based on the Jupyter notebook [predict_bank_cd_subs_by_xgboost_clf_for_imbalance_dataset.ipynb](https://github.com/IBM/xgboost-financial-predictions/blob/master/notebooks/predict_bank_cd_subs_by_xgboost_clf_for_imbalance_dataset.ipynb) from IBM's xgboost-financial-predictions repository. The original work demonstrates XGBoost classification for imbalanced datasets and has been adapted into a complete ZenML pipeline.
+
+## 📄 License
+
+This project is licensed under the Apache License 2.0.
\ No newline at end of file
diff --git a/bank_subscription_prediction/__init__.py b/bank_subscription_prediction/__init__.py
new file mode 100644
index 00000000..4a2f0135
--- /dev/null
+++ b/bank_subscription_prediction/__init__.py
@@ -0,0 +1 @@
+"""Bank Subscription Prediction Project using ZenML."""
\ No newline at end of file
diff --git a/bank_subscription_prediction/assets/eval_vis.png b/bank_subscription_prediction/assets/eval_vis.png
new file mode 100644
index 00000000..dc64fee2
Binary files /dev/null and b/bank_subscription_prediction/assets/eval_vis.png differ
diff --git a/bank_subscription_prediction/assets/training_dag.png b/bank_subscription_prediction/assets/training_dag.png
new file mode 100644
index 00000000..431d03af
Binary files /dev/null and b/bank_subscription_prediction/assets/training_dag.png differ
diff --git a/bank_subscription_prediction/configs/baseline.yaml b/bank_subscription_prediction/configs/baseline.yaml
new file mode 100644
index 00000000..a5c702fa
--- /dev/null
+++ b/bank_subscription_prediction/configs/baseline.yaml
@@ -0,0 +1,49 @@
+# Baseline experiment configuration
+
+# environment configuration
+settings:
+ docker:
+ required_integrations:
+ - sklearn
+ - pandas
+ - numpy
+ requirements:
+ - matplotlib
+ - xgboost
+ - plotly
+ - click
+ - pyarrow
+
+# configuration of the Model Control Plane
+model:
+ name: bank_subscription_classifier
+ version: 0.1.0
+ license: MIT
+ description: A bank term deposit subscription classifier
+ tags: ["bank_marketing", "classifier", "xgboost"]
+
+# Step-specific parameters
+steps:
+ # Data loading parameters
+ load_data:
+ csv_file_path: "bank.csv"
+
+ # Data splitting parameters
+ split_data_step:
+ test_size: 0.2
+ random_state: 42
+ stratify_col: "y"
+
+ # Model training parameters
+ train_xgb_model_with_feature_selection:
+ learning_rate: 0.1
+ n_estimators: 100
+ max_depth: 3
+ min_child_weight: 1
+ gamma: 0
+ subsample: 0.8
+ colsample_bytree: 0.8
+ objective: "binary:logistic"
+ scale_pos_weight: 1 # Will be calculated dynamically if not overridden
+ random_state: 42
+ feature_selection_threshold: "median"
\ No newline at end of file
diff --git a/bank_subscription_prediction/configs/deeper_trees.yaml b/bank_subscription_prediction/configs/deeper_trees.yaml
new file mode 100644
index 00000000..407a45f4
--- /dev/null
+++ b/bank_subscription_prediction/configs/deeper_trees.yaml
@@ -0,0 +1,49 @@
+# Deeper trees experiment configuration
+
+# environment configuration
+settings:
+ docker:
+ required_integrations:
+ - sklearn
+ - pandas
+ - numpy
+ requirements:
+ - matplotlib
+ - xgboost
+ - plotly
+ - click
+ - pyarrow
+
+# configuration of the Model Control Plane
+model:
+ name: bank_subscription_classifier
+ version: 0.1.0
+ license: MIT
+ description: A bank term deposit subscription classifier
+ tags: ["bank_marketing", "classifier", "xgboost"]
+
+# Step-specific parameters
+steps:
+ # Data loading parameters
+ load_data:
+ csv_file_path: "bank.csv"
+
+ # Data splitting parameters
+ split_data_step:
+ test_size: 0.2
+ random_state: 42
+ stratify_col: "y"
+
+ # Model training parameters with deeper trees
+ train_xgb_model_with_feature_selection:
+ learning_rate: 0.1
+ n_estimators: 100
+ max_depth: 5 # Deeper trees than baseline
+ min_child_weight: 1
+ gamma: 0
+ subsample: 0.8
+ colsample_bytree: 0.8
+ objective: "binary:logistic"
+ scale_pos_weight: 1
+ random_state: 42
+ feature_selection_threshold: "median"
\ No newline at end of file
diff --git a/bank_subscription_prediction/configs/more_trees.yaml b/bank_subscription_prediction/configs/more_trees.yaml
new file mode 100644
index 00000000..8038dbf7
--- /dev/null
+++ b/bank_subscription_prediction/configs/more_trees.yaml
@@ -0,0 +1,49 @@
+# More trees experiment configuration
+
+# environment configuration
+settings:
+ docker:
+ required_integrations:
+ - sklearn
+ - pandas
+ - numpy
+ requirements:
+ - matplotlib
+ - xgboost
+ - plotly
+ - click
+ - pyarrow
+
+# configuration of the Model Control Plane
+model:
+ name: bank_subscription_classifier
+ version: 0.1.0
+ license: MIT
+ description: A bank term deposit subscription classifier
+ tags: ["bank_marketing", "classifier", "xgboost"]
+
+# Step-specific parameters
+steps:
+ # Data loading parameters
+ load_data:
+ csv_file_path: "bank.csv"
+
+ # Data splitting parameters
+ split_data_step:
+ test_size: 0.2
+ random_state: 42
+ stratify_col: "y"
+
+ # Model training parameters with more trees
+ train_xgb_model_with_feature_selection:
+ learning_rate: 0.1
+ n_estimators: 200 # More trees than baseline
+ max_depth: 3
+ min_child_weight: 1
+ gamma: 0
+ subsample: 0.8
+ colsample_bytree: 0.8
+ objective: "binary:logistic"
+ scale_pos_weight: 1
+ random_state: 42
+ feature_selection_threshold: "median"
\ No newline at end of file
diff --git a/bank_subscription_prediction/data/bank.csv b/bank_subscription_prediction/data/bank.csv
new file mode 100644
index 00000000..c0276c4d
--- /dev/null
+++ b/bank_subscription_prediction/data/bank.csv
@@ -0,0 +1,41189 @@
+age;job;marital;education;default;housing;loan;contact;month;day_of_week;duration;campaign;pdays;previous;poutcome;emp.var.rate;cons.price.idx;cons.conf.idx;euribor3m;nr.employed;y
+56;housemaid;married;basic.4y;no;no;no;telephone;may;mon;261;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+57;services;married;high.school;unknown;no;no;telephone;may;mon;149;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;services;married;high.school;no;yes;no;telephone;may;mon;226;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;admin.;married;basic.6y;no;no;no;telephone;may;mon;151;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+56;services;married;high.school;no;no;yes;telephone;may;mon;307;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;services;married;basic.9y;unknown;no;no;telephone;may;mon;198;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+59;admin.;married;professional.course;no;no;no;telephone;may;mon;139;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;blue-collar;married;unknown;unknown;no;no;telephone;may;mon;217;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+24;technician;single;professional.course;no;yes;no;telephone;may;mon;380;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+25;services;single;high.school;no;yes;no;telephone;may;mon;50;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;blue-collar;married;unknown;unknown;no;no;telephone;may;mon;55;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+25;services;single;high.school;no;yes;no;telephone;may;mon;222;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+29;blue-collar;single;high.school;no;no;yes;telephone;may;mon;137;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+57;housemaid;divorced;basic.4y;no;yes;no;telephone;may;mon;293;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;blue-collar;married;basic.6y;no;yes;no;telephone;may;mon;146;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+54;retired;married;basic.9y;unknown;yes;yes;telephone;may;mon;174;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;blue-collar;married;basic.6y;no;yes;no;telephone;may;mon;312;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;blue-collar;married;basic.6y;unknown;yes;yes;telephone;may;mon;440;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+50;blue-collar;married;basic.9y;no;yes;yes;telephone;may;mon;353;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;management;single;basic.9y;unknown;no;no;telephone;may;mon;195;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;unemployed;married;high.school;no;no;no;telephone;may;mon;38;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+55;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;mon;262;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+55;retired;single;high.school;no;yes;no;telephone;may;mon;342;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;technician;single;high.school;no;yes;no;telephone;may;mon;181;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;admin.;married;high.school;no;yes;no;telephone;may;mon;172;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;technician;married;university.degree;no;no;yes;telephone;may;mon;99;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+59;technician;married;unknown;no;yes;no;telephone;may;mon;93;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;self-employed;married;basic.9y;unknown;no;no;telephone;may;mon;233;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+54;technician;single;university.degree;unknown;no;no;telephone;may;mon;255;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+55;unknown;married;university.degree;unknown;unknown;unknown;telephone;may;mon;362;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;admin.;married;unknown;no;no;no;telephone;may;mon;348;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+59;technician;married;unknown;no;yes;no;telephone;may;mon;386;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+49;blue-collar;married;unknown;no;no;no;telephone;may;mon;73;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+54;management;married;basic.4y;unknown;yes;no;telephone;may;mon;230;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+54;blue-collar;divorced;basic.4y;no;no;no;telephone;may;mon;208;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+55;unknown;married;basic.4y;unknown;yes;no;telephone;may;mon;336;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;services;married;high.school;no;no;no;telephone;may;mon;365;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+52;technician;married;basic.9y;no;yes;no;telephone;may;mon;1666;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;admin.;married;university.degree;no;yes;no;telephone;may;mon;577;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+56;technician;married;basic.4y;no;yes;no;telephone;may;mon;137;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+58;management;unknown;university.degree;no;yes;no;telephone;may;mon;366;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;entrepreneur;married;high.school;no;yes;no;telephone;may;mon;314;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;admin.;single;professional.course;no;no;no;telephone;may;mon;160;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+57;admin.;married;university.degree;no;no;yes;telephone;may;mon;212;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;admin.;married;university.degree;unknown;yes;no;telephone;may;mon;188;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;technician;single;professional.course;unknown;no;no;telephone;may;mon;22;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+57;admin.;married;university.degree;no;yes;yes;telephone;may;mon;616;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;blue-collar;married;basic.9y;no;no;yes;telephone;may;mon;178;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;admin.;married;university.degree;no;yes;no;telephone;may;mon;355;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;blue-collar;married;basic.9y;no;yes;no;telephone;may;mon;225;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+54;admin.;married;high.school;no;no;no;telephone;may;mon;160;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;housemaid;married;basic.4y;no;no;yes;telephone;may;mon;266;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+60;admin.;married;high.school;no;no;no;telephone;may;mon;253;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+53;admin.;single;professional.course;no;no;no;telephone;may;mon;179;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+55;blue-collar;married;basic.4y;unknown;no;no;telephone;may;mon;269;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+55;technician;married;professional.course;unknown;yes;no;telephone;may;mon;135;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+50;management;married;university.degree;unknown;no;yes;telephone;may;mon;161;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;services;married;high.school;unknown;yes;no;telephone;may;mon;787;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+55;unemployed;married;professional.course;unknown;yes;yes;telephone;may;mon;145;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+25;technician;single;university.degree;no;yes;no;telephone;may;mon;174;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;entrepreneur;married;university.degree;unknown;no;no;telephone;may;mon;449;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+51;blue-collar;married;basic.9y;no;yes;no;telephone;may;mon;812;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;blue-collar;married;basic.6y;unknown;yes;no;telephone;may;mon;164;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;blue-collar;married;basic.6y;unknown;no;no;telephone;may;mon;366;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+48;admin.;married;high.school;no;no;no;telephone;may;mon;357;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;admin.;married;university.degree;no;no;no;telephone;may;mon;232;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;blue-collar;single;basic.9y;no;yes;no;telephone;may;mon;91;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;admin.;married;unknown;no;yes;no;telephone;may;mon;273;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+56;admin.;married;basic.9y;no;yes;no;telephone;may;mon;158;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;blue-collar;single;basic.4y;unknown;yes;yes;telephone;may;mon;177;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;management;married;basic.6y;no;no;no;telephone;may;mon;200;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;management;divorced;university.degree;no;yes;no;telephone;may;mon;172;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;admin.;married;university.degree;unknown;yes;no;telephone;may;mon;176;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+57;unknown;married;unknown;unknown;no;no;telephone;may;mon;211;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;admin.;married;university.degree;unknown;yes;no;telephone;may;mon;214;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;blue-collar;divorced;basic.4y;unknown;yes;no;telephone;may;mon;1575;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;yes
+55;technician;married;university.degree;no;no;no;telephone;may;mon;349;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;services;married;high.school;unknown;yes;no;telephone;may;mon;337;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+55;management;married;unknown;unknown;yes;no;telephone;may;mon;272;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;blue-collar;married;basic.9y;unknown;no;no;telephone;may;mon;208;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+50;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;mon;193;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+51;blue-collar;married;basic.4y;unknown;unknown;unknown;telephone;may;mon;212;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;admin.;married;high.school;unknown;no;no;telephone;may;mon;165;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+49;entrepreneur;married;university.degree;unknown;yes;no;telephone;may;mon;1042;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;yes
+38;technician;single;university.degree;no;no;yes;telephone;may;mon;20;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;admin.;divorced;high.school;no;no;no;telephone;may;mon;246;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;management;married;basic.6y;no;no;no;telephone;may;mon;529;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;admin.;married;university.degree;no;yes;yes;telephone;may;mon;192;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+49;technician;married;basic.9y;no;no;no;telephone;may;mon;1467;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;yes
+34;admin.;married;high.school;no;yes;no;telephone;may;mon;188;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;admin.;married;university.degree;no;yes;no;telephone;may;mon;180;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+57;unknown;married;unknown;unknown;yes;no;telephone;may;mon;48;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+60;admin.;married;unknown;unknown;no;yes;telephone;may;mon;213;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;unemployed;married;basic.9y;no;no;no;telephone;may;mon;545;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;blue-collar;married;basic.6y;no;no;yes;telephone;may;mon;583;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;services;married;professional.course;no;yes;no;telephone;may;mon;221;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;management;married;university.degree;no;no;no;telephone;may;mon;426;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+53;admin.;divorced;university.degree;unknown;no;no;telephone;may;mon;287;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;technician;single;professional.course;no;no;no;telephone;may;mon;197;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;blue-collar;married;basic.6y;no;no;no;telephone;may;mon;257;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+54;services;married;unknown;no;yes;no;telephone;may;mon;229;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+49;blue-collar;married;basic.4y;no;no;no;telephone;may;mon;55;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+54;services;married;unknown;no;no;no;telephone;may;mon;400;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+52;admin.;divorced;university.degree;no;no;no;telephone;may;mon;197;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+52;admin.;divorced;university.degree;no;no;no;telephone;may;mon;190;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;services;single;high.school;unknown;no;no;telephone;may;mon;21;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;housemaid;married;basic.6y;no;yes;no;telephone;may;mon;300;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;admin.;married;high.school;no;yes;no;telephone;may;mon;123;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;entrepreneur;married;unknown;unknown;yes;no;telephone;may;mon;293;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;technician;married;unknown;unknown;yes;yes;telephone;may;mon;325;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+60;retired;divorced;university.degree;unknown;no;no;telephone;may;mon;514;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+58;unemployed;married;basic.4y;unknown;no;no;telephone;may;mon;849;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;services;divorced;high.school;no;yes;no;telephone;may;mon;194;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+55;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;mon;212;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;management;married;university.degree;no;no;no;telephone;may;mon;337;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;blue-collar;married;high.school;no;no;no;telephone;may;mon;286;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+52;admin.;divorced;university.degree;no;no;no;telephone;may;mon;247;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+57;blue-collar;divorced;unknown;unknown;yes;no;telephone;may;mon;518;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+56;admin.;married;unknown;no;yes;no;telephone;may;mon;364;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+48;blue-collar;divorced;basic.4y;unknown;yes;no;telephone;may;mon;178;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;blue-collar;married;high.school;unknown;yes;no;telephone;may;mon;98;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+49;blue-collar;divorced;high.school;no;no;no;telephone;may;mon;439;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;services;married;high.school;no;no;no;telephone;may;mon;139;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;technician;married;high.school;no;yes;no;telephone;may;mon;79;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;admin.;married;university.degree;no;yes;yes;telephone;may;mon;175;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;admin.;married;university.degree;no;no;yes;telephone;may;mon;262;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+50;admin.;married;basic.6y;no;no;no;telephone;may;mon;61;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;technician;divorced;professional.course;no;yes;yes;telephone;may;mon;78;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+56;retired;married;basic.4y;no;yes;no;telephone;may;mon;102;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;technician;married;professional.course;unknown;yes;no;telephone;may;mon;579;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;yes
+37;blue-collar;married;basic.6y;no;yes;yes;telephone;may;mon;143;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;technician;married;professional.course;unknown;no;no;telephone;may;mon;677;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;blue-collar;married;unknown;no;yes;no;telephone;may;mon;267;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;blue-collar;married;basic.6y;no;yes;no;telephone;may;mon;345;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+52;management;married;university.degree;no;no;no;telephone;may;mon;185;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;management;divorced;university.degree;no;no;no;telephone;may;mon;207;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;housemaid;married;basic.4y;unknown;no;no;telephone;may;mon;69;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+56;blue-collar;married;basic.4y;unknown;no;no;telephone;may;mon;100;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;services;married;high.school;no;yes;no;telephone;may;mon;125;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;mon;461;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;yes
+43;unemployed;single;university.degree;no;yes;no;telephone;may;mon;240;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+56;management;married;unknown;no;yes;no;telephone;may;mon;70;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;management;married;university.degree;no;yes;no;telephone;may;mon;193;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+53;blue-collar;married;basic.4y;no;yes;no;telephone;may;mon;136;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;unknown;divorced;high.school;unknown;yes;no;telephone;may;mon;73;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;mon;528;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;blue-collar;married;basic.4y;unknown;no;no;telephone;may;mon;541;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;admin.;single;high.school;no;yes;no;telephone;may;mon;338;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;admin.;married;university.degree;unknown;yes;no;telephone;may;mon;163;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+51;blue-collar;married;basic.4y;no;yes;no;telephone;may;mon;87;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+60;blue-collar;married;basic.9y;unknown;no;no;telephone;may;mon;301;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+56;entrepreneur;married;unknown;unknown;yes;no;telephone;may;mon;46;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;services;divorced;high.school;unknown;yes;no;telephone;may;mon;52;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+56;entrepreneur;married;unknown;unknown;no;no;telephone;may;mon;204;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;blue-collar;married;unknown;no;yes;yes;telephone;may;mon;155;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;blue-collar;married;basic.9y;no;yes;yes;telephone;may;mon;98;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+51;blue-collar;married;unknown;unknown;yes;no;telephone;may;mon;71;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+51;blue-collar;married;unknown;unknown;no;no;telephone;may;mon;243;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;technician;single;professional.course;no;yes;no;telephone;may;mon;186;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+59;services;married;high.school;no;no;no;telephone;may;mon;579;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+24;management;single;university.degree;no;yes;no;telephone;may;mon;165;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;blue-collar;single;basic.9y;unknown;yes;yes;telephone;may;mon;163;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;blue-collar;married;basic.9y;unknown;no;no;telephone;may;mon;46;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;blue-collar;married;basic.9y;unknown;no;no;telephone;may;mon;559;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;services;divorced;high.school;unknown;no;no;telephone;may;mon;2033;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;entrepreneur;married;basic.6y;no;no;no;telephone;may;mon;85;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;services;married;high.school;no;yes;yes;telephone;may;mon;506;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+56;admin.;divorced;unknown;unknown;no;no;telephone;may;mon;114;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;blue-collar;married;unknown;no;no;no;telephone;may;mon;114;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+54;management;divorced;university.degree;no;yes;no;telephone;may;mon;843;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;blue-collar;married;high.school;unknown;no;yes;telephone;may;mon;181;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;services;married;high.school;unknown;no;no;telephone;may;mon;427;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;technician;married;university.degree;no;yes;yes;telephone;may;mon;292;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;admin.;single;university.degree;unknown;no;no;telephone;may;mon;192;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;services;married;high.school;no;no;no;telephone;may;mon;93;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;management;married;basic.9y;no;no;no;telephone;may;mon;128;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;services;married;high.school;no;yes;yes;telephone;may;mon;107;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+51;admin.;single;basic.6y;no;no;no;telephone;may;mon;303;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+28;services;married;high.school;no;yes;no;telephone;may;mon;81;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;blue-collar;married;basic.9y;no;no;no;telephone;may;mon;270;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;technician;married;high.school;no;no;no;telephone;may;mon;228;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;blue-collar;married;basic.6y;unknown;yes;no;telephone;may;mon;240;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;blue-collar;married;basic.9y;no;yes;yes;telephone;may;mon;673;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;yes
+36;admin.;married;university.degree;no;yes;no;telephone;may;mon;233;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+54;blue-collar;married;basic.4y;unknown;no;no;telephone;may;mon;102;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+57;management;married;university.degree;no;no;no;telephone;may;mon;461;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+51;technician;married;basic.6y;unknown;no;no;telephone;may;mon;250;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+54;retired;married;high.school;unknown;no;no;telephone;may;mon;130;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+49;blue-collar;married;basic.4y;unknown;no;no;telephone;may;mon;252;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;admin.;married;university.degree;no;yes;no;telephone;may;mon;138;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;technician;married;professional.course;no;no;no;telephone;may;mon;412;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;blue-collar;single;basic.9y;no;yes;no;telephone;may;mon;179;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;management;divorced;university.degree;no;no;no;telephone;may;mon;19;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;technician;married;university.degree;no;no;no;telephone;may;mon;228;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;blue-collar;single;basic.9y;unknown;yes;no;telephone;may;mon;55;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+48;blue-collar;married;basic.4y;no;yes;no;telephone;may;mon;717;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;admin.;married;high.school;unknown;yes;no;telephone;may;mon;313;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;blue-collar;single;basic.9y;unknown;no;no;telephone;may;mon;289;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;admin.;married;basic.9y;unknown;yes;no;telephone;may;mon;683;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;blue-collar;married;basic.6y;no;yes;no;telephone;may;mon;1077;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;services;married;high.school;no;no;no;telephone;may;mon;146;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;services;single;basic.6y;no;no;no;telephone;may;mon;167;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;blue-collar;married;high.school;no;yes;no;telephone;may;mon;356;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;admin.;married;unknown;no;no;no;telephone;may;mon;277;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;blue-collar;married;basic.9y;no;yes;no;telephone;may;mon;172;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;student;single;university.degree;unknown;no;no;telephone;may;mon;218;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;student;single;university.degree;unknown;yes;yes;telephone;may;mon;217;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;unemployed;married;professional.course;no;no;no;telephone;may;mon;67;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;services;single;basic.4y;no;no;no;telephone;may;mon;291;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;student;single;university.degree;unknown;yes;no;telephone;may;mon;248;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;student;single;basic.9y;no;yes;no;telephone;may;mon;256;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+55;housemaid;divorced;university.degree;no;no;no;telephone;may;mon;286;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+59;admin.;married;university.degree;no;no;no;telephone;may;mon;477;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+57;retired;married;unknown;unknown;no;no;telephone;may;mon;611;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;blue-collar;married;professional.course;unknown;yes;no;telephone;may;mon;471;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;housemaid;married;basic.4y;unknown;yes;no;telephone;may;mon;381;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;blue-collar;single;unknown;no;yes;no;telephone;may;mon;251;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;blue-collar;single;unknown;no;yes;yes;telephone;may;mon;408;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+50;housemaid;married;basic.4y;unknown;no;no;telephone;may;mon;287;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;services;married;high.school;no;no;no;telephone;may;mon;322;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;admin.;married;high.school;no;yes;no;telephone;may;mon;216;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;technician;married;unknown;unknown;no;no;telephone;may;mon;366;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;services;single;basic.6y;unknown;yes;no;telephone;may;mon;210;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;technician;married;basic.4y;unknown;yes;no;telephone;may;mon;288;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;technician;married;basic.9y;no;no;no;telephone;may;mon;168;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+58;retired;married;university.degree;no;no;no;telephone;may;mon;132;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;technician;married;university.degree;no;no;no;telephone;may;mon;64;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;admin.;single;university.degree;no;no;no;telephone;may;mon;209;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;retired;married;basic.4y;unknown;no;no;telephone;may;mon;410;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;blue-collar;married;basic.4y;no;yes;yes;telephone;may;mon;177;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;admin.;married;professional.course;no;yes;no;telephone;may;mon;580;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+50;services;divorced;professional.course;no;yes;no;telephone;may;mon;165;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;management;divorced;basic.4y;unknown;yes;no;telephone;may;mon;127;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;admin.;married;high.school;unknown;no;no;telephone;may;mon;357;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+52;self-employed;married;university.degree;unknown;no;no;telephone;may;mon;175;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;admin.;married;professional.course;no;yes;no;telephone;may;mon;300;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+56;blue-collar;married;basic.4y;no;no;no;telephone;may;mon;136;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+48;admin.;married;high.school;no;no;no;telephone;may;mon;125;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;services;married;high.school;unknown;no;yes;telephone;may;mon;189;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;management;married;university.degree;unknown;no;yes;telephone;may;mon;213;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+57;retired;married;high.school;no;no;no;telephone;may;mon;238;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;technician;single;professional.course;no;no;no;telephone;may;mon;124;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;management;married;university.degree;no;yes;no;telephone;may;mon;18;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;services;single;basic.9y;no;no;no;telephone;may;mon;730;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;technician;married;university.degree;unknown;no;no;telephone;may;mon;40;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;services;divorced;unknown;no;no;no;telephone;may;mon;181;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;technician;single;professional.course;no;no;no;telephone;may;mon;79;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;technician;single;high.school;no;yes;no;telephone;may;mon;142;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;blue-collar;single;high.school;no;no;yes;telephone;may;mon;389;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;services;single;high.school;no;no;no;telephone;may;mon;702;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;technician;divorced;professional.course;no;no;no;telephone;may;mon;151;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;blue-collar;married;basic.4y;no;yes;no;telephone;may;mon;211;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+51;services;married;basic.6y;no;yes;no;telephone;may;mon;117;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;technician;married;professional.course;no;yes;no;telephone;may;mon;232;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+28;services;married;unknown;no;no;no;telephone;may;mon;408;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+53;services;married;high.school;no;yes;yes;telephone;may;mon;370;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+58;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;mon;179;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;management;married;basic.9y;no;no;yes;telephone;may;mon;46;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;technician;married;unknown;no;yes;no;telephone;may;mon;200;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;admin.;married;high.school;no;no;yes;telephone;may;mon;50;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;admin.;married;high.school;no;no;yes;telephone;may;mon;181;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+27;blue-collar;single;basic.6y;no;unknown;unknown;telephone;may;mon;119;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;technician;married;high.school;no;no;no;telephone;may;mon;361;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;admin.;divorced;basic.9y;no;no;no;telephone;may;mon;73;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;admin.;married;university.degree;no;no;no;telephone;may;mon;67;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+27;blue-collar;single;basic.6y;no;no;no;telephone;may;mon;350;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;self-employed;single;university.degree;no;yes;no;telephone;may;mon;150;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;student;single;university.degree;unknown;no;no;telephone;may;mon;332;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+54;management;divorced;university.degree;no;no;no;telephone;may;mon;611;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;self-employed;married;basic.4y;unknown;no;no;telephone;may;mon;58;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+52;unemployed;married;high.school;unknown;yes;no;telephone;may;mon;151;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;management;divorced;university.degree;no;no;no;telephone;may;mon;89;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+49;housemaid;married;basic.9y;unknown;no;no;telephone;may;mon;152;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;admin.;single;high.school;no;no;no;telephone;may;mon;611;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+49;housemaid;single;high.school;unknown;yes;yes;telephone;may;mon;110;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+50;blue-collar;married;basic.9y;unknown;no;no;telephone;may;mon;463;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;services;married;high.school;no;no;no;telephone;may;mon;962;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+55;blue-collar;married;basic.4y;unknown;no;no;telephone;may;mon;102;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;technician;single;basic.9y;no;no;no;telephone;may;mon;10;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+51;retired;married;professional.course;no;no;no;telephone;may;mon;118;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;blue-collar;married;basic.6y;no;no;no;telephone;may;mon;92;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+56;technician;married;basic.4y;no;yes;no;telephone;may;mon;143;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+53;admin.;married;basic.9y;no;no;no;telephone;may;mon;189;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;blue-collar;married;basic.9y;no;yes;no;telephone;may;mon;75;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;blue-collar;divorced;basic.9y;no;yes;no;telephone;may;mon;189;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;blue-collar;divorced;basic.6y;no;no;no;telephone;may;mon;55;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;housemaid;married;basic.9y;no;yes;no;telephone;may;mon;935;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;yes
+37;admin.;single;high.school;no;yes;yes;telephone;may;mon;56;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+60;blue-collar;married;unknown;unknown;yes;no;telephone;may;mon;5;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;services;married;high.school;no;no;no;telephone;may;mon;225;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;management;divorced;university.degree;no;yes;no;telephone;may;mon;125;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;admin.;married;high.school;no;yes;yes;telephone;may;mon;286;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+53;technician;divorced;professional.course;unknown;no;yes;telephone;may;mon;206;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;blue-collar;married;basic.4y;no;yes;no;telephone;may;mon;164;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;technician;single;professional.course;no;yes;no;telephone;may;mon;98;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;self-employed;married;professional.course;no;no;no;telephone;may;mon;446;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+49;blue-collar;divorced;high.school;no;no;yes;telephone;may;mon;742;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;admin.;married;university.degree;no;yes;no;telephone;may;mon;120;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;services;divorced;high.school;no;no;no;telephone;may;mon;122;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;unknown;married;unknown;unknown;no;no;telephone;may;mon;362;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;services;single;high.school;unknown;no;no;telephone;may;mon;357;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+50;blue-collar;divorced;high.school;unknown;no;yes;telephone;may;mon;200;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+59;retired;married;professional.course;unknown;no;no;telephone;may;mon;107;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;unknown;married;unknown;no;yes;no;telephone;may;mon;267;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;admin.;married;high.school;no;yes;no;telephone;may;mon;248;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;admin.;married;basic.6y;unknown;yes;no;telephone;may;mon;215;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;blue-collar;married;unknown;unknown;no;no;telephone;may;mon;209;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+57;housemaid;divorced;basic.4y;no;yes;yes;telephone;may;mon;205;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;admin.;married;university.degree;no;yes;no;telephone;may;mon;261;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;blue-collar;married;basic.4y;no;yes;no;telephone;may;mon;83;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+54;management;divorced;university.degree;no;yes;no;telephone;may;mon;106;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+27;admin.;single;university.degree;no;no;no;telephone;may;mon;106;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;admin.;married;high.school;no;no;no;telephone;may;mon;108;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+58;blue-collar;married;professional.course;unknown;yes;no;telephone;may;mon;214;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;management;married;university.degree;unknown;yes;no;telephone;may;mon;358;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;admin.;single;basic.9y;unknown;no;no;telephone;may;mon;453;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;admin.;divorced;high.school;no;no;no;telephone;may;mon;364;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+56;retired;married;basic.6y;no;no;no;telephone;may;mon;136;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;blue-collar;married;basic.9y;no;no;no;telephone;may;mon;173;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;services;married;high.school;no;yes;no;telephone;may;mon;241;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+54;management;single;basic.9y;no;yes;no;telephone;may;mon;224;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+53;admin.;single;basic.6y;no;yes;yes;telephone;may;mon;148;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;technician;single;unknown;no;no;no;telephone;may;mon;230;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;services;married;basic.6y;unknown;no;no;telephone;may;mon;199;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+54;technician;married;professional.course;no;yes;yes;telephone;may;mon;196;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;housemaid;single;professional.course;no;no;no;telephone;may;mon;111;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+26;admin.;single;university.degree;no;yes;no;telephone;may;mon;231;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;admin.;married;high.school;no;no;no;telephone;may;mon;316;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;blue-collar;married;basic.9y;unknown;no;no;telephone;may;mon;240;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;admin.;married;high.school;no;no;no;telephone;may;mon;669;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+29;services;single;high.school;no;yes;no;telephone;may;mon;425;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;blue-collar;married;basic.9y;no;yes;no;telephone;may;mon;121;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;management;married;high.school;no;yes;no;telephone;may;mon;174;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+50;self-employed;single;university.degree;no;no;yes;telephone;may;mon;88;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;services;married;high.school;unknown;yes;no;telephone;may;mon;313;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+49;entrepreneur;married;high.school;no;yes;no;telephone;may;mon;135;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;technician;single;professional.course;unknown;yes;no;telephone;may;mon;152;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;blue-collar;single;high.school;no;yes;yes;telephone;may;mon;402;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+55;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;mon;221;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;management;married;university.degree;unknown;no;no;telephone;may;mon;213;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+57;management;married;professional.course;unknown;yes;no;telephone;may;mon;144;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;services;single;high.school;no;yes;no;telephone;may;mon;158;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+49;admin.;married;basic.9y;no;no;no;telephone;may;mon;220;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+57;unknown;married;unknown;unknown;yes;no;telephone;may;mon;325;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+58;blue-collar;divorced;basic.4y;no;yes;no;telephone;may;mon;254;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+52;technician;married;high.school;no;yes;no;telephone;may;mon;503;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+50;services;divorced;professional.course;no;no;no;telephone;may;mon;680;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;blue-collar;single;basic.9y;unknown;yes;no;telephone;may;mon;421;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;entrepreneur;married;university.degree;no;yes;no;telephone;may;mon;130;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+57;blue-collar;married;basic.4y;no;no;no;telephone;may;mon;164;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+48;blue-collar;married;basic.6y;unknown;no;no;telephone;may;mon;174;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+55;technician;married;professional.course;no;no;no;telephone;may;mon;113;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;management;married;university.degree;no;no;no;telephone;may;mon;195;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;services;married;high.school;no;yes;no;telephone;may;mon;347;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+53;admin.;married;university.degree;no;yes;no;telephone;may;mon;208;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;unemployed;single;university.degree;no;no;no;telephone;may;mon;404;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;blue-collar;single;high.school;no;no;no;telephone;may;mon;396;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;blue-collar;married;basic.9y;no;no;no;telephone;may;mon;98;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;services;married;basic.4y;no;no;no;telephone;may;mon;229;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+58;entrepreneur;married;basic.4y;no;yes;no;telephone;may;mon;350;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;unemployed;divorced;high.school;unknown;no;no;telephone;may;tue;88;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+57;management;married;university.degree;no;yes;no;telephone;may;tue;379;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;technician;married;high.school;no;yes;no;telephone;may;tue;168;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;tue;190;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;admin.;married;university.degree;no;yes;no;telephone;may;tue;158;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;technician;married;university.degree;no;no;no;telephone;may;tue;210;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;self-employed;married;high.school;no;yes;no;telephone;may;tue;102;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+57;admin.;divorced;basic.9y;no;no;no;telephone;may;tue;306;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+49;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;tue;64;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+56;management;divorced;high.school;no;no;no;telephone;may;tue;218;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;blue-collar;married;basic.9y;no;no;no;telephone;may;tue;77;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;blue-collar;married;basic.9y;no;no;yes;telephone;may;tue;54;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;admin.;single;high.school;no;yes;no;telephone;may;tue;344;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+22;blue-collar;single;basic.9y;no;yes;no;telephone;may;tue;195;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;services;married;high.school;no;no;no;telephone;may;tue;202;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+49;blue-collar;married;unknown;no;no;no;telephone;may;tue;286;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;technician;married;basic.6y;no;yes;no;telephone;may;tue;278;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;admin.;single;university.degree;no;no;no;telephone;may;tue;189;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;admin.;married;basic.9y;no;no;no;telephone;may;tue;83;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+49;admin.;married;university.degree;no;yes;yes;telephone;may;tue;18;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;blue-collar;single;unknown;no;no;no;telephone;may;tue;184;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;admin.;married;basic.9y;no;yes;no;telephone;may;tue;235;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;management;single;university.degree;no;no;no;telephone;may;tue;290;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;student;single;unknown;unknown;no;no;telephone;may;tue;133;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+59;management;married;basic.4y;unknown;yes;yes;telephone;may;tue;318;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+59;management;married;basic.4y;unknown;unknown;unknown;telephone;may;tue;437;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;self-employed;married;university.degree;no;no;no;telephone;may;tue;402;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+48;housemaid;married;basic.6y;unknown;yes;yes;telephone;may;tue;501;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+28;unknown;single;unknown;unknown;yes;yes;telephone;may;tue;1201;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;yes
+44;services;married;high.school;no;yes;no;telephone;may;tue;1030;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;yes
+59;retired;unknown;university.degree;unknown;no;no;telephone;may;tue;253;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+50;management;married;high.school;unknown;no;no;telephone;may;tue;149;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;admin.;married;university.degree;no;no;no;telephone;may;tue;144;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;admin.;married;high.school;no;no;no;telephone;may;tue;69;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;admin.;married;basic.9y;no;no;no;telephone;may;tue;243;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;technician;married;professional.course;no;no;no;telephone;may;tue;769;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+56;services;married;high.school;unknown;no;no;telephone;may;tue;135;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+29;blue-collar;divorced;basic.4y;no;no;no;telephone;may;tue;231;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;self-employed;married;university.degree;no;yes;yes;telephone;may;tue;442;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;blue-collar;married;basic.9y;unknown;no;no;telephone;may;tue;199;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+52;services;single;high.school;no;no;no;telephone;may;tue;455;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+48;services;married;high.school;unknown;unknown;unknown;telephone;may;tue;152;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;blue-collar;married;high.school;unknown;yes;no;telephone;may;tue;124;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;unemployed;married;university.degree;unknown;yes;no;telephone;may;tue;424;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;blue-collar;married;basic.4y;unknown;no;no;telephone;may;tue;43;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;entrepreneur;married;university.degree;no;yes;no;telephone;may;tue;154;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+52;services;divorced;basic.6y;no;no;no;telephone;may;tue;393;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;admin.;married;high.school;no;yes;no;telephone;may;tue;203;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;services;married;high.school;no;no;yes;telephone;may;tue;140;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;tue;326;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;admin.;married;high.school;no;no;no;telephone;may;tue;483;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+55;technician;married;basic.4y;no;no;yes;telephone;may;tue;259;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;blue-collar;married;basic.9y;no;no;no;telephone;may;tue;227;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+57;retired;unknown;basic.4y;no;no;no;telephone;may;tue;673;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;entrepreneur;married;basic.4y;unknown;yes;no;telephone;may;tue;576;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+51;blue-collar;married;basic.4y;unknown;yes;yes;telephone;may;tue;180;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;self-employed;single;basic.9y;unknown;yes;yes;telephone;may;tue;90;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;admin.;married;high.school;unknown;no;no;telephone;may;tue;505;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+27;services;married;high.school;no;yes;no;telephone;may;tue;245;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;technician;single;university.degree;no;yes;no;telephone;may;tue;186;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+57;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;tue;208;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;entrepreneur;married;basic.4y;no;no;no;telephone;may;tue;623;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+49;blue-collar;married;basic.4y;unknown;no;no;telephone;may;tue;180;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;management;married;university.degree;unknown;no;no;telephone;may;tue;496;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;tue;118;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+49;blue-collar;married;basic.9y;no;no;no;telephone;may;tue;102;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+58;management;married;basic.6y;no;no;no;telephone;may;tue;342;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;technician;married;professional.course;no;yes;no;telephone;may;tue;225;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+50;unknown;married;unknown;unknown;yes;no;telephone;may;tue;185;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;services;married;high.school;unknown;no;no;telephone;may;tue;276;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;self-employed;divorced;university.degree;no;no;no;telephone;may;tue;87;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;self-employed;married;basic.9y;unknown;no;no;telephone;may;tue;744;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;self-employed;single;university.degree;no;yes;no;telephone;may;tue;262;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+27;services;single;professional.course;no;yes;yes;telephone;may;tue;271;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+51;services;married;unknown;unknown;no;no;telephone;may;tue;141;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;technician;married;professional.course;no;yes;no;telephone;may;tue;198;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;housemaid;married;basic.9y;no;yes;no;telephone;may;tue;150;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;blue-collar;married;professional.course;no;no;no;telephone;may;tue;241;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;admin.;divorced;university.degree;no;no;no;telephone;may;tue;196;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;management;married;unknown;no;yes;no;telephone;may;tue;149;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;technician;married;professional.course;unknown;no;yes;telephone;may;tue;264;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+26;housemaid;married;university.degree;no;no;no;telephone;may;tue;246;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;blue-collar;divorced;basic.9y;unknown;no;no;telephone;may;tue;309;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;management;married;university.degree;no;yes;no;telephone;may;tue;140;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;admin.;married;basic.9y;no;no;no;telephone;may;tue;175;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;blue-collar;married;unknown;unknown;no;no;telephone;may;tue;136;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;technician;married;professional.course;no;no;no;telephone;may;tue;1623;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;yes
+57;technician;married;basic.4y;unknown;no;yes;telephone;may;tue;50;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+57;technician;married;basic.4y;unknown;no;no;telephone;may;tue;101;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;blue-collar;married;basic.4y;no;no;yes;telephone;may;tue;144;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+57;technician;married;basic.4y;unknown;no;no;telephone;may;tue;238;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+28;student;single;basic.9y;unknown;yes;no;telephone;may;tue;354;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+60;management;married;university.degree;no;no;no;telephone;may;tue;451;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+48;admin.;married;university.degree;no;yes;no;telephone;may;tue;159;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;technician;married;professional.course;no;yes;no;telephone;may;tue;170;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;admin.;married;high.school;no;no;no;telephone;may;tue;243;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+51;management;married;professional.course;unknown;yes;no;telephone;may;tue;141;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+48;unemployed;single;basic.4y;no;yes;no;telephone;may;tue;112;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+54;housemaid;married;basic.4y;no;no;no;telephone;may;tue;262;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;blue-collar;married;basic.6y;no;no;yes;telephone;may;tue;53;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;admin.;single;basic.9y;unknown;no;no;telephone;may;tue;134;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;technician;divorced;high.school;no;no;no;telephone;may;tue;204;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+52;self-employed;married;university.degree;no;yes;no;telephone;may;tue;678;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;blue-collar;single;basic.9y;no;yes;no;telephone;may;tue;182;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;services;married;high.school;no;no;no;telephone;may;tue;162;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;admin.;married;high.school;no;yes;yes;telephone;may;tue;177;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;management;married;basic.6y;unknown;no;no;telephone;may;tue;27;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+57;management;married;professional.course;unknown;yes;no;telephone;may;tue;699;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+52;admin.;married;basic.4y;no;yes;no;telephone;may;tue;358;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;management;married;university.degree;no;no;no;telephone;may;tue;1677;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;yes
+42;technician;single;professional.course;unknown;unknown;unknown;telephone;may;tue;529;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;management;married;professional.course;no;yes;no;telephone;may;tue;310;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;admin.;divorced;high.school;no;no;no;telephone;may;tue;47;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+29;admin.;married;university.degree;unknown;yes;no;telephone;may;tue;379;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+57;blue-collar;divorced;basic.4y;no;no;no;telephone;may;tue;30;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;blue-collar;married;basic.9y;unknown;no;no;telephone;may;tue;472;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+59;unknown;married;unknown;unknown;no;no;telephone;may;tue;113;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;blue-collar;married;basic.4y;unknown;no;no;telephone;may;tue;114;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+57;retired;married;university.degree;no;no;no;telephone;may;tue;116;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;management;married;unknown;unknown;no;no;telephone;may;tue;448;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;technician;single;high.school;unknown;no;yes;telephone;may;tue;264;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;services;married;high.school;no;yes;no;telephone;may;tue;169;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;retired;married;basic.4y;no;no;no;telephone;may;tue;145;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+49;unknown;married;unknown;unknown;yes;no;telephone;may;tue;288;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+54;management;married;basic.6y;unknown;yes;yes;telephone;may;tue;381;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;admin.;married;university.degree;no;unknown;unknown;telephone;may;tue;176;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;admin.;single;university.degree;unknown;no;no;telephone;may;tue;215;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;technician;married;professional.course;no;yes;no;telephone;may;tue;278;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;housemaid;married;professional.course;unknown;no;no;telephone;may;tue;188;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+56;technician;married;unknown;no;yes;no;telephone;may;tue;174;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;technician;married;university.degree;no;yes;no;telephone;may;tue;226;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;unemployed;married;basic.9y;unknown;no;no;telephone;may;tue;111;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;services;married;basic.9y;no;no;no;telephone;may;tue;157;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;blue-collar;married;basic.9y;unknown;no;no;telephone;may;tue;46;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;admin.;single;university.degree;unknown;unknown;unknown;telephone;may;tue;49;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;services;married;high.school;unknown;unknown;unknown;telephone;may;tue;374;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;technician;married;professional.course;no;yes;no;telephone;may;tue;349;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;admin.;divorced;university.degree;unknown;yes;no;telephone;may;tue;325;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+53;admin.;married;professional.course;no;yes;no;telephone;may;tue;233;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+51;admin.;married;basic.6y;unknown;yes;no;telephone;may;tue;531;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+56;entrepreneur;married;university.degree;unknown;no;no;telephone;may;tue;153;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;admin.;married;basic.9y;no;unknown;unknown;telephone;may;tue;80;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;admin.;married;basic.9y;no;no;no;telephone;may;tue;198;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+51;services;divorced;high.school;unknown;yes;no;telephone;may;tue;568;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;services;married;high.school;unknown;yes;no;telephone;may;tue;918;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;yes
+45;entrepreneur;married;university.degree;no;no;no;telephone;may;tue;82;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;technician;single;university.degree;no;no;no;telephone;may;tue;198;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+60;unknown;single;unknown;unknown;yes;no;telephone;may;tue;211;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;technician;married;university.degree;no;yes;no;telephone;may;tue;120;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;blue-collar;married;high.school;unknown;yes;no;telephone;may;tue;269;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+48;blue-collar;married;basic.4y;no;no;no;telephone;may;tue;128;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;entrepreneur;married;high.school;no;no;no;telephone;may;tue;166;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;management;married;university.degree;no;yes;no;telephone;may;tue;211;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+50;services;married;basic.9y;no;yes;yes;telephone;may;tue;369;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+59;entrepreneur;married;high.school;no;yes;no;telephone;may;tue;91;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;technician;married;unknown;unknown;yes;no;telephone;may;tue;267;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;housemaid;single;basic.4y;unknown;yes;no;telephone;may;tue;198;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+52;blue-collar;married;basic.4y;no;no;no;telephone;may;tue;371;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;blue-collar;married;unknown;unknown;no;no;telephone;may;tue;288;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;admin.;married;unknown;no;no;no;telephone;may;tue;221;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;management;married;basic.9y;unknown;unknown;unknown;telephone;may;tue;427;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;blue-collar;married;basic.9y;no;no;no;telephone;may;tue;310;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;blue-collar;married;basic.6y;no;yes;no;telephone;may;tue;158;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;blue-collar;married;basic.6y;no;no;no;telephone;may;tue;198;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;admin.;married;high.school;no;no;no;telephone;may;tue;145;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;admin.;single;unknown;unknown;yes;no;telephone;may;tue;247;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;services;single;high.school;no;no;no;telephone;may;tue;102;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;admin.;divorced;high.school;no;yes;yes;telephone;may;tue;179;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;technician;divorced;university.degree;no;no;no;telephone;may;tue;73;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;admin.;married;high.school;no;no;no;telephone;may;tue;263;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;admin.;married;high.school;no;no;no;telephone;may;tue;342;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;services;married;high.school;unknown;yes;yes;telephone;may;tue;41;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;blue-collar;married;basic.6y;no;no;no;telephone;may;tue;13;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;blue-collar;married;basic.9y;no;no;no;telephone;may;tue;79;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;technician;married;high.school;no;no;no;telephone;may;tue;358;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;services;married;high.school;unknown;no;no;telephone;may;tue;162;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;admin.;single;high.school;no;yes;yes;telephone;may;tue;150;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;blue-collar;single;basic.4y;unknown;no;no;telephone;may;tue;26;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;admin.;single;basic.6y;unknown;no;no;telephone;may;tue;250;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;self-employed;married;university.degree;no;no;no;telephone;may;tue;792;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+55;self-employed;married;unknown;unknown;no;no;telephone;may;tue;146;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;blue-collar;single;basic.9y;unknown;no;no;telephone;may;tue;440;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+57;technician;married;professional.course;unknown;no;yes;telephone;may;tue;289;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;entrepreneur;single;university.degree;no;yes;no;telephone;may;tue;242;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;self-employed;single;high.school;no;yes;no;telephone;may;tue;123;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;admin.;married;professional.course;no;yes;yes;telephone;may;tue;161;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;admin.;married;university.degree;no;no;no;telephone;may;tue;268;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;admin.;divorced;high.school;no;no;yes;telephone;may;tue;259;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;admin.;single;university.degree;no;yes;yes;telephone;may;tue;26;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+50;blue-collar;married;basic.4y;unknown;unknown;unknown;telephone;may;tue;153;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;admin.;single;university.degree;no;no;no;telephone;may;tue;424;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;blue-collar;married;basic.9y;unknown;no;no;telephone;may;tue;375;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;entrepreneur;married;basic.6y;no;no;no;telephone;may;tue;179;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+57;retired;married;university.degree;no;yes;no;telephone;may;tue;383;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;blue-collar;married;basic.4y;unknown;no;no;telephone;may;tue;440;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;technician;married;basic.4y;no;no;yes;telephone;may;tue;195;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;blue-collar;married;high.school;no;no;yes;telephone;may;tue;1297;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;yes
+40;technician;married;basic.4y;no;no;no;telephone;may;tue;217;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;blue-collar;single;basic.4y;unknown;no;no;telephone;may;tue;87;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;blue-collar;married;basic.6y;unknown;yes;yes;telephone;may;tue;427;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;blue-collar;married;basic.4y;no;no;no;telephone;may;tue;189;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;blue-collar;married;basic.6y;unknown;yes;no;telephone;may;tue;502;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;blue-collar;married;basic.4y;no;yes;yes;telephone;may;tue;260;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;admin.;married;university.degree;unknown;no;no;telephone;may;tue;209;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;admin.;divorced;university.degree;no;unknown;unknown;telephone;may;tue;179;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;admin.;married;basic.6y;no;yes;no;telephone;may;tue;179;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+49;blue-collar;married;high.school;unknown;no;no;telephone;may;tue;69;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;technician;married;unknown;no;no;no;telephone;may;tue;105;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+23;admin.;single;university.degree;no;no;no;telephone;may;tue;266;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;unemployed;married;university.degree;unknown;unknown;unknown;telephone;may;tue;87;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+49;entrepreneur;married;professional.course;no;unknown;unknown;telephone;may;tue;524;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;technician;married;professional.course;no;unknown;unknown;telephone;may;tue;155;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+51;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;tue;162;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+56;retired;married;basic.4y;unknown;yes;yes;telephone;may;tue;316;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;housemaid;married;high.school;no;no;no;telephone;may;tue;352;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;admin.;married;high.school;no;no;no;telephone;may;tue;695;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;admin.;divorced;high.school;no;no;no;telephone;may;tue;76;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;services;married;high.school;unknown;no;yes;telephone;may;tue;535;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;management;married;university.degree;no;no;no;telephone;may;tue;310;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;blue-collar;married;unknown;no;no;no;telephone;may;tue;390;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+53;management;married;university.degree;unknown;no;no;telephone;may;tue;369;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;blue-collar;married;basic.4y;no;no;no;telephone;may;tue;112;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;unknown;married;unknown;unknown;no;no;telephone;may;tue;79;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+24;technician;single;professional.course;no;no;yes;telephone;may;tue;140;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;unknown;married;unknown;unknown;no;no;telephone;may;tue;315;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;admin.;single;university.degree;no;no;yes;telephone;may;tue;262;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;management;married;university.degree;unknown;no;no;telephone;may;tue;174;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+59;blue-collar;married;basic.4y;no;yes;no;telephone;may;tue;424;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;blue-collar;married;basic.4y;unknown;no;no;telephone;may;tue;135;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+54;blue-collar;married;basic.6y;unknown;no;no;telephone;may;tue;36;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;technician;married;professional.course;no;no;no;telephone;may;tue;1906;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;technician;married;professional.course;no;yes;no;telephone;may;tue;219;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;admin.;married;university.degree;no;no;no;telephone;may;tue;135;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;services;single;high.school;no;unknown;unknown;telephone;may;tue;147;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;management;married;university.degree;no;no;no;telephone;may;tue;407;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+57;technician;married;professional.course;no;yes;no;telephone;may;tue;402;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;technician;married;basic.9y;no;no;no;telephone;may;tue;209;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+48;admin.;married;professional.course;no;yes;no;telephone;may;tue;92;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+58;admin.;divorced;university.degree;unknown;yes;no;telephone;may;tue;208;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;services;married;high.school;no;no;no;telephone;may;tue;193;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;admin.;single;university.degree;no;yes;yes;telephone;may;tue;65;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+48;blue-collar;married;basic.9y;no;no;no;telephone;may;tue;284;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;blue-collar;married;basic.9y;no;no;no;telephone;may;tue;285;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;services;married;high.school;unknown;no;no;telephone;may;tue;231;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;admin.;single;university.degree;no;yes;no;telephone;may;tue;278;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;admin.;single;university.degree;no;no;no;telephone;may;tue;389;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;services;married;high.school;no;no;no;telephone;may;tue;158;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+53;blue-collar;married;basic.4y;unknown;no;yes;telephone;may;tue;78;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;blue-collar;married;basic.9y;unknown;no;no;telephone;may;tue;258;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+50;services;married;high.school;no;no;no;telephone;may;tue;87;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;blue-collar;married;basic.6y;no;yes;no;telephone;may;tue;147;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;admin.;married;high.school;no;no;no;telephone;may;tue;635;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;blue-collar;single;basic.4y;no;no;no;telephone;may;tue;289;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+51;management;married;university.degree;no;yes;no;telephone;may;tue;170;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;admin.;married;university.degree;no;yes;no;telephone;may;tue;802;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;technician;married;basic.6y;no;yes;no;telephone;may;tue;381;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;services;married;high.school;unknown;no;no;telephone;may;tue;218;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+52;blue-collar;married;basic.4y;no;no;no;telephone;may;tue;57;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;technician;married;professional.course;no;yes;no;telephone;may;tue;304;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;admin.;married;basic.9y;no;yes;no;telephone;may;tue;241;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;admin.;divorced;university.degree;no;yes;yes;telephone;may;tue;230;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;technician;married;professional.course;no;no;no;telephone;may;tue;79;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;technician;married;professional.course;no;no;no;telephone;may;tue;262;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;services;married;high.school;unknown;no;no;telephone;may;tue;392;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;blue-collar;single;unknown;no;yes;yes;telephone;may;tue;201;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;blue-collar;married;basic.9y;no;yes;no;telephone;may;tue;145;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;technician;married;professional.course;no;no;no;telephone;may;tue;252;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;services;single;basic.4y;no;no;no;telephone;may;tue;329;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+58;admin.;married;unknown;unknown;yes;no;telephone;may;tue;328;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;technician;married;professional.course;no;no;no;telephone;may;tue;191;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;technician;married;university.degree;no;no;no;telephone;may;tue;116;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;admin.;single;university.degree;no;no;no;telephone;may;tue;246;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;services;married;basic.6y;no;no;no;telephone;may;tue;532;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+55;management;single;basic.4y;no;no;no;telephone;may;tue;293;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+55;management;married;university.degree;unknown;yes;no;telephone;may;tue;416;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;technician;single;professional.course;no;yes;no;telephone;may;tue;37;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;admin.;married;university.degree;no;yes;yes;telephone;may;tue;132;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;admin.;single;university.degree;no;no;no;telephone;may;tue;530;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;technician;married;unknown;unknown;yes;no;telephone;may;tue;175;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+55;management;divorced;university.degree;no;yes;no;telephone;may;tue;90;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+49;housemaid;married;basic.4y;unknown;unknown;unknown;telephone;may;tue;524;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+29;admin.;married;high.school;no;yes;no;telephone;may;tue;29;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;blue-collar;married;basic.4y;no;yes;no;telephone;may;tue;311;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+54;retired;married;high.school;unknown;yes;no;telephone;may;tue;412;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;technician;single;professional.course;no;no;no;telephone;may;tue;211;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;management;single;university.degree;no;yes;no;telephone;may;tue;312;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;housemaid;divorced;university.degree;no;no;no;telephone;may;tue;392;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;blue-collar;married;high.school;no;no;no;telephone;may;tue;191;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;technician;married;basic.9y;unknown;yes;no;telephone;may;tue;284;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;blue-collar;married;high.school;no;no;no;telephone;may;tue;328;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;housemaid;married;high.school;no;yes;no;telephone;may;tue;100;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;housemaid;married;high.school;no;no;no;telephone;may;tue;226;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+50;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;tue;507;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;blue-collar;married;basic.9y;no;no;yes;telephone;may;tue;333;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+51;blue-collar;divorced;unknown;unknown;yes;yes;telephone;may;tue;128;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;services;married;high.school;no;no;no;telephone;may;tue;322;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;services;married;basic.4y;no;no;no;telephone;may;tue;202;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+56;management;married;university.degree;unknown;no;yes;telephone;may;tue;92;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;management;divorced;university.degree;unknown;yes;no;telephone;may;tue;205;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;self-employed;single;university.degree;no;no;no;telephone;may;tue;739;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+59;retired;divorced;basic.4y;unknown;no;no;telephone;may;tue;273;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;admin.;single;unknown;no;yes;no;telephone;may;tue;339;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;services;married;high.school;no;no;yes;telephone;may;tue;262;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;admin.;married;university.degree;no;unknown;unknown;telephone;may;tue;308;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;blue-collar;married;basic.6y;unknown;yes;no;telephone;may;tue;467;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+27;technician;married;basic.9y;no;no;yes;telephone;may;tue;245;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;admin.;divorced;university.degree;no;yes;no;telephone;may;tue;160;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;admin.;single;university.degree;no;no;no;telephone;may;tue;189;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;blue-collar;married;basic.9y;no;yes;no;telephone;may;tue;477;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+54;admin.;married;high.school;no;no;no;telephone;may;tue;65;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+56;management;married;university.degree;unknown;no;no;telephone;may;tue;191;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+48;services;single;high.school;unknown;yes;no;telephone;may;tue;196;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;admin.;married;high.school;no;yes;no;telephone;may;tue;221;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;admin.;married;high.school;no;no;yes;telephone;may;tue;197;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;services;married;high.school;no;yes;no;telephone;may;tue;178;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;admin.;married;professional.course;no;no;yes;telephone;may;tue;221;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;admin.;single;high.school;unknown;no;no;telephone;may;tue;64;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+56;management;married;university.degree;no;yes;no;telephone;may;tue;75;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;entrepreneur;married;professional.course;no;no;no;telephone;may;tue;400;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;management;divorced;university.degree;unknown;yes;no;telephone;may;tue;378;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+48;technician;married;basic.4y;unknown;no;no;telephone;may;tue;118;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;housemaid;married;professional.course;unknown;yes;no;telephone;may;tue;1597;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;yes
+36;self-employed;married;university.degree;no;no;no;telephone;may;tue;346;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+49;management;married;professional.course;unknown;yes;no;telephone;may;tue;107;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;services;married;high.school;no;no;no;telephone;may;tue;60;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;blue-collar;married;basic.9y;no;yes;no;telephone;may;tue;276;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+50;housemaid;married;basic.4y;unknown;yes;no;telephone;may;tue;176;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+27;admin.;single;high.school;no;yes;no;telephone;may;tue;390;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;technician;married;professional.course;unknown;yes;no;telephone;may;tue;251;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;management;married;university.degree;no;yes;no;telephone;may;tue;716;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;admin.;divorced;university.degree;no;yes;no;telephone;may;tue;189;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;management;single;university.degree;no;no;no;telephone;may;tue;125;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+54;retired;married;high.school;no;yes;no;telephone;may;tue;234;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+52;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;tue;79;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+53;admin.;married;university.degree;unknown;yes;no;telephone;may;tue;13;6;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+49;services;married;high.school;unknown;no;no;telephone;may;tue;296;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;blue-collar;married;basic.4y;unknown;no;no;telephone;may;tue;114;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+49;housemaid;married;basic.4y;no;no;no;telephone;may;tue;283;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;entrepreneur;married;basic.9y;no;no;no;telephone;may;tue;109;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+59;admin.;married;university.degree;unknown;no;no;telephone;may;tue;132;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+51;self-employed;married;basic.9y;no;yes;no;telephone;may;tue;144;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+57;housemaid;married;basic.6y;unknown;yes;no;telephone;may;tue;121;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;self-employed;divorced;basic.9y;no;yes;no;telephone;may;tue;95;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+52;self-employed;married;university.degree;no;no;no;telephone;may;tue;31;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+26;unemployed;single;basic.9y;no;yes;no;telephone;may;tue;112;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;admin.;married;university.degree;no;yes;yes;telephone;may;tue;161;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+51;admin.;married;university.degree;no;no;no;telephone;may;tue;87;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;blue-collar;married;basic.4y;unknown;yes;yes;telephone;may;tue;593;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;admin.;married;high.school;unknown;yes;no;telephone;may;tue;99;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+60;retired;divorced;university.degree;unknown;yes;no;telephone;may;tue;198;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;blue-collar;married;basic.9y;no;yes;no;telephone;may;tue;285;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+57;management;married;university.degree;unknown;no;no;telephone;may;tue;190;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;student;single;university.degree;unknown;no;no;telephone;may;tue;172;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;admin.;married;university.degree;no;no;no;telephone;may;tue;178;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;services;married;high.school;no;no;no;telephone;may;tue;174;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;technician;married;basic.9y;no;no;no;telephone;may;tue;631;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;technician;married;university.degree;no;no;no;telephone;may;tue;152;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+56;retired;married;high.school;no;no;no;telephone;may;tue;176;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;services;married;basic.6y;no;no;no;telephone;may;tue;32;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;blue-collar;married;basic.4y;no;yes;no;telephone;may;tue;1529;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;admin.;married;university.degree;no;yes;no;telephone;may;tue;254;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+56;blue-collar;married;basic.4y;no;no;no;telephone;may;tue;214;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;entrepreneur;married;basic.4y;no;yes;no;telephone;may;tue;147;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;blue-collar;married;basic.4y;no;no;no;telephone;may;tue;800;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;services;married;high.school;no;yes;no;telephone;may;tue;106;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;technician;married;basic.9y;no;no;no;telephone;may;tue;135;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;admin.;married;high.school;no;no;no;telephone;may;tue;112;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+48;entrepreneur;married;university.degree;no;yes;no;telephone;may;tue;222;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+27;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;tue;314;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+24;technician;single;professional.course;no;no;no;telephone;may;tue;421;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;admin.;single;unknown;unknown;yes;yes;telephone;may;tue;410;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+48;blue-collar;married;professional.course;unknown;no;no;telephone;may;tue;207;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;admin.;single;high.school;no;yes;yes;telephone;may;tue;239;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;self-employed;single;basic.4y;unknown;yes;no;telephone;may;tue;83;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;technician;single;university.degree;unknown;no;no;telephone;may;tue;160;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+49;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;tue;42;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+56;retired;married;basic.4y;no;no;no;telephone;may;tue;55;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+49;admin.;married;high.school;no;no;no;telephone;may;tue;157;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;unemployed;divorced;university.degree;no;no;no;telephone;may;tue;303;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;blue-collar;married;unknown;unknown;yes;no;telephone;may;tue;336;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+48;admin.;divorced;high.school;no;no;no;telephone;may;tue;233;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+55;housemaid;married;basic.4y;no;yes;yes;telephone;may;tue;211;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+59;management;married;basic.4y;unknown;yes;no;telephone;may;tue;88;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;technician;single;professional.course;no;yes;yes;telephone;may;tue;139;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;blue-collar;married;basic.9y;no;no;yes;telephone;may;tue;329;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;blue-collar;divorced;basic.6y;unknown;yes;no;telephone;may;tue;305;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;unemployed;married;basic.4y;unknown;yes;yes;telephone;may;tue;206;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;services;married;high.school;no;yes;no;telephone;may;tue;128;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+29;admin.;single;university.degree;no;no;no;telephone;may;tue;122;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;technician;single;professional.course;no;yes;no;telephone;may;tue;343;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;services;divorced;basic.9y;no;no;yes;telephone;may;tue;126;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;blue-collar;married;basic.4y;no;yes;no;telephone;may;tue;249;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+60;blue-collar;married;professional.course;no;no;no;telephone;may;tue;59;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;admin.;married;university.degree;no;yes;no;telephone;may;tue;166;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;services;married;high.school;no;no;no;telephone;may;tue;190;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;tue;216;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;services;married;university.degree;no;yes;no;telephone;may;wed;51;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+39;blue-collar;married;basic.4y;unknown;no;no;telephone;may;wed;169;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+37;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;wed;148;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+39;blue-collar;married;professional.course;unknown;yes;no;telephone;may;wed;132;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+46;blue-collar;married;basic.4y;no;no;no;telephone;may;wed;117;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+43;unemployed;married;basic.4y;no;no;no;telephone;may;wed;275;4;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+37;services;married;high.school;no;yes;no;telephone;may;wed;124;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+30;technician;married;university.degree;unknown;no;no;telephone;may;wed;118;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+38;technician;married;professional.course;no;no;no;telephone;may;wed;479;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+31;technician;married;university.degree;no;yes;no;telephone;may;wed;285;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+44;admin.;married;university.degree;no;no;no;telephone;may;wed;322;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+44;self-employed;married;university.degree;unknown;no;no;telephone;may;wed;202;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+38;technician;married;unknown;unknown;unknown;unknown;telephone;may;wed;162;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+30;student;single;high.school;unknown;no;no;telephone;may;wed;216;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+37;blue-collar;married;basic.4y;unknown;unknown;unknown;telephone;may;wed;195;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+54;housemaid;divorced;unknown;no;yes;no;telephone;may;wed;96;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+41;management;married;unknown;unknown;yes;no;telephone;may;wed;149;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+43;technician;married;professional.course;no;no;no;telephone;may;wed;720;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+38;housemaid;married;basic.9y;no;no;no;telephone;may;wed;92;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+41;blue-collar;married;basic.4y;no;yes;no;telephone;may;wed;188;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+38;blue-collar;single;unknown;unknown;no;yes;telephone;may;wed;70;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+33;blue-collar;married;basic.9y;no;unknown;unknown;telephone;may;wed;141;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+32;admin.;married;high.school;no;yes;no;telephone;may;wed;395;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+30;services;married;high.school;unknown;no;no;telephone;may;wed;629;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+43;technician;married;basic.6y;no;yes;no;telephone;may;wed;261;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+30;services;married;high.school;unknown;yes;no;telephone;may;wed;502;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+36;technician;divorced;professional.course;no;no;no;telephone;may;wed;446;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+38;blue-collar;married;basic.6y;no;unknown;unknown;telephone;may;wed;131;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+35;blue-collar;single;basic.6y;no;yes;no;telephone;may;wed;198;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+50;self-employed;married;university.degree;no;no;no;telephone;may;wed;312;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+38;blue-collar;married;basic.9y;no;yes;no;telephone;may;wed;275;6;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+58;admin.;married;basic.4y;unknown;no;yes;telephone;may;wed;120;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+50;technician;married;professional.course;no;yes;no;telephone;may;wed;333;4;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+33;blue-collar;single;basic.9y;unknown;no;no;telephone;may;wed;113;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+33;blue-collar;single;basic.9y;unknown;unknown;unknown;telephone;may;wed;150;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+44;management;single;university.degree;unknown;yes;yes;telephone;may;wed;91;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+31;management;married;high.school;no;no;no;telephone;may;wed;296;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+40;entrepreneur;married;basic.9y;no;no;no;telephone;may;wed;128;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+28;unknown;single;basic.9y;unknown;no;no;telephone;may;wed;298;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+36;services;single;unknown;no;yes;no;telephone;may;wed;326;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+44;blue-collar;single;high.school;no;no;no;telephone;may;wed;292;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+38;blue-collar;divorced;unknown;no;yes;no;telephone;may;wed;215;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+33;blue-collar;married;basic.9y;no;unknown;unknown;telephone;may;wed;97;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+39;blue-collar;divorced;basic.6y;unknown;yes;yes;telephone;may;wed;32;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+47;blue-collar;single;basic.4y;unknown;yes;no;telephone;may;wed;162;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+47;services;divorced;high.school;no;no;no;telephone;may;wed;421;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+35;entrepreneur;single;professional.course;no;no;no;telephone;may;wed;268;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+42;admin.;divorced;university.degree;no;no;no;telephone;may;wed;232;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+36;admin.;married;high.school;no;no;no;telephone;may;wed;152;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+35;technician;married;basic.6y;no;no;no;telephone;may;wed;104;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+36;services;single;unknown;no;yes;no;telephone;may;wed;852;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+56;entrepreneur;married;university.degree;unknown;yes;no;telephone;may;wed;159;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+26;admin.;single;high.school;no;no;no;telephone;may;wed;416;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+31;admin.;single;university.degree;no;yes;yes;telephone;may;wed;174;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+57;self-employed;single;high.school;unknown;no;no;telephone;may;wed;139;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+39;services;married;high.school;no;no;no;telephone;may;wed;193;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+43;blue-collar;married;high.school;no;yes;no;telephone;may;wed;294;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+50;admin.;married;university.degree;no;no;no;telephone;may;wed;102;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+52;blue-collar;single;high.school;unknown;unknown;unknown;telephone;may;wed;124;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+39;blue-collar;divorced;basic.9y;no;no;no;telephone;may;wed;143;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+44;technician;single;unknown;unknown;yes;no;telephone;may;wed;231;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+36;housemaid;married;basic.4y;no;yes;no;telephone;may;wed;128;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+54;management;married;high.school;unknown;yes;no;telephone;may;wed;74;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+27;admin.;single;basic.9y;no;yes;no;telephone;may;wed;105;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+31;admin.;single;university.degree;no;no;no;telephone;may;wed;992;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;yes
+31;admin.;married;university.degree;unknown;no;no;telephone;may;wed;168;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+28;blue-collar;married;basic.6y;no;no;no;telephone;may;wed;250;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+31;management;single;university.degree;no;yes;no;telephone;may;wed;254;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+30;management;divorced;high.school;no;no;yes;telephone;may;wed;149;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+52;technician;married;professional.course;no;yes;no;telephone;may;wed;133;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+37;technician;divorced;professional.course;no;no;no;telephone;may;wed;374;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+30;services;married;university.degree;no;yes;no;telephone;may;wed;425;6;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+45;blue-collar;married;basic.9y;unknown;yes;yes;telephone;may;wed;207;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+54;technician;married;university.degree;no;yes;no;telephone;may;wed;464;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+49;entrepreneur;married;basic.9y;no;yes;no;telephone;may;wed;439;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+44;admin.;married;high.school;no;no;no;telephone;may;wed;83;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+28;student;single;basic.9y;unknown;yes;yes;telephone;may;wed;732;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;yes
+53;technician;married;high.school;no;yes;no;telephone;may;wed;149;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+45;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;wed;142;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+45;blue-collar;married;basic.9y;unknown;no;no;telephone;may;wed;121;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+51;admin.;married;high.school;unknown;yes;no;telephone;may;wed;359;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+41;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;wed;112;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+43;technician;married;professional.course;no;yes;no;telephone;may;wed;274;4;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+31;admin.;single;university.degree;no;yes;no;telephone;may;wed;325;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+39;admin.;single;unknown;no;yes;no;telephone;may;wed;1521;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+38;technician;married;professional.course;no;no;no;telephone;may;wed;216;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+50;entrepreneur;married;basic.9y;no;yes;yes;telephone;may;wed;161;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+53;admin.;single;university.degree;unknown;yes;no;telephone;may;wed;122;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+44;admin.;divorced;high.school;unknown;yes;no;telephone;may;wed;800;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+53;blue-collar;married;basic.9y;unknown;yes;yes;telephone;may;wed;615;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+24;services;single;high.school;no;no;no;telephone;may;wed;111;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+34;admin.;single;high.school;no;yes;no;telephone;may;wed;359;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+40;technician;married;professional.course;no;yes;no;telephone;may;wed;327;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+57;management;divorced;university.degree;no;yes;no;telephone;may;wed;236;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+43;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;wed;227;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+31;blue-collar;married;basic.6y;unknown;no;no;telephone;may;wed;109;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+31;services;married;basic.6y;no;yes;no;telephone;may;wed;492;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+31;blue-collar;married;basic.6y;unknown;yes;no;telephone;may;wed;298;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+45;housemaid;married;basic.4y;unknown;yes;no;telephone;may;wed;83;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+38;admin.;married;university.degree;no;no;no;telephone;may;wed;241;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+41;entrepreneur;married;university.degree;no;yes;no;telephone;may;wed;1138;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;yes
+47;blue-collar;married;professional.course;unknown;yes;no;telephone;may;wed;131;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+42;blue-collar;married;basic.6y;no;no;no;telephone;may;wed;123;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+35;blue-collar;single;unknown;no;yes;no;telephone;may;wed;125;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+40;management;married;university.degree;no;yes;no;telephone;may;wed;295;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+42;blue-collar;married;basic.6y;no;no;no;telephone;may;wed;287;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+34;technician;married;professional.course;unknown;yes;no;telephone;may;wed;109;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+48;admin.;single;university.degree;no;yes;no;telephone;may;wed;140;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+35;blue-collar;married;unknown;no;yes;yes;telephone;may;wed;52;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+33;blue-collar;married;high.school;no;yes;no;telephone;may;wed;233;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+37;technician;married;professional.course;no;yes;no;telephone;may;wed;254;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+43;technician;married;professional.course;no;yes;no;telephone;may;wed;255;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+42;admin.;single;unknown;unknown;no;no;telephone;may;wed;126;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+46;admin.;divorced;university.degree;no;yes;no;telephone;may;wed;184;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+37;blue-collar;single;basic.9y;unknown;yes;no;telephone;may;wed;591;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;yes
+40;blue-collar;married;high.school;no;yes;no;telephone;may;wed;294;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+40;blue-collar;married;high.school;no;yes;no;telephone;may;wed;285;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+59;entrepreneur;divorced;high.school;unknown;yes;no;telephone;may;wed;173;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+43;technician;single;university.degree;no;no;no;telephone;may;wed;336;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+44;blue-collar;married;basic.6y;no;yes;yes;telephone;may;wed;344;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+44;blue-collar;married;basic.4y;no;yes;no;telephone;may;wed;786;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;yes
+41;admin.;married;university.degree;no;yes;no;telephone;may;wed;153;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+28;unknown;single;basic.9y;unknown;yes;no;telephone;may;wed;99;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+48;services;married;high.school;unknown;yes;no;telephone;may;wed;243;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+31;admin.;single;high.school;no;yes;no;telephone;may;wed;260;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+27;blue-collar;married;basic.9y;no;yes;no;telephone;may;wed;164;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+43;technician;single;university.degree;no;yes;no;telephone;may;wed;255;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+47;retired;married;basic.4y;unknown;yes;no;telephone;may;wed;47;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+40;blue-collar;divorced;unknown;no;yes;no;telephone;may;wed;110;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+43;unknown;married;high.school;unknown;no;no;telephone;may;wed;463;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+29;technician;married;professional.course;no;yes;no;telephone;may;wed;192;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+54;admin.;married;university.degree;no;no;no;telephone;may;wed;388;7;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+36;technician;married;professional.course;no;no;no;telephone;may;wed;221;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+30;admin.;single;university.degree;no;no;no;telephone;may;wed;25;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+38;services;single;unknown;unknown;yes;no;telephone;may;wed;256;6;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+39;blue-collar;married;basic.6y;no;no;no;telephone;may;wed;104;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+33;blue-collar;married;basic.9y;no;no;no;telephone;may;wed;283;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+39;retired;single;high.school;no;yes;no;telephone;may;wed;448;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+38;technician;single;professional.course;no;no;no;telephone;may;wed;127;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+44;admin.;married;high.school;no;yes;no;telephone;may;wed;378;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+33;blue-collar;married;basic.9y;no;yes;no;telephone;may;wed;67;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+37;blue-collar;married;basic.6y;no;no;no;telephone;may;wed;221;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+32;management;married;basic.6y;no;no;no;telephone;may;wed;150;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+46;technician;married;professional.course;no;yes;no;telephone;may;wed;144;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+34;technician;divorced;professional.course;no;yes;no;telephone;may;wed;296;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+52;technician;married;basic.4y;unknown;no;no;telephone;may;wed;161;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+46;blue-collar;married;basic.6y;unknown;no;no;telephone;may;wed;401;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+57;management;divorced;university.degree;no;unknown;unknown;telephone;may;wed;435;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+52;technician;married;basic.4y;unknown;no;yes;telephone;may;wed;388;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+32;technician;single;professional.course;no;no;no;telephone;may;wed;245;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+31;blue-collar;single;basic.9y;no;no;no;telephone;may;wed;143;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+46;admin.;divorced;basic.9y;unknown;no;no;telephone;may;wed;423;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+59;services;divorced;high.school;no;no;no;telephone;may;wed;231;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+38;blue-collar;married;unknown;unknown;no;yes;telephone;may;wed;181;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+42;blue-collar;divorced;basic.6y;unknown;yes;no;telephone;may;wed;107;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+40;blue-collar;married;basic.4y;no;no;no;telephone;may;wed;227;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+46;admin.;married;professional.course;no;no;no;telephone;may;wed;69;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+35;admin.;single;high.school;no;no;no;telephone;may;wed;799;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+28;blue-collar;married;basic.9y;no;no;yes;telephone;may;wed;109;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+47;services;married;high.school;unknown;yes;no;telephone;may;wed;127;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+35;blue-collar;married;basic.4y;no;yes;no;telephone;may;wed;45;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+48;retired;married;basic.9y;no;yes;no;telephone;may;wed;120;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+40;blue-collar;married;basic.6y;unknown;yes;no;telephone;may;wed;68;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+32;services;single;high.school;no;yes;no;telephone;may;wed;180;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+59;retired;divorced;basic.4y;no;yes;no;telephone;may;wed;112;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+48;entrepreneur;married;basic.9y;unknown;no;no;telephone;may;wed;444;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+45;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;wed;246;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+49;blue-collar;single;basic.6y;no;yes;no;telephone;may;wed;148;4;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+51;admin.;married;university.degree;no;yes;no;telephone;may;wed;223;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+38;technician;single;university.degree;no;yes;no;telephone;may;wed;566;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+53;technician;married;high.school;no;yes;no;telephone;may;wed;274;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+49;blue-collar;married;basic.9y;no;yes;no;telephone;may;wed;49;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+31;blue-collar;married;basic.9y;no;yes;yes;telephone;may;wed;97;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+36;services;married;high.school;unknown;yes;no;telephone;may;wed;376;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+54;retired;married;basic.4y;unknown;yes;no;telephone;may;wed;421;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+29;admin.;single;high.school;no;yes;no;telephone;may;wed;511;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+31;blue-collar;married;basic.6y;unknown;yes;no;telephone;may;wed;121;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+35;admin.;married;high.school;no;yes;no;telephone;may;wed;157;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+38;blue-collar;married;basic.9y;no;no;no;telephone;may;wed;101;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+54;management;married;high.school;unknown;yes;yes;telephone;may;wed;328;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+48;admin.;married;basic.9y;unknown;no;no;telephone;may;wed;19;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+48;management;divorced;university.degree;no;yes;no;telephone;may;wed;866;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+32;admin.;single;university.degree;unknown;yes;no;telephone;may;wed;229;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+34;technician;married;professional.course;unknown;yes;no;telephone;may;wed;154;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+49;technician;single;university.degree;unknown;yes;no;telephone;may;wed;56;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+44;blue-collar;married;basic.9y;unknown;unknown;unknown;telephone;may;wed;199;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+42;services;divorced;high.school;unknown;no;no;telephone;may;wed;117;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+55;blue-collar;married;basic.4y;unknown;no;no;telephone;may;wed;1581;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+42;services;divorced;high.school;unknown;no;no;telephone;may;wed;185;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+44;admin.;married;university.degree;unknown;no;no;telephone;may;wed;202;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+51;blue-collar;married;basic.9y;no;no;no;telephone;may;wed;279;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+43;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;wed;180;5;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+52;technician;married;high.school;no;yes;no;telephone;may;wed;530;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+45;blue-collar;single;basic.6y;no;yes;no;telephone;may;wed;129;5;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+41;services;divorced;high.school;no;yes;yes;telephone;may;wed;60;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+35;technician;divorced;unknown;no;yes;yes;telephone;may;wed;432;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+41;services;divorced;high.school;no;no;yes;telephone;may;wed;516;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+46;management;married;basic.9y;no;no;no;telephone;may;wed;617;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+36;housemaid;divorced;basic.9y;unknown;no;no;telephone;may;wed;179;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+29;technician;married;professional.course;no;no;no;telephone;may;wed;125;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+47;services;married;unknown;no;no;no;telephone;may;wed;262;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+43;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;wed;396;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+38;blue-collar;single;basic.9y;unknown;no;no;telephone;may;wed;294;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+44;blue-collar;married;basic.4y;no;yes;no;telephone;may;wed;171;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+29;services;married;high.school;no;no;no;telephone;may;wed;614;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+58;unknown;married;unknown;unknown;no;no;telephone;may;wed;118;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+48;blue-collar;married;professional.course;no;no;yes;telephone;may;wed;485;4;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+46;blue-collar;married;basic.9y;unknown;no;no;telephone;may;wed;406;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+31;blue-collar;married;basic.4y;no;yes;no;telephone;may;wed;287;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+47;services;married;unknown;no;no;no;telephone;may;wed;216;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+44;admin.;married;university.degree;no;yes;no;telephone;may;wed;37;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+31;blue-collar;married;basic.4y;no;yes;no;telephone;may;wed;650;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+38;unemployed;divorced;professional.course;no;no;no;telephone;may;wed;590;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+33;admin.;married;university.degree;no;no;no;telephone;may;wed;55;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+53;blue-collar;married;basic.9y;no;yes;no;telephone;may;wed;166;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+33;management;single;unknown;no;yes;no;telephone;may;wed;371;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+33;self-employed;married;basic.9y;no;yes;no;telephone;may;wed;48;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+37;admin.;divorced;university.degree;no;yes;no;telephone;may;wed;72;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+55;blue-collar;married;basic.9y;no;yes;no;telephone;may;wed;55;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+41;admin.;single;basic.6y;no;unknown;unknown;telephone;may;wed;92;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+46;blue-collar;married;basic.6y;unknown;yes;no;telephone;may;wed;196;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+32;entrepreneur;divorced;university.degree;no;no;no;telephone;may;wed;96;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+48;blue-collar;married;high.school;no;no;no;telephone;may;wed;144;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+34;entrepreneur;married;basic.4y;no;yes;no;telephone;may;wed;474;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+35;admin.;single;university.degree;no;no;no;telephone;may;wed;559;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+55;blue-collar;married;basic.4y;no;yes;yes;telephone;may;wed;1101;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+45;entrepreneur;single;university.degree;no;unknown;unknown;telephone;may;wed;229;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+48;management;divorced;university.degree;no;no;no;telephone;may;wed;236;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+34;blue-collar;married;basic.6y;no;yes;no;telephone;may;wed;164;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+46;admin.;divorced;university.degree;unknown;no;no;telephone;may;wed;93;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+34;blue-collar;married;basic.6y;no;yes;no;telephone;may;wed;123;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+51;unemployed;married;professional.course;unknown;no;no;telephone;may;wed;912;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+37;admin.;married;university.degree;no;no;no;telephone;may;wed;209;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+54;housemaid;divorced;basic.4y;no;no;no;telephone;may;wed;485;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+45;services;married;high.school;unknown;yes;no;telephone;may;wed;206;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+39;services;single;high.school;no;unknown;unknown;telephone;may;wed;239;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+39;blue-collar;married;basic.9y;no;no;no;telephone;may;wed;311;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+39;technician;single;basic.6y;unknown;no;no;telephone;may;wed;362;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+39;services;married;basic.9y;no;no;no;telephone;may;wed;274;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+32;entrepreneur;married;basic.6y;no;yes;no;telephone;may;wed;163;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+41;services;single;high.school;no;yes;yes;telephone;may;wed;345;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+59;housemaid;married;basic.6y;no;yes;no;telephone;may;wed;329;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+57;technician;married;basic.9y;no;yes;no;telephone;may;wed;68;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+30;services;married;unknown;no;no;no;telephone;may;wed;143;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+34;entrepreneur;married;basic.4y;no;no;no;telephone;may;wed;214;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+34;technician;married;high.school;no;no;no;telephone;may;wed;1062;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+38;blue-collar;divorced;unknown;no;no;no;telephone;may;wed;258;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+31;blue-collar;married;basic.6y;no;yes;no;telephone;may;wed;253;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+47;admin.;married;university.degree;no;unknown;unknown;telephone;may;wed;106;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+57;self-employed;single;high.school;unknown;no;no;telephone;may;wed;688;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+44;blue-collar;married;basic.9y;unknown;no;no;telephone;may;wed;103;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+45;services;married;high.school;unknown;yes;no;telephone;may;wed;349;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+36;unemployed;married;basic.4y;no;yes;no;telephone;may;wed;170;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+44;services;married;high.school;no;yes;no;telephone;may;wed;78;5;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+51;management;married;university.degree;no;no;no;telephone;may;wed;194;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+28;admin.;single;university.degree;no;no;no;telephone;may;wed;126;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+50;technician;married;high.school;no;no;no;telephone;may;wed;224;5;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+51;entrepreneur;married;university.degree;no;no;no;telephone;may;wed;98;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+38;blue-collar;single;basic.9y;no;no;no;telephone;may;wed;252;5;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+44;blue-collar;married;basic.4y;no;yes;no;telephone;may;wed;607;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+35;admin.;single;basic.4y;unknown;no;no;telephone;may;wed;331;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+35;admin.;single;basic.4y;unknown;yes;no;telephone;may;wed;398;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+32;admin.;single;high.school;no;no;no;telephone;may;wed;103;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+48;blue-collar;married;basic.9y;no;yes;no;telephone;may;wed;241;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+35;admin.;single;basic.4y;unknown;no;no;telephone;may;wed;803;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+44;technician;married;professional.course;unknown;no;no;telephone;may;wed;203;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+43;technician;married;professional.course;no;no;no;telephone;may;wed;96;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+40;management;married;high.school;no;no;no;telephone;may;wed;238;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+50;self-employed;married;basic.4y;unknown;unknown;unknown;telephone;may;wed;153;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+44;technician;married;professional.course;unknown;yes;no;telephone;may;wed;481;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+37;blue-collar;single;basic.9y;unknown;no;no;telephone;may;wed;119;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+32;services;divorced;high.school;no;yes;no;telephone;may;wed;245;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+58;admin.;married;high.school;no;no;yes;telephone;may;wed;152;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+49;technician;married;high.school;no;yes;no;telephone;may;wed;418;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+32;blue-collar;married;basic.4y;unknown;no;no;telephone;may;wed;421;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+30;services;married;high.school;no;no;yes;telephone;may;wed;198;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+28;admin.;married;high.school;no;yes;no;telephone;may;wed;175;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+40;blue-collar;married;basic.4y;unknown;unknown;unknown;telephone;may;wed;374;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+44;management;married;university.degree;no;no;no;telephone;may;wed;51;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+30;services;married;professional.course;unknown;yes;no;telephone;may;wed;263;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+30;services;married;professional.course;unknown;no;no;telephone;may;wed;257;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+28;technician;single;professional.course;no;yes;no;telephone;may;wed;229;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+58;housemaid;married;basic.4y;no;yes;no;telephone;may;wed;154;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+45;blue-collar;single;high.school;unknown;no;yes;telephone;may;wed;278;6;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+35;blue-collar;married;professional.course;no;no;no;telephone;may;wed;306;5;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+57;retired;divorced;high.school;no;no;no;telephone;may;wed;114;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+35;admin.;divorced;high.school;no;yes;no;telephone;may;wed;24;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+41;technician;single;university.degree;unknown;no;no;telephone;may;wed;79;8;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+42;services;married;high.school;unknown;no;no;telephone;may;wed;169;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+42;blue-collar;married;basic.4y;unknown;no;no;telephone;may;wed;332;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+51;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;wed;263;6;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+48;management;married;university.degree;no;yes;no;telephone;may;wed;353;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+39;blue-collar;married;basic.6y;no;no;no;telephone;may;wed;108;6;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+47;retired;married;basic.4y;unknown;unknown;unknown;telephone;may;wed;441;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+34;technician;single;professional.course;no;unknown;unknown;telephone;may;wed;46;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+44;services;married;basic.6y;unknown;no;no;telephone;may;wed;266;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+52;housemaid;divorced;professional.course;no;yes;no;telephone;may;wed;222;4;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+51;blue-collar;married;basic.4y;no;yes;no;telephone;may;wed;1009;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+49;services;married;high.school;no;no;no;telephone;may;wed;105;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+35;admin.;single;basic.4y;unknown;yes;no;telephone;may;wed;381;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+44;admin.;married;high.school;no;no;no;telephone;may;wed;228;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+37;admin.;married;high.school;no;yes;no;telephone;may;wed;128;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+47;management;married;university.degree;no;no;no;telephone;may;wed;550;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+43;management;married;professional.course;no;no;no;telephone;may;wed;764;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+40;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;wed;113;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+32;management;divorced;basic.4y;unknown;no;no;telephone;may;wed;396;4;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+42;blue-collar;married;basic.4y;unknown;unknown;unknown;telephone;may;wed;42;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+42;self-employed;married;university.degree;no;yes;no;telephone;may;wed;234;4;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+39;technician;married;professional.course;no;unknown;unknown;telephone;may;wed;50;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+32;housemaid;married;basic.4y;no;no;no;telephone;may;wed;110;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+30;services;married;unknown;no;yes;no;telephone;may;wed;274;4;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+42;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;wed;191;4;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+35;blue-collar;married;basic.6y;no;yes;yes;telephone;may;wed;305;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+56;retired;married;basic.4y;no;no;no;telephone;may;wed;134;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+40;blue-collar;married;basic.9y;unknown;no;no;telephone;may;wed;112;4;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+26;admin.;single;university.degree;no;yes;no;telephone;may;wed;217;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+57;management;divorced;university.degree;no;no;no;telephone;may;wed;283;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+51;blue-collar;married;basic.4y;no;no;no;telephone;may;wed;353;4;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+31;technician;married;professional.course;no;no;no;telephone;may;wed;212;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+31;admin.;married;university.degree;no;no;no;telephone;may;wed;225;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+60;services;married;unknown;no;no;no;telephone;may;wed;283;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+29;admin.;single;university.degree;no;yes;no;telephone;may;wed;1273;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+44;entrepreneur;married;basic.4y;unknown;no;no;telephone;may;wed;1574;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;yes
+26;technician;single;basic.9y;no;yes;no;telephone;may;wed;139;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+54;blue-collar;married;basic.4y;no;yes;no;telephone;may;wed;62;5;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+34;blue-collar;single;high.school;unknown;no;yes;telephone;may;wed;256;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+29;admin.;single;high.school;no;yes;no;telephone;may;wed;245;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+33;admin.;divorced;high.school;no;yes;no;telephone;may;wed;161;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+35;blue-collar;single;high.school;no;yes;no;telephone;may;wed;245;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+42;management;married;basic.6y;no;yes;yes;telephone;may;wed;89;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+53;retired;married;basic.4y;unknown;yes;no;telephone;may;wed;591;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+51;technician;married;professional.course;no;yes;no;telephone;may;wed;113;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+59;retired;divorced;basic.4y;no;yes;no;telephone;may;wed;517;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+51;admin.;married;basic.6y;unknown;no;no;telephone;may;wed;193;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+36;blue-collar;married;basic.9y;no;yes;no;telephone;may;wed;231;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+47;technician;divorced;professional.course;unknown;no;no;telephone;may;wed;348;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+51;admin.;married;university.degree;no;no;no;telephone;may;wed;299;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+42;admin.;married;university.degree;unknown;yes;no;telephone;may;wed;103;4;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+40;technician;married;professional.course;no;yes;no;telephone;may;wed;253;8;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+26;blue-collar;married;basic.9y;unknown;no;no;telephone;may;wed;73;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+45;technician;married;professional.course;no;yes;no;telephone;may;wed;164;5;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+51;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;wed;244;7;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+42;services;married;high.school;no;no;no;telephone;may;wed;191;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+31;technician;married;professional.course;no;yes;no;telephone;may;wed;157;6;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+38;blue-collar;married;basic.4y;no;no;no;telephone;may;wed;548;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+51;services;divorced;basic.6y;unknown;no;yes;telephone;may;wed;114;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+39;entrepreneur;married;high.school;no;yes;no;telephone;may;wed;126;5;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+36;blue-collar;married;unknown;unknown;yes;yes;telephone;may;wed;161;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+60;services;married;unknown;no;yes;no;telephone;may;wed;333;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+34;management;married;university.degree;no;yes;no;telephone;may;wed;155;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+41;blue-collar;married;basic.4y;no;yes;no;telephone;may;wed;152;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+34;management;married;university.degree;no;yes;yes;telephone;may;wed;145;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+36;blue-collar;married;basic.9y;no;no;no;telephone;may;wed;66;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+33;technician;married;professional.course;no;no;no;telephone;may;wed;123;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+46;admin.;single;university.degree;no;unknown;unknown;telephone;may;wed;74;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+44;blue-collar;married;basic.4y;no;yes;no;telephone;may;wed;248;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+30;blue-collar;married;basic.6y;no;no;no;telephone;may;wed;275;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+34;management;married;university.degree;no;no;no;telephone;may;wed;984;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+54;admin.;divorced;university.degree;no;no;no;telephone;may;wed;1689;4;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;yes
+58;self-employed;married;professional.course;no;yes;no;telephone;may;wed;84;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+29;services;married;high.school;no;yes;yes;telephone;may;wed;27;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+41;entrepreneur;married;university.degree;no;no;no;telephone;may;wed;130;4;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+53;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;wed;489;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+35;admin.;married;university.degree;no;no;no;telephone;may;wed;41;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+34;blue-collar;single;basic.9y;no;no;no;telephone;may;wed;159;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+36;blue-collar;single;unknown;no;yes;no;telephone;may;wed;276;4;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+31;blue-collar;married;basic.9y;no;no;no;telephone;may;wed;196;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+59;retired;married;basic.4y;unknown;no;no;telephone;may;wed;81;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+49;technician;married;professional.course;unknown;unknown;unknown;telephone;may;wed;865;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+37;management;married;high.school;unknown;no;no;telephone;may;wed;149;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+50;management;married;university.degree;no;yes;no;telephone;may;wed;281;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+34;services;married;high.school;no;no;no;telephone;may;wed;122;5;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+32;admin.;married;university.degree;unknown;no;no;telephone;may;wed;361;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+45;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;wed;944;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+39;management;married;university.degree;no;yes;no;telephone;may;wed;319;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+43;unknown;married;high.school;unknown;no;no;telephone;may;wed;35;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+43;blue-collar;married;basic.4y;unknown;no;no;telephone;may;wed;143;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+52;blue-collar;married;basic.9y;unknown;no;no;telephone;may;wed;22;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+54;blue-collar;married;basic.9y;no;yes;no;telephone;may;wed;90;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+54;blue-collar;married;basic.9y;no;yes;no;telephone;may;wed;505;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+31;services;single;high.school;no;yes;no;telephone;may;wed;17;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+35;blue-collar;married;basic.6y;no;no;no;telephone;may;wed;404;5;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+28;admin.;married;high.school;no;yes;no;telephone;may;wed;238;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+56;retired;married;basic.9y;no;yes;yes;telephone;may;wed;71;4;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+35;admin.;single;basic.4y;unknown;no;no;telephone;may;wed;309;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+45;blue-collar;married;basic.9y;unknown;no;no;telephone;may;wed;408;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+38;entrepreneur;married;basic.9y;no;no;no;telephone;may;wed;157;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+42;technician;married;professional.course;no;yes;no;telephone;may;wed;280;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+44;blue-collar;married;basic.4y;no;no;no;telephone;may;wed;374;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+58;admin.;divorced;university.degree;no;yes;no;telephone;may;wed;365;4;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+43;admin.;divorced;high.school;no;yes;no;telephone;may;thu;177;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+37;technician;married;professional.course;no;yes;no;telephone;may;thu;238;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+45;blue-collar;married;basic.9y;unknown;no;no;telephone;may;thu;31;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+59;retired;married;university.degree;no;no;no;telephone;may;thu;425;6;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+50;blue-collar;married;basic.9y;unknown;no;no;telephone;may;thu;77;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+41;admin.;married;high.school;no;yes;yes;telephone;may;thu;223;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+33;admin.;married;university.degree;no;yes;no;telephone;may;thu;239;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+46;blue-collar;married;professional.course;no;no;no;telephone;may;thu;116;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+30;admin.;single;high.school;no;no;no;telephone;may;thu;308;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+28;services;single;high.school;no;no;no;telephone;may;thu;137;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+58;admin.;married;university.degree;no;no;yes;telephone;may;thu;162;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+43;blue-collar;married;basic.4y;no;no;no;telephone;may;thu;134;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+39;self-employed;married;high.school;no;yes;no;telephone;may;thu;175;5;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+25;services;married;professional.course;unknown;no;no;telephone;may;thu;125;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+39;admin.;single;unknown;no;no;no;telephone;may;thu;211;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+42;retired;married;basic.9y;unknown;yes;no;telephone;may;thu;180;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+43;admin.;married;high.school;no;yes;no;telephone;may;thu;67;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+43;admin.;married;high.school;no;no;no;telephone;may;thu;196;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+33;admin.;single;university.degree;no;no;no;telephone;may;thu;342;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+52;unknown;married;basic.4y;no;no;no;telephone;may;thu;156;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+42;services;married;professional.course;no;yes;no;telephone;may;thu;813;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;yes
+53;blue-collar;married;basic.4y;unknown;no;no;telephone;may;thu;178;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+41;housemaid;married;basic.6y;no;no;no;telephone;may;thu;142;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+48;blue-collar;married;professional.course;no;yes;no;telephone;may;thu;194;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+40;admin.;single;high.school;no;yes;no;telephone;may;thu;132;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+40;admin.;single;high.school;no;no;yes;telephone;may;thu;110;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+53;blue-collar;married;high.school;unknown;no;yes;telephone;may;thu;109;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+55;admin.;married;high.school;no;no;no;telephone;may;thu;94;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+39;technician;married;professional.course;no;no;no;telephone;may;thu;31;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+35;blue-collar;married;basic.9y;no;no;yes;telephone;may;thu;220;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+50;housemaid;divorced;basic.4y;unknown;no;no;telephone;may;thu;489;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+38;services;divorced;basic.6y;no;no;no;telephone;may;thu;180;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+41;unemployed;married;basic.9y;unknown;no;no;telephone;may;thu;314;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+44;technician;married;professional.course;unknown;no;no;telephone;may;thu;203;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+39;admin.;married;basic.6y;unknown;no;no;telephone;may;thu;328;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+44;unknown;married;basic.6y;no;no;no;telephone;may;thu;207;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+51;technician;married;professional.course;no;no;yes;telephone;may;thu;193;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+41;technician;married;high.school;no;yes;yes;telephone;may;thu;177;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+31;technician;married;professional.course;no;no;no;telephone;may;thu;528;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+40;blue-collar;married;high.school;no;yes;no;telephone;may;thu;183;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+38;self-employed;single;university.degree;no;no;no;telephone;may;thu;238;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+48;blue-collar;married;basic.6y;no;no;yes;telephone;may;thu;61;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+32;admin.;married;high.school;no;no;no;telephone;may;thu;70;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+46;blue-collar;single;basic.9y;no;yes;no;telephone;may;thu;541;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;yes
+49;housemaid;married;basic.4y;unknown;no;no;telephone;may;thu;41;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+47;blue-collar;married;basic.6y;no;yes;yes;telephone;may;thu;93;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+28;blue-collar;married;basic.6y;unknown;no;no;telephone;may;thu;149;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+38;admin.;single;university.degree;unknown;yes;no;telephone;may;thu;35;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+28;blue-collar;married;basic.6y;unknown;no;no;telephone;may;thu;262;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+51;services;married;unknown;no;yes;no;telephone;may;thu;151;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+50;blue-collar;married;basic.9y;no;yes;no;telephone;may;thu;135;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+38;admin.;single;university.degree;unknown;yes;yes;telephone;may;thu;221;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+48;blue-collar;married;basic.6y;no;yes;no;telephone;may;thu;604;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+44;technician;divorced;unknown;no;yes;no;telephone;may;thu;86;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+30;technician;married;professional.course;no;no;no;telephone;may;thu;65;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+34;blue-collar;single;basic.4y;no;no;no;telephone;may;thu;380;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+36;blue-collar;married;basic.6y;no;yes;no;telephone;may;thu;11;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+41;management;married;university.degree;unknown;no;no;telephone;may;thu;184;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+40;blue-collar;married;basic.6y;unknown;no;no;telephone;may;thu;405;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+35;unknown;married;basic.9y;no;yes;yes;telephone;may;thu;20;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+46;blue-collar;married;basic.4y;unknown;no;no;telephone;may;thu;202;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+35;unknown;married;basic.9y;no;yes;no;telephone;may;thu;235;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+32;management;single;university.degree;no;no;no;telephone;may;thu;75;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+34;admin.;married;university.degree;unknown;no;no;telephone;may;thu;134;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+35;blue-collar;married;basic.9y;no;yes;no;telephone;may;thu;255;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+28;admin.;single;professional.course;no;no;no;telephone;may;thu;462;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+30;services;married;high.school;unknown;no;no;telephone;may;thu;80;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+48;unemployed;married;basic.4y;no;yes;yes;telephone;may;thu;56;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+53;blue-collar;married;professional.course;no;yes;yes;telephone;may;thu;418;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+31;management;married;university.degree;no;yes;yes;telephone;may;thu;139;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+59;retired;married;unknown;no;yes;no;telephone;may;thu;96;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+51;unemployed;married;high.school;no;yes;no;telephone;may;thu;39;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+47;services;married;high.school;unknown;yes;no;telephone;may;thu;231;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+40;technician;married;university.degree;unknown;no;no;telephone;may;thu;66;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+42;entrepreneur;single;university.degree;no;yes;no;telephone;may;thu;204;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+30;housemaid;married;high.school;unknown;no;no;telephone;may;thu;159;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+40;blue-collar;married;basic.9y;no;no;no;telephone;may;thu;129;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+30;housemaid;married;high.school;unknown;no;no;telephone;may;thu;200;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+50;entrepreneur;married;basic.9y;no;yes;no;telephone;may;thu;187;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+36;blue-collar;married;basic.6y;unknown;no;no;telephone;may;thu;166;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+29;unemployed;single;university.degree;no;no;no;telephone;may;thu;144;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+43;blue-collar;married;basic.9y;no;no;no;telephone;may;thu;323;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+35;services;married;high.school;no;no;no;telephone;may;thu;194;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+35;unknown;single;basic.4y;unknown;no;no;telephone;may;thu;82;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+48;blue-collar;divorced;basic.4y;no;no;no;telephone;may;thu;521;7;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+49;technician;married;professional.course;no;no;no;telephone;may;thu;269;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+44;blue-collar;married;basic.6y;unknown;no;yes;telephone;may;thu;285;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+32;blue-collar;married;professional.course;no;no;no;telephone;may;thu;1119;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;yes
+55;admin.;married;high.school;no;no;no;telephone;may;thu;294;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+41;admin.;married;basic.4y;unknown;no;yes;telephone;may;thu;106;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+27;student;single;high.school;unknown;no;no;telephone;may;thu;158;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+41;blue-collar;married;basic.9y;no;yes;no;telephone;may;thu;152;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+36;blue-collar;married;basic.6y;unknown;yes;no;telephone;may;thu;12;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+45;services;married;basic.9y;no;no;no;telephone;may;thu;187;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+36;blue-collar;married;high.school;no;no;no;telephone;may;thu;268;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+54;technician;married;basic.9y;no;no;no;telephone;may;thu;193;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+48;admin.;married;high.school;unknown;no;yes;telephone;may;thu;95;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+32;blue-collar;married;basic.6y;unknown;no;no;telephone;may;thu;60;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+33;management;married;university.degree;no;no;yes;telephone;may;thu;206;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+43;blue-collar;married;basic.4y;unknown;no;no;telephone;may;thu;155;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+44;technician;single;high.school;no;no;no;telephone;may;thu;216;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+50;technician;married;professional.course;no;no;no;telephone;may;thu;103;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+32;student;single;university.degree;no;no;no;telephone;may;thu;107;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+43;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;thu;219;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+32;student;single;university.degree;no;yes;no;telephone;may;thu;147;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+43;blue-collar;married;basic.4y;unknown;no;no;telephone;may;thu;190;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+40;admin.;divorced;professional.course;no;yes;no;telephone;may;thu;339;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+24;services;single;high.school;no;yes;yes;telephone;may;thu;198;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+32;technician;married;university.degree;no;no;yes;telephone;may;thu;141;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+43;blue-collar;married;basic.4y;unknown;yes;yes;telephone;may;thu;255;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+43;technician;single;university.degree;no;yes;no;telephone;may;thu;1120;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;yes
+35;admin.;married;university.degree;no;yes;yes;telephone;may;thu;369;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+33;admin.;single;high.school;unknown;yes;no;telephone;may;thu;226;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+43;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;thu;215;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+48;technician;married;professional.course;unknown;yes;no;telephone;may;thu;306;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+52;housemaid;married;basic.4y;no;no;no;telephone;may;thu;249;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+49;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;thu;143;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+30;admin.;married;high.school;no;yes;yes;telephone;may;thu;162;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+36;services;married;high.school;no;yes;no;telephone;may;thu;81;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+39;blue-collar;married;basic.6y;no;no;no;telephone;may;thu;124;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+39;blue-collar;married;basic.6y;no;no;no;telephone;may;thu;124;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+36;admin.;divorced;university.degree;no;no;no;telephone;may;thu;33;4;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+39;blue-collar;married;basic.6y;no;no;no;telephone;may;thu;393;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+31;admin.;married;high.school;no;no;no;telephone;may;thu;784;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+41;technician;married;professional.course;no;yes;yes;telephone;may;thu;87;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+35;unknown;married;basic.9y;no;no;no;telephone;may;thu;108;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+55;retired;married;university.degree;unknown;no;no;telephone;may;thu;207;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+57;retired;married;high.school;unknown;yes;no;telephone;may;thu;278;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+38;entrepreneur;married;basic.6y;no;yes;no;telephone;may;thu;196;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+52;blue-collar;married;basic.9y;no;yes;no;telephone;may;thu;149;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+60;services;married;high.school;no;yes;no;telephone;may;thu;154;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+24;student;single;high.school;no;yes;no;telephone;may;thu;287;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+38;entrepreneur;married;basic.6y;no;no;no;telephone;may;thu;229;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+44;technician;divorced;high.school;no;no;no;telephone;may;thu;21;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+42;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;thu;191;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+25;services;divorced;high.school;no;yes;no;telephone;may;thu;147;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+32;admin.;married;basic.6y;no;no;no;telephone;may;thu;93;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+51;blue-collar;married;basic.4y;unknown;no;no;telephone;may;thu;665;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+28;admin.;single;university.degree;no;no;no;telephone;may;thu;131;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+27;housemaid;married;basic.9y;no;yes;no;telephone;may;thu;160;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+35;blue-collar;married;basic.9y;no;yes;no;telephone;may;thu;74;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+45;services;married;basic.9y;no;yes;yes;telephone;may;thu;60;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+30;services;single;high.school;no;yes;no;telephone;may;thu;97;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+60;entrepreneur;married;basic.4y;no;yes;no;telephone;may;thu;82;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+28;services;single;unknown;no;yes;no;telephone;may;thu;475;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+45;blue-collar;married;basic.4y;unknown;no;yes;telephone;may;thu;111;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+37;unemployed;married;professional.course;no;no;no;telephone;may;thu;140;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+37;unemployed;married;professional.course;no;no;yes;telephone;may;thu;110;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+36;services;married;basic.6y;no;yes;no;telephone;may;thu;64;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+49;blue-collar;married;basic.4y;no;yes;no;telephone;may;thu;149;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+35;services;married;professional.course;unknown;yes;no;telephone;may;thu;156;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+34;admin.;single;high.school;no;no;no;telephone;may;thu;63;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+31;blue-collar;married;basic.9y;no;no;no;telephone;may;thu;362;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+42;admin.;married;university.degree;unknown;yes;no;telephone;may;thu;712;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+39;blue-collar;married;basic.6y;no;yes;no;telephone;may;thu;338;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+33;services;married;university.degree;no;yes;no;telephone;may;thu;102;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+38;unemployed;married;high.school;no;no;yes;telephone;may;thu;446;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+30;admin.;divorced;university.degree;unknown;no;no;telephone;may;thu;249;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+31;blue-collar;divorced;professional.course;no;yes;no;telephone;may;thu;176;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+39;management;married;university.degree;no;no;no;telephone;may;thu;1007;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+37;blue-collar;married;unknown;unknown;yes;no;telephone;may;thu;266;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+48;blue-collar;married;basic.4y;unknown;no;no;telephone;may;thu;172;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+32;services;married;high.school;no;no;no;telephone;may;thu;175;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+48;blue-collar;married;basic.6y;no;yes;no;telephone;may;thu;211;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+37;technician;single;university.degree;no;yes;no;telephone;may;thu;237;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+37;technician;single;university.degree;no;no;no;telephone;may;thu;500;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+26;services;divorced;basic.6y;no;no;no;telephone;may;thu;186;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+33;management;married;high.school;unknown;no;no;telephone;may;thu;96;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+54;admin.;married;university.degree;no;yes;no;telephone;may;thu;98;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+37;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;thu;364;4;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+35;entrepreneur;married;university.degree;no;yes;yes;telephone;may;thu;477;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+45;admin.;married;university.degree;no;no;no;telephone;may;thu;319;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+33;services;single;high.school;no;yes;no;telephone;may;thu;789;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+54;admin.;married;university.degree;no;no;no;telephone;may;thu;513;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;yes
+37;blue-collar;married;basic.4y;no;no;yes;telephone;may;thu;280;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+35;blue-collar;married;basic.9y;unknown;no;no;telephone;may;thu;170;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+33;blue-collar;divorced;basic.6y;unknown;yes;no;telephone;may;thu;365;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+49;technician;married;professional.course;no;no;no;telephone;may;thu;63;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+43;technician;married;university.degree;no;yes;no;telephone;may;thu;159;4;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+43;entrepreneur;married;university.degree;no;no;no;telephone;may;thu;177;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+39;blue-collar;married;basic.6y;no;no;no;telephone;may;thu;108;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+47;blue-collar;married;basic.9y;no;yes;no;telephone;may;thu;194;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+30;services;divorced;high.school;no;no;no;telephone;may;thu;366;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+51;admin.;divorced;university.degree;no;yes;no;telephone;may;thu;213;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+59;blue-collar;married;basic.6y;no;yes;no;telephone;may;thu;166;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+31;blue-collar;married;basic.9y;no;yes;no;telephone;may;thu;141;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+39;unemployed;married;university.degree;no;yes;no;telephone;may;thu;168;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+43;blue-collar;married;basic.6y;unknown;no;no;telephone;may;thu;468;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+30;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;thu;180;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+37;blue-collar;married;professional.course;no;no;no;telephone;may;thu;195;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+42;blue-collar;married;basic.6y;no;no;no;telephone;may;thu;352;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+37;blue-collar;married;professional.course;no;yes;yes;telephone;may;thu;91;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+37;admin.;divorced;university.degree;no;yes;no;telephone;may;thu;93;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+37;blue-collar;single;basic.6y;unknown;yes;no;telephone;may;thu;288;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+36;management;single;basic.6y;no;no;no;telephone;may;thu;218;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+48;blue-collar;married;basic.9y;no;yes;yes;telephone;may;thu;289;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+43;services;married;high.school;no;no;no;telephone;may;thu;130;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+28;blue-collar;married;basic.6y;no;no;no;telephone;may;thu;208;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+30;admin.;divorced;high.school;no;yes;no;telephone;may;thu;177;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+60;entrepreneur;married;basic.4y;no;yes;no;telephone;may;thu;442;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+31;blue-collar;married;basic.9y;no;no;no;telephone;may;thu;101;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+38;entrepreneur;married;university.degree;no;no;no;telephone;may;thu;166;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+50;technician;married;high.school;no;yes;no;telephone;may;thu;756;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;yes
+36;blue-collar;married;basic.9y;no;yes;no;telephone;may;thu;342;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+50;unemployed;married;professional.course;no;no;no;telephone;may;thu;189;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+54;entrepreneur;married;basic.4y;unknown;no;yes;telephone;may;thu;108;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+33;management;married;university.degree;no;no;no;telephone;may;thu;178;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+20;entrepreneur;single;high.school;no;no;no;telephone;may;thu;238;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+24;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;thu;226;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+28;management;single;unknown;no;yes;no;telephone;may;thu;136;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+55;housemaid;married;basic.4y;no;yes;no;telephone;may;thu;14;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+25;blue-collar;married;high.school;no;no;no;telephone;may;thu;250;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+41;admin.;married;basic.9y;unknown;yes;no;telephone;may;thu;161;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+39;blue-collar;married;basic.6y;no;yes;no;telephone;may;thu;269;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+27;blue-collar;married;basic.9y;no;yes;no;telephone;may;thu;491;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+27;blue-collar;married;basic.9y;no;no;no;telephone;may;thu;44;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+34;blue-collar;married;basic.6y;unknown;yes;yes;telephone;may;thu;26;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+25;technician;single;professional.course;no;no;no;telephone;may;thu;22;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+48;management;married;university.degree;unknown;yes;no;telephone;may;thu;293;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+36;blue-collar;single;basic.6y;no;no;no;telephone;may;thu;989;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+36;blue-collar;married;basic.9y;no;no;no;telephone;may;thu;147;5;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+27;blue-collar;married;basic.9y;no;no;yes;telephone;may;thu;1170;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+45;management;married;university.degree;no;yes;yes;telephone;may;thu;807;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+28;blue-collar;married;basic.6y;unknown;yes;no;telephone;may;thu;347;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+30;technician;single;basic.6y;unknown;yes;no;telephone;may;thu;58;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+43;blue-collar;married;basic.4y;no;no;no;telephone;may;thu;534;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+32;admin.;single;high.school;no;unknown;unknown;telephone;may;thu;155;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+29;services;single;basic.9y;no;no;no;telephone;may;thu;159;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+35;blue-collar;married;basic.9y;no;no;no;telephone;may;thu;343;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+43;admin.;married;high.school;no;yes;no;telephone;may;thu;152;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+35;unknown;married;basic.9y;no;no;no;telephone;may;thu;461;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+36;admin.;married;high.school;no;yes;no;telephone;may;thu;389;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+36;admin.;married;high.school;no;no;no;telephone;may;thu;90;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+48;admin.;married;high.school;unknown;no;no;telephone;may;thu;314;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+38;blue-collar;single;basic.4y;unknown;no;no;telephone;may;thu;28;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+38;blue-collar;single;basic.9y;unknown;no;no;telephone;may;thu;30;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+45;admin.;married;high.school;no;yes;no;telephone;may;thu;103;4;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+35;technician;married;professional.course;no;no;yes;telephone;may;thu;32;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+42;services;married;high.school;unknown;no;yes;telephone;may;thu;252;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+56;blue-collar;married;basic.4y;unknown;no;no;telephone;may;thu;20;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+30;technician;married;professional.course;no;no;no;telephone;may;thu;369;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+45;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;thu;116;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+39;services;single;high.school;unknown;no;no;telephone;may;thu;302;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+36;blue-collar;married;basic.6y;unknown;no;no;telephone;may;thu;31;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+32;admin.;married;university.degree;unknown;no;yes;telephone;may;thu;190;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+29;admin.;single;high.school;no;no;no;telephone;may;thu;149;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+34;blue-collar;married;basic.9y;no;no;no;telephone;may;thu;210;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+36;self-employed;single;basic.6y;no;no;no;telephone;may;thu;180;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+33;management;married;high.school;unknown;no;no;telephone;may;thu;234;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+43;unemployed;married;basic.4y;no;no;no;telephone;may;thu;92;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+31;services;married;basic.6y;no;no;no;telephone;may;thu;2087;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;yes
+35;blue-collar;married;basic.6y;no;no;no;telephone;may;thu;102;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+42;admin.;married;university.degree;no;no;no;telephone;may;thu;193;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+35;blue-collar;married;basic.6y;no;no;no;telephone;may;thu;245;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+44;blue-collar;married;basic.4y;unknown;no;no;telephone;may;thu;190;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+36;technician;divorced;professional.course;no;yes;no;telephone;may;thu;223;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+47;admin.;married;university.degree;no;no;no;telephone;may;thu;42;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+59;technician;married;professional.course;unknown;no;no;telephone;may;thu;206;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+29;blue-collar;single;high.school;unknown;unknown;unknown;telephone;may;thu;242;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+30;services;single;high.school;no;no;no;telephone;may;thu;66;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+38;blue-collar;married;basic.9y;unknown;no;no;telephone;may;thu;173;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+45;management;single;university.degree;no;no;no;telephone;may;thu;477;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+28;self-employed;single;university.degree;no;no;no;telephone;may;thu;77;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+37;blue-collar;married;basic.4y;no;no;no;telephone;may;thu;219;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+38;entrepreneur;married;basic.6y;no;yes;yes;telephone;may;thu;205;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+28;admin.;single;basic.9y;no;yes;yes;telephone;may;thu;376;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+31;technician;divorced;professional.course;no;yes;yes;telephone;may;thu;453;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+37;blue-collar;married;basic.4y;no;yes;no;telephone;may;thu;151;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+36;housemaid;divorced;university.degree;no;no;no;telephone;may;thu;767;5;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+54;housemaid;married;basic.9y;no;yes;no;telephone;may;thu;200;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+53;retired;married;basic.6y;unknown;no;yes;telephone;may;thu;298;5;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+43;unemployed;married;basic.9y;no;yes;no;telephone;may;thu;305;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+49;admin.;married;high.school;no;no;yes;telephone;may;thu;627;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+32;self-employed;divorced;professional.course;no;no;no;telephone;may;thu;242;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+36;services;married;high.school;no;yes;no;telephone;may;thu;287;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+50;blue-collar;single;basic.9y;unknown;yes;yes;telephone;may;thu;184;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+51;blue-collar;divorced;basic.9y;no;no;no;telephone;may;thu;119;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+38;blue-collar;married;basic.4y;no;yes;no;telephone;may;thu;403;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+44;self-employed;married;professional.course;no;no;no;telephone;may;thu;626;6;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+29;blue-collar;married;high.school;no;no;no;telephone;may;thu;12;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+46;blue-collar;divorced;basic.6y;no;no;no;telephone;may;thu;266;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+32;unemployed;divorced;basic.4y;no;unknown;unknown;telephone;may;thu;23;4;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+43;blue-collar;divorced;basic.4y;unknown;no;no;telephone;may;thu;154;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+53;admin.;married;university.degree;no;no;no;telephone;may;thu;10;7;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+43;blue-collar;married;basic.6y;unknown;no;no;telephone;may;thu;301;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+35;services;single;basic.4y;no;no;yes;telephone;may;thu;240;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+49;admin.;divorced;basic.9y;no;yes;no;telephone;may;thu;312;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+35;blue-collar;married;basic.6y;unknown;yes;no;telephone;may;thu;224;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+40;services;single;professional.course;no;no;no;telephone;may;thu;202;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+29;services;divorced;high.school;no;no;no;telephone;may;thu;144;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+43;blue-collar;married;basic.4y;unknown;no;no;telephone;may;thu;263;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+47;blue-collar;married;basic.6y;no;no;no;telephone;may;thu;543;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+38;technician;married;university.degree;unknown;no;no;telephone;may;thu;257;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+48;technician;married;professional.course;no;yes;no;telephone;may;thu;237;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+53;retired;married;high.school;unknown;yes;no;telephone;may;thu;23;5;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+53;management;married;university.degree;no;yes;no;telephone;may;thu;209;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+51;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;thu;1178;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;yes
+35;services;married;basic.9y;no;yes;yes;telephone;may;thu;442;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+31;entrepreneur;divorced;high.school;no;yes;no;telephone;may;thu;1120;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;yes
+46;entrepreneur;married;basic.4y;no;no;no;telephone;may;thu;186;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+28;blue-collar;married;basic.6y;unknown;yes;yes;telephone;may;thu;318;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+38;admin.;married;basic.9y;unknown;yes;no;telephone;may;thu;617;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+28;self-employed;single;university.degree;no;yes;no;telephone;may;thu;226;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+50;technician;married;professional.course;no;yes;no;telephone;may;thu;275;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+32;management;single;university.degree;no;no;no;telephone;may;thu;81;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+31;blue-collar;divorced;basic.4y;no;yes;no;telephone;may;thu;74;7;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+39;blue-collar;married;basic.9y;unknown;no;no;telephone;may;thu;285;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+41;blue-collar;married;basic.9y;no;no;yes;telephone;may;thu;261;5;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+31;admin.;married;high.school;no;yes;yes;telephone;may;thu;151;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+54;blue-collar;married;basic.9y;unknown;no;yes;telephone;may;thu;422;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+34;blue-collar;married;basic.6y;unknown;no;yes;telephone;may;thu;159;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+51;services;married;high.school;unknown;yes;no;telephone;may;thu;102;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+45;blue-collar;single;basic.9y;no;no;no;telephone;may;thu;78;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+32;admin.;divorced;high.school;no;no;yes;telephone;may;thu;15;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+28;student;married;university.degree;no;no;yes;telephone;may;thu;352;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+40;management;married;university.degree;no;yes;no;telephone;may;thu;345;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+55;admin.;divorced;university.degree;no;yes;no;telephone;may;thu;230;4;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+41;self-employed;single;university.degree;no;no;no;telephone;may;thu;296;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+57;services;divorced;high.school;unknown;no;yes;telephone;may;thu;185;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+44;entrepreneur;married;high.school;no;yes;no;telephone;may;thu;181;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+29;blue-collar;single;high.school;unknown;yes;no;telephone;may;thu;133;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+38;admin.;single;university.degree;no;no;no;telephone;may;thu;335;9;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+34;blue-collar;married;basic.4y;no;yes;no;telephone;may;thu;139;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+36;technician;single;university.degree;no;yes;no;telephone;may;thu;163;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+39;services;divorced;high.school;no;yes;no;telephone;may;thu;956;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+30;blue-collar;married;basic.9y;no;yes;yes;telephone;may;thu;166;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+35;services;married;basic.9y;no;no;no;telephone;may;thu;95;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+60;entrepreneur;married;basic.4y;no;no;no;telephone;may;thu;71;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+35;blue-collar;married;basic.9y;no;yes;no;telephone;may;thu;191;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+38;self-employed;single;university.degree;no;no;no;telephone;may;thu;459;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+57;blue-collar;divorced;professional.course;no;no;no;telephone;may;thu;100;5;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+44;technician;divorced;unknown;no;no;yes;telephone;may;thu;233;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+40;entrepreneur;married;basic.9y;no;yes;no;telephone;may;thu;255;6;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+46;technician;divorced;basic.9y;no;yes;no;telephone;may;thu;128;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+50;technician;married;professional.course;unknown;yes;no;telephone;may;thu;56;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+45;management;married;university.degree;no;yes;no;telephone;may;thu;4;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+57;services;married;basic.6y;no;no;no;telephone;may;thu;43;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+35;admin.;single;basic.6y;no;yes;no;telephone;may;thu;210;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+38;blue-collar;married;basic.6y;no;no;no;telephone;may;thu;21;9;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+30;services;divorced;high.school;no;yes;no;telephone;may;thu;67;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+25;services;divorced;high.school;no;no;no;telephone;may;thu;219;4;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+52;self-employed;single;university.degree;unknown;yes;no;telephone;may;thu;169;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+37;technician;single;university.degree;no;yes;no;telephone;may;thu;248;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+60;retired;divorced;high.school;no;yes;no;telephone;may;thu;223;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+42;blue-collar;married;basic.4y;unknown;no;no;telephone;may;thu;92;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+37;blue-collar;married;professional.course;no;yes;no;telephone;may;thu;112;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+43;services;married;high.school;no;no;no;telephone;may;thu;205;4;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+33;services;unknown;high.school;no;yes;yes;telephone;may;thu;155;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+32;technician;married;professional.course;no;yes;yes;telephone;may;thu;105;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+41;technician;married;professional.course;no;no;no;telephone;may;thu;112;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+37;blue-collar;married;basic.6y;unknown;no;no;telephone;may;thu;383;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+39;blue-collar;married;basic.9y;unknown;no;no;telephone;may;thu;193;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+36;services;married;high.school;no;no;yes;telephone;may;thu;207;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+38;blue-collar;married;basic.6y;unknown;no;no;telephone;may;thu;132;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+33;admin.;married;high.school;no;yes;yes;telephone;may;thu;10;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+41;services;divorced;high.school;no;yes;no;telephone;may;thu;985;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;yes
+58;services;married;basic.4y;no;no;no;telephone;may;thu;249;5;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+44;blue-collar;single;basic.9y;unknown;no;no;telephone;may;thu;122;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+36;blue-collar;married;basic.9y;unknown;no;no;telephone;may;thu;300;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+33;admin.;married;high.school;no;yes;no;telephone;may;thu;672;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+30;technician;married;professional.course;no;no;no;telephone;may;thu;390;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+44;blue-collar;married;basic.9y;unknown;no;no;telephone;may;thu;116;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+32;admin.;married;high.school;no;yes;yes;telephone;may;thu;21;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+38;admin.;married;basic.9y;unknown;no;no;telephone;may;thu;192;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+41;blue-collar;married;professional.course;unknown;yes;no;telephone;may;thu;8;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+40;services;married;basic.9y;unknown;no;no;telephone;may;thu;13;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+33;blue-collar;married;basic.6y;unknown;yes;yes;telephone;may;thu;369;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+28;admin.;single;university.degree;no;yes;no;telephone;may;thu;393;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+46;blue-collar;married;basic.4y;no;no;no;telephone;may;thu;246;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+35;technician;married;university.degree;no;yes;no;telephone;may;thu;330;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+40;admin.;married;university.degree;unknown;yes;yes;telephone;may;thu;91;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+36;services;married;high.school;no;yes;no;telephone;may;thu;84;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+38;management;married;university.degree;unknown;no;no;telephone;may;thu;277;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+36;services;married;high.school;no;yes;no;telephone;may;thu;399;4;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+40;admin.;married;high.school;unknown;yes;no;telephone;may;thu;89;4;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+31;services;married;basic.9y;no;yes;no;telephone;may;thu;297;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+47;technician;married;professional.course;no;yes;no;telephone;may;thu;111;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+35;technician;single;professional.course;no;yes;no;telephone;may;thu;170;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+29;admin.;single;university.degree;no;no;no;telephone;may;thu;141;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+29;blue-collar;single;high.school;no;yes;yes;telephone;may;thu;886;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+35;self-employed;married;university.degree;no;no;yes;telephone;may;thu;49;4;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+33;services;single;basic.6y;unknown;no;no;telephone;may;thu;89;7;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+41;management;divorced;university.degree;unknown;yes;yes;telephone;may;thu;341;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+54;admin.;married;university.degree;no;yes;no;telephone;may;thu;461;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+31;admin.;single;university.degree;no;no;yes;telephone;may;thu;515;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+55;technician;married;university.degree;no;yes;no;telephone;may;thu;123;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+38;admin.;married;high.school;no;no;no;telephone;may;thu;179;5;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+41;services;married;high.school;no;no;yes;telephone;may;thu;102;4;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+49;unemployed;married;university.degree;no;yes;yes;telephone;may;thu;272;4;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+39;services;married;high.school;no;yes;no;telephone;may;thu;17;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+34;blue-collar;divorced;professional.course;no;no;yes;telephone;may;thu;291;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+39;services;divorced;high.school;no;yes;no;telephone;may;thu;209;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+37;services;married;high.school;no;no;no;telephone;may;thu;1187;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+45;blue-collar;married;high.school;no;yes;no;telephone;may;thu;89;5;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+49;admin.;married;university.degree;no;yes;yes;telephone;may;thu;123;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+43;blue-collar;married;basic.4y;unknown;no;no;telephone;may;thu;200;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+40;management;married;high.school;no;no;no;telephone;may;thu;104;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+42;admin.;married;university.degree;no;yes;no;telephone;may;thu;117;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+47;services;single;high.school;no;no;no;telephone;may;thu;37;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+56;entrepreneur;married;university.degree;no;yes;no;telephone;may;thu;51;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+43;management;married;university.degree;no;no;no;telephone;may;thu;627;4;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+34;blue-collar;married;basic.9y;no;no;no;telephone;may;thu;466;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+29;admin.;divorced;university.degree;no;no;no;telephone;may;thu;101;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+53;entrepreneur;married;university.degree;no;yes;no;telephone;may;thu;303;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+50;entrepreneur;married;basic.9y;no;yes;no;telephone;may;thu;283;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+51;self-employed;married;university.degree;unknown;no;no;telephone;may;thu;826;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+20;entrepreneur;single;high.school;no;no;no;telephone;may;thu;598;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+41;blue-collar;married;professional.course;unknown;yes;no;telephone;may;thu;120;5;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+47;blue-collar;married;basic.9y;no;yes;no;telephone;may;thu;185;7;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+48;technician;married;professional.course;no;yes;no;telephone;may;thu;220;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+29;entrepreneur;married;university.degree;no;yes;no;telephone;may;thu;423;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+28;technician;single;professional.course;no;yes;yes;telephone;may;thu;337;4;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+31;blue-collar;single;professional.course;no;no;no;telephone;may;thu;99;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+29;blue-collar;single;basic.6y;no;no;no;telephone;may;thu;27;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+42;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;thu;160;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+40;blue-collar;single;basic.6y;unknown;no;no;telephone;may;thu;201;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+33;management;married;university.degree;no;no;no;telephone;may;thu;166;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+33;services;single;professional.course;no;no;no;telephone;may;thu;182;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+34;management;divorced;basic.6y;unknown;yes;no;telephone;may;thu;271;5;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+36;admin.;married;high.school;no;yes;no;telephone;may;thu;103;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+35;admin.;married;university.degree;no;yes;no;telephone;may;thu;379;4;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+38;technician;divorced;professional.course;no;yes;no;telephone;may;thu;287;4;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+31;blue-collar;single;basic.9y;no;no;no;telephone;may;thu;732;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+30;blue-collar;married;basic.6y;no;no;no;telephone;may;thu;126;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+42;admin.;single;university.degree;no;no;no;telephone;may;thu;172;4;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+27;technician;single;high.school;no;yes;no;telephone;may;thu;43;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+39;retired;single;high.school;no;no;no;telephone;may;thu;109;4;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+38;admin.;married;high.school;no;yes;no;telephone;may;thu;191;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+30;management;married;university.degree;no;yes;no;telephone;may;thu;117;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+52;housemaid;married;university.degree;no;yes;no;telephone;may;thu;64;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+38;admin.;married;high.school;no;yes;no;telephone;may;thu;260;5;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+54;technician;married;basic.9y;no;no;no;telephone;may;thu;207;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+29;admin.;single;university.degree;no;yes;no;telephone;may;thu;128;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+32;blue-collar;married;basic.9y;unknown;no;no;telephone;may;fri;180;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+28;admin.;married;high.school;no;no;no;telephone;may;fri;144;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+30;admin.;married;high.school;no;yes;no;telephone;may;fri;110;4;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+44;technician;married;professional.course;unknown;no;yes;telephone;may;fri;203;4;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+37;blue-collar;married;basic.4y;no;no;no;telephone;may;fri;85;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+48;admin.;married;professional.course;unknown;yes;no;telephone;may;fri;211;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+25;blue-collar;married;professional.course;unknown;no;no;telephone;may;fri;94;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+49;blue-collar;married;basic.4y;unknown;no;no;telephone;may;fri;122;4;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+60;technician;married;university.degree;unknown;yes;no;telephone;may;fri;175;5;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+29;admin.;single;high.school;no;no;no;telephone;may;fri;132;5;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+55;technician;married;basic.9y;unknown;unknown;unknown;telephone;may;fri;130;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+41;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;fri;208;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+39;services;single;high.school;no;no;no;telephone;may;fri;346;4;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+39;management;married;high.school;no;no;no;telephone;may;fri;205;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+31;admin.;married;university.degree;no;yes;no;telephone;may;fri;218;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+38;services;married;high.school;no;no;no;telephone;may;fri;62;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+32;technician;married;university.degree;no;yes;no;telephone;may;fri;93;5;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+53;housemaid;divorced;basic.6y;unknown;unknown;unknown;telephone;may;fri;85;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+37;admin.;married;high.school;no;unknown;unknown;telephone;may;fri;97;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+34;self-employed;married;professional.course;no;unknown;unknown;telephone;may;fri;252;4;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+31;admin.;married;high.school;no;yes;yes;telephone;may;fri;286;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+39;unemployed;married;high.school;no;no;no;telephone;may;fri;241;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+39;unemployed;married;high.school;no;yes;no;telephone;may;fri;283;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+39;unemployed;married;high.school;no;yes;no;telephone;may;fri;380;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+37;admin.;married;high.school;no;yes;no;telephone;may;fri;584;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+30;blue-collar;married;basic.4y;no;no;no;telephone;may;fri;371;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+32;blue-collar;married;professional.course;no;no;no;telephone;may;fri;274;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+37;technician;married;basic.9y;no;no;no;telephone;may;fri;71;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+27;blue-collar;married;university.degree;no;no;yes;telephone;may;fri;357;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+32;unknown;unknown;university.degree;no;no;no;telephone;may;fri;617;4;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;yes
+33;blue-collar;single;basic.9y;no;yes;no;telephone;may;fri;215;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+47;blue-collar;single;basic.4y;no;no;no;telephone;may;fri;131;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+40;blue-collar;married;basic.9y;unknown;no;no;telephone;may;fri;188;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+38;blue-collar;married;basic.4y;unknown;yes;yes;telephone;may;fri;383;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+33;services;married;high.school;unknown;no;no;telephone;may;fri;483;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;yes
+54;admin.;married;university.degree;no;no;no;telephone;may;fri;847;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+51;services;married;high.school;no;yes;no;telephone;may;fri;57;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+41;blue-collar;single;basic.9y;no;yes;no;telephone;may;fri;306;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+51;blue-collar;married;high.school;no;no;no;telephone;may;fri;147;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+55;services;married;high.school;no;yes;no;telephone;may;fri;244;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+39;admin.;single;high.school;no;yes;no;telephone;may;fri;59;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+37;self-employed;married;basic.9y;no;yes;yes;telephone;may;fri;24;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+39;blue-collar;married;basic.9y;no;yes;no;telephone;may;fri;85;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+33;management;married;university.degree;no;no;yes;telephone;may;fri;70;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+33;management;married;university.degree;no;no;no;telephone;may;fri;21;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+59;management;married;university.degree;no;no;no;telephone;may;fri;659;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+55;technician;married;basic.9y;unknown;yes;no;telephone;may;fri;327;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+53;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;fri;267;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+36;services;married;basic.6y;no;no;no;telephone;may;fri;296;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+40;services;married;high.school;no;no;no;telephone;may;fri;307;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+37;technician;single;professional.course;no;no;no;telephone;may;fri;120;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+56;housemaid;divorced;high.school;no;no;no;telephone;may;fri;390;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+32;admin.;married;high.school;no;yes;no;telephone;may;fri;83;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+38;management;married;basic.9y;unknown;no;no;telephone;may;fri;772;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;yes
+28;services;married;high.school;unknown;no;no;telephone;may;fri;143;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+30;blue-collar;married;basic.9y;no;yes;no;telephone;may;fri;198;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+45;management;married;basic.4y;unknown;yes;no;telephone;may;fri;100;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+60;housemaid;married;high.school;unknown;no;no;telephone;may;fri;929;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;yes
+32;student;single;university.degree;no;no;no;telephone;may;fri;21;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+39;unemployed;single;basic.9y;unknown;yes;no;telephone;may;fri;254;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+56;services;married;basic.4y;unknown;yes;yes;telephone;may;fri;166;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+31;blue-collar;married;basic.9y;no;no;no;telephone;may;fri;93;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+20;entrepreneur;single;high.school;no;no;no;telephone;may;fri;217;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+42;blue-collar;married;basic.6y;no;no;no;telephone;may;fri;134;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+46;admin.;married;university.degree;no;yes;yes;telephone;may;fri;375;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+28;technician;single;university.degree;unknown;no;no;telephone;may;fri;352;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+41;admin.;single;university.degree;no;no;no;telephone;may;fri;45;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+33;admin.;divorced;basic.9y;no;no;no;telephone;may;fri;93;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+43;admin.;married;university.degree;unknown;yes;no;telephone;may;fri;165;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+43;admin.;married;university.degree;unknown;no;no;telephone;may;fri;266;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+47;unemployed;married;high.school;unknown;yes;no;telephone;may;fri;237;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+24;technician;single;professional.course;no;no;no;telephone;may;fri;410;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+31;blue-collar;married;basic.4y;no;no;no;telephone;may;fri;157;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+25;services;divorced;high.school;no;no;no;telephone;may;fri;72;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+35;blue-collar;married;basic.6y;no;unknown;unknown;telephone;may;fri;171;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+58;blue-collar;married;basic.4y;unknown;no;no;telephone;may;fri;70;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+35;blue-collar;married;professional.course;no;yes;yes;telephone;may;fri;710;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;yes
+35;blue-collar;married;basic.9y;no;no;no;telephone;may;fri;131;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+25;admin.;married;high.school;no;no;no;telephone;may;fri;498;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+31;blue-collar;married;basic.4y;no;no;no;telephone;may;fri;514;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+39;admin.;married;basic.9y;no;no;no;telephone;may;fri;127;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+39;blue-collar;married;basic.6y;unknown;yes;yes;telephone;may;fri;162;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+37;blue-collar;married;basic.9y;no;yes;yes;telephone;may;fri;198;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+36;unemployed;divorced;professional.course;unknown;yes;no;telephone;may;fri;705;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+45;unemployed;married;high.school;unknown;yes;no;telephone;may;fri;239;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+30;blue-collar;married;basic.9y;no;yes;yes;telephone;may;fri;117;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+60;retired;married;high.school;no;no;no;telephone;may;fri;155;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+37;admin.;divorced;university.degree;no;no;no;telephone;may;fri;18;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+28;services;single;high.school;no;yes;yes;telephone;may;fri;386;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+45;admin.;married;basic.9y;unknown;yes;no;telephone;may;fri;138;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+31;entrepreneur;single;basic.9y;no;no;no;telephone;may;fri;341;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+49;unemployed;single;professional.course;unknown;no;no;telephone;may;fri;339;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+46;unknown;married;basic.4y;unknown;no;no;telephone;may;fri;232;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+36;services;divorced;university.degree;no;no;no;telephone;may;fri;208;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+33;technician;divorced;professional.course;no;yes;no;telephone;may;fri;44;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+27;services;single;high.school;unknown;no;no;telephone;may;fri;75;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+60;retired;married;university.degree;unknown;no;no;telephone;may;fri;485;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+60;retired;married;university.degree;unknown;yes;no;telephone;may;fri;576;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+27;services;single;high.school;unknown;no;no;telephone;may;fri;280;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+39;blue-collar;married;high.school;no;yes;no;telephone;may;fri;480;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+39;services;married;high.school;no;yes;no;telephone;may;fri;86;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+35;unknown;single;basic.4y;unknown;no;no;telephone;may;fri;121;4;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+56;admin.;single;high.school;no;no;no;telephone;may;fri;93;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+39;admin.;married;university.degree;no;yes;no;telephone;may;fri;238;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+35;entrepreneur;married;basic.9y;no;no;no;telephone;may;fri;399;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+35;technician;divorced;high.school;no;no;no;telephone;may;fri;93;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+58;management;married;unknown;unknown;yes;no;telephone;may;fri;106;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+29;management;single;university.degree;no;yes;no;telephone;may;fri;123;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+32;blue-collar;married;high.school;no;no;yes;telephone;may;fri;92;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+35;management;married;university.degree;no;yes;yes;telephone;may;fri;219;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+26;admin.;married;high.school;no;yes;yes;telephone;may;fri;2462;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+31;technician;married;professional.course;no;no;no;telephone;may;fri;114;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+33;blue-collar;married;basic.6y;unknown;yes;yes;telephone;may;fri;1132;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;yes
+39;blue-collar;divorced;basic.9y;no;yes;no;telephone;may;fri;249;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+49;blue-collar;married;basic.6y;unknown;yes;no;telephone;may;fri;210;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+31;admin.;married;high.school;no;no;no;telephone;may;fri;187;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+31;admin.;married;high.school;unknown;no;no;telephone;may;fri;172;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+49;blue-collar;married;basic.4y;no;no;no;telephone;may;fri;122;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+49;blue-collar;married;basic.4y;no;no;no;telephone;may;fri;207;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+31;entrepreneur;married;basic.9y;unknown;no;no;telephone;may;fri;136;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+36;management;married;basic.9y;no;no;no;telephone;may;fri;117;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+52;management;married;professional.course;no;no;no;telephone;may;fri;393;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+37;blue-collar;single;unknown;unknown;no;no;telephone;may;fri;107;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+40;blue-collar;divorced;basic.9y;no;no;no;telephone;may;fri;25;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+36;blue-collar;single;basic.4y;no;no;no;telephone;may;fri;136;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+34;technician;single;professional.course;unknown;no;no;telephone;may;fri;384;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+39;management;single;university.degree;no;no;no;telephone;may;fri;38;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+39;management;single;university.degree;no;no;no;telephone;may;fri;164;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+58;retired;divorced;university.degree;no;yes;no;telephone;may;fri;825;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+56;services;married;high.school;unknown;no;no;telephone;may;fri;331;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+29;blue-collar;single;basic.9y;no;no;no;telephone;may;fri;479;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+39;admin.;married;high.school;no;no;no;telephone;may;fri;229;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+31;technician;married;professional.course;no;no;no;telephone;may;fri;258;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+60;management;married;university.degree;unknown;no;no;telephone;may;fri;490;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+39;blue-collar;married;basic.6y;no;yes;no;telephone;may;fri;308;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+49;admin.;divorced;high.school;no;yes;no;telephone;may;fri;137;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+45;unemployed;married;high.school;unknown;no;no;telephone;may;fri;545;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+32;blue-collar;married;high.school;unknown;yes;no;telephone;may;fri;109;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+41;technician;married;high.school;no;no;no;telephone;may;fri;257;6;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+32;services;married;high.school;no;no;no;telephone;may;fri;213;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+46;services;married;professional.course;no;no;no;telephone;may;fri;115;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+28;services;single;basic.9y;unknown;no;no;telephone;may;fri;646;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+51;blue-collar;married;basic.9y;no;no;no;telephone;may;fri;202;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+50;services;single;high.school;no;no;no;telephone;may;fri;106;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+35;admin.;married;professional.course;no;yes;yes;telephone;may;fri;95;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+24;services;single;high.school;no;yes;no;telephone;may;fri;64;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+51;blue-collar;married;basic.9y;no;no;yes;telephone;may;fri;653;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;yes
+59;admin.;married;university.degree;no;no;yes;telephone;may;fri;186;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+33;technician;married;professional.course;no;no;no;telephone;may;fri;205;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+36;unemployed;single;basic.4y;unknown;no;no;telephone;may;fri;122;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+24;services;single;high.school;no;no;no;telephone;may;fri;377;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+30;blue-collar;single;basic.9y;no;yes;no;telephone;may;fri;322;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+49;admin.;married;university.degree;unknown;no;no;telephone;may;fri;208;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+38;technician;married;professional.course;no;yes;no;telephone;may;fri;46;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+34;admin.;married;university.degree;no;yes;no;telephone;may;fri;211;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+25;technician;single;professional.course;no;yes;yes;telephone;may;fri;156;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+35;unemployed;married;basic.9y;unknown;no;no;telephone;may;fri;471;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+43;entrepreneur;married;high.school;unknown;yes;no;telephone;may;fri;206;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+36;unemployed;single;basic.4y;unknown;no;no;telephone;may;fri;544;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+36;unemployed;single;basic.4y;unknown;no;no;telephone;may;fri;143;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+37;technician;married;professional.course;unknown;yes;no;telephone;may;fri;200;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+36;self-employed;married;university.degree;no;no;no;telephone;may;fri;71;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+32;admin.;divorced;high.school;no;yes;no;telephone;may;fri;324;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+33;blue-collar;single;high.school;no;no;no;telephone;may;fri;164;5;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+42;services;married;high.school;no;no;no;telephone;may;fri;137;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+37;admin.;married;high.school;no;yes;yes;telephone;may;fri;87;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+35;admin.;married;high.school;no;no;no;telephone;may;fri;91;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+50;admin.;married;high.school;unknown;yes;yes;telephone;may;fri;280;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+48;admin.;married;high.school;no;yes;yes;telephone;may;fri;230;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+50;management;single;university.degree;no;yes;yes;telephone;may;fri;63;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+39;technician;divorced;professional.course;no;yes;no;telephone;may;fri;135;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+33;management;single;university.degree;no;no;no;telephone;may;fri;261;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+29;admin.;married;high.school;no;no;no;telephone;may;fri;215;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+33;admin.;married;high.school;no;yes;no;telephone;may;fri;125;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+41;admin.;single;university.degree;no;yes;no;telephone;may;fri;391;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+46;blue-collar;married;basic.4y;no;yes;no;telephone;may;fri;107;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+27;services;single;high.school;unknown;no;no;telephone;may;fri;108;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+42;admin.;single;basic.9y;no;no;no;telephone;may;fri;145;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+44;admin.;married;high.school;no;yes;no;telephone;may;fri;142;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+37;housemaid;married;high.school;unknown;no;yes;telephone;may;fri;106;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+24;services;single;high.school;no;no;yes;telephone;may;fri;134;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+30;blue-collar;married;basic.6y;unknown;yes;no;telephone;may;fri;190;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+53;management;married;basic.4y;no;yes;no;telephone;may;fri;241;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+36;entrepreneur;married;university.degree;no;no;yes;telephone;may;fri;180;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+24;services;single;high.school;no;yes;no;telephone;may;fri;654;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;yes
+49;entrepreneur;married;high.school;no;no;no;telephone;may;fri;189;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+41;blue-collar;married;high.school;no;yes;no;telephone;may;fri;70;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+40;admin.;married;high.school;no;yes;yes;telephone;may;fri;1087;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+40;housemaid;married;basic.4y;no;yes;yes;telephone;may;fri;62;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+49;entrepreneur;married;high.school;no;no;no;telephone;may;fri;323;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+25;admin.;single;high.school;no;yes;no;telephone;may;fri;111;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+34;management;married;university.degree;no;yes;no;telephone;may;fri;197;4;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+34;technician;married;professional.course;no;yes;yes;telephone;may;fri;224;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+28;blue-collar;single;basic.6y;no;no;no;telephone;may;fri;557;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+39;admin.;married;basic.9y;no;yes;no;telephone;may;fri;150;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+34;technician;married;professional.course;no;no;yes;telephone;may;fri;388;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+36;technician;married;professional.course;no;no;no;telephone;may;fri;194;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+60;technician;divorced;professional.course;unknown;yes;no;telephone;may;fri;57;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+32;retired;married;high.school;no;no;no;telephone;may;fri;209;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+40;housemaid;divorced;high.school;no;no;no;telephone;may;fri;188;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+56;blue-collar;married;basic.6y;unknown;no;no;telephone;may;fri;342;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+36;technician;married;professional.course;no;yes;no;telephone;may;fri;84;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+27;entrepreneur;married;university.degree;no;no;no;telephone;may;fri;530;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+33;blue-collar;single;basic.9y;unknown;yes;yes;telephone;may;fri;97;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+36;technician;married;professional.course;no;no;yes;telephone;may;fri;365;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+47;blue-collar;married;basic.4y;no;no;no;telephone;may;fri;285;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+47;blue-collar;married;basic.4y;no;yes;no;telephone;may;fri;352;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+40;unemployed;married;basic.9y;no;yes;yes;telephone;may;fri;316;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+30;blue-collar;married;basic.9y;no;yes;no;telephone;may;fri;79;4;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+37;housemaid;married;basic.4y;unknown;yes;yes;telephone;may;fri;331;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+39;technician;married;professional.course;no;no;no;telephone;may;fri;126;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+58;blue-collar;married;basic.9y;no;no;no;telephone;may;fri;76;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+32;admin.;married;university.degree;no;no;yes;telephone;may;fri;1692;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;yes
+34;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;fri;24;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+43;blue-collar;married;basic.4y;unknown;no;no;telephone;may;fri;73;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+30;technician;married;professional.course;no;yes;no;telephone;may;fri;253;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+52;admin.;married;university.degree;no;no;no;telephone;may;fri;622;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+46;blue-collar;divorced;basic.9y;no;yes;no;telephone;may;fri;133;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+32;admin.;single;university.degree;no;yes;yes;telephone;may;fri;178;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+53;self-employed;married;university.degree;no;no;no;telephone;may;fri;404;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+45;blue-collar;married;basic.9y;unknown;no;no;telephone;may;fri;275;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+31;blue-collar;married;basic.9y;no;no;no;telephone;may;fri;109;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+51;technician;married;professional.course;no;no;no;telephone;may;fri;134;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+45;admin.;married;high.school;no;no;yes;telephone;may;fri;225;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+32;admin.;married;high.school;no;no;no;telephone;may;fri;129;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+43;admin.;married;high.school;no;yes;no;telephone;may;fri;93;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+34;admin.;married;high.school;no;yes;yes;telephone;may;fri;20;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+25;blue-collar;single;basic.4y;no;yes;no;telephone;may;fri;247;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+41;management;married;unknown;no;yes;no;telephone;may;fri;129;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+25;blue-collar;single;basic.4y;no;no;no;telephone;may;fri;324;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+43;admin.;married;university.degree;unknown;yes;no;telephone;may;fri;2016;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;yes
+34;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;fri;1054;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+44;admin.;married;basic.9y;no;no;no;telephone;may;fri;163;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+59;admin.;married;university.degree;no;no;no;telephone;may;fri;279;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+39;technician;divorced;professional.course;no;no;no;telephone;may;fri;251;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+52;management;married;high.school;unknown;yes;no;telephone;may;fri;113;4;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+50;blue-collar;married;basic.4y;unknown;unknown;unknown;telephone;may;fri;193;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+42;admin.;divorced;university.degree;no;yes;no;telephone;may;fri;125;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+30;technician;married;university.degree;no;no;no;telephone;may;fri;282;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+49;services;married;high.school;no;yes;no;telephone;may;fri;344;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+44;blue-collar;single;basic.6y;unknown;yes;no;telephone;may;fri;665;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;yes
+41;technician;married;university.degree;no;yes;no;telephone;may;fri;67;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+27;services;single;high.school;no;yes;no;telephone;may;fri;167;4;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+32;admin.;single;university.degree;no;yes;no;telephone;may;fri;395;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+27;admin.;single;high.school;no;yes;no;telephone;may;fri;137;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+29;management;single;university.degree;no;no;no;telephone;may;fri;118;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+53;admin.;married;university.degree;unknown;yes;no;telephone;may;fri;231;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+30;blue-collar;single;basic.9y;no;yes;no;telephone;may;fri;128;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+29;management;single;university.degree;no;yes;no;telephone;may;fri;174;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+32;technician;single;university.degree;no;no;no;telephone;may;fri;195;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+55;admin.;divorced;university.degree;no;yes;no;telephone;may;fri;412;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+39;admin.;married;university.degree;no;yes;no;telephone;may;fri;127;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+37;blue-collar;single;high.school;no;no;no;telephone;may;fri;79;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+26;admin.;married;university.degree;no;yes;yes;telephone;may;fri;13;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+52;self-employed;married;university.degree;no;no;no;telephone;may;fri;61;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+28;admin.;single;university.degree;no;yes;no;telephone;may;fri;286;5;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+33;management;single;university.degree;no;yes;yes;telephone;may;fri;274;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+60;management;married;university.degree;unknown;no;no;telephone;may;fri;409;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+45;blue-collar;married;basic.4y;unknown;yes;yes;telephone;may;fri;325;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+32;admin.;single;university.degree;no;yes;yes;telephone;may;fri;144;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+50;unemployed;married;basic.9y;no;yes;no;telephone;may;fri;1713;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+47;management;divorced;basic.4y;no;no;no;telephone;may;fri;241;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+40;technician;married;university.degree;no;no;no;telephone;may;fri;338;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+45;services;married;high.school;no;no;no;telephone;may;fri;182;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+52;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;fri;346;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+43;management;married;unknown;no;no;no;telephone;may;fri;204;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+40;blue-collar;married;basic.6y;unknown;yes;no;telephone;may;fri;296;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+43;blue-collar;single;basic.9y;no;yes;no;telephone;may;fri;551;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+28;blue-collar;single;basic.9y;no;yes;no;telephone;may;fri;663;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+36;technician;married;professional.course;no;yes;no;telephone;may;fri;338;4;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+37;services;married;high.school;no;yes;no;telephone;may;fri;153;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+32;admin.;single;university.degree;no;no;no;telephone;may;fri;188;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+26;technician;married;high.school;no;yes;no;telephone;may;fri;305;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+35;admin.;married;high.school;no;yes;no;telephone;may;fri;1080;5;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+56;admin.;married;university.degree;no;no;no;telephone;may;fri;1461;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+56;blue-collar;married;basic.4y;unknown;no;no;telephone;may;fri;116;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+37;entrepreneur;single;university.degree;no;no;no;telephone;may;fri;129;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+43;technician;single;professional.course;no;no;no;telephone;may;fri;98;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+41;housemaid;married;high.school;no;yes;no;telephone;may;fri;262;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+55;unemployed;single;basic.4y;unknown;unknown;unknown;telephone;may;fri;147;7;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+43;technician;single;professional.course;no;no;no;telephone;may;fri;150;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+29;unknown;married;university.degree;no;unknown;unknown;telephone;may;fri;282;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+31;services;married;high.school;no;yes;no;telephone;may;fri;332;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+39;admin.;single;university.degree;no;no;no;telephone;may;fri;94;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+38;blue-collar;single;basic.9y;unknown;yes;no;telephone;may;fri;455;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+56;admin.;married;high.school;no;yes;no;telephone;may;fri;49;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+36;entrepreneur;married;unknown;unknown;yes;no;telephone;may;fri;181;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+54;management;married;basic.4y;unknown;no;no;telephone;may;fri;345;9;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+34;admin.;married;university.degree;no;yes;no;telephone;may;fri;154;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+28;services;single;basic.9y;unknown;yes;no;telephone;may;fri;294;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+34;blue-collar;married;basic.4y;no;yes;no;telephone;may;fri;750;7;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+45;blue-collar;married;basic.9y;no;yes;no;telephone;may;fri;202;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+59;admin.;married;university.degree;no;yes;no;telephone;may;fri;191;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+46;blue-collar;married;professional.course;no;yes;no;telephone;may;fri;106;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+25;blue-collar;married;basic.9y;no;yes;no;telephone;may;fri;214;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+33;admin.;divorced;university.degree;no;no;yes;telephone;may;fri;128;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+27;admin.;married;university.degree;no;yes;no;telephone;may;fri;70;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+33;admin.;divorced;university.degree;no;no;no;telephone;may;fri;279;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+56;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;fri;400;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+25;admin.;married;high.school;no;yes;no;telephone;may;fri;231;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+30;housemaid;married;high.school;unknown;yes;no;telephone;may;fri;175;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+38;blue-collar;divorced;basic.9y;no;no;yes;telephone;may;fri;70;4;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+37;self-employed;single;university.degree;unknown;yes;no;telephone;may;fri;179;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+58;entrepreneur;married;university.degree;unknown;no;no;telephone;may;fri;107;4;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+28;blue-collar;married;basic.6y;unknown;no;no;telephone;may;fri;142;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+42;blue-collar;married;basic.9y;unknown;no;no;telephone;may;fri;119;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+36;technician;single;professional.course;unknown;no;no;telephone;may;fri;180;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+52;management;married;professional.course;no;unknown;unknown;telephone;may;fri;135;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+33;technician;single;high.school;no;no;yes;telephone;may;fri;213;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+33;management;single;university.degree;no;no;no;telephone;may;fri;136;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+29;blue-collar;single;high.school;unknown;no;no;telephone;may;fri;44;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+34;blue-collar;married;basic.9y;no;yes;no;telephone;may;fri;229;5;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+50;management;single;university.degree;no;yes;no;telephone;may;fri;184;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+38;management;married;university.degree;no;no;no;telephone;may;fri;32;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+33;services;married;high.school;no;no;no;telephone;may;fri;73;4;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+42;admin.;married;university.degree;no;no;no;telephone;may;fri;126;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+52;self-employed;married;university.degree;no;yes;no;telephone;may;fri;83;4;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+28;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;fri;379;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+56;services;married;high.school;unknown;yes;no;telephone;may;fri;26;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+35;technician;married;professional.course;no;no;no;telephone;may;fri;169;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+33;admin.;married;high.school;unknown;yes;no;telephone;may;fri;179;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+32;blue-collar;married;basic.9y;no;yes;no;telephone;may;fri;280;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+50;retired;married;basic.4y;unknown;yes;no;telephone;may;fri;89;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+29;admin.;single;basic.9y;unknown;no;no;telephone;may;fri;210;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+30;technician;married;professional.course;no;no;yes;telephone;may;fri;393;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+46;blue-collar;married;basic.9y;no;yes;yes;telephone;may;fri;128;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+26;admin.;single;high.school;unknown;yes;no;telephone;may;fri;161;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+34;admin.;single;basic.9y;no;no;no;telephone;may;fri;1178;4;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+46;self-employed;married;basic.9y;unknown;yes;no;telephone;may;fri;182;7;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+33;management;married;high.school;no;yes;no;telephone;may;fri;178;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+50;housemaid;divorced;high.school;no;no;no;telephone;may;fri;177;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+31;technician;single;basic.9y;unknown;no;no;telephone;may;fri;191;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+48;blue-collar;married;professional.course;no;no;no;telephone;may;fri;245;4;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+57;entrepreneur;married;high.school;unknown;yes;no;telephone;may;fri;255;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+45;admin.;divorced;basic.9y;unknown;no;no;telephone;may;fri;488;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+50;services;married;professional.course;unknown;yes;no;telephone;may;fri;211;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+44;unknown;single;basic.9y;unknown;unknown;unknown;telephone;may;fri;226;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+44;services;married;high.school;no;no;no;telephone;may;fri;460;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+32;services;married;high.school;no;yes;no;telephone;may;fri;432;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+37;housemaid;single;basic.9y;unknown;yes;yes;telephone;may;fri;136;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+34;admin.;single;high.school;no;no;no;telephone;may;fri;176;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+27;services;married;basic.9y;no;yes;no;telephone;may;fri;162;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+40;housemaid;single;university.degree;no;yes;no;telephone;may;fri;237;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+39;services;married;high.school;unknown;no;yes;telephone;may;fri;134;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+29;admin.;married;high.school;no;yes;no;telephone;may;fri;44;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+34;blue-collar;married;basic.6y;unknown;yes;yes;telephone;may;fri;47;5;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+25;blue-collar;married;basic.9y;no;no;no;telephone;may;fri;483;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+29;services;married;basic.9y;no;no;no;telephone;may;fri;116;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+44;technician;single;professional.course;no;no;no;telephone;may;fri;182;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+33;admin.;single;university.degree;no;yes;no;telephone;may;fri;122;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+33;blue-collar;married;basic.4y;no;yes;no;telephone;may;fri;232;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+40;blue-collar;married;high.school;no;no;no;telephone;may;fri;51;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+59;retired;married;basic.4y;unknown;no;no;telephone;may;fri;260;4;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+38;technician;single;professional.course;no;no;no;telephone;may;fri;214;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+41;blue-collar;married;basic.6y;unknown;no;no;telephone;may;fri;407;4;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+33;services;married;high.school;no;yes;no;telephone;may;fri;389;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+36;admin.;married;high.school;no;yes;no;telephone;may;fri;31;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+48;admin.;married;basic.9y;no;no;yes;telephone;may;fri;145;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+44;services;divorced;high.school;unknown;yes;no;telephone;may;fri;115;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+50;blue-collar;divorced;basic.9y;no;no;no;telephone;may;fri;878;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+35;self-employed;married;professional.course;no;no;no;telephone;may;fri;268;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+51;entrepreneur;married;basic.4y;unknown;no;no;telephone;may;fri;277;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+24;blue-collar;married;basic.9y;no;yes;yes;telephone;may;fri;101;6;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+32;management;married;high.school;no;yes;no;telephone;may;fri;119;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+56;services;divorced;high.school;unknown;no;no;telephone;may;fri;185;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+50;technician;married;university.degree;no;yes;no;telephone;may;fri;162;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+38;blue-collar;married;high.school;no;no;no;telephone;may;fri;18;7;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+25;self-employed;single;university.degree;no;unknown;unknown;telephone;may;fri;317;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+28;services;single;high.school;no;unknown;unknown;telephone;may;fri;71;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+41;blue-collar;married;basic.4y;no;no;no;telephone;may;fri;43;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+34;blue-collar;married;unknown;unknown;unknown;unknown;telephone;may;fri;298;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+27;services;single;high.school;no;no;no;telephone;may;fri;86;4;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+31;admin.;married;university.degree;unknown;no;no;telephone;may;fri;255;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+39;housemaid;married;basic.4y;no;yes;yes;telephone;may;fri;83;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+26;entrepreneur;married;unknown;no;no;no;telephone;may;fri;194;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+37;blue-collar;married;basic.6y;unknown;yes;yes;telephone;may;fri;268;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+25;student;single;high.school;no;no;no;telephone;may;fri;97;1;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+33;services;married;high.school;no;yes;no;telephone;may;fri;263;5;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+40;blue-collar;married;unknown;no;no;no;telephone;may;fri;338;4;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+37;entrepreneur;single;university.degree;no;no;no;telephone;may;fri;180;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+46;housemaid;married;basic.9y;no;no;no;telephone;may;fri;322;5;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+53;admin.;divorced;high.school;no;yes;no;telephone;may;fri;64;4;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+32;unemployed;married;basic.9y;no;no;no;telephone;may;fri;71;4;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+43;services;divorced;basic.9y;no;yes;no;telephone;may;fri;284;4;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+38;technician;single;professional.course;no;yes;no;telephone;may;fri;166;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+26;technician;married;professional.course;no;yes;no;telephone;may;fri;210;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+52;blue-collar;single;basic.9y;unknown;yes;no;telephone;may;fri;160;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+54;admin.;married;basic.4y;unknown;no;no;telephone;may;fri;77;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+51;services;married;professional.course;unknown;no;no;telephone;may;fri;328;7;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+42;admin.;married;basic.9y;no;yes;no;telephone;may;fri;164;8;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+41;management;single;unknown;no;no;no;telephone;may;fri;154;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+26;services;single;high.school;no;no;no;telephone;may;fri;155;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+38;housemaid;married;basic.6y;unknown;yes;no;telephone;may;fri;153;4;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+54;technician;married;unknown;unknown;no;no;telephone;may;fri;111;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+41;blue-collar;divorced;basic.4y;no;no;no;telephone;may;fri;91;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+26;blue-collar;single;high.school;no;no;no;telephone;may;fri;213;4;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+43;management;married;basic.4y;no;yes;no;telephone;may;fri;257;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+28;technician;single;professional.course;no;yes;no;telephone;may;fri;315;4;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+35;technician;divorced;professional.course;no;no;yes;telephone;may;fri;102;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+45;admin.;married;high.school;no;no;yes;telephone;may;fri;35;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+40;admin.;married;high.school;no;no;no;telephone;may;fri;83;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+37;technician;married;professional.course;no;yes;no;telephone;may;fri;834;9;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+52;technician;married;university.degree;no;no;no;telephone;may;fri;244;5;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+36;admin.;married;high.school;no;yes;no;telephone;may;fri;143;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+40;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;fri;277;3;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+43;blue-collar;married;basic.4y;no;yes;no;telephone;may;fri;1534;2;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+36;blue-collar;married;basic.6y;unknown;no;no;telephone;may;fri;291;4;999;0;nonexistent;1.1;93.994;-36.4;4.855;5191.0;no
+36;blue-collar;single;high.school;no;no;yes;telephone;may;mon;163;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;blue-collar;married;basic.4y;unknown;yes;yes;telephone;may;mon;149;6;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;mon;33;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+49;blue-collar;married;professional.course;unknown;no;no;telephone;may;mon;144;6;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+56;retired;married;basic.4y;unknown;yes;yes;telephone;may;mon;146;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;blue-collar;divorced;basic.9y;no;no;no;telephone;may;mon;40;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+29;blue-collar;married;professional.course;unknown;yes;no;telephone;may;mon;79;6;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;admin.;single;university.degree;unknown;no;no;telephone;may;mon;112;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;admin.;married;university.degree;no;yes;no;telephone;may;mon;147;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;blue-collar;married;basic.6y;unknown;yes;no;telephone;may;mon;836;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;technician;married;high.school;no;yes;no;telephone;may;mon;290;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;technician;divorced;professional.course;no;yes;no;telephone;may;mon;148;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;services;divorced;high.school;no;yes;no;telephone;may;mon;289;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;blue-collar;single;basic.4y;no;yes;no;telephone;may;mon;345;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;self-employed;married;university.degree;no;yes;no;telephone;may;mon;1002;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;management;married;university.degree;unknown;yes;no;telephone;may;mon;181;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+59;management;married;university.degree;no;no;no;telephone;may;mon;460;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;yes
+33;unemployed;married;professional.course;unknown;yes;no;telephone;may;mon;129;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+48;entrepreneur;married;high.school;no;yes;no;telephone;may;mon;76;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+53;technician;single;professional.course;no;yes;no;telephone;may;mon;111;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+57;blue-collar;married;unknown;unknown;unknown;unknown;telephone;may;mon;98;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;services;married;high.school;unknown;yes;no;telephone;may;mon;221;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+51;services;divorced;professional.course;no;yes;no;telephone;may;mon;150;7;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;blue-collar;married;basic.6y;unknown;yes;no;telephone;may;mon;399;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;unknown;married;unknown;unknown;no;no;telephone;may;mon;139;6;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;admin.;married;high.school;no;yes;no;telephone;may;mon;115;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;blue-collar;married;basic.6y;no;yes;no;telephone;may;mon;149;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+48;admin.;married;university.degree;no;no;yes;telephone;may;mon;327;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+59;retired;married;university.degree;unknown;no;no;telephone;may;mon;92;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;admin.;single;high.school;no;no;no;telephone;may;mon;111;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+50;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;mon;192;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;services;married;high.school;no;yes;no;telephone;may;mon;88;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+53;self-employed;married;university.degree;no;no;no;telephone;may;mon;592;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;technician;married;professional.course;unknown;no;no;telephone;may;mon;105;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+55;admin.;married;high.school;no;yes;yes;telephone;may;mon;62;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;blue-collar;married;basic.4y;unknown;no;no;telephone;may;mon;114;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;blue-collar;married;basic.4y;no;yes;no;telephone;may;mon;59;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;management;divorced;high.school;no;no;no;telephone;may;mon;144;7;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;management;married;basic.9y;no;yes;yes;telephone;may;mon;346;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;admin.;single;basic.6y;no;yes;no;telephone;may;mon;57;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;admin.;married;high.school;no;yes;no;telephone;may;mon;396;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;blue-collar;married;basic.6y;unknown;yes;no;telephone;may;mon;286;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;entrepreneur;married;university.degree;no;yes;no;telephone;may;mon;59;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+55;admin.;divorced;university.degree;no;yes;no;telephone;may;mon;38;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+55;technician;divorced;professional.course;unknown;yes;no;telephone;may;mon;252;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+54;services;married;basic.4y;unknown;yes;no;telephone;may;mon;566;7;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;housemaid;married;university.degree;no;yes;no;telephone;may;mon;167;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;technician;married;professional.course;unknown;no;no;telephone;may;mon;127;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+49;services;married;high.school;unknown;unknown;unknown;telephone;may;mon;71;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;unemployed;married;high.school;unknown;no;no;telephone;may;mon;120;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;admin.;single;university.degree;no;no;no;telephone;may;mon;409;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+57;management;divorced;university.degree;no;yes;no;telephone;may;mon;117;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;admin.;divorced;high.school;no;no;no;telephone;may;mon;177;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+24;services;single;high.school;no;no;no;telephone;may;mon;757;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;yes
+49;management;divorced;high.school;unknown;yes;no;telephone;may;mon;145;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+49;management;divorced;high.school;unknown;no;no;telephone;may;mon;124;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+59;retired;single;university.degree;no;no;no;telephone;may;mon;36;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;blue-collar;married;professional.course;no;no;no;telephone;may;mon;94;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;management;married;basic.6y;unknown;no;no;telephone;may;mon;189;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+59;blue-collar;married;basic.4y;unknown;no;no;telephone;may;mon;24;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;unemployed;married;unknown;unknown;no;no;telephone;may;mon;33;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+49;technician;divorced;basic.9y;unknown;yes;no;telephone;may;mon;185;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;entrepreneur;divorced;high.school;no;no;no;telephone;may;mon;122;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;entrepreneur;divorced;high.school;no;no;no;telephone;may;mon;225;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;blue-collar;single;high.school;no;no;no;telephone;may;mon;165;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;blue-collar;married;professional.course;no;yes;no;telephone;may;mon;186;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;management;married;university.degree;no;no;no;telephone;may;mon;405;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+51;blue-collar;married;basic.4y;unknown;no;no;telephone;may;mon;172;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+29;management;single;university.degree;no;yes;yes;telephone;may;mon;207;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;admin.;married;university.degree;no;yes;no;telephone;may;mon;325;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+29;student;single;high.school;unknown;no;no;telephone;may;mon;57;8;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;management;married;university.degree;unknown;no;no;telephone;may;mon;102;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;services;married;high.school;unknown;no;no;telephone;may;mon;164;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+54;management;divorced;university.degree;no;no;no;telephone;may;mon;288;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+56;services;divorced;high.school;unknown;no;no;telephone;may;mon;154;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;blue-collar;married;basic.4y;no;yes;no;telephone;may;mon;102;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+51;blue-collar;married;basic.4y;no;yes;yes;telephone;may;mon;136;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;blue-collar;married;professional.course;no;no;no;telephone;may;mon;53;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;admin.;married;university.degree;no;no;no;telephone;may;mon;744;6;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;yes
+32;blue-collar;married;professional.course;no;no;no;telephone;may;mon;202;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;admin.;married;university.degree;unknown;yes;no;telephone;may;mon;113;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;technician;divorced;university.degree;no;no;no;telephone;may;mon;130;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+26;technician;married;university.degree;no;no;no;telephone;may;mon;523;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+26;self-employed;married;university.degree;no;no;no;telephone;may;mon;231;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+25;blue-collar;married;high.school;no;no;no;telephone;may;mon;217;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+52;entrepreneur;married;university.degree;unknown;no;no;telephone;may;mon;151;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+59;blue-collar;married;basic.4y;unknown;no;no;telephone;may;mon;293;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;blue-collar;divorced;high.school;no;no;no;telephone;may;mon;281;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;blue-collar;married;basic.4y;unknown;no;no;telephone;may;mon;363;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+56;housemaid;divorced;basic.4y;unknown;no;no;telephone;may;mon;86;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+29;technician;single;university.degree;no;no;no;telephone;may;mon;1147;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;technician;married;university.degree;no;yes;yes;telephone;may;mon;486;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;blue-collar;married;basic.4y;unknown;no;no;telephone;may;mon;49;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;admin.;divorced;high.school;no;no;no;telephone;may;mon;170;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;housemaid;single;university.degree;no;no;yes;telephone;may;mon;539;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;technician;single;university.degree;unknown;no;no;telephone;may;mon;66;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+56;entrepreneur;married;basic.4y;no;no;no;telephone;may;mon;820;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;blue-collar;married;basic.4y;unknown;no;yes;telephone;may;mon;125;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;services;divorced;high.school;no;no;no;telephone;may;mon;398;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;management;married;university.degree;no;yes;no;telephone;may;mon;112;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;management;married;university.degree;no;no;no;telephone;may;mon;64;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;services;married;high.school;unknown;no;no;telephone;may;mon;255;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;blue-collar;married;basic.4y;unknown;no;no;telephone;may;mon;95;8;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;blue-collar;married;professional.course;unknown;yes;no;telephone;may;mon;140;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+48;services;married;high.school;no;no;no;telephone;may;mon;788;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;blue-collar;single;basic.9y;no;yes;no;telephone;may;mon;239;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;mon;194;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;technician;married;university.degree;no;no;no;telephone;may;mon;165;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+29;admin.;single;basic.9y;unknown;no;no;telephone;may;mon;306;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;self-employed;married;university.degree;unknown;no;no;telephone;may;mon;63;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;unemployed;married;university.degree;no;yes;no;telephone;may;mon;501;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;technician;married;professional.course;no;yes;no;telephone;may;mon;832;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;entrepreneur;married;high.school;no;no;no;telephone;may;mon;214;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+48;unemployed;married;high.school;unknown;yes;yes;telephone;may;mon;283;6;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;technician;married;professional.course;no;yes;no;telephone;may;mon;101;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;admin.;married;university.degree;no;yes;yes;telephone;may;mon;77;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+28;management;single;unknown;no;no;no;telephone;may;mon;290;6;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;housemaid;married;university.degree;no;no;no;telephone;may;mon;388;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;admin.;single;unknown;no;yes;yes;telephone;may;mon;1111;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;yes
+27;admin.;single;high.school;unknown;unknown;unknown;telephone;may;mon;1495;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+27;blue-collar;married;basic.9y;unknown;no;no;telephone;may;mon;322;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;technician;single;professional.course;no;no;no;telephone;may;mon;480;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;services;married;high.school;unknown;yes;yes;telephone;may;mon;146;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;blue-collar;married;professional.course;no;no;no;telephone;may;mon;393;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;entrepreneur;single;university.degree;no;yes;no;telephone;may;mon;744;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;admin.;single;university.degree;no;yes;no;telephone;may;mon;593;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;technician;married;basic.9y;no;yes;no;telephone;may;mon;215;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;blue-collar;single;basic.9y;unknown;yes;no;telephone;may;mon;379;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;technician;married;basic.9y;no;yes;no;telephone;may;mon;315;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;technician;married;high.school;no;yes;no;telephone;may;mon;162;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;technician;married;basic.9y;no;no;no;telephone;may;mon;493;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+28;student;single;university.degree;unknown;yes;no;telephone;may;mon;225;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+28;student;single;university.degree;unknown;yes;no;telephone;may;mon;208;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;technician;married;professional.course;no;no;no;telephone;may;mon;80;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+50;management;divorced;professional.course;no;no;no;telephone;may;mon;39;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;management;married;high.school;no;yes;no;telephone;may;mon;132;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;blue-collar;married;basic.4y;no;no;no;telephone;may;mon;101;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;admin.;married;university.degree;no;no;no;telephone;may;mon;188;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;blue-collar;single;basic.9y;unknown;unknown;unknown;telephone;may;mon;386;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;blue-collar;married;basic.9y;unknown;no;no;telephone;may;mon;457;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;blue-collar;single;basic.6y;unknown;yes;no;telephone;may;mon;891;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+57;retired;single;high.school;no;no;no;telephone;may;mon;53;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+50;blue-collar;married;high.school;unknown;no;no;telephone;may;mon;326;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+57;retired;single;high.school;no;yes;yes;telephone;may;mon;507;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;blue-collar;married;basic.4y;unknown;no;no;telephone;may;mon;1083;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;blue-collar;married;basic.4y;no;yes;yes;telephone;may;mon;123;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+57;retired;single;high.school;no;unknown;unknown;telephone;may;mon;1266;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;technician;married;basic.9y;no;no;no;telephone;may;mon;171;6;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;services;married;basic.4y;unknown;yes;no;telephone;may;mon;160;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;blue-collar;single;basic.9y;no;no;no;telephone;may;mon;178;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;entrepreneur;married;basic.6y;no;no;no;telephone;may;mon;156;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;unemployed;married;basic.9y;unknown;no;no;telephone;may;mon;200;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;technician;married;basic.9y;no;no;no;telephone;may;mon;154;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;blue-collar;single;basic.9y;no;yes;yes;telephone;may;mon;163;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;blue-collar;divorced;basic.4y;unknown;yes;no;telephone;may;mon;391;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+51;blue-collar;married;basic.9y;no;no;no;telephone;may;mon;470;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+52;management;married;university.degree;unknown;no;no;telephone;may;mon;268;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;blue-collar;married;basic.9y;no;no;no;telephone;may;mon;793;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+50;management;married;basic.9y;no;no;no;telephone;may;mon;219;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+53;retired;divorced;basic.4y;no;no;no;telephone;may;mon;460;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+51;technician;married;professional.course;no;yes;yes;telephone;may;mon;246;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;admin.;single;university.degree;no;yes;no;telephone;may;mon;194;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+55;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;mon;413;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;unemployed;married;basic.4y;unknown;yes;no;telephone;may;mon;574;6;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;admin.;divorced;university.degree;no;yes;no;telephone;may;mon;256;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;mon;88;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;self-employed;divorced;university.degree;no;yes;yes;telephone;may;mon;146;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;self-employed;divorced;university.degree;no;yes;no;telephone;may;mon;596;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;mon;170;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;admin.;single;high.school;no;unknown;unknown;telephone;may;mon;139;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;admin.;single;high.school;no;no;no;telephone;may;mon;577;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;blue-collar;married;basic.6y;no;no;no;telephone;may;mon;177;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;services;married;high.school;no;yes;no;telephone;may;mon;335;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+48;blue-collar;married;basic.9y;no;yes;no;telephone;may;mon;262;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+29;admin.;single;high.school;no;yes;no;telephone;may;mon;115;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;mon;136;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;blue-collar;single;basic.9y;unknown;yes;no;telephone;may;mon;289;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+48;blue-collar;married;basic.9y;no;yes;no;telephone;may;mon;529;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;blue-collar;married;basic.4y;no;yes;no;telephone;may;mon;247;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;services;married;high.school;no;unknown;unknown;telephone;may;mon;72;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+56;admin.;married;high.school;no;yes;no;telephone;may;mon;166;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;technician;married;university.degree;no;yes;no;telephone;may;mon;320;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;technician;married;professional.course;no;yes;no;telephone;may;mon;307;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;admin.;married;high.school;no;no;no;telephone;may;mon;220;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+54;retired;divorced;professional.course;no;no;no;telephone;may;mon;241;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+26;services;divorced;professional.course;no;no;no;telephone;may;mon;241;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+54;blue-collar;married;professional.course;unknown;yes;yes;telephone;may;mon;198;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;management;married;professional.course;no;no;no;telephone;may;mon;98;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;blue-collar;divorced;basic.6y;no;yes;no;telephone;may;mon;391;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;admin.;single;university.degree;no;no;yes;telephone;may;mon;126;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+28;admin.;married;high.school;no;yes;no;telephone;may;mon;55;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;self-employed;married;university.degree;no;yes;yes;telephone;may;mon;86;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+57;retired;single;high.school;no;no;no;telephone;may;mon;166;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;admin.;married;high.school;unknown;no;no;telephone;may;mon;66;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;technician;married;basic.6y;no;no;yes;telephone;may;mon;155;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;services;married;professional.course;unknown;no;no;telephone;may;mon;311;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;blue-collar;married;basic.9y;no;no;no;telephone;may;mon;63;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+58;management;married;university.degree;no;no;no;telephone;may;mon;236;10;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;blue-collar;married;basic.9y;no;no;yes;telephone;may;mon;92;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+29;management;single;university.degree;no;yes;no;telephone;may;mon;253;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;admin.;married;basic.4y;no;yes;no;telephone;may;mon;65;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+25;blue-collar;married;basic.9y;no;yes;no;telephone;may;mon;41;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;blue-collar;married;basic.9y;no;unknown;unknown;telephone;may;mon;163;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+56;admin.;married;basic.9y;unknown;no;no;telephone;may;mon;10;11;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;services;married;professional.course;no;no;no;telephone;may;mon;221;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+27;blue-collar;married;basic.9y;unknown;no;no;telephone;may;mon;484;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+52;management;married;university.degree;unknown;no;no;telephone;may;mon;467;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;technician;married;university.degree;no;yes;no;telephone;may;mon;241;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;management;single;university.degree;no;no;no;telephone;may;mon;248;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;services;divorced;high.school;no;no;no;telephone;may;mon;198;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;blue-collar;married;basic.6y;no;yes;no;telephone;may;mon;212;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;admin.;married;high.school;no;yes;yes;telephone;may;mon;115;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;blue-collar;married;basic.6y;unknown;no;no;telephone;may;mon;58;7;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;services;single;high.school;no;unknown;unknown;telephone;may;mon;456;6;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;blue-collar;married;basic.6y;unknown;yes;no;telephone;may;mon;145;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+57;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;mon;300;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;management;married;high.school;no;no;no;telephone;may;mon;264;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;admin.;married;basic.9y;unknown;yes;yes;telephone;may;mon;184;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;services;married;high.school;unknown;yes;no;telephone;may;mon;177;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+29;blue-collar;married;basic.9y;no;no;no;telephone;may;mon;65;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;blue-collar;married;basic.9y;no;no;no;telephone;may;mon;299;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;blue-collar;single;high.school;unknown;yes;no;telephone;may;mon;93;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+50;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;mon;22;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;blue-collar;married;basic.4y;no;unknown;unknown;telephone;may;mon;170;8;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;admin.;married;unknown;no;no;no;telephone;may;mon;89;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;admin.;married;high.school;no;yes;no;telephone;may;mon;166;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;unemployed;married;basic.9y;no;unknown;unknown;telephone;may;mon;128;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+56;admin.;married;high.school;no;yes;yes;telephone;may;mon;197;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;services;married;high.school;unknown;yes;no;telephone;may;mon;395;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+51;technician;married;professional.course;no;yes;no;telephone;may;mon;220;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;blue-collar;divorced;basic.4y;no;no;yes;telephone;may;mon;298;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+54;technician;married;university.degree;unknown;no;yes;telephone;may;mon;123;7;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;blue-collar;married;basic.4y;unknown;no;no;telephone;may;mon;334;7;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;blue-collar;married;high.school;unknown;yes;no;telephone;may;mon;73;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;admin.;single;university.degree;unknown;yes;yes;telephone;may;mon;186;6;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+57;services;divorced;high.school;no;no;no;telephone;may;mon;78;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;blue-collar;married;high.school;no;no;no;telephone;may;mon;13;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;admin.;single;unknown;no;no;no;telephone;may;mon;51;9;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;admin.;divorced;university.degree;unknown;no;no;telephone;may;mon;303;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;services;married;high.school;no;no;no;telephone;may;mon;159;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+54;unknown;married;unknown;unknown;no;no;telephone;may;mon;103;8;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;admin.;single;basic.4y;unknown;no;no;telephone;may;mon;95;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;technician;married;basic.9y;unknown;yes;no;telephone;may;mon;46;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+52;housemaid;married;basic.4y;unknown;yes;no;telephone;may;mon;84;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;admin.;married;basic.9y;unknown;yes;no;telephone;may;mon;344;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;technician;married;professional.course;no;no;no;telephone;may;mon;157;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;blue-collar;divorced;basic.6y;no;no;no;telephone;may;mon;162;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;entrepreneur;married;basic.9y;no;no;no;telephone;may;mon;249;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;management;married;university.degree;no;no;no;telephone;may;mon;24;12;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;admin.;married;high.school;no;unknown;unknown;telephone;may;mon;185;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;admin.;divorced;university.degree;unknown;yes;no;telephone;may;mon;212;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+26;admin.;single;high.school;no;yes;no;telephone;may;mon;195;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;blue-collar;single;basic.4y;no;yes;no;telephone;may;mon;143;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;blue-collar;married;basic.9y;no;no;no;telephone;may;mon;68;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;management;married;university.degree;no;yes;no;telephone;may;mon;274;6;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+50;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;mon;152;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;blue-collar;single;high.school;no;no;no;telephone;may;mon;325;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;blue-collar;married;basic.9y;no;no;no;telephone;may;mon;249;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;admin.;single;high.school;no;yes;yes;telephone;may;mon;111;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;admin.;married;high.school;no;yes;no;telephone;may;mon;81;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;blue-collar;married;basic.9y;no;yes;no;telephone;may;mon;181;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;unemployed;single;professional.course;no;no;no;telephone;may;tue;92;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+32;blue-collar;married;basic.9y;no;no;no;telephone;may;tue;85;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+51;entrepreneur;divorced;unknown;no;yes;no;telephone;may;tue;141;6;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+39;blue-collar;divorced;basic.9y;no;yes;no;telephone;may;tue;182;6;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+25;services;married;high.school;no;yes;no;telephone;may;tue;530;7;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+40;housemaid;single;university.degree;no;no;no;telephone;may;tue;160;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+28;services;married;high.school;no;yes;no;telephone;may;tue;176;4;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+29;management;married;university.degree;no;no;no;telephone;may;tue;134;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+57;blue-collar;married;professional.course;unknown;unknown;unknown;telephone;may;tue;514;5;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+53;blue-collar;married;basic.9y;unknown;no;no;telephone;may;tue;181;5;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+39;blue-collar;married;basic.9y;unknown;no;no;telephone;may;tue;504;4;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;yes
+60;technician;divorced;professional.course;unknown;yes;no;telephone;may;tue;160;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+42;blue-collar;married;basic.4y;unknown;no;no;telephone;may;tue;267;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+30;admin.;married;university.degree;no;yes;no;telephone;may;tue;907;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+34;technician;married;university.degree;no;no;no;telephone;may;tue;200;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+43;technician;single;professional.course;no;no;no;telephone;may;tue;139;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+38;blue-collar;married;basic.6y;no;yes;no;telephone;may;tue;147;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+35;admin.;single;university.degree;no;yes;no;telephone;may;tue;153;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+26;admin.;single;high.school;no;no;no;telephone;may;tue;109;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+31;blue-collar;married;basic.9y;no;yes;no;telephone;may;tue;97;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+55;unemployed;married;basic.4y;unknown;yes;no;telephone;may;tue;164;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+59;housemaid;married;basic.4y;unknown;no;yes;telephone;may;tue;70;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+28;blue-collar;single;basic.9y;no;unknown;unknown;telephone;may;tue;71;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+48;blue-collar;married;basic.9y;no;yes;no;telephone;may;tue;723;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+37;services;married;basic.9y;no;yes;no;telephone;may;tue;518;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+35;blue-collar;married;basic.6y;unknown;no;no;telephone;may;tue;147;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+30;admin.;single;high.school;no;yes;yes;telephone;may;tue;101;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+30;admin.;single;high.school;no;no;no;telephone;may;tue;142;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+32;admin.;single;university.degree;unknown;no;no;telephone;may;tue;1346;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;yes
+53;admin.;married;high.school;no;yes;no;telephone;may;tue;520;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+34;blue-collar;married;basic.4y;no;no;no;telephone;may;tue;611;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+51;unemployed;married;basic.9y;unknown;yes;no;telephone;may;tue;66;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+43;admin.;married;high.school;no;yes;no;telephone;may;tue;135;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+54;retired;divorced;basic.4y;no;yes;no;telephone;may;tue;276;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+45;services;single;professional.course;unknown;no;no;telephone;may;tue;449;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+46;management;single;university.degree;no;no;no;telephone;may;tue;98;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+57;admin.;divorced;university.degree;no;yes;no;telephone;may;tue;105;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+34;admin.;divorced;university.degree;no;no;no;telephone;may;tue;382;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+33;housemaid;married;basic.4y;no;no;no;telephone;may;tue;213;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+48;admin.;married;high.school;no;yes;no;telephone;may;tue;116;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+37;unknown;married;university.degree;no;no;yes;telephone;may;tue;249;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+33;self-employed;married;university.degree;no;yes;no;telephone;may;tue;50;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+36;admin.;single;university.degree;no;no;yes;telephone;may;tue;138;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+48;unknown;married;basic.4y;unknown;no;no;telephone;may;tue;375;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+28;blue-collar;single;basic.9y;no;yes;no;telephone;may;tue;49;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+30;admin.;single;university.degree;no;yes;no;telephone;may;tue;178;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+31;management;single;university.degree;no;no;no;telephone;may;tue;169;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+51;unemployed;married;basic.9y;unknown;no;no;telephone;may;tue;1386;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+26;admin.;married;high.school;unknown;no;no;telephone;may;tue;155;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+40;blue-collar;married;basic.6y;unknown;no;no;telephone;may;tue;120;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+40;blue-collar;married;basic.6y;unknown;yes;no;telephone;may;tue;203;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+51;blue-collar;divorced;basic.4y;no;no;no;telephone;may;tue;244;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+30;blue-collar;single;basic.9y;no;yes;no;telephone;may;tue;428;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+34;entrepreneur;married;professional.course;no;yes;no;telephone;may;tue;53;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+51;blue-collar;divorced;basic.4y;no;no;no;telephone;may;tue;360;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+39;admin.;single;high.school;unknown;no;no;telephone;may;tue;215;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+57;blue-collar;married;basic.4y;unknown;no;yes;telephone;may;tue;500;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+33;technician;divorced;high.school;no;no;no;telephone;may;tue;207;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+33;management;married;basic.4y;no;yes;yes;telephone;may;tue;568;4;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;yes
+22;blue-collar;single;basic.6y;unknown;unknown;unknown;telephone;may;tue;270;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+38;admin.;married;university.degree;no;unknown;unknown;telephone;may;tue;154;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+56;technician;married;basic.4y;unknown;unknown;unknown;telephone;may;tue;272;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+45;services;married;high.school;no;no;no;telephone;may;tue;229;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+50;technician;married;professional.course;no;no;no;telephone;may;tue;108;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+28;admin.;married;university.degree;no;yes;no;telephone;may;tue;210;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+53;technician;married;professional.course;unknown;yes;no;telephone;may;tue;383;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+39;self-employed;married;basic.4y;unknown;yes;no;telephone;may;tue;3366;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+33;technician;divorced;professional.course;no;no;no;telephone;may;tue;259;6;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+38;management;married;basic.9y;no;yes;no;telephone;may;tue;1000;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;yes
+35;admin.;single;high.school;no;yes;yes;telephone;may;tue;618;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;yes
+28;blue-collar;married;basic.9y;unknown;no;no;telephone;may;tue;237;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+30;technician;single;university.degree;unknown;no;no;telephone;may;tue;106;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+37;admin.;single;university.degree;no;no;no;telephone;may;tue;351;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+42;housemaid;married;high.school;unknown;yes;no;telephone;may;tue;218;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+35;services;single;high.school;no;no;yes;telephone;may;tue;198;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+48;admin.;divorced;high.school;no;no;yes;telephone;may;tue;284;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+41;technician;married;professional.course;unknown;yes;no;telephone;may;tue;190;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+26;blue-collar;married;basic.9y;no;no;no;telephone;may;tue;295;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+26;blue-collar;single;high.school;unknown;no;no;telephone;may;tue;106;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+47;blue-collar;married;basic.4y;unknown;no;yes;telephone;may;tue;93;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+58;retired;married;unknown;no;unknown;unknown;telephone;may;tue;174;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+58;retired;married;unknown;no;unknown;unknown;telephone;may;tue;124;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+54;management;divorced;university.degree;no;yes;no;telephone;may;tue;62;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+38;blue-collar;single;basic.9y;no;yes;no;telephone;may;tue;2231;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;yes
+40;technician;divorced;university.degree;no;yes;no;telephone;may;tue;217;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+35;admin.;married;university.degree;no;yes;no;telephone;may;tue;343;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+35;blue-collar;married;basic.9y;no;no;no;telephone;may;tue;227;4;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+34;admin.;married;professional.course;no;yes;no;telephone;may;tue;248;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+28;technician;married;high.school;no;no;no;telephone;may;tue;180;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+36;services;single;basic.9y;no;yes;yes;telephone;may;tue;117;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+42;admin.;single;high.school;no;no;no;telephone;may;tue;205;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+37;technician;single;university.degree;no;yes;no;telephone;may;tue;370;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+45;services;married;basic.9y;no;no;no;telephone;may;tue;427;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+48;self-employed;married;basic.9y;unknown;yes;no;telephone;may;tue;289;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+53;technician;married;professional.course;unknown;yes;no;telephone;may;tue;170;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+42;technician;married;basic.6y;no;yes;no;telephone;may;tue;705;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+53;technician;married;professional.course;unknown;yes;no;telephone;may;tue;198;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+53;technician;married;professional.course;unknown;yes;yes;telephone;may;tue;247;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+33;blue-collar;divorced;basic.6y;unknown;yes;no;telephone;may;tue;226;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+30;unknown;single;university.degree;no;no;no;telephone;may;tue;213;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+34;admin.;married;university.degree;no;no;no;telephone;may;tue;174;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+48;technician;married;high.school;no;no;no;telephone;may;tue;166;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+34;admin.;married;university.degree;no;no;no;telephone;may;tue;373;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+49;services;divorced;basic.9y;no;yes;no;telephone;may;tue;259;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+48;technician;married;high.school;no;no;yes;telephone;may;tue;340;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+38;blue-collar;single;university.degree;unknown;no;no;telephone;may;tue;392;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+44;technician;married;professional.course;unknown;yes;no;telephone;may;tue;245;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+36;blue-collar;married;basic.9y;unknown;no;yes;telephone;may;tue;136;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+44;blue-collar;divorced;basic.4y;unknown;yes;no;telephone;may;tue;148;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+50;self-employed;married;university.degree;no;yes;yes;telephone;may;tue;137;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+38;blue-collar;single;university.degree;unknown;no;no;telephone;may;tue;456;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+41;technician;married;professional.course;no;yes;no;telephone;may;tue;107;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+45;blue-collar;married;basic.4y;no;no;no;telephone;may;tue;44;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+53;admin.;married;university.degree;no;yes;no;telephone;may;tue;118;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+36;entrepreneur;married;university.degree;no;yes;no;telephone;may;tue;135;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+45;services;married;high.school;no;yes;no;telephone;may;tue;276;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+34;services;married;basic.9y;unknown;yes;no;telephone;may;tue;150;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+37;blue-collar;married;professional.course;no;no;yes;telephone;may;tue;118;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+25;technician;single;university.degree;no;yes;no;telephone;may;tue;38;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+35;admin.;divorced;university.degree;no;no;yes;telephone;may;tue;232;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+34;admin.;married;university.degree;no;no;no;telephone;may;tue;1167;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+32;unknown;married;basic.6y;unknown;no;no;telephone;may;tue;39;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+32;admin.;divorced;high.school;no;no;no;telephone;may;tue;325;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+39;self-employed;single;university.degree;no;no;no;telephone;may;tue;311;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+36;admin.;married;high.school;no;no;yes;telephone;may;tue;147;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+46;entrepreneur;married;university.degree;no;yes;no;telephone;may;tue;125;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+56;entrepreneur;married;university.degree;no;no;no;telephone;may;tue;98;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+37;technician;single;basic.9y;unknown;no;yes;telephone;may;tue;93;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+37;technician;single;basic.9y;unknown;no;no;telephone;may;tue;83;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+39;blue-collar;married;high.school;no;yes;no;telephone;may;tue;67;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+52;services;married;unknown;unknown;no;no;telephone;may;tue;77;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+39;services;married;unknown;unknown;no;no;telephone;may;tue;191;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+52;services;married;unknown;unknown;no;no;telephone;may;tue;144;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+51;technician;married;professional.course;unknown;no;no;telephone;may;tue;20;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+42;technician;single;unknown;no;no;no;telephone;may;tue;27;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+34;technician;married;high.school;no;no;yes;telephone;may;tue;174;4;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+28;blue-collar;married;basic.9y;no;yes;no;telephone;may;tue;260;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+43;self-employed;single;professional.course;unknown;yes;yes;telephone;may;tue;94;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+41;technician;single;professional.course;no;yes;no;telephone;may;tue;122;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+54;technician;married;professional.course;no;no;yes;telephone;may;tue;334;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+53;blue-collar;married;basic.9y;no;yes;no;telephone;may;tue;609;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+47;admin.;married;university.degree;unknown;no;no;telephone;may;tue;202;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+47;admin.;married;university.degree;unknown;no;no;telephone;may;tue;262;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+39;blue-collar;married;basic.9y;no;no;no;telephone;may;tue;302;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+37;services;married;high.school;no;no;no;telephone;may;tue;121;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+40;technician;married;professional.course;unknown;no;no;telephone;may;tue;202;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+35;services;divorced;professional.course;unknown;no;no;telephone;may;tue;806;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+56;admin.;divorced;unknown;unknown;yes;yes;telephone;may;tue;31;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+36;admin.;married;high.school;unknown;no;no;telephone;may;tue;21;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+45;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;tue;334;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+38;technician;single;university.degree;no;yes;yes;telephone;may;tue;156;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+41;technician;married;professional.course;no;no;no;telephone;may;tue;92;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+37;blue-collar;married;professional.course;unknown;no;no;telephone;may;tue;128;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+45;admin.;single;university.degree;no;no;yes;telephone;may;tue;766;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+48;services;married;high.school;unknown;no;no;telephone;may;tue;162;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+29;admin.;single;basic.9y;unknown;no;no;telephone;may;tue;255;5;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+38;technician;single;university.degree;no;no;no;telephone;may;tue;137;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+48;services;married;high.school;unknown;yes;no;telephone;may;tue;189;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+40;blue-collar;married;high.school;no;no;no;telephone;may;tue;110;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+38;blue-collar;single;university.degree;unknown;yes;no;telephone;may;tue;395;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;yes
+42;blue-collar;married;basic.4y;no;no;no;telephone;may;tue;135;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+32;blue-collar;married;basic.9y;no;no;no;telephone;may;tue;102;4;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+56;admin.;married;unknown;unknown;yes;no;telephone;may;tue;705;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+54;services;married;unknown;no;no;no;telephone;may;tue;192;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+60;retired;married;basic.4y;unknown;no;no;telephone;may;tue;188;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+47;admin.;married;high.school;unknown;yes;no;telephone;may;tue;139;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+46;blue-collar;married;unknown;unknown;no;no;telephone;may;tue;131;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+42;admin.;single;high.school;no;no;no;telephone;may;tue;65;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+55;blue-collar;married;basic.4y;unknown;yes;yes;telephone;may;tue;266;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+37;services;married;high.school;no;yes;no;telephone;may;tue;76;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+38;technician;single;university.degree;no;no;no;telephone;may;tue;1015;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;yes
+45;technician;married;university.degree;unknown;yes;no;telephone;may;tue;122;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+32;blue-collar;married;basic.6y;no;no;yes;telephone;may;tue;60;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+37;blue-collar;married;professional.course;unknown;yes;yes;telephone;may;tue;111;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+30;technician;married;university.degree;no;yes;no;telephone;may;tue;683;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;yes
+36;blue-collar;married;high.school;no;no;yes;telephone;may;tue;100;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+48;admin.;married;high.school;no;no;no;telephone;may;tue;82;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+51;admin.;single;basic.6y;no;no;no;telephone;may;tue;470;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;yes
+46;housemaid;married;basic.4y;no;no;yes;telephone;may;tue;149;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+48;blue-collar;divorced;basic.4y;unknown;no;no;telephone;may;tue;106;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+47;services;married;high.school;unknown;no;no;telephone;may;tue;127;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+41;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;tue;320;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+53;retired;single;professional.course;unknown;yes;no;telephone;may;tue;145;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+55;retired;married;basic.4y;unknown;yes;no;telephone;may;tue;129;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+44;management;married;university.degree;unknown;no;no;telephone;may;tue;730;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+48;blue-collar;married;basic.4y;no;yes;no;telephone;may;tue;36;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+50;services;married;unknown;unknown;no;no;telephone;may;tue;521;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+34;blue-collar;married;basic.9y;no;no;no;telephone;may;tue;95;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+38;entrepreneur;married;basic.9y;no;no;no;telephone;may;tue;120;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+42;unemployed;single;university.degree;no;no;no;telephone;may;tue;349;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+57;retired;married;university.degree;no;yes;no;telephone;may;tue;768;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+58;blue-collar;divorced;basic.4y;no;yes;no;telephone;may;tue;277;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+48;management;married;university.degree;unknown;yes;no;telephone;may;tue;289;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+32;admin.;divorced;high.school;no;no;no;telephone;may;tue;473;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+35;admin.;single;university.degree;no;no;no;telephone;may;tue;133;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+55;retired;married;basic.6y;unknown;no;no;telephone;may;tue;129;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+47;blue-collar;married;basic.4y;no;yes;yes;telephone;may;tue;386;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+31;services;married;basic.6y;unknown;no;no;telephone;may;tue;1001;4;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;yes
+38;technician;married;professional.course;no;yes;no;telephone;may;tue;76;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+49;self-employed;married;professional.course;no;yes;no;telephone;may;tue;214;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+33;self-employed;divorced;basic.9y;no;yes;no;telephone;may;tue;355;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+27;admin.;single;university.degree;no;yes;yes;telephone;may;tue;194;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+45;technician;married;university.degree;no;yes;yes;telephone;may;tue;845;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;yes
+34;management;divorced;university.degree;no;yes;no;telephone;may;tue;208;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+38;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;tue;173;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+45;technician;single;professional.course;no;no;no;telephone;may;tue;113;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+28;admin.;single;unknown;no;no;no;telephone;may;tue;109;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+54;blue-collar;married;basic.4y;unknown;no;no;telephone;may;tue;853;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+58;retired;married;professional.course;unknown;no;yes;telephone;may;tue;518;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+48;blue-collar;married;unknown;unknown;no;no;telephone;may;tue;124;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+57;admin.;divorced;basic.9y;unknown;no;no;telephone;may;tue;452;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+28;admin.;married;university.degree;no;unknown;unknown;telephone;may;tue;203;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+49;blue-collar;married;basic.9y;unknown;no;no;telephone;may;tue;813;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+60;retired;married;university.degree;unknown;unknown;unknown;telephone;may;tue;81;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+39;services;divorced;basic.9y;no;no;no;telephone;may;tue;93;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+40;self-employed;married;professional.course;no;no;no;telephone;may;tue;119;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+58;unknown;married;basic.4y;no;no;yes;telephone;may;tue;295;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+36;blue-collar;married;basic.9y;unknown;no;no;telephone;may;tue;296;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+59;retired;married;university.degree;no;no;no;telephone;may;tue;916;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+42;admin.;married;basic.6y;no;no;no;telephone;may;tue;60;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+35;student;single;university.degree;unknown;no;no;telephone;may;tue;443;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+42;blue-collar;divorced;high.school;no;no;no;telephone;may;tue;225;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+37;blue-collar;married;high.school;no;yes;no;telephone;may;tue;262;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+49;blue-collar;married;basic.4y;unknown;no;no;telephone;may;tue;431;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+39;blue-collar;married;basic.9y;unknown;yes;yes;telephone;may;tue;358;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+46;blue-collar;married;basic.9y;unknown;no;no;telephone;may;tue;565;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+36;admin.;married;high.school;no;no;no;telephone;may;tue;753;6;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;yes
+35;technician;married;professional.course;no;no;no;telephone;may;tue;103;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+51;blue-collar;married;basic.4y;unknown;no;no;telephone;may;tue;708;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+40;blue-collar;divorced;basic.9y;unknown;yes;yes;telephone;may;tue;265;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+32;blue-collar;married;basic.9y;no;yes;no;telephone;may;tue;255;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+42;admin.;divorced;university.degree;no;no;no;telephone;may;tue;434;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+25;admin.;single;university.degree;no;no;no;telephone;may;tue;59;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+46;blue-collar;married;basic.6y;unknown;yes;no;telephone;may;tue;305;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+42;admin.;married;basic.6y;no;no;no;telephone;may;tue;155;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+47;management;married;basic.4y;unknown;yes;no;telephone;may;tue;805;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+56;admin.;married;high.school;no;no;no;telephone;may;tue;242;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+27;blue-collar;married;basic.4y;unknown;no;no;telephone;may;tue;19;9;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+47;housemaid;married;university.degree;no;no;no;telephone;may;tue;93;6;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+30;management;single;university.degree;no;yes;no;telephone;may;tue;211;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+48;admin.;divorced;high.school;no;no;no;telephone;may;tue;31;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+45;management;married;unknown;unknown;yes;no;telephone;may;tue;213;5;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+58;retired;married;high.school;no;yes;no;telephone;may;tue;104;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+39;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;tue;342;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+54;admin.;married;university.degree;no;no;no;telephone;may;tue;172;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+33;management;single;university.degree;no;yes;yes;telephone;may;tue;160;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+58;retired;divorced;professional.course;unknown;yes;no;telephone;may;tue;535;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+39;admin.;married;high.school;unknown;yes;no;telephone;may;tue;514;5;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+49;self-employed;married;professional.course;no;yes;no;telephone;may;tue;276;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+33;blue-collar;married;basic.9y;no;no;no;telephone;may;tue;176;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+40;housemaid;divorced;unknown;no;no;no;telephone;may;tue;20;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+49;services;married;high.school;no;yes;no;telephone;may;tue;161;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+50;housemaid;single;unknown;no;yes;no;telephone;may;tue;473;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+40;blue-collar;single;basic.9y;no;no;no;telephone;may;tue;245;4;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+50;services;married;unknown;unknown;no;no;telephone;may;tue;144;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+30;technician;married;university.degree;unknown;no;no;telephone;may;tue;123;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+32;admin.;married;university.degree;no;yes;no;telephone;may;tue;93;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+59;retired;married;basic.4y;unknown;no;no;telephone;may;tue;188;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+53;technician;married;professional.course;no;no;no;telephone;may;tue;332;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+43;admin.;divorced;basic.9y;no;unknown;unknown;telephone;may;tue;178;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+48;self-employed;married;basic.9y;unknown;yes;no;telephone;may;tue;318;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+47;unknown;divorced;basic.4y;unknown;no;no;telephone;may;tue;94;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+53;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;tue;139;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+37;admin.;married;high.school;unknown;no;no;telephone;may;tue;152;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+26;services;single;high.school;no;yes;no;telephone;may;tue;188;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+38;technician;single;professional.course;no;yes;no;telephone;may;tue;94;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+36;admin.;married;university.degree;no;no;no;telephone;may;tue;54;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+45;admin.;married;basic.9y;no;yes;no;telephone;may;tue;29;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+47;technician;married;basic.9y;no;yes;no;telephone;may;tue;271;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+36;technician;married;professional.course;no;no;yes;telephone;may;tue;95;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+47;technician;married;basic.9y;no;no;no;telephone;may;tue;227;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+31;management;married;university.degree;no;no;no;telephone;may;tue;190;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+29;blue-collar;married;basic.6y;no;no;yes;telephone;may;tue;60;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+42;technician;single;unknown;no;no;no;telephone;may;tue;162;4;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+41;services;married;basic.9y;no;yes;yes;telephone;may;tue;296;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+27;technician;single;professional.course;no;yes;no;telephone;may;tue;125;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+35;admin.;single;high.school;no;yes;no;telephone;may;tue;78;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+49;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;tue;67;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+45;blue-collar;married;basic.4y;no;unknown;unknown;telephone;may;tue;93;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+50;technician;married;basic.6y;no;yes;no;telephone;may;tue;119;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+49;blue-collar;married;basic.9y;no;yes;no;telephone;may;tue;3;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+27;blue-collar;married;basic.9y;no;yes;no;telephone;may;tue;297;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+58;retired;married;professional.course;unknown;unknown;unknown;telephone;may;tue;179;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+39;services;married;high.school;no;no;no;telephone;may;tue;342;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+41;technician;married;basic.9y;no;yes;no;telephone;may;tue;420;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+45;services;married;high.school;unknown;yes;no;telephone;may;tue;378;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+48;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;tue;190;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+46;admin.;divorced;high.school;unknown;yes;no;telephone;may;tue;354;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+49;blue-collar;married;basic.4y;unknown;no;no;telephone;may;tue;190;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+33;services;married;high.school;unknown;no;no;telephone;may;tue;131;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+46;blue-collar;married;basic.4y;unknown;no;no;telephone;may;tue;367;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+51;retired;married;basic.4y;unknown;yes;yes;telephone;may;tue;394;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+43;admin.;married;high.school;no;yes;no;telephone;may;tue;91;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+51;admin.;married;high.school;unknown;no;no;telephone;may;tue;280;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+43;blue-collar;married;basic.9y;no;no;no;telephone;may;tue;768;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+38;blue-collar;married;basic.6y;no;no;no;telephone;may;tue;184;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+56;unemployed;married;basic.9y;unknown;no;yes;telephone;may;tue;43;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+34;services;married;high.school;no;yes;yes;telephone;may;tue;108;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+35;admin.;single;university.degree;no;yes;yes;telephone;may;tue;195;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+45;admin.;married;basic.9y;unknown;yes;no;telephone;may;tue;109;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+43;technician;married;basic.9y;unknown;no;yes;telephone;may;tue;226;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+47;services;divorced;high.school;no;unknown;unknown;telephone;may;tue;299;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+49;unknown;married;unknown;no;no;no;telephone;may;tue;192;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+36;housemaid;married;high.school;no;no;no;telephone;may;tue;141;4;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+35;services;married;high.school;no;yes;no;telephone;may;tue;87;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+27;blue-collar;married;basic.9y;no;unknown;unknown;telephone;may;tue;169;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+54;retired;married;high.school;unknown;no;no;telephone;may;tue;119;10;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+31;admin.;married;high.school;unknown;yes;no;telephone;may;tue;101;13;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+33;blue-collar;married;basic.4y;unknown;no;no;telephone;may;tue;210;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+29;management;married;university.degree;no;no;no;telephone;may;tue;129;4;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+40;blue-collar;married;basic.6y;unknown;yes;no;telephone;may;tue;481;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+36;admin.;married;university.degree;no;no;no;telephone;may;tue;215;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+51;entrepreneur;married;basic.9y;no;yes;no;telephone;may;tue;142;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+39;technician;married;professional.course;no;no;no;telephone;may;tue;411;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+36;management;married;university.degree;no;no;no;telephone;may;tue;93;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+30;services;single;high.school;no;no;no;telephone;may;tue;65;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+36;blue-collar;divorced;high.school;no;no;no;telephone;may;tue;531;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+37;technician;married;professional.course;no;no;no;telephone;may;tue;34;4;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+46;housemaid;married;basic.4y;no;no;no;telephone;may;tue;788;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+44;blue-collar;married;unknown;no;no;yes;telephone;may;tue;431;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+30;management;married;university.degree;no;no;no;telephone;may;tue;851;4;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+30;admin.;single;high.school;no;no;no;telephone;may;tue;315;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+33;technician;single;high.school;no;no;no;telephone;may;tue;214;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+54;management;divorced;university.degree;no;yes;no;telephone;may;tue;92;4;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+44;blue-collar;married;unknown;unknown;no;no;telephone;may;tue;73;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+39;blue-collar;single;unknown;unknown;no;no;telephone;may;tue;181;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+35;services;married;high.school;no;no;no;telephone;may;tue;159;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+55;technician;married;professional.course;no;no;no;telephone;may;tue;58;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+29;admin.;single;high.school;no;yes;no;telephone;may;tue;1052;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+55;services;married;high.school;no;no;no;telephone;may;tue;165;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+36;technician;married;university.degree;no;no;no;telephone;may;tue;309;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+39;blue-collar;married;basic.6y;no;yes;no;telephone;may;tue;163;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+58;admin.;married;basic.6y;no;yes;no;telephone;may;tue;210;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+37;admin.;single;high.school;no;no;no;telephone;may;tue;165;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+28;blue-collar;single;basic.6y;unknown;yes;no;telephone;may;tue;331;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+34;management;married;university.degree;no;yes;no;telephone;may;tue;230;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+54;retired;divorced;basic.4y;no;yes;no;telephone;may;tue;584;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+27;management;single;university.degree;no;yes;no;telephone;may;tue;134;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+31;entrepreneur;single;basic.9y;no;no;no;telephone;may;tue;185;6;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+48;blue-collar;married;basic.4y;no;no;no;telephone;may;tue;295;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+46;housemaid;married;basic.4y;no;no;no;telephone;may;tue;86;4;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+40;technician;single;high.school;no;no;no;telephone;may;tue;151;4;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+47;services;married;high.school;unknown;no;yes;telephone;may;tue;69;11;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+47;blue-collar;married;professional.course;unknown;yes;no;telephone;may;tue;15;11;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+58;entrepreneur;married;university.degree;unknown;no;no;telephone;may;tue;437;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+51;self-employed;married;professional.course;unknown;yes;yes;telephone;may;tue;139;4;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+36;blue-collar;married;basic.9y;unknown;no;no;telephone;may;tue;267;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+36;admin.;married;high.school;no;yes;no;telephone;may;tue;259;5;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+36;blue-collar;single;university.degree;unknown;yes;no;telephone;may;tue;165;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+46;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;tue;566;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+50;services;married;high.school;unknown;yes;no;telephone;may;tue;175;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+47;management;divorced;university.degree;no;no;no;telephone;may;tue;198;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+60;retired;married;high.school;unknown;yes;no;telephone;may;tue;220;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+36;services;married;high.school;no;no;no;telephone;may;tue;168;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+25;self-employed;single;university.degree;no;no;no;telephone;may;tue;247;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+40;entrepreneur;married;university.degree;unknown;yes;no;telephone;may;tue;291;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+36;technician;married;unknown;no;yes;no;telephone;may;tue;322;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+37;services;married;high.school;unknown;yes;no;telephone;may;tue;194;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+46;blue-collar;married;unknown;unknown;yes;no;telephone;may;tue;379;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+49;services;married;high.school;no;no;yes;telephone;may;tue;151;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+42;technician;married;professional.course;unknown;no;no;telephone;may;tue;166;4;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+37;blue-collar;married;high.school;no;no;no;telephone;may;tue;64;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+36;technician;married;university.degree;no;yes;yes;telephone;may;tue;232;4;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+57;blue-collar;married;basic.4y;no;yes;yes;telephone;may;tue;647;7;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+39;services;married;basic.9y;no;yes;no;telephone;may;tue;322;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+28;admin.;married;high.school;no;no;no;telephone;may;tue;337;6;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+47;blue-collar;married;basic.4y;no;yes;no;telephone;may;tue;133;12;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+42;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;tue;50;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+34;entrepreneur;married;professional.course;no;no;no;telephone;may;tue;87;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+51;blue-collar;married;professional.course;no;no;yes;telephone;may;tue;771;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+30;services;single;unknown;no;yes;no;telephone;may;tue;205;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+33;admin.;single;university.degree;no;yes;no;telephone;may;tue;76;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+58;blue-collar;married;basic.4y;no;yes;no;telephone;may;tue;318;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+36;technician;married;basic.9y;unknown;no;no;telephone;may;tue;109;9;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+39;blue-collar;divorced;basic.9y;unknown;no;no;telephone;may;tue;304;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+31;services;single;high.school;no;no;no;telephone;may;tue;209;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+45;services;single;professional.course;unknown;unknown;unknown;telephone;may;tue;271;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+34;blue-collar;single;basic.4y;no;yes;yes;telephone;may;tue;1093;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+33;services;divorced;high.school;no;no;no;telephone;may;tue;326;4;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+35;blue-collar;married;basic.6y;unknown;yes;no;telephone;may;tue;389;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+39;technician;married;professional.course;no;no;no;telephone;may;tue;273;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+42;technician;single;high.school;unknown;no;no;telephone;may;tue;264;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+37;admin.;married;high.school;no;no;no;telephone;may;tue;1106;4;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+42;blue-collar;single;basic.9y;no;unknown;unknown;telephone;may;tue;195;5;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+48;technician;single;unknown;no;unknown;unknown;telephone;may;tue;69;19;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+29;admin.;married;high.school;no;no;no;telephone;may;tue;214;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+59;retired;married;basic.9y;no;yes;no;telephone;may;tue;87;9;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+32;blue-collar;single;basic.9y;no;no;no;telephone;may;tue;122;7;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+31;services;married;basic.9y;no;no;no;telephone;may;tue;945;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;yes
+52;management;married;basic.4y;unknown;yes;no;telephone;may;tue;288;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+46;blue-collar;married;unknown;no;no;no;telephone;may;tue;50;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+25;blue-collar;married;basic.9y;no;no;no;telephone;may;tue;816;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+36;entrepreneur;married;basic.6y;no;yes;no;telephone;may;tue;284;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+23;blue-collar;married;professional.course;no;yes;no;telephone;may;tue;116;4;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+42;admin.;single;university.degree;no;yes;no;telephone;may;tue;72;4;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+43;admin.;married;high.school;no;no;no;telephone;may;tue;232;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+29;services;single;high.school;no;no;yes;telephone;may;tue;262;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+45;admin.;married;high.school;no;yes;no;telephone;may;tue;190;5;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+45;entrepreneur;married;university.degree;no;yes;no;telephone;may;tue;1721;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;yes
+27;technician;single;high.school;unknown;no;yes;telephone;may;tue;351;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+35;admin.;married;high.school;no;yes;no;telephone;may;tue;166;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+35;technician;married;professional.course;no;no;no;telephone;may;tue;104;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+39;blue-collar;divorced;high.school;no;yes;yes;telephone;may;tue;163;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+29;technician;married;professional.course;no;no;no;telephone;may;tue;492;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+46;blue-collar;divorced;basic.4y;unknown;no;no;telephone;may;tue;152;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+39;admin.;married;university.degree;no;no;no;telephone;may;tue;109;4;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+34;blue-collar;married;basic.6y;no;no;no;telephone;may;tue;384;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+44;entrepreneur;divorced;university.degree;no;yes;no;telephone;may;tue;1032;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+35;blue-collar;married;unknown;no;no;no;telephone;may;wed;128;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+33;technician;single;professional.course;no;yes;yes;telephone;may;wed;65;6;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+41;blue-collar;single;basic.9y;unknown;no;no;telephone;may;wed;194;4;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+37;technician;married;university.degree;no;no;no;telephone;may;wed;360;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+40;admin.;single;university.degree;unknown;yes;no;telephone;may;wed;96;4;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+42;blue-collar;divorced;basic.9y;no;yes;no;telephone;may;wed;20;11;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+55;blue-collar;married;basic.9y;no;yes;no;telephone;may;wed;323;4;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+46;management;married;basic.6y;unknown;no;no;telephone;may;wed;332;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+37;management;married;university.degree;no;yes;no;telephone;may;wed;735;8;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+39;technician;married;professional.course;no;no;no;telephone;may;wed;151;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+40;blue-collar;married;high.school;no;no;no;telephone;may;wed;158;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+52;technician;married;high.school;no;yes;yes;telephone;may;wed;73;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+43;management;married;university.degree;no;unknown;unknown;telephone;may;wed;407;4;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+51;blue-collar;married;basic.4y;no;yes;no;telephone;may;wed;438;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+45;management;divorced;basic.9y;unknown;no;no;telephone;may;wed;174;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+40;management;divorced;university.degree;unknown;no;no;telephone;may;wed;175;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+28;student;single;high.school;unknown;yes;no;telephone;may;wed;313;4;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+33;admin.;single;high.school;no;unknown;unknown;telephone;may;wed;137;4;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+47;self-employed;married;unknown;unknown;no;no;telephone;may;wed;22;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+54;management;divorced;university.degree;no;yes;no;telephone;may;wed;328;4;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+46;unknown;married;university.degree;no;no;no;telephone;may;wed;93;4;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+36;admin.;married;high.school;no;no;no;telephone;may;wed;97;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+46;unemployed;married;professional.course;unknown;yes;no;telephone;may;wed;219;4;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+45;blue-collar;divorced;basic.9y;no;yes;no;telephone;may;wed;455;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+46;management;married;university.degree;no;no;yes;telephone;may;wed;103;6;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+30;services;married;unknown;no;no;no;telephone;may;wed;133;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+55;management;married;unknown;no;yes;yes;telephone;may;wed;77;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+45;admin.;married;basic.9y;unknown;yes;yes;telephone;may;wed;211;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+45;admin.;married;high.school;no;yes;no;telephone;may;wed;72;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+51;admin.;married;basic.4y;unknown;yes;no;telephone;may;wed;942;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;yes
+31;admin.;single;university.degree;no;no;no;telephone;may;wed;89;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+33;admin.;married;unknown;no;yes;no;telephone;may;wed;108;4;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+45;services;divorced;high.school;unknown;yes;no;telephone;may;wed;101;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+52;blue-collar;married;basic.4y;unknown;yes;yes;telephone;may;wed;305;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+35;unemployed;married;university.degree;no;yes;no;telephone;may;wed;387;9;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+50;admin.;married;high.school;unknown;yes;no;telephone;may;wed;146;4;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+48;admin.;married;university.degree;no;yes;yes;telephone;may;wed;160;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+41;management;married;unknown;unknown;yes;no;telephone;may;wed;70;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+58;housemaid;married;university.degree;unknown;no;no;telephone;may;wed;162;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+36;admin.;single;university.degree;unknown;no;no;telephone;may;wed;117;4;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+44;blue-collar;single;basic.4y;no;no;no;telephone;may;wed;381;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+38;blue-collar;single;university.degree;no;no;no;telephone;may;wed;109;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+38;blue-collar;married;basic.6y;unknown;yes;no;telephone;may;wed;476;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;yes
+53;blue-collar;married;basic.9y;no;no;no;telephone;may;wed;178;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+37;blue-collar;married;basic.9y;no;yes;no;telephone;may;wed;260;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+29;admin.;single;university.degree;no;no;no;telephone;may;wed;231;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+35;services;married;high.school;no;no;no;telephone;may;wed;188;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+59;entrepreneur;married;high.school;no;no;no;telephone;may;wed;145;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+38;technician;married;basic.6y;unknown;yes;yes;telephone;may;wed;163;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+34;technician;single;professional.course;no;no;no;telephone;may;wed;27;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+28;blue-collar;married;basic.9y;no;yes;no;telephone;may;wed;282;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+43;blue-collar;married;unknown;unknown;no;yes;telephone;may;wed;73;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+45;blue-collar;divorced;basic.9y;no;yes;yes;telephone;may;wed;48;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+31;blue-collar;single;basic.9y;no;no;no;telephone;may;wed;220;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+34;blue-collar;married;basic.9y;no;no;no;telephone;may;wed;606;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+50;management;divorced;high.school;unknown;no;no;telephone;may;wed;82;7;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+38;technician;single;university.degree;no;no;no;telephone;may;wed;451;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+39;technician;married;university.degree;unknown;no;no;telephone;may;wed;202;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+41;technician;married;high.school;no;yes;no;telephone;may;wed;832;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;yes
+29;blue-collar;married;basic.6y;no;no;yes;telephone;may;wed;168;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+34;admin.;single;high.school;no;yes;yes;telephone;may;wed;230;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+45;technician;married;professional.course;unknown;no;no;telephone;may;wed;69;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+42;blue-collar;married;basic.4y;unknown;unknown;unknown;telephone;may;wed;200;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+32;blue-collar;married;basic.9y;no;no;no;telephone;may;wed;170;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+41;blue-collar;married;basic.4y;no;no;no;telephone;may;wed;142;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+49;blue-collar;married;basic.4y;no;no;no;telephone;may;wed;283;8;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+46;blue-collar;married;basic.4y;unknown;no;no;telephone;may;wed;421;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+39;blue-collar;married;high.school;unknown;no;no;telephone;may;wed;278;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+45;unknown;married;unknown;unknown;unknown;unknown;telephone;may;wed;179;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+48;management;married;basic.4y;unknown;no;no;telephone;may;wed;238;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+33;blue-collar;married;basic.9y;no;yes;yes;telephone;may;wed;110;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+52;blue-collar;married;basic.6y;no;yes;no;telephone;may;wed;138;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+44;blue-collar;married;basic.4y;unknown;no;yes;telephone;may;wed;218;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+44;management;married;university.degree;no;no;no;telephone;may;wed;158;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+33;unemployed;divorced;basic.9y;no;yes;no;telephone;may;wed;105;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+57;blue-collar;divorced;professional.course;no;no;no;telephone;may;wed;106;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+31;management;married;high.school;no;no;no;telephone;may;wed;217;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+52;admin.;married;high.school;no;unknown;unknown;telephone;may;wed;132;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+40;blue-collar;single;basic.9y;unknown;yes;no;telephone;may;wed;824;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+37;admin.;married;university.degree;no;no;yes;telephone;may;wed;243;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+39;blue-collar;married;basic.6y;no;no;no;telephone;may;wed;488;12;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+34;self-employed;single;university.degree;no;yes;no;telephone;may;wed;148;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+38;technician;single;professional.course;unknown;unknown;unknown;telephone;may;wed;159;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+43;services;married;high.school;no;no;no;telephone;may;wed;124;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+33;blue-collar;married;basic.9y;no;no;yes;telephone;may;wed;452;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+51;services;married;high.school;no;yes;no;telephone;may;wed;114;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+51;services;married;high.school;no;yes;no;telephone;may;wed;92;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+50;housemaid;married;basic.9y;unknown;yes;yes;telephone;may;wed;125;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+45;blue-collar;married;basic.9y;unknown;no;yes;telephone;may;wed;145;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+27;admin.;single;high.school;no;yes;no;telephone;may;wed;1328;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;yes
+50;admin.;married;university.degree;no;yes;no;telephone;may;wed;686;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+53;services;married;high.school;unknown;yes;no;telephone;may;wed;80;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+42;management;married;university.degree;unknown;yes;no;telephone;may;wed;265;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+41;admin.;married;high.school;no;yes;no;telephone;may;wed;300;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+57;retired;married;university.degree;unknown;no;no;telephone;may;wed;203;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+47;blue-collar;single;basic.9y;no;no;yes;telephone;may;wed;71;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+29;housemaid;married;high.school;no;no;no;telephone;may;wed;534;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+39;unemployed;single;university.degree;no;no;yes;telephone;may;wed;243;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+33;services;single;basic.6y;unknown;yes;no;telephone;may;wed;230;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+51;services;married;high.school;unknown;yes;no;telephone;may;wed;127;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+37;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;wed;1125;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;yes
+36;admin.;married;university.degree;unknown;yes;no;telephone;may;wed;136;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+48;blue-collar;married;basic.4y;no;yes;no;telephone;may;wed;158;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+44;technician;single;unknown;unknown;no;no;telephone;may;wed;267;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+34;blue-collar;single;high.school;unknown;yes;yes;telephone;may;wed;257;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+54;management;married;university.degree;unknown;no;no;telephone;may;wed;110;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+40;housemaid;divorced;basic.6y;unknown;yes;no;telephone;may;wed;477;5;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+52;management;married;professional.course;no;yes;no;telephone;may;wed;456;9;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+33;unemployed;divorced;basic.9y;no;no;no;telephone;may;wed;1321;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;yes
+35;blue-collar;married;basic.9y;no;yes;no;telephone;may;wed;298;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+43;unknown;married;high.school;unknown;no;no;telephone;may;wed;96;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+38;services;married;high.school;no;no;no;telephone;may;wed;483;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+55;admin.;married;high.school;no;no;yes;telephone;may;wed;213;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+42;blue-collar;married;basic.4y;no;no;no;telephone;may;wed;51;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+40;services;single;high.school;no;yes;no;telephone;may;wed;44;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+49;admin.;divorced;basic.9y;no;yes;no;telephone;may;wed;164;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+54;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;wed;166;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+49;blue-collar;married;basic.6y;unknown;yes;yes;telephone;may;wed;220;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+37;services;married;high.school;no;yes;no;telephone;may;wed;178;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+54;blue-collar;married;basic.9y;no;no;no;telephone;may;wed;452;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+33;blue-collar;married;high.school;no;no;no;telephone;may;wed;858;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;yes
+49;blue-collar;married;basic.9y;no;yes;no;telephone;may;wed;87;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+36;blue-collar;married;basic.6y;unknown;no;no;telephone;may;wed;97;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+48;entrepreneur;married;university.degree;no;yes;no;telephone;may;wed;122;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+35;student;married;university.degree;no;yes;no;telephone;may;wed;629;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;yes
+42;blue-collar;divorced;basic.6y;unknown;no;no;telephone;may;wed;116;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+35;technician;divorced;professional.course;no;no;no;telephone;may;wed;120;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+51;unemployed;married;professional.course;no;no;no;telephone;may;wed;122;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+48;retired;married;basic.9y;no;no;no;telephone;may;wed;262;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+50;admin.;divorced;basic.9y;no;yes;no;telephone;may;wed;179;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+35;admin.;married;high.school;unknown;unknown;unknown;telephone;may;wed;35;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+45;services;married;high.school;unknown;no;no;telephone;may;wed;156;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+46;management;divorced;university.degree;no;unknown;unknown;telephone;may;wed;201;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+29;services;married;high.school;unknown;unknown;unknown;telephone;may;wed;159;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+39;management;married;university.degree;no;yes;no;telephone;may;wed;68;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+34;entrepreneur;married;basic.4y;no;no;no;telephone;may;wed;75;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+37;admin.;married;high.school;no;yes;no;telephone;may;wed;191;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+26;services;single;high.school;no;no;no;telephone;may;wed;461;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+52;blue-collar;married;basic.9y;no;no;no;telephone;may;wed;188;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+42;admin.;married;basic.9y;no;yes;no;telephone;may;wed;117;6;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+44;blue-collar;divorced;basic.4y;unknown;yes;no;telephone;may;wed;546;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+55;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;wed;171;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+41;technician;married;basic.9y;no;no;no;telephone;may;wed;351;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+53;services;married;high.school;no;no;no;telephone;may;wed;429;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+39;admin.;married;basic.4y;no;yes;no;telephone;may;wed;249;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+40;technician;married;professional.course;no;no;no;telephone;may;wed;568;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+42;services;married;professional.course;no;yes;no;telephone;may;wed;299;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+29;services;divorced;high.school;no;no;no;telephone;may;wed;282;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+30;blue-collar;divorced;basic.9y;no;yes;no;telephone;may;wed;211;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+41;housemaid;married;basic.6y;no;no;no;telephone;may;wed;77;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+30;blue-collar;divorced;basic.9y;no;yes;no;telephone;may;wed;283;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+52;blue-collar;married;basic.9y;no;yes;no;telephone;may;wed;263;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+41;housemaid;married;basic.6y;no;no;no;telephone;may;wed;189;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+34;technician;divorced;professional.course;no;no;no;telephone;may;wed;91;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+40;admin.;single;high.school;no;no;no;telephone;may;wed;32;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+34;blue-collar;married;basic.9y;no;no;no;telephone;may;wed;139;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+42;blue-collar;married;basic.6y;no;yes;no;telephone;may;wed;347;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+35;blue-collar;married;basic.9y;no;no;yes;telephone;may;wed;58;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+28;entrepreneur;married;university.degree;no;no;no;telephone;may;wed;152;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+29;services;divorced;high.school;no;no;no;telephone;may;wed;869;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+50;housemaid;divorced;basic.4y;unknown;no;no;telephone;may;wed;339;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+56;unemployed;divorced;high.school;no;yes;no;telephone;may;wed;267;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+48;admin.;divorced;high.school;no;yes;no;telephone;may;wed;34;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+29;admin.;single;university.degree;no;no;no;telephone;may;wed;153;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+42;blue-collar;married;basic.6y;no;no;no;telephone;may;wed;28;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+51;management;married;basic.4y;no;no;no;telephone;may;wed;216;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+29;technician;single;professional.course;no;no;no;telephone;may;wed;199;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+41;admin.;single;university.degree;no;yes;no;telephone;may;wed;139;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+28;services;single;high.school;no;no;no;telephone;may;wed;322;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+34;management;married;university.degree;no;yes;no;telephone;may;wed;189;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+31;admin.;married;university.degree;no;no;no;telephone;may;wed;197;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+47;blue-collar;married;basic.9y;no;yes;no;telephone;may;wed;224;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+40;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;wed;160;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+31;blue-collar;married;basic.9y;no;no;no;telephone;may;wed;180;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+39;unemployed;married;university.degree;no;no;no;telephone;may;wed;191;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+52;blue-collar;married;basic.4y;unknown;yes;yes;telephone;may;wed;833;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+50;technician;married;professional.course;unknown;yes;no;telephone;may;wed;485;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+36;blue-collar;married;basic.6y;no;yes;no;telephone;may;wed;57;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+56;blue-collar;married;basic.9y;unknown;no;no;telephone;may;wed;247;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+35;unknown;married;basic.9y;no;no;no;telephone;may;wed;89;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+29;admin.;single;university.degree;no;yes;no;telephone;may;wed;849;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+29;blue-collar;married;professional.course;no;yes;yes;telephone;may;wed;260;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+34;blue-collar;single;basic.9y;no;no;yes;telephone;may;wed;181;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+29;blue-collar;married;high.school;no;no;yes;telephone;may;wed;125;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+50;admin.;married;high.school;unknown;no;no;telephone;may;wed;225;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+39;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;wed;829;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+29;blue-collar;married;professional.course;no;yes;no;telephone;may;wed;749;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+41;admin.;single;high.school;no;yes;yes;telephone;may;wed;166;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+34;blue-collar;married;high.school;no;no;no;telephone;may;wed;407;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+43;technician;divorced;professional.course;unknown;unknown;unknown;telephone;may;wed;182;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+48;admin.;divorced;high.school;no;yes;no;telephone;may;wed;152;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+38;admin.;married;university.degree;no;no;no;telephone;may;wed;438;4;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+32;admin.;single;high.school;no;no;no;telephone;may;wed;387;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+35;admin.;married;high.school;no;no;no;telephone;may;wed;100;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+39;blue-collar;married;basic.6y;no;no;no;telephone;may;wed;413;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+47;blue-collar;married;basic.6y;no;no;yes;telephone;may;wed;191;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+41;entrepreneur;married;basic.4y;no;no;no;telephone;may;wed;109;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+41;management;married;unknown;no;no;no;telephone;may;wed;345;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+40;blue-collar;married;high.school;no;no;no;telephone;may;wed;1028;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;yes
+43;unknown;married;university.degree;no;no;no;telephone;may;wed;566;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+35;services;married;high.school;no;no;no;telephone;may;wed;38;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+49;services;married;high.school;no;yes;no;telephone;may;wed;214;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+40;services;married;high.school;unknown;yes;no;telephone;may;wed;248;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+24;student;single;high.school;unknown;no;no;telephone;may;wed;246;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+49;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;wed;170;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+41;management;married;university.degree;unknown;yes;no;telephone;may;wed;136;8;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+44;admin.;married;university.degree;no;yes;no;telephone;may;wed;98;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+28;services;divorced;high.school;no;yes;no;telephone;may;wed;225;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+41;blue-collar;married;basic.9y;no;no;no;telephone;may;wed;230;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+35;technician;married;university.degree;no;no;no;telephone;may;wed;364;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+35;blue-collar;single;basic.6y;unknown;yes;no;telephone;may;wed;784;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+32;blue-collar;married;basic.6y;unknown;yes;yes;telephone;may;wed;93;11;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+45;admin.;married;university.degree;no;no;no;telephone;may;wed;57;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+36;technician;married;professional.course;no;yes;no;telephone;may;wed;160;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+41;technician;married;basic.9y;no;yes;no;telephone;may;wed;210;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+40;admin.;single;high.school;no;yes;no;telephone;may;wed;222;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+41;admin.;single;university.degree;no;no;no;telephone;may;wed;265;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+43;blue-collar;single;basic.4y;unknown;no;no;telephone;may;wed;21;10;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+38;technician;married;professional.course;unknown;yes;no;telephone;may;wed;157;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+28;entrepreneur;married;basic.4y;unknown;yes;no;telephone;may;wed;143;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+36;services;single;unknown;no;yes;no;telephone;may;wed;230;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+28;entrepreneur;married;basic.4y;unknown;no;no;telephone;may;wed;117;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+35;technician;married;professional.course;no;no;no;telephone;may;wed;161;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+56;management;married;university.degree;no;no;no;telephone;may;wed;350;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+25;blue-collar;single;basic.9y;no;yes;no;telephone;may;wed;155;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+59;blue-collar;married;basic.4y;no;yes;no;telephone;may;wed;162;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+28;entrepreneur;married;basic.4y;unknown;yes;no;telephone;may;wed;565;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+56;services;married;basic.9y;unknown;no;no;telephone;may;wed;44;5;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+33;admin.;single;university.degree;no;no;no;telephone;may;wed;337;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+36;admin.;divorced;high.school;no;yes;no;telephone;may;wed;416;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+41;technician;married;basic.9y;no;no;no;telephone;may;wed;102;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+35;unknown;married;basic.9y;no;no;yes;telephone;may;wed;129;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+24;services;single;high.school;no;yes;no;telephone;may;wed;977;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+35;self-employed;single;basic.6y;unknown;no;yes;telephone;may;wed;138;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+32;technician;divorced;professional.course;no;yes;no;telephone;may;wed;70;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+29;technician;married;professional.course;no;no;no;telephone;may;wed;71;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+31;blue-collar;married;basic.6y;unknown;yes;no;telephone;may;wed;251;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+33;blue-collar;married;basic.6y;unknown;no;no;telephone;may;wed;75;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+33;management;married;high.school;unknown;yes;no;telephone;may;wed;110;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+42;admin.;married;professional.course;no;no;no;telephone;may;wed;230;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+34;services;married;high.school;unknown;no;no;telephone;may;wed;48;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+29;technician;married;professional.course;no;yes;no;telephone;may;wed;369;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+38;blue-collar;married;basic.9y;no;no;no;telephone;may;wed;136;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+45;blue-collar;married;basic.9y;unknown;no;no;telephone;may;wed;22;4;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+33;admin.;married;university.degree;no;yes;no;telephone;may;wed;174;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+42;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;wed;378;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+36;services;married;basic.6y;no;no;no;telephone;may;wed;80;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+45;blue-collar;married;basic.4y;no;yes;no;telephone;may;wed;144;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+32;services;single;high.school;no;no;no;telephone;may;wed;380;4;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+37;admin.;married;university.degree;no;yes;no;telephone;may;wed;108;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+40;blue-collar;married;basic.6y;no;yes;no;telephone;may;wed;927;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;yes
+26;blue-collar;married;basic.6y;no;no;no;telephone;may;wed;389;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+35;management;married;university.degree;no;yes;yes;telephone;may;wed;192;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+35;management;married;university.degree;no;no;no;telephone;may;wed;273;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+30;services;married;high.school;unknown;no;no;telephone;may;wed;48;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+36;management;married;university.degree;no;yes;no;telephone;may;wed;8;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+36;management;married;university.degree;no;no;no;telephone;may;wed;90;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+40;blue-collar;married;unknown;unknown;no;no;telephone;may;wed;221;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+26;student;single;university.degree;no;yes;no;telephone;may;wed;217;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+54;housemaid;divorced;basic.4y;unknown;no;no;telephone;may;wed;762;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+51;technician;married;professional.course;no;no;no;telephone;may;wed;302;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+45;blue-collar;single;basic.9y;no;yes;yes;telephone;may;wed;411;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+36;blue-collar;married;basic.9y;no;no;no;telephone;may;wed;179;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+58;admin.;divorced;university.degree;no;no;no;telephone;may;wed;245;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+33;entrepreneur;married;high.school;no;no;no;telephone;may;wed;746;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+50;housemaid;married;basic.9y;unknown;no;no;telephone;may;wed;673;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+33;blue-collar;married;basic.4y;no;yes;yes;telephone;may;wed;220;7;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+31;services;married;high.school;no;no;no;telephone;may;wed;232;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+34;admin.;single;high.school;no;no;no;telephone;may;wed;106;4;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+34;unemployed;single;university.degree;no;no;no;telephone;may;wed;115;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+30;admin.;married;high.school;unknown;no;no;telephone;may;wed;485;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+27;student;single;university.degree;no;yes;no;telephone;may;wed;274;6;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+30;services;married;high.school;no;no;no;telephone;may;wed;106;5;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+23;services;single;high.school;no;no;no;telephone;may;wed;107;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+33;admin.;married;high.school;no;yes;yes;telephone;may;wed;1044;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+23;services;single;high.school;no;no;no;telephone;may;wed;354;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+36;blue-collar;married;basic.9y;no;yes;yes;telephone;may;wed;55;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+42;admin.;divorced;university.degree;no;no;no;telephone;may;wed;180;4;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+36;blue-collar;married;basic.9y;no;no;no;telephone;may;wed;95;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+60;housemaid;married;high.school;no;unknown;unknown;telephone;may;wed;392;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+26;entrepreneur;single;high.school;no;no;no;telephone;may;wed;331;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+45;blue-collar;divorced;basic.4y;unknown;no;no;telephone;may;wed;123;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+32;admin.;married;university.degree;no;no;no;telephone;may;wed;148;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+37;services;married;high.school;no;no;no;telephone;may;wed;74;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+40;blue-collar;married;basic.4y;unknown;no;no;telephone;may;wed;267;7;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+36;admin.;single;university.degree;no;yes;yes;telephone;may;wed;374;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+35;entrepreneur;married;basic.9y;no;yes;no;telephone;may;wed;295;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+45;self-employed;single;professional.course;unknown;yes;no;telephone;may;wed;77;4;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+48;admin.;married;university.degree;unknown;no;no;telephone;may;wed;149;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+36;entrepreneur;married;basic.9y;no;no;no;telephone;may;wed;668;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+37;technician;divorced;high.school;no;yes;no;telephone;may;wed;95;6;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+36;blue-collar;married;basic.9y;unknown;no;no;telephone;may;wed;229;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+56;blue-collar;divorced;basic.9y;no;yes;no;telephone;may;wed;286;9;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+28;blue-collar;single;basic.9y;no;yes;no;telephone;may;wed;242;5;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+43;blue-collar;married;basic.9y;no;no;yes;telephone;may;wed;335;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+30;technician;married;professional.course;unknown;no;no;telephone;may;wed;140;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+33;blue-collar;single;basic.9y;unknown;no;no;telephone;may;wed;159;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+30;technician;single;professional.course;no;yes;no;telephone;may;wed;343;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+33;technician;divorced;professional.course;no;no;no;telephone;may;wed;85;4;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+42;technician;married;professional.course;unknown;no;no;telephone;may;wed;295;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+30;blue-collar;married;basic.9y;no;yes;no;telephone;may;wed;360;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+33;blue-collar;married;high.school;no;yes;no;telephone;may;wed;183;4;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+39;admin.;married;high.school;no;no;no;telephone;may;wed;726;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+37;blue-collar;married;basic.9y;no;no;no;telephone;may;wed;158;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+41;self-employed;married;basic.9y;no;yes;no;telephone;may;wed;514;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+53;self-employed;married;university.degree;no;yes;no;telephone;may;wed;382;10;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+31;admin.;single;university.degree;no;no;no;telephone;may;wed;142;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+47;technician;married;professional.course;unknown;no;no;telephone;may;wed;301;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+46;blue-collar;married;basic.4y;unknown;no;no;telephone;may;wed;153;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+52;admin.;single;basic.9y;no;no;no;telephone;may;wed;264;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+28;technician;single;basic.9y;no;no;no;telephone;may;wed;161;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+60;blue-collar;married;basic.9y;unknown;no;no;telephone;may;wed;150;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+50;admin.;married;high.school;no;no;yes;telephone;may;wed;49;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+31;technician;married;university.degree;no;no;no;telephone;may;wed;326;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+39;blue-collar;married;basic.9y;no;yes;no;telephone;may;wed;183;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+27;blue-collar;single;basic.6y;no;yes;no;telephone;may;wed;634;10;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+33;blue-collar;married;basic.9y;no;no;no;telephone;may;wed;339;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+47;services;divorced;high.school;no;no;no;telephone;may;wed;125;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+39;admin.;married;high.school;unknown;yes;no;telephone;may;wed;232;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+37;services;married;high.school;unknown;yes;no;telephone;may;wed;312;5;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+32;services;married;high.school;no;no;no;telephone;may;wed;423;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+37;blue-collar;married;basic.4y;no;yes;no;telephone;may;wed;191;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+31;blue-collar;married;basic.9y;no;yes;yes;telephone;may;wed;248;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+32;blue-collar;married;basic.9y;no;no;no;telephone;may;wed;146;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+59;retired;married;professional.course;unknown;yes;no;telephone;may;wed;125;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+48;technician;married;university.degree;unknown;yes;no;telephone;may;wed;234;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+48;services;married;high.school;no;no;no;telephone;may;wed;17;18;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+32;technician;married;professional.course;no;no;no;telephone;may;wed;546;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+32;blue-collar;single;basic.9y;unknown;no;no;telephone;may;wed;554;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+38;blue-collar;married;professional.course;no;yes;no;telephone;may;wed;162;4;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+34;entrepreneur;married;high.school;unknown;no;no;telephone;may;wed;436;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+44;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;wed;302;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+54;services;divorced;high.school;unknown;no;no;telephone;may;wed;349;5;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+39;services;married;high.school;no;yes;yes;telephone;may;wed;174;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+32;admin.;single;university.degree;no;no;no;telephone;may;wed;180;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+43;services;single;high.school;unknown;yes;no;telephone;may;wed;902;5;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+30;technician;married;professional.course;no;unknown;unknown;telephone;may;wed;137;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+26;unemployed;single;basic.9y;no;no;no;telephone;may;wed;282;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+38;admin.;single;university.degree;no;yes;yes;telephone;may;wed;126;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+35;technician;married;professional.course;no;no;no;telephone;may;wed;554;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+33;self-employed;married;basic.9y;no;yes;no;telephone;may;wed;21;11;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+36;technician;married;professional.course;no;no;no;telephone;may;wed;246;4;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+44;blue-collar;married;basic.4y;no;no;no;telephone;may;wed;141;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+35;technician;married;professional.course;no;yes;yes;telephone;may;wed;427;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+42;blue-collar;married;basic.4y;no;yes;yes;telephone;may;wed;97;5;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+35;technician;married;professional.course;no;no;no;telephone;may;wed;402;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+54;self-employed;married;professional.course;unknown;no;no;telephone;may;wed;252;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+36;blue-collar;married;basic.9y;no;no;no;telephone;may;wed;360;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+26;student;single;high.school;no;no;no;telephone;may;wed;852;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+27;blue-collar;married;basic.9y;no;yes;no;telephone;may;wed;241;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+44;blue-collar;divorced;basic.6y;no;no;no;telephone;may;wed;133;4;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+28;services;married;unknown;no;no;no;telephone;may;wed;98;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+53;retired;divorced;high.school;no;unknown;unknown;telephone;may;wed;574;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+46;blue-collar;married;basic.9y;unknown;no;no;telephone;may;wed;274;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+49;blue-collar;married;basic.4y;unknown;no;no;telephone;may;wed;154;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+33;admin.;married;university.degree;no;no;no;telephone;may;wed;122;4;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+30;student;single;unknown;unknown;no;no;telephone;may;wed;166;4;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+29;admin.;single;high.school;no;yes;yes;telephone;may;wed;167;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+51;self-employed;married;basic.4y;unknown;no;yes;telephone;may;wed;91;7;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+55;admin.;married;high.school;no;yes;no;telephone;may;wed;133;4;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+41;admin.;single;high.school;no;no;no;telephone;may;wed;594;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+39;blue-collar;divorced;basic.9y;no;yes;no;telephone;may;wed;86;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+49;management;married;university.degree;no;no;no;telephone;may;wed;166;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+39;blue-collar;divorced;unknown;no;no;no;telephone;may;wed;302;10;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+30;admin.;married;university.degree;no;yes;no;telephone;may;wed;303;4;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+31;services;married;high.school;no;no;no;telephone;may;wed;636;6;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+59;blue-collar;divorced;basic.4y;no;no;no;telephone;may;wed;341;5;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+33;blue-collar;single;high.school;no;no;no;telephone;may;wed;483;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+44;blue-collar;married;basic.4y;no;yes;no;telephone;may;wed;234;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+28;services;married;high.school;no;yes;yes;telephone;may;wed;211;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+26;blue-collar;single;basic.9y;no;no;no;telephone;may;wed;738;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+28;blue-collar;married;basic.6y;no;yes;yes;telephone;may;wed;482;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+32;technician;single;high.school;no;yes;no;telephone;may;wed;238;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+47;services;divorced;high.school;no;yes;no;telephone;may;wed;370;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+33;blue-collar;married;basic.9y;no;yes;no;telephone;may;wed;76;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+28;student;married;university.degree;no;no;no;telephone;may;wed;225;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+51;blue-collar;divorced;basic.9y;unknown;no;no;telephone;may;wed;256;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+37;housemaid;married;university.degree;unknown;no;no;telephone;may;wed;567;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+37;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;wed;147;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+34;blue-collar;single;basic.4y;unknown;no;yes;telephone;may;wed;135;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+31;blue-collar;married;basic.9y;no;no;yes;telephone;may;wed;582;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+38;self-employed;single;university.degree;no;no;yes;telephone;may;wed;270;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+33;management;married;high.school;no;no;no;telephone;may;wed;52;4;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+28;services;married;unknown;no;yes;no;telephone;may;wed;260;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+41;admin.;married;high.school;no;no;no;telephone;may;wed;254;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+29;technician;married;university.degree;no;yes;no;telephone;may;wed;1118;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+38;blue-collar;married;basic.4y;unknown;no;no;telephone;may;wed;76;9;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+46;admin.;married;high.school;no;yes;no;telephone;may;wed;79;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+36;blue-collar;married;unknown;no;no;no;telephone;may;wed;837;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+59;retired;married;professional.course;unknown;no;no;telephone;may;wed;208;5;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+44;management;married;university.degree;unknown;no;yes;telephone;may;wed;245;7;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+34;technician;married;professional.course;unknown;no;yes;telephone;may;wed;187;4;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+36;technician;married;professional.course;no;no;no;telephone;may;wed;1423;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;yes
+51;blue-collar;married;basic.6y;unknown;yes;no;telephone;may;wed;271;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+36;services;married;high.school;no;no;yes;telephone;may;wed;166;5;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+58;retired;married;basic.9y;no;no;no;telephone;may;wed;256;4;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+39;entrepreneur;married;high.school;unknown;no;yes;telephone;may;wed;173;7;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+42;blue-collar;married;basic.4y;unknown;no;yes;telephone;may;wed;367;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+46;blue-collar;married;basic.9y;unknown;no;yes;telephone;may;wed;227;4;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+46;admin.;divorced;university.degree;no;yes;no;telephone;may;wed;276;4;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+41;admin.;single;university.degree;no;no;no;telephone;may;wed;349;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+36;admin.;married;university.degree;no;no;no;telephone;may;wed;856;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+60;retired;married;high.school;no;no;no;telephone;may;wed;278;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+43;technician;divorced;basic.9y;no;no;yes;telephone;may;wed;143;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+30;services;married;high.school;no;yes;no;telephone;may;wed;249;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+43;admin.;married;university.degree;no;yes;yes;telephone;may;wed;37;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+37;admin.;married;high.school;unknown;yes;no;telephone;may;wed;260;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+52;self-employed;married;basic.4y;unknown;yes;no;telephone;may;wed;323;7;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+41;admin.;married;university.degree;no;yes;no;telephone;may;wed;187;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+39;services;single;high.school;unknown;no;no;telephone;may;wed;364;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+29;unemployed;single;university.degree;no;no;yes;telephone;may;wed;211;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+29;admin.;single;university.degree;no;yes;yes;telephone;may;wed;266;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+55;technician;married;professional.course;unknown;no;no;telephone;may;wed;806;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+33;blue-collar;single;basic.9y;no;no;no;telephone;may;wed;159;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+41;self-employed;single;university.degree;no;yes;no;telephone;may;wed;318;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+53;retired;divorced;professional.course;unknown;yes;yes;telephone;may;wed;104;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+43;technician;married;professional.course;no;yes;no;telephone;may;wed;747;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+51;services;divorced;basic.4y;unknown;yes;no;telephone;may;thu;95;4;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+31;blue-collar;married;basic.6y;unknown;no;no;telephone;may;thu;176;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+45;blue-collar;married;basic.4y;unknown;no;no;telephone;may;thu;179;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+40;management;married;university.degree;no;no;no;telephone;may;thu;319;5;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+30;blue-collar;married;basic.9y;no;no;yes;telephone;may;thu;114;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+37;admin.;married;unknown;no;yes;no;telephone;may;thu;170;5;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+56;services;divorced;high.school;unknown;no;no;telephone;may;thu;311;5;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+29;admin.;single;high.school;no;yes;no;telephone;may;thu;362;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+30;services;married;high.school;no;no;no;telephone;may;thu;86;4;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+36;blue-collar;married;basic.9y;no;yes;no;telephone;may;thu;90;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+32;admin.;single;basic.9y;unknown;no;no;telephone;may;thu;44;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+41;admin.;married;basic.6y;no;no;no;telephone;may;thu;1013;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+35;blue-collar;married;unknown;no;yes;no;telephone;may;thu;76;7;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+45;blue-collar;married;basic.9y;unknown;no;no;telephone;may;thu;90;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+40;blue-collar;divorced;high.school;unknown;no;no;telephone;may;thu;155;6;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+34;admin.;single;university.degree;no;yes;no;telephone;may;thu;468;5;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+45;admin.;married;basic.6y;no;yes;no;telephone;may;thu;226;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+31;admin.;married;high.school;no;no;yes;telephone;may;thu;349;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+35;housemaid;married;basic.4y;no;no;no;telephone;may;thu;646;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;yes
+58;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;thu;148;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+48;admin.;married;basic.9y;unknown;no;no;telephone;may;thu;517;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+38;management;married;basic.6y;unknown;yes;no;telephone;may;thu;243;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+39;admin.;single;university.degree;unknown;no;no;telephone;may;thu;391;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+38;blue-collar;married;basic.6y;unknown;unknown;unknown;telephone;may;thu;204;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+49;blue-collar;single;basic.4y;no;no;no;telephone;may;thu;236;4;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+60;unknown;married;university.degree;no;no;yes;telephone;may;thu;112;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+37;services;married;professional.course;unknown;no;no;telephone;may;thu;125;4;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+48;technician;married;university.degree;no;no;no;telephone;may;thu;360;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+37;admin.;divorced;basic.9y;unknown;no;no;telephone;may;thu;312;6;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+30;technician;divorced;professional.course;no;yes;no;telephone;may;thu;366;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+32;admin.;married;university.degree;no;yes;no;telephone;may;thu;70;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+30;entrepreneur;married;university.degree;no;no;no;telephone;may;thu;230;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+39;unemployed;married;high.school;no;no;yes;telephone;may;thu;135;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+56;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;thu;12;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+37;self-employed;married;basic.9y;no;yes;no;telephone;may;thu;65;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+37;admin.;divorced;high.school;no;yes;no;telephone;may;thu;420;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+41;blue-collar;married;basic.6y;no;no;no;telephone;may;thu;259;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+42;technician;divorced;basic.9y;no;no;no;telephone;may;thu;192;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+52;entrepreneur;married;university.degree;unknown;no;no;telephone;may;thu;189;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+42;technician;divorced;basic.9y;no;no;no;telephone;may;thu;263;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+58;management;divorced;university.degree;no;no;no;telephone;may;thu;415;7;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+32;services;married;basic.9y;no;no;no;telephone;may;thu;746;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;yes
+26;technician;married;professional.course;no;no;no;telephone;may;thu;260;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+28;services;married;basic.9y;unknown;unknown;unknown;telephone;may;thu;71;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+31;blue-collar;single;unknown;no;no;no;telephone;may;thu;735;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+31;services;married;high.school;no;yes;no;telephone;may;thu;183;5;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+27;admin.;single;high.school;unknown;no;no;telephone;may;thu;75;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+37;blue-collar;married;basic.9y;no;yes;yes;telephone;may;thu;87;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+32;admin.;single;university.degree;no;no;no;telephone;may;thu;62;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+33;admin.;married;university.degree;no;yes;no;telephone;may;thu;139;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+35;technician;single;professional.course;no;yes;yes;telephone;may;thu;150;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+32;housemaid;married;basic.4y;no;no;no;telephone;may;thu;244;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+43;unknown;married;high.school;unknown;yes;yes;telephone;may;thu;367;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+32;housemaid;married;basic.4y;no;yes;no;telephone;may;thu;325;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+31;entrepreneur;single;basic.9y;no;no;no;telephone;may;thu;183;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+51;blue-collar;married;basic.9y;no;no;no;telephone;may;thu;552;11;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+38;technician;single;professional.course;unknown;yes;no;telephone;may;thu;121;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+40;admin.;divorced;professional.course;no;yes;no;telephone;may;thu;27;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+42;unemployed;divorced;high.school;unknown;yes;yes;telephone;may;thu;157;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+45;housemaid;married;basic.6y;unknown;no;no;telephone;may;thu;203;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+35;blue-collar;single;unknown;no;no;no;telephone;may;thu;104;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+40;services;married;high.school;no;no;no;telephone;may;thu;153;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+44;blue-collar;single;high.school;no;yes;no;telephone;may;thu;182;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+31;admin.;married;high.school;no;no;no;telephone;may;thu;55;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+30;blue-collar;married;basic.9y;no;no;no;telephone;may;thu;644;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+33;blue-collar;married;basic.6y;unknown;no;no;telephone;may;thu;305;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+28;blue-collar;married;basic.9y;unknown;no;no;telephone;may;thu;140;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+36;technician;married;professional.course;unknown;yes;no;telephone;may;thu;180;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+49;services;divorced;basic.6y;unknown;yes;no;telephone;may;thu;173;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+31;technician;married;professional.course;no;yes;no;telephone;may;thu;374;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+45;admin.;divorced;basic.6y;no;yes;no;telephone;may;thu;240;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+29;services;married;high.school;no;yes;no;telephone;may;thu;558;6;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+34;blue-collar;single;basic.9y;no;no;no;telephone;may;thu;1088;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+45;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;thu;219;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+30;blue-collar;single;basic.4y;no;no;no;telephone;may;thu;41;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+38;technician;married;professional.course;no;no;no;telephone;may;thu;436;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+33;admin.;married;university.degree;no;no;no;telephone;may;thu;463;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+46;blue-collar;married;basic.9y;no;no;no;telephone;may;thu;265;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+41;entrepreneur;divorced;university.degree;no;yes;no;telephone;may;thu;234;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+44;blue-collar;single;basic.4y;no;yes;no;telephone;may;thu;113;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+32;blue-collar;married;high.school;unknown;yes;no;telephone;may;thu;200;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+46;housemaid;married;basic.4y;no;yes;no;telephone;may;thu;158;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+35;blue-collar;married;basic.9y;no;unknown;unknown;telephone;may;thu;34;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+44;technician;married;professional.course;no;yes;no;telephone;may;thu;160;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+35;technician;married;professional.course;no;no;no;telephone;may;thu;504;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+39;services;single;high.school;unknown;no;no;telephone;may;thu;206;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+52;blue-collar;married;basic.4y;no;yes;no;telephone;may;thu;36;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+44;blue-collar;married;basic.4y;unknown;no;no;telephone;may;thu;139;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+53;unknown;married;high.school;unknown;no;no;telephone;may;thu;303;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+33;services;divorced;high.school;no;yes;no;telephone;may;thu;109;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+41;technician;single;university.degree;unknown;yes;no;telephone;may;thu;90;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+33;admin.;single;university.degree;no;no;no;telephone;may;thu;134;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+46;admin.;single;high.school;no;unknown;unknown;telephone;may;thu;257;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+38;blue-collar;married;basic.4y;unknown;no;no;telephone;may;thu;241;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+44;blue-collar;divorced;unknown;no;no;yes;telephone;may;thu;94;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+57;retired;unknown;basic.4y;no;yes;no;telephone;may;thu;171;10;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+45;management;married;unknown;unknown;no;no;telephone;may;thu;178;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+55;unknown;married;unknown;unknown;yes;no;telephone;may;thu;285;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+26;admin.;married;high.school;no;no;no;telephone;may;thu;326;4;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+38;blue-collar;divorced;unknown;no;yes;no;telephone;may;thu;451;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+41;technician;married;basic.9y;no;yes;no;telephone;may;thu;347;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+53;retired;divorced;basic.4y;no;no;no;telephone;may;thu;116;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+42;services;divorced;basic.6y;no;yes;no;telephone;may;thu;1074;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;yes
+56;technician;married;professional.course;unknown;no;no;telephone;may;thu;191;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+41;management;married;high.school;no;no;no;telephone;may;thu;77;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+49;blue-collar;married;basic.9y;no;no;no;telephone;may;thu;1036;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+31;admin.;married;high.school;no;no;no;telephone;may;thu;303;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+37;self-employed;married;professional.course;no;yes;no;telephone;may;thu;80;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+40;blue-collar;married;basic.6y;unknown;no;no;telephone;may;thu;322;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+43;blue-collar;married;basic.4y;no;no;no;telephone;may;thu;111;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+48;self-employed;married;university.degree;unknown;yes;no;telephone;may;thu;750;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+45;admin.;married;high.school;no;yes;no;telephone;may;thu;695;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;yes
+49;technician;married;high.school;no;yes;no;telephone;may;thu;435;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+52;blue-collar;married;basic.9y;no;yes;no;telephone;may;thu;397;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+35;blue-collar;married;basic.9y;unknown;no;no;telephone;may;thu;95;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+52;technician;married;basic.9y;no;yes;no;telephone;may;thu;208;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+59;retired;married;basic.4y;unknown;yes;no;telephone;may;thu;163;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+34;admin.;single;high.school;no;yes;no;telephone;may;thu;168;5;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+33;admin.;single;high.school;no;unknown;unknown;telephone;may;thu;161;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+34;services;married;basic.6y;no;yes;yes;telephone;may;thu;1000;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+33;blue-collar;married;basic.6y;no;no;no;telephone;may;thu;112;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+46;blue-collar;married;basic.4y;no;no;yes;telephone;may;thu;599;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+37;technician;single;university.degree;no;yes;no;telephone;may;thu;30;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+35;entrepreneur;married;basic.9y;no;no;yes;telephone;may;thu;165;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+41;admin.;married;university.degree;no;yes;no;telephone;may;thu;55;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+39;blue-collar;married;basic.6y;unknown;no;no;telephone;may;thu;231;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+52;blue-collar;married;basic.4y;unknown;unknown;unknown;telephone;may;thu;191;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+46;entrepreneur;divorced;university.degree;no;no;no;telephone;may;thu;127;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+41;services;married;basic.9y;no;yes;yes;telephone;may;thu;75;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+57;blue-collar;married;unknown;unknown;yes;no;telephone;may;thu;106;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+54;admin.;married;university.degree;no;unknown;unknown;telephone;may;thu;202;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+38;services;single;high.school;unknown;no;yes;telephone;may;thu;1257;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;yes
+48;admin.;married;high.school;no;no;yes;telephone;may;thu;221;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+59;admin.;married;high.school;no;yes;no;telephone;may;thu;285;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+42;blue-collar;divorced;basic.4y;unknown;yes;no;telephone;may;thu;106;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+45;unknown;married;unknown;no;no;yes;telephone;may;thu;93;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+40;housemaid;single;university.degree;no;no;no;telephone;may;thu;71;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+50;admin.;married;high.school;no;no;no;telephone;may;thu;290;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+49;services;married;basic.6y;unknown;yes;no;telephone;may;thu;1165;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+45;blue-collar;married;basic.4y;no;no;no;telephone;may;thu;164;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+42;self-employed;married;university.degree;no;no;no;telephone;may;thu;207;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+36;services;married;high.school;no;no;no;telephone;may;thu;295;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+41;blue-collar;divorced;basic.9y;unknown;yes;no;telephone;may;thu;187;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+47;blue-collar;married;basic.4y;no;yes;no;telephone;may;thu;106;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+45;blue-collar;married;basic.4y;no;no;no;telephone;may;thu;219;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+44;blue-collar;married;basic.6y;unknown;no;no;telephone;may;thu;236;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+34;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;thu;139;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+39;blue-collar;married;basic.9y;no;no;no;telephone;may;thu;651;23;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;yes
+45;admin.;married;basic.6y;unknown;yes;no;telephone;may;thu;124;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+48;technician;married;professional.course;no;no;no;telephone;may;thu;145;4;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+31;blue-collar;single;high.school;no;yes;no;telephone;may;thu;120;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+45;self-employed;married;basic.6y;unknown;no;no;telephone;may;thu;734;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;yes
+36;services;married;high.school;unknown;no;no;telephone;may;thu;291;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+40;unemployed;divorced;high.school;no;no;no;telephone;may;thu;101;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+34;blue-collar;married;basic.9y;no;no;no;telephone;may;thu;417;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+33;technician;married;professional.course;no;no;no;telephone;may;thu;191;4;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+40;admin.;married;high.school;unknown;no;no;telephone;may;thu;131;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+55;blue-collar;married;basic.9y;unknown;no;no;telephone;may;thu;97;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+30;management;married;university.degree;no;no;no;telephone;may;thu;221;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+38;admin.;married;basic.6y;no;yes;no;telephone;may;thu;229;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+36;blue-collar;single;basic.9y;no;no;no;telephone;may;thu;104;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+34;admin.;married;high.school;no;no;no;telephone;may;thu;122;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+55;technician;divorced;professional.course;unknown;yes;yes;telephone;may;thu;72;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+34;admin.;married;high.school;no;yes;yes;telephone;may;thu;186;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+34;blue-collar;married;basic.4y;no;no;yes;telephone;may;thu;23;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+33;services;married;basic.4y;no;no;no;telephone;may;thu;402;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+43;unemployed;married;university.degree;unknown;yes;no;telephone;may;thu;37;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+46;admin.;married;university.degree;no;no;no;telephone;may;thu;68;5;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+48;blue-collar;married;basic.6y;no;yes;yes;telephone;may;thu;182;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+50;management;married;university.degree;unknown;no;no;telephone;may;thu;587;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+48;entrepreneur;married;basic.4y;no;no;no;telephone;may;thu;348;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+39;admin.;single;high.school;unknown;yes;no;telephone;may;thu;51;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+30;management;single;university.degree;no;unknown;unknown;telephone;may;thu;176;13;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+27;services;single;high.school;unknown;no;no;telephone;may;thu;144;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+31;services;married;basic.6y;unknown;yes;no;telephone;may;thu;297;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+55;blue-collar;married;basic.9y;no;no;no;telephone;may;thu;203;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+42;unknown;divorced;high.school;no;no;no;telephone;may;thu;57;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+35;services;single;high.school;unknown;yes;no;telephone;may;thu;334;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+53;retired;married;basic.4y;unknown;yes;no;telephone;may;thu;217;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+41;blue-collar;single;basic.9y;no;no;no;telephone;may;thu;74;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+36;blue-collar;single;basic.4y;no;no;no;telephone;may;thu;464;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+36;technician;single;university.degree;no;no;no;telephone;may;thu;738;7;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+46;management;married;basic.9y;no;yes;no;telephone;may;thu;126;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+57;technician;divorced;basic.4y;no;yes;no;telephone;may;thu;452;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+53;services;married;high.school;unknown;no;no;telephone;may;thu;203;4;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+36;blue-collar;married;unknown;unknown;no;no;telephone;may;thu;230;7;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+48;blue-collar;married;basic.9y;no;no;no;telephone;may;thu;187;4;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+49;blue-collar;divorced;basic.4y;unknown;no;no;telephone;may;thu;920;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;yes
+58;self-employed;married;university.degree;no;no;no;telephone;may;thu;136;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+36;unknown;single;basic.6y;unknown;no;no;telephone;may;thu;1244;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+34;admin.;single;high.school;no;no;no;telephone;may;thu;80;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+42;admin.;married;university.degree;no;no;no;telephone;may;thu;431;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+41;blue-collar;married;basic.9y;no;no;no;telephone;may;thu;500;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;yes
+55;retired;married;professional.course;no;yes;no;telephone;may;thu;301;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+43;blue-collar;married;basic.4y;unknown;no;no;telephone;may;thu;115;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+59;technician;married;unknown;no;yes;no;telephone;may;thu;30;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+37;admin.;married;high.school;no;yes;no;telephone;may;thu;133;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+38;unknown;married;unknown;unknown;yes;no;telephone;may;thu;270;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+46;blue-collar;single;basic.4y;no;no;no;telephone;may;thu;218;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+52;technician;married;high.school;no;yes;no;telephone;may;thu;355;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+53;unemployed;divorced;basic.9y;unknown;no;no;telephone;may;thu;215;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+40;admin.;married;high.school;unknown;yes;no;telephone;may;thu;299;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+45;unknown;married;unknown;no;no;yes;telephone;may;thu;160;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+55;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;thu;172;4;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+54;management;divorced;university.degree;no;yes;no;telephone;may;thu;49;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+32;housemaid;single;basic.4y;no;yes;no;telephone;may;thu;117;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+36;admin.;divorced;university.degree;no;yes;no;telephone;may;thu;155;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+32;housemaid;single;basic.4y;no;no;no;telephone;may;thu;477;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+35;blue-collar;single;professional.course;no;yes;no;telephone;may;thu;99;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+44;services;married;high.school;unknown;yes;no;telephone;may;thu;188;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+37;services;married;high.school;no;no;no;telephone;may;thu;200;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+38;blue-collar;single;basic.4y;no;yes;no;telephone;may;thu;187;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+50;blue-collar;single;basic.9y;unknown;yes;no;telephone;may;thu;236;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+38;blue-collar;single;basic.6y;unknown;yes;no;telephone;may;thu;50;7;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+49;self-employed;married;professional.course;no;unknown;unknown;telephone;may;thu;104;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+37;admin.;divorced;high.school;no;no;no;telephone;may;thu;51;10;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+46;unknown;married;basic.6y;unknown;no;no;telephone;may;thu;51;5;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+36;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;thu;140;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+47;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;thu;221;4;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+33;blue-collar;married;basic.4y;unknown;no;no;telephone;may;thu;98;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+31;services;married;high.school;no;no;no;telephone;may;thu;253;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+45;entrepreneur;married;university.degree;no;no;no;telephone;may;thu;71;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+36;blue-collar;married;basic.9y;no;no;no;telephone;may;thu;127;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+49;self-employed;married;basic.9y;no;yes;no;telephone;may;thu;74;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+39;services;married;professional.course;unknown;yes;no;telephone;may;thu;126;4;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+34;housemaid;divorced;basic.6y;no;no;no;telephone;may;thu;122;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+39;technician;married;professional.course;no;no;no;telephone;may;thu;173;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+26;admin.;single;high.school;no;yes;no;telephone;may;thu;918;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+36;blue-collar;married;basic.4y;no;no;no;telephone;may;thu;544;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+31;admin.;single;university.degree;no;yes;no;telephone;may;thu;309;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+54;blue-collar;divorced;basic.4y;no;no;no;telephone;may;thu;138;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+39;admin.;married;university.degree;no;no;no;telephone;may;thu;73;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+32;admin.;married;university.degree;unknown;yes;no;telephone;may;thu;71;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+43;technician;divorced;professional.course;no;yes;no;telephone;may;thu;193;5;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+53;blue-collar;married;basic.4y;no;no;no;telephone;may;thu;198;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+28;admin.;single;high.school;no;yes;no;telephone;may;thu;243;4;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+50;blue-collar;single;basic.9y;unknown;yes;no;telephone;may;thu;57;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+44;admin.;single;university.degree;unknown;no;no;telephone;may;thu;49;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+45;housemaid;divorced;university.degree;no;yes;no;telephone;may;thu;105;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+56;admin.;divorced;unknown;unknown;yes;no;telephone;may;thu;719;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+35;unemployed;divorced;basic.4y;no;yes;no;telephone;may;thu;98;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+31;housemaid;married;basic.4y;unknown;no;no;telephone;may;thu;196;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+47;management;divorced;university.degree;no;yes;no;telephone;may;thu;243;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+39;admin.;single;high.school;unknown;no;no;telephone;may;thu;344;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+35;admin.;single;university.degree;no;no;no;telephone;may;thu;135;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+24;student;single;high.school;no;no;no;telephone;may;thu;597;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+31;entrepreneur;married;high.school;no;yes;no;telephone;may;thu;168;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+39;entrepreneur;single;university.degree;no;yes;no;telephone;may;thu;43;9;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+45;blue-collar;married;basic.9y;unknown;no;no;telephone;may;thu;525;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+39;blue-collar;single;basic.4y;no;no;no;telephone;may;thu;122;6;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+60;management;married;university.degree;unknown;yes;no;telephone;may;thu;152;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+45;admin.;married;basic.9y;unknown;yes;no;telephone;may;thu;111;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+35;technician;married;university.degree;unknown;yes;no;telephone;may;thu;133;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+53;retired;divorced;high.school;no;no;yes;telephone;may;thu;504;5;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+54;blue-collar;divorced;basic.4y;no;no;no;telephone;may;thu;192;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+36;services;single;basic.6y;unknown;yes;no;telephone;may;thu;164;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+39;services;divorced;basic.9y;no;yes;no;telephone;may;thu;51;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+48;admin.;married;professional.course;no;yes;no;telephone;may;thu;178;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+32;admin.;married;university.degree;no;no;no;telephone;may;thu;99;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+36;blue-collar;married;professional.course;no;yes;yes;telephone;may;thu;224;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+42;admin.;single;university.degree;no;no;no;telephone;may;thu;236;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+36;blue-collar;married;basic.9y;no;no;no;telephone;may;thu;815;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+49;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;thu;282;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+38;admin.;divorced;high.school;no;no;no;telephone;may;thu;134;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+34;entrepreneur;single;unknown;unknown;yes;no;telephone;may;thu;318;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+34;management;married;university.degree;no;yes;no;telephone;may;thu;118;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+30;admin.;married;university.degree;no;yes;no;telephone;may;thu;911;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;yes
+36;technician;single;professional.course;no;yes;no;telephone;may;thu;238;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+48;admin.;single;university.degree;no;yes;no;telephone;may;thu;225;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+32;management;married;basic.6y;no;yes;no;telephone;may;thu;490;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+51;admin.;married;high.school;no;unknown;unknown;telephone;may;thu;89;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+47;blue-collar;married;basic.4y;no;no;yes;telephone;may;thu;199;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+43;technician;divorced;professional.course;no;no;no;telephone;may;thu;644;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+29;services;married;high.school;no;yes;yes;telephone;may;thu;286;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+44;blue-collar;divorced;unknown;no;no;no;telephone;may;thu;76;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+38;blue-collar;married;basic.6y;no;yes;no;telephone;may;thu;176;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+59;retired;married;professional.course;no;no;no;telephone;may;thu;422;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+29;admin.;single;university.degree;no;no;no;telephone;may;thu;22;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+35;unemployed;married;basic.4y;unknown;unknown;unknown;telephone;may;thu;71;4;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+36;blue-collar;single;basic.9y;no;no;yes;telephone;may;thu;465;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+33;services;married;high.school;unknown;yes;no;telephone;may;thu;83;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+34;admin.;divorced;basic.9y;no;no;no;telephone;may;thu;973;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+25;blue-collar;single;basic.9y;unknown;no;no;telephone;may;thu;56;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+48;management;married;university.degree;no;yes;no;telephone;may;thu;190;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+25;blue-collar;single;basic.9y;unknown;yes;no;telephone;may;thu;323;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+25;blue-collar;single;basic.9y;unknown;yes;no;telephone;may;thu;113;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+52;self-employed;married;basic.4y;unknown;yes;no;telephone;may;thu;228;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+34;blue-collar;single;basic.9y;unknown;no;yes;telephone;may;thu;110;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+27;unemployed;married;basic.9y;no;no;no;telephone;may;thu;84;14;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+44;blue-collar;married;basic.4y;no;no;yes;telephone;may;thu;59;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+36;blue-collar;married;basic.9y;no;no;no;telephone;may;thu;294;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+40;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;thu;21;5;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+38;blue-collar;married;basic.6y;unknown;no;no;telephone;may;thu;210;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+57;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;thu;144;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+45;unknown;married;unknown;no;yes;no;telephone;may;thu;251;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+27;blue-collar;single;basic.6y;unknown;no;no;telephone;may;thu;444;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+31;blue-collar;married;basic.6y;no;yes;yes;telephone;may;thu;237;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+30;blue-collar;single;high.school;no;yes;no;telephone;may;thu;399;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+31;admin.;single;high.school;no;no;no;telephone;may;thu;132;22;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+58;blue-collar;married;basic.4y;unknown;yes;yes;telephone;may;thu;334;10;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+40;admin.;married;unknown;no;no;no;telephone;may;thu;387;4;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+44;admin.;married;university.degree;unknown;yes;no;telephone;may;thu;344;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+42;management;divorced;university.degree;no;no;no;telephone;may;thu;279;9;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+28;student;single;basic.4y;no;no;no;telephone;may;thu;484;8;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+47;blue-collar;married;unknown;unknown;yes;yes;telephone;may;thu;95;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+47;blue-collar;married;unknown;unknown;yes;no;telephone;may;thu;461;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+58;retired;divorced;university.degree;no;yes;no;telephone;may;thu;30;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+32;services;single;professional.course;no;yes;no;telephone;may;thu;561;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+50;services;single;high.school;unknown;yes;no;telephone;may;thu;468;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+53;technician;married;professional.course;unknown;yes;no;telephone;may;thu;920;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;yes
+29;technician;single;professional.course;no;no;no;telephone;may;thu;388;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+34;technician;single;professional.course;no;no;no;telephone;may;thu;100;4;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+35;technician;married;unknown;unknown;no;no;telephone;may;thu;1224;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;yes
+32;services;single;professional.course;no;no;no;telephone;may;thu;589;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+26;blue-collar;single;basic.6y;no;no;yes;telephone;may;thu;160;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+27;blue-collar;married;basic.4y;unknown;no;no;telephone;may;thu;438;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+47;technician;married;professional.course;no;yes;no;telephone;may;thu;69;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+47;blue-collar;married;professional.course;unknown;no;yes;telephone;may;thu;964;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+38;housemaid;married;high.school;unknown;no;no;telephone;may;thu;384;4;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+41;admin.;single;unknown;no;yes;no;telephone;may;thu;103;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+41;blue-collar;married;basic.4y;no;no;no;telephone;may;thu;52;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+58;management;married;university.degree;unknown;no;no;telephone;may;thu;205;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+24;services;single;high.school;no;no;no;telephone;may;thu;486;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+51;management;married;university.degree;unknown;no;yes;telephone;may;thu;1156;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;yes
+26;entrepreneur;married;university.degree;no;no;no;telephone;may;thu;73;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+28;blue-collar;married;basic.9y;no;no;no;telephone;may;thu;523;5;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+49;admin.;married;high.school;unknown;no;no;telephone;may;thu;157;5;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+55;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;thu;186;5;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+38;blue-collar;single;basic.9y;no;no;no;telephone;may;thu;73;5;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+50;blue-collar;married;basic.6y;unknown;no;no;telephone;may;thu;544;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+46;blue-collar;married;basic.4y;unknown;no;no;telephone;may;thu;194;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+35;admin.;married;university.degree;no;no;no;telephone;may;thu;420;4;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+30;technician;single;professional.course;no;no;no;telephone;may;thu;584;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+39;entrepreneur;married;basic.9y;unknown;no;no;telephone;may;thu;192;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+28;admin.;divorced;high.school;no;no;yes;telephone;may;thu;155;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+46;blue-collar;married;basic.6y;unknown;no;yes;telephone;may;thu;1231;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+38;student;single;university.degree;no;no;no;telephone;may;thu;619;4;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+34;management;married;university.degree;no;no;yes;telephone;may;thu;298;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+44;technician;married;professional.course;no;yes;no;telephone;may;thu;515;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+36;management;married;basic.9y;no;yes;no;telephone;may;thu;21;6;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+40;admin.;married;university.degree;no;yes;no;telephone;may;thu;404;7;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+32;admin.;divorced;high.school;no;yes;no;telephone;may;thu;241;23;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+29;admin.;married;university.degree;no;yes;no;telephone;may;thu;302;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+50;unemployed;married;professional.course;no;no;no;telephone;may;thu;440;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+53;admin.;divorced;university.degree;no;yes;yes;telephone;may;thu;172;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+46;management;married;basic.4y;unknown;no;no;telephone;may;thu;319;7;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+57;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;thu;1051;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+45;blue-collar;married;basic.4y;no;yes;no;telephone;may;thu;276;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+57;admin.;married;university.degree;no;yes;no;telephone;may;thu;213;4;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+29;technician;married;university.degree;no;no;yes;telephone;may;thu;194;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+32;blue-collar;married;basic.9y;no;unknown;unknown;telephone;may;thu;276;4;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+25;technician;single;university.degree;no;yes;no;telephone;may;thu;19;8;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+43;admin.;married;university.degree;unknown;yes;no;telephone;may;thu;226;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+26;unemployed;single;basic.9y;no;no;yes;telephone;may;thu;546;8;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+34;admin.;married;university.degree;no;yes;no;telephone;may;thu;419;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+33;blue-collar;divorced;basic.9y;unknown;no;no;telephone;may;thu;1867;6;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;yes
+37;technician;single;university.degree;no;no;no;telephone;may;thu;156;5;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+34;technician;married;university.degree;no;yes;no;telephone;may;thu;184;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+53;admin.;married;basic.9y;no;yes;yes;telephone;may;thu;548;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+28;technician;single;professional.course;no;yes;no;telephone;may;thu;760;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+48;blue-collar;married;basic.9y;no;yes;no;telephone;may;thu;244;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+36;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;thu;328;4;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+54;admin.;married;high.school;no;yes;yes;telephone;may;thu;171;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+44;technician;married;professional.course;unknown;no;no;telephone;may;thu;284;5;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+44;services;married;high.school;unknown;yes;no;telephone;may;thu;1263;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;yes
+56;management;married;basic.6y;no;no;yes;telephone;may;thu;92;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+35;unemployed;married;university.degree;no;no;no;telephone;may;thu;17;25;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+37;blue-collar;married;basic.9y;unknown;no;no;telephone;may;thu;422;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+43;admin.;married;university.degree;unknown;yes;no;telephone;may;thu;17;10;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+31;self-employed;married;basic.9y;no;no;no;telephone;may;thu;301;4;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+31;student;single;unknown;unknown;yes;no;telephone;may;thu;267;5;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+31;blue-collar;divorced;basic.9y;no;no;no;telephone;may;thu;475;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+38;technician;married;university.degree;no;yes;no;telephone;may;thu;770;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+40;blue-collar;single;basic.4y;unknown;no;no;telephone;may;thu;487;4;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+44;services;married;high.school;no;no;no;telephone;may;thu;126;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+36;admin.;married;basic.6y;no;no;no;telephone;may;thu;114;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+49;admin.;divorced;high.school;no;no;no;telephone;may;thu;136;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+30;admin.;married;university.degree;no;yes;no;telephone;may;thu;196;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+28;technician;single;university.degree;no;yes;no;telephone;may;thu;129;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+48;technician;single;unknown;unknown;no;no;telephone;may;thu;257;7;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+35;self-employed;married;university.degree;unknown;yes;yes;telephone;may;thu;365;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+50;blue-collar;married;basic.9y;no;yes;no;telephone;may;thu;697;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;yes
+49;management;married;university.degree;no;no;yes;telephone;may;thu;192;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+50;self-employed;married;basic.4y;unknown;no;no;telephone;may;thu;244;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+29;technician;single;professional.course;no;yes;yes;telephone;may;thu;118;4;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+29;blue-collar;married;basic.6y;no;no;no;telephone;may;thu;160;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+60;entrepreneur;married;basic.4y;no;unknown;unknown;telephone;may;thu;101;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+41;entrepreneur;married;high.school;unknown;no;no;telephone;may;thu;56;13;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+46;admin.;married;university.degree;no;no;no;telephone;may;thu;430;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+54;retired;divorced;professional.course;no;yes;no;telephone;may;thu;242;6;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+49;blue-collar;married;unknown;no;no;no;telephone;may;thu;809;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+41;admin.;married;high.school;no;yes;no;telephone;may;thu;317;7;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+26;unemployed;single;professional.course;no;no;no;telephone;may;thu;7;7;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+43;admin.;married;university.degree;no;yes;no;telephone;may;thu;493;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+40;services;single;high.school;unknown;yes;no;telephone;may;thu;381;7;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+35;management;married;university.degree;no;no;no;telephone;may;thu;112;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+34;admin.;single;high.school;no;no;no;telephone;may;thu;523;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+36;admin.;divorced;university.degree;no;yes;no;telephone;may;thu;309;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+50;blue-collar;married;unknown;unknown;no;no;telephone;may;thu;184;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+45;technician;divorced;professional.course;no;yes;no;telephone;may;thu;850;6;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+49;technician;married;university.degree;no;yes;no;telephone;may;thu;420;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+59;admin.;married;high.school;unknown;yes;yes;telephone;may;thu;118;4;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+35;blue-collar;married;basic.9y;no;no;no;telephone;may;thu;71;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+41;blue-collar;married;basic.9y;no;yes;no;telephone;may;thu;314;7;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+34;blue-collar;married;basic.9y;no;yes;no;telephone;may;thu;196;4;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+56;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;thu;151;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+37;management;unknown;high.school;no;no;no;telephone;may;thu;95;6;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+46;blue-collar;married;basic.6y;unknown;yes;no;telephone;may;thu;516;9;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+50;retired;married;basic.4y;unknown;yes;no;telephone;may;thu;855;4;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+46;admin.;single;high.school;no;no;no;telephone;may;thu;78;4;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+39;blue-collar;married;basic.4y;unknown;no;yes;telephone;may;thu;875;5;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+27;technician;single;professional.course;no;no;no;telephone;may;thu;124;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+59;technician;married;basic.6y;unknown;no;no;telephone;may;thu;24;16;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+55;blue-collar;divorced;basic.9y;no;yes;no;telephone;may;thu;190;6;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+36;admin.;single;university.degree;no;no;no;telephone;may;thu;53;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+57;management;married;university.degree;no;yes;no;telephone;may;thu;278;4;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+58;retired;married;basic.6y;unknown;no;no;telephone;may;thu;284;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+36;services;married;high.school;no;unknown;unknown;telephone;may;thu;262;4;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+42;blue-collar;married;basic.4y;unknown;no;no;telephone;may;thu;391;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+37;technician;married;university.degree;no;no;no;telephone;may;thu;263;4;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+34;services;married;high.school;no;no;no;telephone;may;thu;214;4;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+32;admin.;married;university.degree;no;no;no;telephone;may;thu;88;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+40;technician;married;professional.course;no;no;no;telephone;may;thu;255;12;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+48;blue-collar;married;high.school;unknown;no;no;telephone;may;thu;202;4;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+56;blue-collar;married;basic.9y;unknown;no;no;telephone;may;thu;438;5;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+25;admin.;single;high.school;no;no;yes;telephone;may;thu;311;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+36;blue-collar;married;high.school;no;yes;yes;telephone;may;thu;426;6;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+48;entrepreneur;married;basic.4y;no;no;yes;telephone;may;thu;302;8;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+28;student;single;basic.9y;unknown;yes;no;telephone;may;thu;213;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+55;unemployed;married;basic.4y;unknown;no;no;telephone;may;thu;214;4;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+31;blue-collar;married;basic.9y;no;unknown;unknown;telephone;may;thu;90;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+57;retired;single;high.school;no;yes;no;telephone;may;thu;448;4;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+42;technician;married;high.school;no;no;no;telephone;may;thu;70;6;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+44;admin.;single;high.school;no;yes;no;telephone;may;thu;347;4;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+30;admin.;single;high.school;no;no;yes;telephone;may;thu;892;4;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;yes
+30;blue-collar;married;basic.9y;no;yes;no;telephone;may;thu;320;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+37;technician;married;professional.course;no;yes;no;telephone;may;thu;175;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+45;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;thu;222;11;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+35;blue-collar;married;basic.4y;no;no;no;telephone;may;thu;98;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+43;management;married;professional.course;no;no;no;telephone;may;thu;734;5;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+32;services;married;high.school;unknown;yes;no;telephone;may;thu;177;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+47;blue-collar;divorced;basic.9y;unknown;yes;no;telephone;may;thu;65;7;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+31;services;single;high.school;no;yes;no;telephone;may;thu;543;12;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+49;blue-collar;married;basic.6y;no;yes;no;telephone;may;thu;374;5;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+36;admin.;divorced;university.degree;no;no;no;telephone;may;thu;241;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+40;blue-collar;single;basic.9y;no;yes;no;telephone;may;thu;137;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+47;services;married;high.school;no;unknown;unknown;telephone;may;thu;178;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+29;unemployed;single;university.degree;no;no;no;telephone;may;thu;297;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+58;self-employed;divorced;unknown;no;yes;no;telephone;may;thu;491;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+37;blue-collar;married;basic.9y;no;yes;no;telephone;may;thu;377;4;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+33;blue-collar;single;basic.9y;unknown;yes;yes;telephone;may;fri;84;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+36;self-employed;married;basic.9y;no;yes;yes;telephone;may;fri;122;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+46;unemployed;married;high.school;unknown;no;no;telephone;may;fri;135;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+37;services;married;basic.9y;unknown;no;yes;telephone;may;fri;246;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+33;entrepreneur;married;basic.9y;unknown;no;no;telephone;may;fri;95;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+32;entrepreneur;married;high.school;no;no;no;telephone;may;fri;248;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+36;admin.;married;university.degree;no;yes;no;telephone;may;fri;336;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+28;blue-collar;single;basic.9y;no;no;yes;telephone;may;fri;28;4;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+35;technician;married;university.degree;no;yes;no;telephone;may;fri;371;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+47;entrepreneur;married;university.degree;no;yes;no;telephone;may;fri;329;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+31;blue-collar;divorced;basic.6y;no;yes;no;telephone;may;fri;597;17;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+51;blue-collar;married;high.school;no;no;yes;telephone;may;fri;247;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+51;admin.;married;basic.6y;unknown;yes;no;telephone;may;fri;343;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+34;blue-collar;single;university.degree;no;yes;yes;telephone;may;fri;266;6;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+42;admin.;married;unknown;no;no;no;telephone;may;fri;137;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+39;technician;married;professional.course;no;yes;no;telephone;may;fri;159;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+32;services;married;high.school;no;no;yes;telephone;may;fri;206;4;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+46;unemployed;divorced;high.school;unknown;yes;yes;telephone;may;fri;69;15;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+37;services;married;high.school;no;yes;no;telephone;may;fri;228;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+45;entrepreneur;married;university.degree;no;yes;yes;telephone;may;fri;515;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;yes
+30;self-employed;single;high.school;no;yes;no;telephone;may;fri;144;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+58;management;married;basic.9y;no;no;no;telephone;may;fri;29;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+38;services;married;high.school;no;yes;no;telephone;may;fri;512;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+35;admin.;single;high.school;no;no;yes;telephone;may;fri;813;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;yes
+32;technician;single;professional.course;no;yes;no;telephone;may;fri;247;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+25;services;divorced;basic.4y;no;yes;no;telephone;may;fri;601;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+56;technician;married;professional.course;no;no;yes;telephone;may;fri;73;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+41;unemployed;married;basic.9y;unknown;yes;no;telephone;may;fri;144;4;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+39;admin.;married;university.degree;no;no;no;telephone;may;fri;230;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+40;services;divorced;high.school;no;no;no;telephone;may;fri;456;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+48;management;married;university.degree;no;no;no;telephone;may;fri;75;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+53;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;fri;225;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+38;admin.;single;basic.9y;no;no;no;telephone;may;fri;387;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+42;technician;divorced;professional.course;unknown;no;yes;telephone;may;fri;286;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+37;blue-collar;married;high.school;no;no;no;telephone;may;fri;286;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+26;admin.;single;high.school;no;yes;no;telephone;may;fri;448;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+50;management;married;high.school;unknown;no;yes;telephone;may;fri;223;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+50;management;married;university.degree;unknown;no;no;telephone;may;fri;136;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+46;services;married;basic.4y;unknown;no;no;telephone;may;fri;93;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+39;admin.;single;unknown;no;no;no;telephone;may;fri;212;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+53;technician;married;high.school;no;no;no;telephone;may;fri;178;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+57;management;divorced;university.degree;no;no;no;telephone;may;fri;111;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+29;blue-collar;single;high.school;no;yes;no;telephone;may;fri;803;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;yes
+35;admin.;married;university.degree;no;yes;no;telephone;may;fri;150;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+44;management;single;university.degree;unknown;yes;no;telephone;may;fri;844;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;yes
+46;admin.;married;high.school;no;no;no;telephone;may;fri;297;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+57;retired;married;unknown;unknown;yes;no;telephone;may;fri;529;4;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+41;admin.;single;university.degree;unknown;no;no;telephone;may;fri;137;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+31;blue-collar;married;basic.6y;unknown;unknown;unknown;telephone;may;fri;676;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;yes
+27;admin.;single;high.school;no;no;no;telephone;may;fri;656;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+47;blue-collar;married;basic.6y;unknown;yes;yes;telephone;may;fri;249;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+43;admin.;divorced;high.school;no;yes;no;telephone;may;fri;88;6;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+56;blue-collar;married;basic.4y;unknown;yes;yes;telephone;may;fri;1252;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;yes
+51;blue-collar;married;basic.9y;unknown;no;no;telephone;may;fri;228;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+45;technician;married;university.degree;no;yes;no;telephone;may;fri;1143;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;yes
+35;admin.;single;basic.4y;unknown;no;no;telephone;may;fri;283;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+59;retired;divorced;basic.4y;no;yes;no;telephone;may;fri;118;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+38;self-employed;single;university.degree;no;no;no;telephone;may;fri;104;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+41;technician;single;professional.course;no;yes;no;telephone;may;fri;103;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+29;blue-collar;single;basic.6y;no;no;no;telephone;may;fri;213;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+50;housemaid;divorced;basic.4y;unknown;no;no;telephone;may;fri;132;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+35;admin.;married;university.degree;no;yes;no;telephone;may;fri;122;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+25;housemaid;single;basic.9y;no;no;no;telephone;may;fri;130;4;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+44;management;married;university.degree;no;no;no;telephone;may;fri;627;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+28;services;single;high.school;no;yes;no;telephone;may;fri;207;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+45;admin.;divorced;university.degree;no;no;no;telephone;may;fri;114;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+39;admin.;married;high.school;no;no;no;telephone;may;fri;216;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+28;admin.;single;university.degree;no;yes;no;telephone;may;fri;250;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+42;admin.;single;university.degree;no;yes;no;telephone;may;fri;91;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+59;blue-collar;married;basic.4y;no;no;no;telephone;may;fri;159;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+49;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;fri;147;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+24;student;single;high.school;no;unknown;unknown;telephone;may;fri;86;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+49;admin.;married;unknown;no;yes;no;telephone;may;fri;731;4;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+34;admin.;married;university.degree;no;yes;no;telephone;may;fri;37;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+39;blue-collar;married;high.school;no;no;no;telephone;may;fri;46;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+41;admin.;married;high.school;no;no;no;telephone;may;fri;356;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+48;technician;married;professional.course;unknown;yes;no;telephone;may;fri;248;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+39;blue-collar;married;basic.4y;no;no;no;telephone;may;fri;242;7;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+41;blue-collar;married;basic.4y;unknown;no;no;telephone;may;fri;134;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+48;admin.;divorced;basic.9y;no;yes;no;telephone;may;fri;274;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+52;management;divorced;university.degree;no;no;no;telephone;may;fri;355;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+35;technician;married;professional.course;no;yes;no;telephone;may;fri;149;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+56;blue-collar;single;basic.6y;no;yes;no;telephone;may;fri;346;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+54;blue-collar;divorced;unknown;unknown;yes;no;telephone;may;fri;370;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+60;entrepreneur;married;basic.4y;no;no;no;telephone;may;fri;261;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+34;technician;married;professional.course;no;no;yes;telephone;may;fri;63;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+26;blue-collar;single;basic.9y;no;no;no;telephone;may;fri;688;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;yes
+39;blue-collar;married;basic.4y;unknown;unknown;unknown;telephone;may;fri;84;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+29;housemaid;single;high.school;no;no;no;telephone;may;fri;125;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+38;technician;married;professional.course;no;yes;no;telephone;may;fri;167;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+35;housemaid;married;basic.4y;no;no;no;telephone;may;fri;25;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+32;blue-collar;married;basic.9y;no;no;no;telephone;may;fri;244;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+47;blue-collar;married;high.school;unknown;no;no;telephone;may;fri;140;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+50;blue-collar;single;basic.9y;unknown;no;no;telephone;may;fri;165;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+24;services;married;high.school;no;no;no;telephone;may;fri;122;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+53;blue-collar;married;basic.9y;no;no;no;telephone;may;fri;130;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+34;blue-collar;married;basic.9y;no;no;no;telephone;may;fri;345;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+57;retired;married;high.school;unknown;yes;no;telephone;may;fri;42;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+26;student;single;unknown;unknown;no;no;telephone;may;fri;277;5;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+52;technician;married;professional.course;no;no;no;telephone;may;fri;145;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+40;admin.;married;university.degree;no;no;no;telephone;may;fri;214;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+28;management;married;high.school;unknown;no;no;telephone;may;fri;140;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+30;blue-collar;single;basic.4y;unknown;unknown;unknown;telephone;may;fri;140;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+37;technician;single;university.degree;no;no;no;telephone;may;fri;132;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+45;technician;divorced;professional.course;no;yes;no;telephone;may;fri;117;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+26;blue-collar;single;high.school;unknown;no;no;telephone;may;fri;96;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+40;entrepreneur;married;university.degree;no;no;no;telephone;may;fri;803;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;yes
+44;blue-collar;divorced;basic.4y;unknown;yes;no;telephone;may;fri;225;4;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+56;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;fri;260;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+57;management;divorced;university.degree;no;yes;no;telephone;may;fri;754;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+33;services;married;high.school;no;yes;no;telephone;may;fri;211;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+35;admin.;divorced;university.degree;no;yes;no;telephone;may;fri;192;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+52;management;married;professional.course;no;no;no;telephone;may;fri;203;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+48;technician;single;high.school;no;yes;no;telephone;may;fri;76;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+44;technician;single;university.degree;no;yes;no;telephone;may;fri;24;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+52;blue-collar;married;basic.9y;no;yes;no;telephone;may;fri;171;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+48;technician;married;unknown;unknown;no;yes;telephone;may;fri;136;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+43;blue-collar;married;basic.4y;unknown;no;no;telephone;may;fri;42;8;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+39;admin.;married;high.school;no;yes;no;telephone;may;fri;343;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+46;services;married;high.school;unknown;yes;no;telephone;may;fri;111;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+50;blue-collar;married;basic.9y;no;yes;no;telephone;may;fri;77;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+37;admin.;married;university.degree;unknown;no;no;telephone;may;fri;268;6;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+29;entrepreneur;married;basic.6y;no;no;no;telephone;may;fri;217;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+40;technician;married;professional.course;unknown;yes;no;telephone;may;fri;360;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+31;blue-collar;married;basic.4y;unknown;no;yes;telephone;may;fri;241;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+36;services;married;high.school;unknown;yes;no;telephone;may;fri;47;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+25;blue-collar;single;basic.4y;no;no;no;telephone;may;fri;196;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+33;blue-collar;single;basic.9y;unknown;yes;no;telephone;may;fri;601;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+32;admin.;married;university.degree;no;no;no;telephone;may;fri;178;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+52;services;divorced;unknown;unknown;yes;yes;telephone;may;fri;306;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+52;self-employed;single;basic.4y;unknown;yes;no;telephone;may;fri;362;22;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+30;entrepreneur;married;high.school;no;yes;no;telephone;may;fri;410;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+28;admin.;single;high.school;no;yes;no;telephone;may;fri;265;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+42;blue-collar;married;basic.6y;unknown;no;no;telephone;may;fri;108;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+41;management;married;university.degree;no;no;no;telephone;may;fri;172;4;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+35;services;married;high.school;unknown;no;no;telephone;may;fri;184;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+59;blue-collar;married;basic.4y;unknown;no;no;telephone;may;fri;424;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+34;blue-collar;married;basic.4y;no;no;no;telephone;may;fri;359;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+42;management;married;university.degree;no;yes;yes;telephone;may;fri;123;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+49;admin.;divorced;high.school;no;yes;no;telephone;may;fri;787;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;yes
+39;management;married;university.degree;no;no;no;telephone;may;fri;169;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+24;services;married;high.school;no;no;yes;telephone;may;fri;241;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+53;unemployed;married;basic.4y;unknown;no;no;telephone;may;fri;141;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+29;admin.;single;university.degree;no;yes;no;telephone;may;fri;22;4;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+26;blue-collar;single;high.school;no;yes;no;telephone;may;fri;326;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+53;blue-collar;divorced;basic.4y;unknown;no;no;telephone;may;fri;317;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+35;admin.;married;high.school;no;yes;yes;telephone;may;fri;196;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+32;services;married;high.school;no;no;yes;telephone;may;fri;270;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+37;management;married;university.degree;no;unknown;unknown;telephone;may;fri;107;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+36;entrepreneur;married;university.degree;no;no;yes;telephone;may;fri;679;17;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+32;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;fri;184;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+33;admin.;married;university.degree;no;yes;no;telephone;may;fri;576;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+27;services;married;high.school;no;yes;no;telephone;may;fri;102;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+28;admin.;married;university.degree;no;no;no;telephone;may;fri;161;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+41;housemaid;married;high.school;no;no;no;telephone;may;fri;206;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+26;admin.;single;high.school;no;no;no;telephone;may;fri;619;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;yes
+40;blue-collar;married;basic.6y;unknown;no;no;telephone;may;fri;33;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+56;retired;married;professional.course;unknown;no;no;telephone;may;fri;27;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+33;admin.;married;high.school;no;yes;yes;telephone;may;fri;230;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+58;admin.;divorced;basic.9y;unknown;yes;no;telephone;may;fri;38;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+36;admin.;married;university.degree;no;yes;no;telephone;may;fri;322;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+49;blue-collar;married;basic.4y;unknown;no;no;telephone;may;fri;187;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+59;retired;divorced;basic.9y;unknown;yes;no;telephone;may;fri;124;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+37;blue-collar;single;basic.9y;unknown;no;no;telephone;may;fri;1230;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;yes
+29;blue-collar;single;basic.9y;no;yes;no;telephone;may;fri;107;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+32;services;married;professional.course;no;yes;no;telephone;may;fri;379;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+53;blue-collar;married;basic.6y;no;yes;no;telephone;may;fri;95;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+48;technician;married;high.school;unknown;yes;no;telephone;may;fri;42;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+56;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;fri;197;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+37;services;single;basic.9y;no;yes;no;telephone;may;fri;320;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+43;self-employed;single;professional.course;unknown;no;no;telephone;may;fri;223;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+37;admin.;single;high.school;no;yes;no;telephone;may;fri;912;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;yes
+46;blue-collar;married;basic.6y;no;no;no;telephone;may;fri;230;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+28;blue-collar;single;basic.9y;no;no;no;telephone;may;fri;489;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+44;housemaid;married;basic.9y;no;no;no;telephone;may;fri;98;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+38;blue-collar;single;university.degree;unknown;no;no;telephone;may;fri;894;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;yes
+31;admin.;single;basic.9y;no;yes;no;telephone;may;fri;38;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+31;blue-collar;single;basic.9y;no;yes;no;telephone;may;fri;323;4;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+36;technician;married;professional.course;no;no;yes;telephone;may;fri;335;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+51;admin.;single;basic.6y;no;yes;no;telephone;may;fri;161;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+29;technician;married;university.degree;no;no;no;telephone;may;fri;410;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+28;admin.;single;university.degree;no;yes;no;telephone;may;fri;280;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+49;self-employed;married;professional.course;no;no;no;telephone;may;fri;374;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+30;technician;married;university.degree;no;yes;no;telephone;may;fri;193;8;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+36;services;married;basic.9y;unknown;no;no;telephone;may;fri;166;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+36;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;fri;865;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+57;blue-collar;married;basic.4y;unknown;no;no;telephone;may;fri;258;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+40;blue-collar;married;basic.4y;unknown;no;no;telephone;may;fri;215;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+52;blue-collar;married;basic.4y;no;no;no;telephone;may;fri;136;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+29;blue-collar;single;unknown;no;no;no;telephone;may;fri;299;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+45;management;married;university.degree;no;no;no;telephone;may;fri;381;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+55;retired;married;basic.4y;unknown;no;no;telephone;may;fri;197;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+52;management;married;university.degree;no;yes;no;telephone;may;fri;412;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+24;admin.;married;high.school;no;yes;no;telephone;may;fri;376;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+44;blue-collar;divorced;basic.4y;unknown;yes;yes;telephone;may;fri;393;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+46;services;divorced;high.school;no;no;no;telephone;may;fri;56;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+25;student;single;high.school;no;no;no;telephone;may;fri;112;4;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+33;blue-collar;single;basic.9y;no;yes;no;telephone;may;fri;155;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+29;services;single;basic.9y;no;no;no;telephone;may;fri;703;4;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+44;admin.;single;university.degree;no;yes;no;telephone;may;fri;141;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+41;blue-collar;married;basic.9y;unknown;no;no;telephone;may;fri;475;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+50;technician;married;professional.course;no;no;no;telephone;may;fri;121;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+41;blue-collar;married;basic.9y;unknown;no;no;telephone;may;fri;471;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+48;admin.;single;university.degree;no;no;yes;telephone;may;fri;121;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+26;services;single;high.school;no;no;no;telephone;may;fri;177;4;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+48;unknown;married;basic.4y;unknown;no;no;telephone;may;fri;344;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+47;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;fri;229;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+36;admin.;married;university.degree;no;no;no;telephone;may;fri;404;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+54;technician;divorced;basic.9y;unknown;no;no;telephone;may;fri;287;4;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+26;admin.;single;university.degree;unknown;no;no;telephone;may;fri;329;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+35;technician;married;basic.9y;no;no;no;telephone;may;fri;433;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+54;services;divorced;high.school;unknown;yes;no;telephone;may;fri;216;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+51;services;married;basic.6y;no;no;no;telephone;may;fri;1340;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;yes
+28;technician;single;professional.course;no;no;no;telephone;may;fri;323;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+52;services;married;university.degree;no;no;no;telephone;may;fri;132;11;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+31;admin.;married;basic.9y;unknown;yes;no;telephone;may;fri;199;4;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+28;services;single;high.school;no;yes;no;telephone;may;fri;221;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+32;blue-collar;married;basic.9y;no;no;no;telephone;may;fri;200;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+46;admin.;divorced;university.degree;no;no;no;telephone;may;fri;897;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;yes
+38;admin.;married;university.degree;no;yes;no;telephone;may;fri;80;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+36;blue-collar;married;basic.9y;no;no;no;telephone;may;fri;123;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+31;admin.;married;university.degree;no;yes;no;telephone;may;fri;90;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+38;management;married;university.degree;no;no;no;telephone;may;fri;461;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+35;admin.;married;high.school;unknown;yes;no;telephone;may;fri;213;14;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+39;housemaid;married;high.school;no;yes;no;telephone;may;fri;193;11;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+31;housemaid;divorced;high.school;no;yes;no;telephone;may;fri;428;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+39;self-employed;married;high.school;no;yes;no;telephone;may;fri;291;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+36;housemaid;married;high.school;no;no;no;telephone;may;fri;136;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+29;services;married;basic.9y;unknown;no;no;telephone;may;fri;124;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+37;management;married;university.degree;no;no;no;telephone;may;fri;214;4;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+28;blue-collar;married;basic.9y;no;yes;no;telephone;may;fri;239;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+41;management;married;unknown;no;no;no;telephone;may;fri;718;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+38;services;married;high.school;unknown;yes;no;telephone;may;fri;323;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+31;technician;married;university.degree;no;no;no;telephone;may;fri;94;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+50;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;fri;74;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+36;admin.;married;basic.9y;no;no;no;telephone;may;fri;107;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+40;management;married;unknown;no;no;no;telephone;may;fri;97;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+37;admin.;married;university.degree;no;no;no;telephone;may;fri;51;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+28;unemployed;single;high.school;no;no;no;telephone;may;fri;109;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+50;services;divorced;basic.4y;unknown;unknown;unknown;telephone;may;fri;225;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+38;housemaid;married;basic.9y;no;no;no;telephone;may;fri;378;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+43;blue-collar;married;basic.9y;unknown;no;no;telephone;may;fri;217;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+37;technician;married;high.school;no;yes;no;telephone;may;fri;136;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+47;blue-collar;divorced;basic.9y;unknown;no;no;telephone;may;fri;1161;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+52;technician;married;high.school;unknown;no;no;telephone;may;fri;467;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+30;admin.;single;university.degree;no;no;no;telephone;may;fri;386;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+33;admin.;divorced;high.school;no;yes;no;telephone;may;fri;290;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+43;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;fri;168;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+52;technician;married;basic.9y;no;no;no;telephone;may;fri;764;7;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+44;blue-collar;married;basic.6y;unknown;yes;no;telephone;may;fri;194;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+48;management;married;university.degree;no;yes;no;telephone;may;fri;16;23;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+40;admin.;divorced;professional.course;no;no;no;telephone;may;fri;148;18;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+35;student;single;high.school;no;no;yes;telephone;may;fri;2680;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;yes
+56;management;married;basic.4y;unknown;unknown;unknown;telephone;may;fri;242;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+53;technician;married;high.school;no;no;no;telephone;may;fri;269;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+33;blue-collar;married;professional.course;no;yes;no;telephone;may;fri;208;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+54;retired;married;basic.9y;unknown;no;no;telephone;may;fri;370;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+35;technician;married;professional.course;no;no;no;telephone;may;fri;274;8;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+33;services;single;high.school;no;no;no;telephone;may;fri;326;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+36;services;single;basic.9y;no;yes;no;telephone;may;fri;337;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+41;housemaid;married;university.degree;unknown;no;no;telephone;may;fri;104;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+48;blue-collar;married;professional.course;no;no;no;telephone;may;fri;788;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+35;admin.;married;university.degree;no;no;no;telephone;may;fri;353;4;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+42;admin.;single;university.degree;no;yes;no;telephone;may;fri;14;15;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+35;admin.;married;university.degree;no;yes;no;telephone;may;fri;698;9;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+34;admin.;married;high.school;no;yes;yes;telephone;may;fri;180;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+29;management;single;university.degree;no;yes;no;telephone;may;fri;257;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+32;admin.;single;university.degree;no;yes;no;telephone;may;fri;467;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+31;blue-collar;married;basic.9y;no;yes;yes;telephone;may;fri;233;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+46;blue-collar;married;basic.4y;no;yes;no;telephone;may;fri;218;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+25;blue-collar;single;basic.4y;no;yes;no;telephone;may;fri;304;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+28;admin.;single;university.degree;no;yes;no;telephone;may;fri;315;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+48;technician;single;university.degree;unknown;yes;no;telephone;may;fri;40;5;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+42;retired;married;basic.9y;unknown;no;no;telephone;may;fri;698;1;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+32;technician;divorced;professional.course;no;yes;no;telephone;may;fri;76;17;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+30;admin.;married;university.degree;no;yes;no;telephone;may;fri;355;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+32;services;single;high.school;no;no;no;telephone;may;fri;557;4;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+28;services;single;basic.9y;no;yes;no;telephone;may;fri;148;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+28;blue-collar;married;basic.9y;no;yes;no;telephone;may;fri;128;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+40;blue-collar;married;basic.6y;no;yes;no;telephone;may;fri;130;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+46;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;fri;280;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+38;entrepreneur;married;basic.6y;no;no;no;telephone;may;fri;152;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+47;blue-collar;married;basic.4y;no;no;no;telephone;may;fri;283;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+37;services;married;high.school;no;no;no;telephone;may;fri;523;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+55;technician;married;basic.4y;unknown;yes;no;telephone;may;fri;316;7;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+28;admin.;single;university.degree;no;yes;no;telephone;may;fri;1128;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+43;blue-collar;single;basic.9y;no;yes;no;telephone;may;fri;171;4;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+56;unknown;married;unknown;unknown;yes;no;telephone;may;fri;174;15;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+33;management;single;university.degree;no;no;yes;telephone;may;fri;71;11;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+33;blue-collar;married;basic.9y;no;no;yes;telephone;may;fri;84;4;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+35;admin.;divorced;university.degree;no;yes;no;telephone;may;fri;221;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+41;blue-collar;divorced;basic.6y;no;unknown;unknown;telephone;may;fri;234;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+59;entrepreneur;divorced;high.school;unknown;yes;no;telephone;may;fri;138;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+29;services;single;university.degree;no;no;no;telephone;may;fri;339;5;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+30;self-employed;married;basic.9y;no;yes;no;telephone;may;fri;509;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+39;admin.;single;high.school;unknown;yes;no;telephone;may;fri;254;16;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+51;retired;married;university.degree;no;yes;yes;telephone;may;fri;243;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+34;blue-collar;married;basic.9y;no;no;no;telephone;may;fri;344;4;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+31;technician;single;professional.course;unknown;yes;yes;telephone;may;fri;131;4;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+36;blue-collar;married;basic.9y;unknown;yes;yes;telephone;may;fri;251;4;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+46;technician;married;basic.9y;no;yes;no;telephone;may;fri;1135;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+31;technician;married;university.degree;no;no;no;telephone;may;fri;1106;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+37;technician;married;professional.course;unknown;yes;no;telephone;may;fri;312;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+30;self-employed;single;high.school;no;yes;yes;telephone;may;fri;292;8;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+47;admin.;married;high.school;no;no;no;telephone;may;fri;279;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+41;blue-collar;married;high.school;no;yes;no;telephone;may;fri;293;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+27;services;single;high.school;no;yes;yes;telephone;may;fri;198;5;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+27;blue-collar;divorced;unknown;no;yes;no;telephone;may;fri;1408;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+39;blue-collar;divorced;basic.6y;unknown;no;no;telephone;may;fri;827;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+32;services;married;high.school;no;no;no;telephone;may;fri;303;5;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+42;blue-collar;married;basic.4y;unknown;yes;yes;telephone;may;fri;588;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+37;services;married;high.school;no;no;no;telephone;may;fri;680;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+41;blue-collar;married;basic.6y;unknown;yes;no;telephone;may;fri;160;6;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+51;blue-collar;married;basic.9y;unknown;no;no;telephone;may;fri;21;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+48;technician;married;high.school;no;no;no;telephone;may;fri;251;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+36;technician;married;basic.9y;no;no;no;telephone;may;fri;476;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+50;management;single;university.degree;no;no;no;telephone;may;fri;81;6;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+25;admin.;married;high.school;no;yes;no;telephone;may;fri;4;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+49;blue-collar;married;basic.9y;unknown;no;no;telephone;may;fri;283;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+44;self-employed;single;basic.6y;unknown;yes;no;telephone;may;fri;248;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+52;entrepreneur;married;university.degree;unknown;yes;no;telephone;may;fri;541;5;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+33;self-employed;single;university.degree;no;yes;no;telephone;may;fri;227;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+48;admin.;divorced;professional.course;no;yes;no;telephone;may;fri;427;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+42;blue-collar;married;basic.9y;unknown;no;no;telephone;may;fri;148;9;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+35;management;married;university.degree;no;yes;no;telephone;may;fri;408;10;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+45;management;married;university.degree;no;no;no;telephone;may;fri;255;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+28;admin.;married;high.school;no;yes;no;telephone;may;fri;236;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+56;entrepreneur;married;university.degree;no;yes;no;telephone;may;fri;428;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+60;retired;married;basic.9y;unknown;yes;no;telephone;may;fri;32;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+37;admin.;married;high.school;no;no;yes;telephone;may;fri;851;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+38;entrepreneur;married;basic.9y;no;no;no;telephone;may;fri;522;5;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+41;self-employed;married;high.school;unknown;no;no;telephone;may;fri;165;4;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+57;services;divorced;high.school;no;yes;yes;telephone;may;fri;1193;5;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;yes
+23;services;married;basic.9y;no;no;no;telephone;may;fri;1144;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+33;admin.;married;high.school;no;yes;no;telephone;may;fri;730;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+48;blue-collar;married;basic.9y;no;yes;no;telephone;may;fri;167;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+38;technician;married;university.degree;unknown;yes;no;telephone;may;fri;1023;4;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+32;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;fri;469;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+31;management;married;high.school;no;no;no;telephone;may;fri;385;7;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+43;blue-collar;divorced;basic.9y;no;yes;no;telephone;may;fri;169;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+44;management;married;high.school;no;yes;no;telephone;may;fri;409;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+44;admin.;married;university.degree;unknown;no;no;telephone;may;fri;165;6;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+33;services;married;high.school;no;no;yes;telephone;may;fri;437;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+36;admin.;married;basic.9y;no;no;no;telephone;may;fri;89;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+47;technician;married;professional.course;unknown;no;no;telephone;may;fri;261;6;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+30;admin.;married;university.degree;no;no;no;telephone;may;fri;294;4;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+34;blue-collar;married;basic.9y;unknown;no;yes;telephone;may;fri;1245;19;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+28;admin.;single;high.school;no;no;no;telephone;may;fri;498;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+46;blue-collar;married;basic.9y;no;no;yes;telephone;may;fri;134;4;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+32;blue-collar;married;basic.4y;no;no;no;telephone;may;fri;230;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+36;retired;married;high.school;no;no;no;telephone;may;fri;192;20;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+24;student;single;university.degree;no;yes;yes;telephone;may;fri;65;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+35;blue-collar;married;basic.4y;no;yes;no;telephone;may;fri;237;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+31;admin.;single;university.degree;no;no;no;telephone;may;fri;239;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+51;admin.;divorced;university.degree;unknown;no;no;telephone;may;fri;196;6;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+33;admin.;married;university.degree;no;no;no;telephone;may;fri;243;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+28;services;single;basic.9y;no;yes;no;telephone;may;fri;393;2;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+43;blue-collar;married;unknown;unknown;no;no;telephone;may;fri;512;6;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+43;blue-collar;married;basic.6y;no;no;no;telephone;may;fri;218;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+33;self-employed;married;university.degree;no;yes;no;telephone;may;fri;215;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+31;services;married;basic.9y;no;yes;no;telephone;may;fri;186;5;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+39;admin.;married;professional.course;no;no;no;telephone;may;fri;299;4;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+52;self-employed;married;university.degree;no;yes;no;telephone;may;fri;107;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+24;student;single;high.school;unknown;yes;yes;telephone;may;fri;103;7;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+30;admin.;single;university.degree;unknown;no;yes;telephone;may;fri;297;4;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+28;blue-collar;married;basic.9y;no;no;yes;telephone;may;fri;1064;4;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;yes
+28;blue-collar;married;basic.9y;no;no;no;telephone;may;fri;90;7;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+41;technician;single;university.degree;unknown;yes;no;telephone;may;fri;59;5;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+39;blue-collar;married;basic.9y;no;no;no;telephone;may;fri;102;4;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+37;technician;married;basic.9y;no;no;no;telephone;may;fri;1110;3;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+51;blue-collar;married;basic.4y;no;no;yes;telephone;may;fri;1187;4;999;0;nonexistent;1.1;93.994;-36.4;4.859;5191.0;no
+50;management;married;university.degree;unknown;unknown;unknown;telephone;may;mon;93;4;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+53;technician;married;high.school;no;no;yes;telephone;may;mon;119;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+53;technician;married;unknown;no;yes;no;telephone;may;mon;65;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+52;blue-collar;married;basic.4y;no;no;yes;telephone;may;mon;79;19;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+33;services;married;high.school;no;no;no;telephone;may;mon;145;4;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+36;self-employed;single;university.degree;no;yes;no;telephone;may;mon;39;6;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+41;blue-collar;married;basic.9y;unknown;no;no;telephone;may;mon;105;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+43;admin.;divorced;high.school;no;no;no;telephone;may;mon;311;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+39;self-employed;married;basic.4y;unknown;no;no;telephone;may;mon;179;4;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+43;technician;divorced;university.degree;unknown;no;no;telephone;may;mon;62;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+56;blue-collar;married;basic.4y;unknown;yes;yes;telephone;may;mon;115;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+52;admin.;married;university.degree;no;no;yes;telephone;may;mon;134;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+36;technician;married;professional.course;no;yes;no;telephone;may;mon;594;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+35;self-employed;divorced;basic.9y;no;no;yes;telephone;may;mon;55;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+30;services;married;high.school;no;yes;no;telephone;may;mon;92;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+30;management;divorced;high.school;no;yes;no;telephone;may;mon;19;5;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+36;housemaid;married;basic.4y;unknown;no;no;telephone;may;mon;501;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+38;admin.;divorced;high.school;no;yes;no;telephone;may;mon;114;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+38;blue-collar;married;basic.6y;no;yes;no;telephone;may;mon;221;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+39;entrepreneur;divorced;university.degree;no;yes;no;telephone;may;mon;219;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+34;management;married;high.school;no;no;no;telephone;may;mon;221;4;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+35;unknown;single;basic.4y;unknown;yes;yes;telephone;may;mon;374;6;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+59;retired;married;basic.4y;unknown;yes;no;telephone;may;mon;123;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+32;blue-collar;married;basic.9y;no;yes;no;telephone;may;mon;166;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+37;blue-collar;single;professional.course;no;no;no;telephone;may;mon;128;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+52;self-employed;single;university.degree;unknown;yes;no;telephone;may;mon;37;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+29;technician;married;professional.course;no;yes;no;telephone;may;mon;35;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+44;blue-collar;married;basic.6y;no;yes;yes;telephone;may;mon;668;7;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+41;blue-collar;married;basic.4y;unknown;no;no;telephone;may;mon;88;5;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+37;services;divorced;high.school;no;yes;no;telephone;may;mon;77;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+46;admin.;married;high.school;unknown;yes;yes;telephone;may;mon;358;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+49;services;single;basic.4y;unknown;no;no;telephone;may;mon;312;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+46;admin.;divorced;university.degree;no;no;no;telephone;may;mon;134;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+40;admin.;single;unknown;unknown;no;yes;telephone;may;mon;61;4;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+32;student;single;university.degree;no;no;no;telephone;may;mon;258;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+40;self-employed;married;high.school;unknown;no;no;telephone;may;mon;131;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+28;technician;divorced;professional.course;no;no;no;telephone;may;mon;71;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+40;blue-collar;married;basic.6y;unknown;yes;no;telephone;may;mon;153;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+32;admin.;single;professional.course;no;no;no;telephone;may;mon;131;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+47;management;married;basic.4y;unknown;yes;no;telephone;may;mon;219;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+38;blue-collar;married;basic.9y;no;yes;yes;telephone;may;mon;468;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+32;management;single;high.school;no;yes;no;telephone;may;mon;326;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+34;admin.;single;high.school;no;no;yes;telephone;may;mon;412;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+53;technician;married;professional.course;unknown;yes;yes;telephone;may;mon;579;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+36;technician;married;university.degree;no;yes;no;telephone;may;mon;277;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+45;entrepreneur;married;basic.4y;unknown;no;no;telephone;may;mon;316;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+47;management;married;basic.4y;unknown;no;no;telephone;may;mon;882;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;yes
+44;blue-collar;divorced;basic.6y;no;no;no;telephone;may;mon;380;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+44;blue-collar;divorced;basic.9y;no;no;no;telephone;may;mon;169;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+37;admin.;married;high.school;no;yes;no;telephone;may;mon;124;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+47;services;married;unknown;unknown;yes;yes;telephone;may;mon;122;6;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+58;retired;divorced;university.degree;no;yes;no;telephone;may;mon;83;4;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+28;services;single;high.school;no;yes;no;telephone;may;mon;318;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+46;technician;married;professional.course;no;no;no;telephone;may;mon;29;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+48;admin.;married;high.school;no;yes;no;telephone;may;mon;218;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+41;blue-collar;married;professional.course;no;no;no;telephone;may;mon;144;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+32;blue-collar;single;basic.6y;no;yes;no;telephone;may;mon;130;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+48;technician;married;unknown;no;yes;no;telephone;may;mon;429;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+49;management;married;university.degree;no;no;no;telephone;may;mon;27;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+27;services;single;high.school;no;yes;no;telephone;may;mon;343;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+55;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;mon;385;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+46;admin.;married;professional.course;no;no;no;telephone;may;mon;167;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+47;technician;married;professional.course;no;unknown;unknown;telephone;may;mon;89;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+42;admin.;divorced;university.degree;no;no;no;telephone;may;mon;95;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+51;blue-collar;married;basic.9y;unknown;no;no;telephone;may;mon;289;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+57;retired;married;basic.4y;unknown;yes;no;telephone;may;mon;156;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+32;services;single;basic.6y;no;yes;yes;telephone;may;mon;112;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+54;blue-collar;married;basic.4y;unknown;yes;yes;telephone;may;mon;351;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+33;admin.;married;professional.course;no;no;no;telephone;may;mon;198;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+50;blue-collar;married;basic.6y;no;no;no;telephone;may;mon;165;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+45;services;divorced;high.school;unknown;yes;no;telephone;may;mon;25;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+49;services;divorced;basic.9y;no;no;no;telephone;may;mon;134;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+47;management;married;basic.4y;unknown;no;no;telephone;may;mon;268;6;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+45;services;married;basic.9y;no;no;yes;telephone;may;mon;298;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+36;technician;married;professional.course;no;yes;no;telephone;may;mon;188;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+38;blue-collar;married;basic.4y;no;no;no;telephone;may;mon;241;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+30;self-employed;single;high.school;no;yes;no;telephone;may;mon;201;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+41;management;married;university.degree;unknown;yes;no;telephone;may;mon;27;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+31;technician;single;university.degree;unknown;yes;yes;telephone;may;mon;206;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+35;blue-collar;married;basic.6y;no;yes;yes;telephone;may;mon;68;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+36;technician;married;basic.6y;no;yes;no;telephone;may;mon;82;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+51;services;married;high.school;unknown;yes;yes;telephone;may;mon;94;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+41;management;married;university.degree;no;no;no;telephone;may;mon;97;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+37;blue-collar;married;basic.9y;no;yes;no;telephone;may;mon;138;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+36;management;married;basic.9y;no;unknown;unknown;telephone;may;mon;285;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+35;student;single;high.school;no;no;no;telephone;may;mon;135;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+57;technician;married;professional.course;no;yes;no;telephone;may;mon;483;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;yes
+28;admin.;single;university.degree;no;yes;no;telephone;may;mon;267;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+54;housemaid;divorced;basic.4y;no;no;no;telephone;may;mon;382;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+38;admin.;single;university.degree;unknown;yes;no;telephone;may;mon;55;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+52;management;divorced;high.school;no;unknown;unknown;telephone;may;mon;259;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+43;blue-collar;married;basic.4y;unknown;no;yes;telephone;may;mon;18;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+30;student;single;basic.9y;no;no;no;telephone;may;mon;234;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+51;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;mon;792;4;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+31;technician;married;university.degree;no;no;no;telephone;may;mon;95;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+45;blue-collar;married;unknown;no;yes;yes;telephone;may;mon;943;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;yes
+42;blue-collar;married;basic.4y;no;yes;no;telephone;may;mon;798;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+37;blue-collar;married;basic.6y;no;no;no;telephone;may;mon;168;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+49;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;mon;84;12;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+34;blue-collar;married;basic.9y;unknown;yes;yes;telephone;may;mon;100;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+50;services;married;basic.6y;no;yes;no;telephone;may;mon;85;4;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+47;services;divorced;high.school;no;no;no;telephone;may;mon;143;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+44;unknown;married;basic.6y;no;yes;yes;telephone;may;mon;115;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+42;blue-collar;married;basic.9y;no;yes;no;telephone;may;mon;23;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+31;blue-collar;married;basic.9y;no;unknown;unknown;telephone;may;mon;73;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+52;management;married;high.school;unknown;no;no;telephone;may;mon;31;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+56;housemaid;married;basic.4y;no;no;no;telephone;may;mon;182;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+36;blue-collar;married;basic.6y;unknown;unknown;unknown;telephone;may;mon;190;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+45;admin.;married;university.degree;no;no;no;telephone;may;mon;351;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+31;self-employed;married;university.degree;no;no;yes;telephone;may;mon;179;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+39;housemaid;married;university.degree;no;no;no;telephone;may;mon;237;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+45;blue-collar;married;basic.6y;unknown;yes;no;telephone;may;mon;107;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+46;self-employed;married;basic.9y;unknown;no;no;telephone;may;mon;529;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+32;blue-collar;married;basic.6y;unknown;yes;no;telephone;may;mon;36;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+29;management;single;university.degree;no;yes;yes;telephone;may;mon;122;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+41;blue-collar;married;basic.9y;no;no;no;telephone;may;mon;198;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+35;admin.;married;university.degree;no;yes;yes;telephone;may;mon;67;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+29;services;married;basic.9y;no;yes;no;telephone;may;mon;238;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+34;admin.;married;university.degree;no;no;no;telephone;may;mon;81;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+31;blue-collar;single;basic.9y;no;no;no;telephone;may;mon;496;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+36;technician;single;professional.course;no;no;yes;telephone;may;mon;114;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+41;technician;married;university.degree;no;no;no;telephone;may;mon;156;5;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+59;retired;married;basic.9y;unknown;no;no;telephone;may;mon;211;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+45;unemployed;married;basic.6y;unknown;no;no;telephone;may;mon;265;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+31;blue-collar;married;basic.9y;no;yes;no;telephone;may;mon;48;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+25;services;married;high.school;unknown;yes;yes;telephone;may;mon;104;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+38;management;married;unknown;no;no;no;telephone;may;mon;610;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+32;blue-collar;divorced;basic.9y;no;no;no;telephone;may;mon;287;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+33;admin.;single;high.school;unknown;yes;no;telephone;may;mon;68;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+35;self-employed;married;university.degree;no;unknown;unknown;telephone;may;mon;167;4;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+37;blue-collar;married;professional.course;no;no;no;telephone;may;mon;336;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+47;technician;married;professional.course;no;no;no;telephone;may;mon;202;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+28;blue-collar;married;basic.6y;no;no;no;telephone;may;mon;228;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+36;admin.;married;high.school;no;no;no;telephone;may;mon;192;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+32;admin.;married;university.degree;no;yes;no;telephone;may;mon;23;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+36;blue-collar;single;high.school;no;yes;yes;telephone;may;mon;260;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+51;blue-collar;married;basic.4y;no;yes;yes;telephone;may;mon;387;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+32;admin.;married;high.school;no;no;no;telephone;may;mon;70;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+50;unemployed;married;basic.4y;unknown;yes;no;telephone;may;mon;272;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+48;services;divorced;high.school;unknown;yes;yes;telephone;may;mon;158;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+32;admin.;married;high.school;unknown;yes;no;telephone;may;mon;35;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+48;blue-collar;married;basic.9y;no;no;no;telephone;may;mon;607;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;yes
+52;technician;divorced;basic.9y;no;yes;yes;telephone;may;mon;257;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+30;blue-collar;single;basic.9y;unknown;no;yes;telephone;may;mon;36;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+36;blue-collar;single;basic.9y;no;no;no;telephone;may;mon;214;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+48;admin.;married;university.degree;no;yes;no;telephone;may;mon;105;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+25;blue-collar;single;basic.9y;unknown;yes;no;telephone;may;mon;260;9;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+28;admin.;single;high.school;no;no;no;telephone;may;mon;197;4;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+28;self-employed;single;basic.9y;no;no;no;telephone;may;mon;174;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+34;blue-collar;married;basic.6y;no;no;no;telephone;may;mon;144;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+39;admin.;married;basic.4y;no;no;no;telephone;may;mon;222;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+42;services;married;professional.course;no;no;no;telephone;may;mon;136;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+57;retired;married;basic.4y;no;yes;no;telephone;may;mon;546;12;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+44;admin.;married;basic.4y;unknown;no;no;telephone;may;mon;49;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+28;admin.;single;basic.9y;no;yes;yes;telephone;may;mon;335;4;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+25;self-employed;single;university.degree;no;no;no;telephone;may;mon;105;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+29;housemaid;single;high.school;no;no;no;telephone;may;mon;1203;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+28;services;married;high.school;no;no;no;telephone;may;mon;1022;4;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;yes
+41;admin.;divorced;university.degree;unknown;yes;no;telephone;may;mon;128;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+28;self-employed;married;professional.course;no;no;no;telephone;may;mon;258;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+32;admin.;married;high.school;no;no;no;telephone;may;mon;199;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+49;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;mon;364;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+59;technician;married;university.degree;unknown;unknown;unknown;telephone;may;mon;123;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+55;admin.;married;university.degree;no;no;no;telephone;may;mon;201;14;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+43;management;married;university.degree;no;unknown;unknown;telephone;may;mon;193;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+58;retired;married;basic.4y;unknown;no;no;telephone;may;mon;159;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+54;blue-collar;married;basic.4y;unknown;no;no;telephone;may;mon;166;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+25;blue-collar;married;basic.4y;no;no;no;telephone;may;mon;480;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+24;technician;single;professional.course;unknown;no;no;telephone;may;mon;149;4;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+53;self-employed;married;university.degree;no;no;no;telephone;may;mon;396;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+36;admin.;married;university.degree;no;no;no;telephone;may;mon;124;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+49;housemaid;married;basic.4y;no;no;no;telephone;may;mon;13;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+44;entrepreneur;married;professional.course;no;no;no;telephone;may;mon;259;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+51;blue-collar;married;basic.4y;no;unknown;unknown;telephone;may;mon;162;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+37;housemaid;married;high.school;no;yes;yes;telephone;may;mon;723;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+41;blue-collar;married;basic.9y;no;no;no;telephone;may;mon;89;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+40;blue-collar;married;basic.9y;no;yes;no;telephone;may;mon;257;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+35;services;married;professional.course;unknown;yes;yes;telephone;may;mon;361;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+24;services;single;professional.course;no;yes;no;telephone;may;mon;314;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+34;technician;married;university.degree;no;yes;no;telephone;may;mon;83;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+30;blue-collar;married;basic.9y;no;no;no;telephone;may;mon;215;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+48;services;married;high.school;unknown;yes;yes;telephone;may;mon;115;4;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+27;blue-collar;married;basic.9y;no;yes;no;telephone;may;mon;147;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+40;admin.;divorced;professional.course;no;no;no;telephone;may;mon;102;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+40;admin.;married;university.degree;unknown;yes;yes;telephone;may;mon;183;7;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+48;admin.;married;basic.9y;unknown;no;yes;telephone;may;mon;70;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+35;admin.;single;high.school;no;yes;yes;telephone;may;mon;19;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+26;admin.;married;high.school;no;no;yes;telephone;may;mon;346;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+33;admin.;married;university.degree;no;no;no;telephone;may;mon;643;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+29;services;single;university.degree;unknown;yes;no;telephone;may;mon;78;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+45;blue-collar;married;basic.4y;unknown;yes;yes;telephone;may;mon;133;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+35;admin.;married;university.degree;no;yes;no;telephone;may;mon;193;6;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+32;blue-collar;married;basic.9y;no;yes;no;telephone;may;mon;181;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+34;blue-collar;married;basic.9y;no;yes;no;telephone;may;mon;513;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+33;services;single;high.school;no;no;yes;telephone;may;mon;109;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+37;blue-collar;married;basic.9y;unknown;no;no;telephone;may;mon;263;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+29;admin.;single;basic.9y;unknown;no;no;telephone;may;mon;333;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+27;student;single;university.degree;no;yes;no;telephone;may;mon;104;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+43;services;divorced;high.school;no;yes;no;telephone;may;mon;191;4;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+47;blue-collar;married;professional.course;unknown;no;no;telephone;may;mon;571;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+32;housemaid;single;high.school;no;unknown;unknown;telephone;may;mon;180;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+33;unemployed;divorced;professional.course;no;unknown;unknown;telephone;may;mon;446;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+26;unemployed;married;high.school;no;yes;no;telephone;may;mon;107;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+39;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;mon;335;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+38;blue-collar;married;basic.6y;unknown;yes;yes;telephone;may;mon;120;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+48;blue-collar;married;professional.course;no;no;no;telephone;may;mon;219;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+42;entrepreneur;married;university.degree;no;no;no;telephone;may;mon;148;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+35;blue-collar;divorced;basic.9y;no;yes;yes;telephone;may;mon;400;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+42;blue-collar;divorced;basic.6y;no;yes;no;telephone;may;mon;503;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+36;blue-collar;single;basic.9y;unknown;no;no;telephone;may;mon;125;5;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+28;blue-collar;married;basic.9y;no;no;yes;telephone;may;mon;329;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+32;technician;single;basic.9y;no;yes;no;telephone;may;mon;194;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+28;blue-collar;divorced;high.school;no;yes;no;telephone;may;mon;7;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+41;blue-collar;divorced;basic.9y;no;no;no;telephone;may;mon;53;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+32;admin.;married;university.degree;unknown;unknown;unknown;telephone;may;mon;261;56;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+42;blue-collar;divorced;basic.9y;no;unknown;unknown;telephone;may;mon;100;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+29;technician;single;university.degree;no;unknown;unknown;telephone;may;mon;104;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+38;services;married;high.school;no;yes;no;telephone;may;mon;552;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;yes
+22;services;single;high.school;no;yes;no;telephone;may;mon;345;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+34;blue-collar;married;basic.9y;no;no;no;telephone;may;mon;263;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+31;blue-collar;married;basic.9y;unknown;yes;yes;telephone;may;mon;88;6;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+52;entrepreneur;married;university.degree;no;no;no;telephone;may;mon;44;39;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+55;services;divorced;high.school;no;no;yes;telephone;may;mon;207;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+24;services;single;high.school;no;no;no;telephone;may;mon;401;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+46;admin.;divorced;high.school;unknown;no;yes;telephone;may;mon;178;5;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+31;admin.;divorced;university.degree;no;no;no;telephone;may;mon;53;5;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+34;admin.;married;university.degree;no;no;no;telephone;may;mon;349;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+45;entrepreneur;married;basic.9y;no;no;no;telephone;may;mon;34;9;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+45;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;mon;48;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+39;technician;divorced;professional.course;no;unknown;unknown;telephone;may;mon;182;11;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+29;technician;single;university.degree;no;unknown;unknown;telephone;may;mon;147;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+44;technician;divorced;high.school;no;yes;no;telephone;may;mon;457;5;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+29;technician;single;university.degree;no;yes;no;telephone;may;mon;193;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+32;technician;married;professional.course;no;no;yes;telephone;may;mon;142;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+32;technician;single;high.school;no;yes;yes;telephone;may;mon;123;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+48;technician;divorced;professional.course;no;no;yes;telephone;may;mon;65;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+29;technician;single;university.degree;no;yes;no;telephone;may;mon;420;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+32;blue-collar;married;professional.course;no;yes;no;telephone;may;mon;100;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+38;blue-collar;single;basic.4y;no;yes;no;telephone;may;mon;403;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+28;unemployed;single;high.school;no;yes;yes;telephone;may;mon;229;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+46;blue-collar;married;basic.4y;no;unknown;unknown;telephone;may;mon;445;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+46;management;married;basic.9y;unknown;no;no;telephone;may;mon;206;4;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+27;admin.;single;university.degree;no;yes;no;telephone;may;mon;182;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+26;blue-collar;married;basic.4y;no;yes;no;telephone;may;mon;183;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+33;blue-collar;married;basic.9y;no;yes;no;telephone;may;mon;140;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+28;management;married;university.degree;no;no;no;telephone;may;mon;134;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+52;management;married;basic.4y;unknown;no;no;telephone;may;mon;88;35;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+35;admin.;single;university.degree;no;no;no;telephone;may;mon;234;13;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+33;blue-collar;married;basic.9y;no;unknown;unknown;telephone;may;mon;215;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+46;blue-collar;married;basic.9y;no;yes;no;telephone;may;mon;194;5;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+26;services;married;high.school;no;no;no;telephone;may;mon;394;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+39;services;married;high.school;unknown;no;no;telephone;may;mon;5;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+47;admin.;married;university.degree;no;no;no;telephone;may;mon;408;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+26;blue-collar;married;basic.4y;no;no;yes;telephone;may;mon;114;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+34;blue-collar;married;professional.course;no;yes;no;telephone;may;mon;210;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+24;admin.;single;high.school;no;yes;no;telephone;may;mon;243;6;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+31;technician;married;professional.course;no;no;no;telephone;may;mon;180;6;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+26;admin.;single;high.school;no;no;yes;telephone;may;mon;8;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+31;admin.;married;high.school;no;no;no;telephone;may;mon;313;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+34;blue-collar;married;basic.6y;no;yes;no;telephone;may;mon;1622;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;yes
+60;admin.;married;professional.course;no;yes;no;telephone;may;mon;324;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+32;blue-collar;married;basic.6y;unknown;yes;no;telephone;may;mon;205;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+24;blue-collar;married;basic.9y;no;yes;no;telephone;may;mon;194;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+28;admin.;married;high.school;no;no;no;telephone;may;mon;165;5;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+55;entrepreneur;divorced;university.degree;no;yes;yes;telephone;may;mon;86;7;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+38;admin.;divorced;high.school;no;no;no;telephone;may;mon;160;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+37;blue-collar;married;professional.course;no;yes;no;telephone;may;mon;492;6;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+36;services;divorced;university.degree;no;no;no;telephone;may;mon;187;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+47;technician;married;professional.course;unknown;yes;no;telephone;may;mon;197;4;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+49;technician;married;professional.course;unknown;yes;no;telephone;may;mon;95;5;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+31;blue-collar;married;basic.4y;no;yes;no;telephone;may;mon;159;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+52;services;married;high.school;unknown;yes;no;telephone;may;mon;967;6;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;yes
+36;services;married;high.school;unknown;yes;no;telephone;may;mon;260;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+51;blue-collar;married;basic.6y;unknown;yes;no;telephone;may;mon;109;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+52;services;divorced;high.school;no;no;no;telephone;may;mon;579;5;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;yes
+29;technician;married;professional.course;no;yes;no;telephone;may;mon;124;42;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+51;services;married;professional.course;unknown;no;no;telephone;may;mon;158;5;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+31;blue-collar;married;basic.9y;no;yes;no;telephone;may;mon;162;10;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+36;admin.;married;high.school;no;no;no;telephone;may;mon;211;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+42;services;married;basic.9y;unknown;no;no;telephone;may;mon;173;5;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+32;management;single;basic.4y;no;no;no;telephone;may;mon;73;7;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+30;technician;single;professional.course;no;yes;no;telephone;may;mon;220;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+27;blue-collar;married;basic.9y;no;yes;no;telephone;may;mon;110;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+47;management;married;basic.4y;unknown;no;no;telephone;may;mon;99;22;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+56;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;mon;112;7;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+57;housemaid;married;basic.6y;no;no;yes;telephone;may;mon;168;4;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+27;services;married;professional.course;no;yes;no;telephone;may;mon;283;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+46;blue-collar;divorced;basic.4y;no;no;no;telephone;may;mon;235;7;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+43;technician;single;professional.course;no;yes;no;telephone;may;mon;138;8;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+44;technician;single;professional.course;unknown;no;no;telephone;may;mon;374;6;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+52;self-employed;married;university.degree;unknown;yes;no;telephone;may;mon;353;4;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+38;technician;single;professional.course;no;no;no;telephone;may;mon;147;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+48;blue-collar;married;basic.6y;no;no;no;telephone;may;mon;332;10;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+31;technician;married;basic.9y;unknown;yes;no;telephone;may;mon;179;9;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+33;management;married;university.degree;no;yes;no;telephone;may;mon;396;9;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+37;blue-collar;single;university.degree;no;yes;no;telephone;may;mon;492;9;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+34;blue-collar;married;basic.9y;no;yes;no;telephone;may;mon;360;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+59;housemaid;married;unknown;no;no;no;telephone;may;mon;175;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+34;admin.;married;university.degree;no;yes;yes;telephone;may;mon;97;9;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+34;blue-collar;single;basic.9y;no;no;no;telephone;may;mon;84;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+29;blue-collar;single;professional.course;no;yes;no;telephone;may;mon;57;7;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+46;entrepreneur;married;university.degree;no;yes;no;telephone;may;mon;105;11;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+46;blue-collar;married;basic.9y;unknown;no;no;telephone;may;mon;886;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+31;admin.;unknown;high.school;no;no;no;telephone;may;mon;182;8;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+58;blue-collar;divorced;unknown;no;no;no;telephone;may;mon;467;4;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+33;blue-collar;married;basic.4y;unknown;no;no;telephone;may;mon;21;11;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+32;admin.;single;university.degree;no;no;no;telephone;may;mon;470;4;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+38;services;single;high.school;unknown;yes;no;telephone;may;mon;85;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+51;admin.;single;university.degree;no;no;no;telephone;may;mon;120;7;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+34;services;married;high.school;no;no;no;telephone;may;mon;298;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+30;blue-collar;married;basic.9y;no;no;no;telephone;may;mon;249;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+39;blue-collar;married;professional.course;no;no;no;telephone;may;mon;87;5;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+47;blue-collar;married;basic.4y;no;yes;no;telephone;may;mon;622;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+36;services;married;high.school;no;yes;no;telephone;may;mon;195;4;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+47;services;divorced;high.school;no;no;no;telephone;may;mon;179;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+49;self-employed;single;basic.9y;no;no;no;telephone;may;mon;58;10;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+33;technician;divorced;professional.course;no;no;no;telephone;may;mon;1218;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;yes
+54;blue-collar;married;basic.9y;unknown;no;yes;telephone;may;mon;500;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+35;admin.;married;university.degree;no;yes;yes;telephone;may;mon;66;9;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+25;services;single;high.school;no;no;no;telephone;may;mon;328;10;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+42;management;married;basic.6y;unknown;yes;no;telephone;may;mon;3078;4;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+26;admin.;single;high.school;no;no;no;telephone;may;tue;21;7;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+36;technician;married;professional.course;no;no;no;telephone;may;tue;150;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+47;technician;single;professional.course;unknown;no;no;telephone;may;tue;148;5;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+43;services;married;basic.9y;unknown;no;no;telephone;may;tue;102;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+27;admin.;married;university.degree;no;yes;no;telephone;may;tue;91;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+40;housemaid;married;high.school;unknown;yes;no;telephone;may;tue;201;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+56;management;married;unknown;no;no;no;telephone;may;tue;70;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+59;admin.;married;basic.6y;no;yes;no;telephone;may;tue;19;15;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+49;technician;married;professional.course;unknown;yes;no;telephone;may;tue;82;9;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+40;blue-collar;married;basic.9y;unknown;no;no;telephone;may;tue;59;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+54;technician;divorced;professional.course;no;no;no;telephone;may;tue;182;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+43;housemaid;married;basic.4y;unknown;no;no;telephone;may;tue;365;4;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+36;blue-collar;married;basic.9y;no;yes;no;telephone;may;tue;257;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+53;technician;married;professional.course;no;yes;no;telephone;may;tue;280;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+31;admin.;married;high.school;no;no;no;telephone;may;tue;16;10;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+53;technician;divorced;professional.course;no;no;no;telephone;may;tue;249;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+52;services;married;high.school;unknown;yes;no;telephone;may;tue;140;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+34;admin.;married;university.degree;no;no;no;telephone;may;tue;184;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+31;unemployed;single;professional.course;no;no;no;telephone;may;tue;20;12;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+54;technician;single;university.degree;unknown;unknown;unknown;telephone;may;tue;686;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+45;blue-collar;married;basic.9y;unknown;no;no;telephone;may;tue;107;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+40;admin.;married;basic.9y;no;no;no;telephone;may;tue;224;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+31;admin.;married;high.school;no;yes;no;telephone;may;tue;172;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+41;entrepreneur;single;university.degree;unknown;yes;no;telephone;may;tue;19;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+25;admin.;married;high.school;no;no;yes;telephone;may;tue;125;4;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+35;student;single;university.degree;unknown;yes;no;telephone;may;tue;280;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+49;admin.;divorced;university.degree;no;no;no;telephone;may;tue;216;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+53;blue-collar;married;high.school;no;no;no;telephone;may;tue;109;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+40;admin.;married;professional.course;unknown;yes;no;telephone;may;tue;81;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+46;blue-collar;married;basic.4y;no;yes;yes;telephone;may;tue;409;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+40;unemployed;married;basic.4y;unknown;yes;no;telephone;may;tue;146;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+48;technician;married;unknown;no;yes;yes;telephone;may;tue;83;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+58;retired;married;university.degree;no;no;yes;telephone;may;tue;226;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+30;technician;married;university.degree;unknown;no;no;telephone;may;tue;191;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+49;blue-collar;married;unknown;unknown;yes;no;telephone;may;tue;171;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+54;technician;married;high.school;no;no;no;telephone;may;tue;13;12;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+45;technician;single;professional.course;no;yes;yes;telephone;may;tue;133;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+34;services;married;high.school;no;yes;no;telephone;may;tue;656;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+32;services;single;basic.6y;no;no;yes;telephone;may;tue;1205;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;yes
+41;blue-collar;married;basic.4y;unknown;no;no;telephone;may;tue;202;6;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+50;blue-collar;married;basic.4y;no;yes;no;telephone;may;tue;206;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+52;blue-collar;single;basic.9y;unknown;yes;no;telephone;may;tue;202;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+45;admin.;married;unknown;no;no;no;telephone;may;tue;79;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+37;admin.;married;high.school;unknown;yes;yes;telephone;may;tue;196;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+25;management;single;basic.4y;no;no;no;telephone;may;tue;186;4;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+50;blue-collar;married;basic.4y;no;yes;no;telephone;may;tue;532;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+43;blue-collar;married;basic.4y;no;yes;no;telephone;may;tue;97;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+34;management;married;university.degree;no;no;yes;telephone;may;tue;234;5;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+41;blue-collar;married;basic.9y;no;no;no;telephone;may;tue;216;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+35;admin.;married;high.school;no;no;no;telephone;may;tue;297;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+31;blue-collar;single;high.school;no;no;no;telephone;may;tue;1882;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;yes
+34;management;single;university.degree;no;no;no;telephone;may;tue;243;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+47;services;married;high.school;no;no;no;telephone;may;tue;98;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+52;self-employed;married;basic.4y;unknown;yes;no;telephone;may;tue;81;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+47;blue-collar;married;unknown;unknown;no;no;telephone;may;tue;1334;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;yes
+42;technician;divorced;university.degree;no;no;no;telephone;may;tue;190;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+28;admin.;married;high.school;no;no;no;telephone;may;tue;142;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+43;admin.;married;university.degree;no;yes;no;telephone;may;tue;775;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+41;services;married;basic.9y;no;no;no;telephone;may;tue;335;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+33;technician;married;high.school;no;no;no;telephone;may;tue;168;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+53;admin.;married;university.degree;no;yes;no;telephone;may;tue;68;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+49;blue-collar;married;basic.4y;unknown;no;no;telephone;may;tue;217;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+45;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;tue;68;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+33;services;married;university.degree;no;yes;no;telephone;may;tue;119;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+45;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;tue;160;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+30;unemployed;single;basic.9y;no;no;no;telephone;may;tue;294;10;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+49;technician;married;professional.course;no;yes;no;telephone;may;tue;57;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+38;technician;married;professional.course;no;yes;yes;telephone;may;tue;297;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+39;services;divorced;high.school;no;yes;no;telephone;may;tue;90;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+50;blue-collar;married;basic.4y;unknown;no;yes;telephone;may;tue;600;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+58;blue-collar;married;unknown;no;yes;no;telephone;may;tue;38;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+46;blue-collar;married;basic.6y;no;yes;no;telephone;may;tue;217;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+46;housemaid;married;high.school;unknown;no;no;telephone;may;tue;142;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+40;technician;married;professional.course;no;no;no;telephone;may;tue;26;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+36;admin.;married;high.school;no;no;no;telephone;may;tue;369;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+53;self-employed;married;basic.4y;no;no;no;telephone;may;tue;29;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+32;technician;married;unknown;unknown;no;no;telephone;may;tue;274;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+42;admin.;divorced;university.degree;no;no;no;telephone;may;tue;214;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+39;services;married;high.school;unknown;yes;no;telephone;may;tue;24;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+39;services;married;high.school;no;no;yes;telephone;may;tue;793;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+53;blue-collar;married;basic.4y;unknown;no;no;telephone;may;tue;182;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;yes
+34;blue-collar;single;basic.9y;no;no;no;telephone;may;tue;71;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+39;services;married;high.school;unknown;yes;yes;telephone;may;tue;203;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+50;blue-collar;married;basic.9y;unknown;yes;yes;telephone;may;tue;166;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+40;admin.;married;high.school;no;no;no;telephone;may;tue;167;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+56;technician;married;professional.course;unknown;no;no;telephone;may;tue;37;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+41;technician;married;professional.course;no;unknown;unknown;telephone;may;tue;154;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+46;blue-collar;married;basic.9y;no;no;yes;telephone;may;tue;394;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+36;blue-collar;married;unknown;unknown;no;no;telephone;may;tue;127;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+42;blue-collar;married;unknown;unknown;yes;yes;telephone;may;tue;264;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+38;technician;married;professional.course;unknown;yes;no;telephone;may;tue;231;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+30;services;divorced;basic.9y;no;yes;no;telephone;may;tue;320;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+42;technician;married;basic.9y;no;no;no;telephone;may;tue;618;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+38;technician;married;professional.course;no;no;no;telephone;may;tue;101;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+31;services;married;high.school;unknown;no;no;telephone;may;tue;110;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+45;management;married;unknown;unknown;no;no;telephone;may;tue;121;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+33;blue-collar;married;basic.9y;no;no;no;telephone;may;tue;85;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+36;admin.;married;university.degree;unknown;yes;no;telephone;may;tue;265;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+41;services;married;high.school;unknown;yes;no;telephone;may;tue;171;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+31;admin.;married;high.school;unknown;no;no;telephone;may;tue;345;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+36;admin.;married;high.school;no;yes;yes;telephone;may;tue;224;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+21;admin.;single;basic.9y;no;yes;yes;telephone;may;tue;171;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+29;admin.;married;high.school;no;yes;no;telephone;may;tue;67;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+53;management;married;university.degree;unknown;yes;no;telephone;may;tue;186;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+39;blue-collar;married;basic.6y;no;no;yes;telephone;may;tue;269;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+31;blue-collar;single;basic.9y;no;yes;no;telephone;may;tue;115;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+44;admin.;divorced;university.degree;unknown;yes;yes;telephone;may;tue;273;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+38;admin.;single;basic.6y;unknown;no;no;telephone;may;tue;65;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+47;entrepreneur;married;unknown;unknown;no;no;telephone;may;tue;434;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+36;blue-collar;married;basic.9y;no;no;no;telephone;may;tue;148;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+27;blue-collar;single;basic.9y;no;no;no;telephone;may;tue;507;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+45;blue-collar;married;basic.9y;unknown;no;no;telephone;may;tue;253;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+34;blue-collar;married;basic.4y;no;no;no;telephone;may;tue;27;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+50;blue-collar;married;basic.4y;unknown;no;no;telephone;may;tue;100;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+40;blue-collar;married;basic.4y;no;no;no;telephone;may;tue;116;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+36;admin.;divorced;high.school;no;yes;yes;telephone;may;tue;124;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+40;admin.;married;university.degree;no;yes;no;telephone;may;tue;66;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+53;blue-collar;married;basic.4y;no;no;no;telephone;may;tue;233;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+40;admin.;divorced;university.degree;no;yes;no;telephone;may;tue;380;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+25;blue-collar;married;basic.9y;no;no;no;telephone;may;tue;90;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+42;admin.;married;university.degree;unknown;no;no;telephone;may;tue;258;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+47;admin.;divorced;professional.course;unknown;no;no;telephone;may;tue;92;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+46;admin.;divorced;university.degree;no;no;no;telephone;may;tue;423;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+35;technician;married;professional.course;no;no;no;telephone;may;tue;215;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+45;blue-collar;married;basic.6y;unknown;no;no;telephone;may;tue;209;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+43;technician;married;professional.course;no;no;no;telephone;may;tue;181;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+58;admin.;divorced;basic.9y;unknown;no;no;telephone;may;tue;201;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+43;admin.;married;high.school;no;yes;no;telephone;may;tue;360;6;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+33;blue-collar;single;basic.9y;no;yes;no;telephone;may;tue;155;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+38;blue-collar;divorced;unknown;unknown;unknown;unknown;telephone;may;tue;81;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+32;unknown;unknown;university.degree;no;yes;yes;telephone;may;tue;40;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+49;technician;married;professional.course;no;yes;no;telephone;may;tue;447;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+36;services;single;unknown;no;no;no;telephone;may;tue;137;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+35;admin.;married;high.school;no;no;no;telephone;may;tue;184;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+45;blue-collar;married;basic.9y;unknown;no;no;telephone;may;tue;121;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+36;admin.;divorced;high.school;no;no;no;telephone;may;tue;138;4;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+45;services;married;basic.9y;no;yes;no;telephone;may;tue;207;6;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+34;services;married;high.school;unknown;yes;no;telephone;may;tue;309;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+54;management;married;high.school;unknown;yes;no;telephone;may;tue;134;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+35;services;single;basic.4y;no;yes;no;telephone;may;tue;1777;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;yes
+30;admin.;married;university.degree;no;no;yes;telephone;may;tue;284;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+40;services;married;high.school;no;no;no;telephone;may;tue;70;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+31;blue-collar;married;basic.6y;no;yes;no;telephone;may;tue;774;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+52;technician;married;basic.9y;unknown;no;no;telephone;may;tue;62;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+46;admin.;married;basic.4y;no;no;no;telephone;may;tue;247;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+27;admin.;married;high.school;unknown;no;yes;telephone;may;tue;318;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+39;unemployed;married;professional.course;no;no;yes;telephone;may;tue;277;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+59;technician;married;university.degree;unknown;no;no;telephone;may;tue;126;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+39;admin.;single;unknown;no;no;no;telephone;may;tue;411;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+55;retired;divorced;professional.course;no;no;no;telephone;may;tue;85;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+43;unknown;married;university.degree;no;no;no;telephone;may;tue;378;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+42;self-employed;married;high.school;no;no;no;telephone;may;tue;83;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+42;admin.;single;university.degree;no;no;no;telephone;may;tue;71;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+56;management;married;unknown;no;yes;no;telephone;may;tue;102;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+45;services;married;high.school;no;yes;no;telephone;may;tue;869;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+38;blue-collar;single;basic.9y;no;no;yes;telephone;may;tue;208;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+49;blue-collar;married;basic.9y;no;no;no;telephone;may;tue;199;4;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+57;blue-collar;divorced;basic.4y;unknown;yes;no;telephone;may;tue;47;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+51;admin.;married;basic.6y;unknown;no;no;telephone;may;tue;253;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+31;technician;divorced;basic.9y;no;no;no;telephone;may;tue;244;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+52;management;married;university.degree;unknown;yes;no;telephone;may;tue;311;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+57;retired;married;university.degree;no;yes;no;telephone;may;tue;177;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+47;blue-collar;married;basic.9y;no;yes;no;telephone;may;tue;217;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+42;blue-collar;married;basic.6y;no;yes;no;telephone;may;tue;189;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+35;blue-collar;single;unknown;no;yes;no;telephone;may;tue;152;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+31;admin.;single;university.degree;no;yes;no;telephone;may;tue;151;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+43;technician;single;university.degree;no;no;no;telephone;may;tue;24;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+44;blue-collar;married;basic.6y;unknown;yes;no;telephone;may;tue;212;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+59;entrepreneur;divorced;high.school;unknown;no;no;telephone;may;tue;184;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+57;blue-collar;married;unknown;unknown;yes;no;telephone;may;tue;473;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+41;blue-collar;married;high.school;unknown;yes;no;telephone;may;tue;485;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+32;services;married;high.school;no;no;no;telephone;may;tue;140;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+33;blue-collar;single;basic.4y;no;no;no;telephone;may;tue;172;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+54;entrepreneur;married;basic.6y;unknown;no;no;telephone;may;tue;77;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+22;blue-collar;single;basic.9y;no;yes;no;telephone;may;tue;396;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+36;management;married;university.degree;unknown;no;no;telephone;may;tue;274;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+56;retired;married;high.school;unknown;no;no;telephone;may;tue;88;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+41;management;married;high.school;no;no;yes;telephone;may;tue;129;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+46;blue-collar;married;professional.course;unknown;no;yes;telephone;may;tue;346;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+60;admin.;single;high.school;no;no;yes;telephone;may;tue;474;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+50;services;married;high.school;no;no;no;telephone;may;tue;268;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+49;entrepreneur;married;basic.4y;unknown;yes;yes;telephone;may;tue;222;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+47;admin.;married;university.degree;unknown;no;yes;telephone;may;tue;139;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+34;services;married;high.school;unknown;no;no;telephone;may;tue;1313;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+49;admin.;married;university.degree;unknown;no;no;telephone;may;tue;72;5;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+30;blue-collar;single;high.school;no;yes;no;telephone;may;tue;309;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+35;blue-collar;divorced;high.school;unknown;yes;no;telephone;may;tue;61;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+40;entrepreneur;married;basic.9y;unknown;yes;yes;telephone;may;tue;246;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+42;housemaid;married;high.school;no;no;no;telephone;may;tue;205;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+45;blue-collar;single;basic.9y;no;yes;yes;telephone;may;tue;347;6;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+40;blue-collar;married;basic.9y;no;yes;no;telephone;may;tue;381;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+32;entrepreneur;single;university.degree;unknown;yes;no;telephone;may;tue;355;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+41;services;married;basic.9y;no;yes;no;telephone;may;tue;256;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+57;blue-collar;divorced;professional.course;no;yes;no;telephone;may;tue;211;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+34;services;married;high.school;no;no;no;telephone;may;tue;211;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+40;management;married;university.degree;no;no;yes;telephone;may;tue;66;12;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+44;blue-collar;married;basic.4y;unknown;no;no;telephone;may;tue;1452;10;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+51;blue-collar;married;basic.9y;unknown;unknown;unknown;telephone;may;tue;487;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+42;technician;married;basic.9y;no;no;no;telephone;may;tue;610;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+32;technician;divorced;high.school;no;yes;no;telephone;may;tue;120;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+33;blue-collar;married;basic.9y;no;yes;no;telephone;may;tue;464;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+43;blue-collar;married;basic.4y;unknown;yes;yes;telephone;may;tue;547;7;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+28;blue-collar;married;basic.6y;unknown;yes;no;telephone;may;tue;152;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+37;services;married;high.school;no;yes;no;telephone;may;tue;522;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+37;services;single;high.school;no;yes;no;telephone;may;tue;227;9;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+41;housemaid;married;basic.9y;unknown;yes;no;telephone;may;tue;129;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+37;admin.;married;university.degree;no;no;no;telephone;may;tue;1376;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+42;blue-collar;married;unknown;no;yes;no;telephone;may;tue;37;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+60;services;married;unknown;no;no;no;telephone;may;tue;360;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+28;admin.;single;university.degree;no;yes;no;telephone;may;tue;51;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+45;housemaid;divorced;university.degree;no;no;no;telephone;may;tue;834;6;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+34;blue-collar;married;basic.6y;unknown;yes;no;telephone;may;tue;195;10;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+52;technician;married;high.school;no;yes;no;telephone;may;tue;106;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+33;admin.;married;university.degree;no;no;no;telephone;may;tue;194;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+43;entrepreneur;married;university.degree;no;no;no;telephone;may;tue;535;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+41;management;married;university.degree;no;yes;no;telephone;may;tue;182;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+31;technician;married;professional.course;no;no;no;telephone;may;tue;296;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+48;entrepreneur;married;basic.9y;unknown;yes;no;telephone;may;tue;201;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+47;services;married;high.school;unknown;no;no;telephone;may;tue;281;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+38;admin.;married;basic.9y;unknown;yes;no;telephone;may;tue;150;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+51;unemployed;married;professional.course;no;no;no;telephone;may;tue;76;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+49;admin.;married;university.degree;unknown;yes;no;telephone;may;tue;79;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+31;entrepreneur;married;basic.9y;no;no;no;telephone;may;tue;359;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+45;self-employed;married;basic.4y;unknown;yes;no;telephone;may;tue;332;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+41;blue-collar;married;basic.6y;no;no;no;telephone;may;tue;592;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+51;retired;married;basic.9y;no;no;no;telephone;may;tue;166;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+46;admin.;divorced;university.degree;unknown;no;no;telephone;may;tue;245;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+48;self-employed;married;university.degree;unknown;no;no;telephone;may;tue;138;8;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+51;retired;married;basic.9y;no;yes;no;telephone;may;tue;369;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+44;services;married;high.school;no;unknown;unknown;telephone;may;tue;158;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+30;services;married;high.school;no;yes;no;telephone;may;tue;261;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+35;blue-collar;divorced;basic.9y;no;no;yes;telephone;may;tue;131;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+35;unemployed;married;university.degree;no;no;no;telephone;may;tue;592;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+57;technician;married;basic.9y;no;yes;no;telephone;may;tue;412;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+38;admin.;married;university.degree;no;yes;no;telephone;may;tue;137;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+36;self-employed;married;basic.6y;unknown;yes;yes;telephone;may;tue;324;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+30;admin.;single;university.degree;no;no;no;telephone;may;tue;266;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+37;services;married;high.school;unknown;no;yes;telephone;may;tue;335;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+31;technician;divorced;basic.9y;no;no;no;telephone;may;tue;235;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+37;admin.;married;high.school;no;yes;yes;telephone;may;tue;697;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+31;blue-collar;unknown;unknown;unknown;no;no;telephone;may;tue;170;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+38;technician;married;professional.course;no;unknown;unknown;telephone;may;tue;272;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+29;student;single;university.degree;no;yes;no;telephone;may;tue;1042;17;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+36;services;married;high.school;no;unknown;unknown;telephone;may;tue;271;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+41;management;married;basic.9y;no;yes;no;telephone;may;tue;378;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+32;student;single;high.school;unknown;yes;no;telephone;may;tue;107;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+42;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;tue;78;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+27;blue-collar;married;basic.9y;no;yes;no;telephone;may;tue;383;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+34;technician;married;professional.course;no;no;no;telephone;may;tue;185;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+44;management;married;university.degree;no;yes;no;telephone;may;tue;254;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+42;services;married;professional.course;no;no;no;telephone;may;tue;107;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+29;services;divorced;high.school;no;yes;no;telephone;may;tue;157;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+40;blue-collar;married;basic.6y;unknown;no;no;telephone;may;tue;85;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+57;retired;single;professional.course;no;no;no;telephone;may;tue;249;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+42;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;tue;163;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+50;admin.;married;basic.9y;no;yes;yes;telephone;may;tue;112;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+58;retired;married;basic.4y;no;yes;no;telephone;may;tue;188;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+34;technician;married;professional.course;no;yes;no;telephone;may;tue;148;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+40;admin.;single;university.degree;no;no;no;telephone;may;tue;145;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+46;management;married;basic.9y;no;yes;yes;telephone;may;tue;415;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+33;admin.;married;high.school;no;yes;no;telephone;may;tue;742;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+42;retired;married;basic.9y;unknown;no;no;telephone;may;tue;129;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+27;blue-collar;married;basic.6y;no;no;no;telephone;may;tue;37;9;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+41;management;single;high.school;no;no;no;telephone;may;tue;120;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+39;admin.;married;professional.course;no;yes;no;telephone;may;tue;185;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+58;retired;married;basic.4y;unknown;no;no;telephone;may;tue;1045;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;yes
+31;blue-collar;married;basic.9y;no;no;no;telephone;may;tue;204;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+48;blue-collar;divorced;professional.course;no;yes;no;telephone;may;tue;205;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+45;housemaid;married;professional.course;unknown;no;no;telephone;may;tue;74;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+30;self-employed;married;professional.course;no;no;no;telephone;may;tue;190;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+58;management;married;basic.4y;no;no;no;telephone;may;tue;325;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+39;blue-collar;single;basic.9y;no;no;no;telephone;may;tue;650;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;yes
+41;technician;married;professional.course;no;no;no;telephone;may;tue;148;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+44;blue-collar;married;basic.4y;no;no;no;telephone;may;tue;38;8;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+47;blue-collar;married;basic.9y;no;no;no;telephone;may;tue;625;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+32;admin.;married;university.degree;no;no;yes;telephone;may;tue;175;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+39;management;single;basic.9y;unknown;yes;no;telephone;may;tue;134;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+45;blue-collar;married;basic.4y;unknown;no;no;telephone;may;tue;97;8;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+33;management;married;professional.course;no;no;no;telephone;may;tue;282;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+27;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;tue;304;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+57;retired;married;basic.4y;no;yes;yes;telephone;may;tue;438;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+32;blue-collar;married;basic.9y;no;yes;no;telephone;may;tue;999;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+33;blue-collar;divorced;basic.9y;no;no;no;telephone;may;tue;127;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+57;self-employed;married;unknown;unknown;no;yes;telephone;may;tue;446;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+34;blue-collar;married;basic.4y;no;no;yes;telephone;may;tue;289;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+58;unemployed;married;basic.4y;unknown;no;no;telephone;may;tue;217;4;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+50;admin.;single;university.degree;no;yes;no;telephone;may;tue;169;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+44;blue-collar;married;basic.9y;no;yes;yes;telephone;may;tue;247;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+48;blue-collar;married;professional.course;no;yes;no;telephone;may;tue;140;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+56;retired;divorced;high.school;no;yes;no;telephone;may;tue;60;6;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+42;blue-collar;married;basic.6y;no;yes;yes;telephone;may;tue;99;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+37;blue-collar;married;high.school;unknown;no;no;telephone;may;tue;26;14;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+29;technician;married;professional.course;no;no;no;telephone;may;tue;128;6;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+32;services;married;professional.course;no;yes;no;telephone;may;tue;215;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+40;admin.;single;high.school;no;no;no;telephone;may;tue;64;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+39;management;married;high.school;no;yes;yes;telephone;may;tue;52;10;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+34;services;married;basic.6y;unknown;yes;no;telephone;may;tue;216;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+50;housemaid;divorced;basic.4y;unknown;yes;yes;telephone;may;tue;292;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+28;blue-collar;single;basic.4y;no;no;no;telephone;may;tue;129;7;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+43;housemaid;married;basic.4y;no;unknown;unknown;telephone;may;tue;201;4;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+27;admin.;married;high.school;no;yes;no;telephone;may;tue;210;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+38;services;married;basic.9y;no;unknown;unknown;telephone;may;tue;114;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+37;technician;married;professional.course;no;yes;no;telephone;may;tue;657;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+39;admin.;married;basic.6y;unknown;yes;yes;telephone;may;tue;88;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+36;technician;divorced;university.degree;unknown;yes;no;telephone;may;tue;147;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+43;services;married;high.school;no;no;no;telephone;may;tue;443;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+55;technician;married;basic.9y;unknown;yes;yes;telephone;may;tue;73;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+35;admin.;married;university.degree;no;no;no;telephone;may;tue;127;8;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+27;blue-collar;married;basic.6y;unknown;unknown;unknown;telephone;may;tue;1063;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;yes
+51;entrepreneur;married;basic.4y;no;no;no;telephone;may;tue;446;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+34;housemaid;married;high.school;no;no;no;telephone;may;tue;252;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+28;technician;married;professional.course;no;yes;no;telephone;may;tue;80;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+50;blue-collar;married;basic.6y;unknown;no;no;telephone;may;tue;1446;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+26;blue-collar;married;basic.4y;no;yes;yes;telephone;may;tue;144;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+50;admin.;married;basic.9y;unknown;yes;yes;telephone;may;tue;412;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+52;blue-collar;married;basic.4y;unknown;no;no;telephone;may;tue;222;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+52;blue-collar;married;basic.9y;no;yes;yes;telephone;may;tue;29;16;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+45;admin.;married;high.school;no;no;no;telephone;may;tue;165;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+37;blue-collar;married;unknown;no;no;no;telephone;may;tue;154;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+43;technician;married;basic.9y;unknown;yes;no;telephone;may;tue;202;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+46;admin.;married;high.school;no;yes;no;telephone;may;tue;723;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+45;unemployed;married;university.degree;no;no;no;telephone;may;tue;550;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+31;technician;married;professional.course;no;yes;no;telephone;may;tue;130;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+39;blue-collar;married;professional.course;unknown;no;no;telephone;may;tue;192;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+55;admin.;divorced;university.degree;no;no;no;telephone;may;tue;146;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+55;admin.;married;high.school;no;no;no;telephone;may;tue;239;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+27;technician;single;university.degree;no;yes;no;telephone;may;tue;304;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+38;self-employed;single;university.degree;no;unknown;unknown;telephone;may;tue;114;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+24;student;married;university.degree;no;no;no;telephone;may;tue;139;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+36;services;married;high.school;no;no;no;telephone;may;tue;445;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+44;admin.;married;basic.4y;unknown;yes;yes;telephone;may;tue;139;5;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+33;blue-collar;single;basic.9y;no;no;no;telephone;may;tue;16;10;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+30;technician;married;university.degree;no;no;no;telephone;may;tue;169;4;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+28;self-employed;single;basic.9y;no;no;no;telephone;may;tue;125;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+60;admin.;married;university.degree;unknown;no;no;telephone;may;tue;266;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+38;technician;single;university.degree;no;yes;no;telephone;may;tue;446;12;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+42;admin.;married;basic.9y;no;yes;yes;telephone;may;tue;267;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+35;blue-collar;married;high.school;no;yes;yes;telephone;may;tue;6;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+53;retired;married;high.school;unknown;no;no;telephone;may;tue;15;13;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+24;admin.;single;high.school;no;no;no;telephone;may;tue;172;4;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+35;admin.;divorced;university.degree;no;no;no;telephone;may;tue;94;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+25;admin.;single;high.school;no;no;no;telephone;may;tue;268;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+59;entrepreneur;married;university.degree;unknown;yes;yes;telephone;may;tue;130;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+48;blue-collar;married;basic.4y;unknown;no;no;telephone;may;tue;70;4;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+56;admin.;married;basic.9y;no;no;no;telephone;may;tue;91;6;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+43;technician;married;unknown;no;yes;no;telephone;may;tue;324;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+32;entrepreneur;married;basic.6y;no;no;no;telephone;may;tue;465;8;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+27;blue-collar;married;basic.9y;no;yes;yes;telephone;may;tue;274;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+34;management;single;basic.9y;no;no;no;telephone;may;tue;300;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+31;blue-collar;divorced;professional.course;no;yes;no;telephone;may;tue;191;7;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+37;unemployed;married;high.school;no;no;no;telephone;may;tue;56;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+29;services;married;high.school;no;no;no;telephone;may;tue;189;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+35;technician;married;university.degree;no;yes;no;telephone;may;tue;236;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+57;technician;divorced;unknown;no;no;no;telephone;may;tue;137;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+43;services;married;professional.course;no;yes;no;telephone;may;tue;614;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+49;admin.;single;high.school;no;no;no;telephone;may;tue;363;5;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+50;technician;married;basic.6y;no;yes;no;telephone;may;tue;418;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+33;technician;married;university.degree;unknown;yes;no;telephone;may;tue;221;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+34;blue-collar;married;basic.9y;no;yes;no;telephone;may;tue;96;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+24;services;single;high.school;no;no;no;telephone;may;tue;119;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+43;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;tue;103;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+44;admin.;married;university.degree;no;no;no;telephone;may;tue;10;17;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+37;technician;married;professional.course;no;yes;no;telephone;may;tue;216;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+39;blue-collar;married;basic.9y;no;yes;no;telephone;may;tue;484;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+33;admin.;single;professional.course;no;no;no;telephone;may;tue;485;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+46;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;tue;404;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+39;blue-collar;married;basic.9y;no;yes;no;telephone;may;tue;175;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+28;admin.;single;university.degree;no;yes;no;telephone;may;tue;138;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+25;technician;single;professional.course;no;yes;yes;telephone;may;tue;243;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+39;services;married;high.school;no;no;no;telephone;may;tue;919;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+31;blue-collar;married;basic.9y;no;no;no;telephone;may;tue;203;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+32;admin.;single;high.school;no;no;no;telephone;may;tue;247;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+32;services;married;high.school;unknown;no;yes;telephone;may;tue;89;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+41;admin.;married;unknown;unknown;no;no;telephone;may;tue;185;12;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+22;blue-collar;married;basic.4y;no;unknown;unknown;telephone;may;tue;777;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+39;housemaid;married;basic.9y;no;no;no;telephone;may;tue;340;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+29;admin.;single;high.school;no;no;no;telephone;may;tue;110;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+50;technician;married;professional.course;unknown;yes;no;telephone;may;tue;256;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+46;housemaid;married;basic.9y;no;no;no;telephone;may;tue;165;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+39;housemaid;married;basic.4y;no;yes;no;telephone;may;tue;54;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+55;services;divorced;basic.4y;unknown;yes;no;telephone;may;tue;26;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+43;admin.;married;university.degree;no;no;no;telephone;may;tue;350;4;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+42;services;married;high.school;unknown;yes;no;telephone;may;tue;226;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+41;blue-collar;married;basic.6y;unknown;yes;no;telephone;may;tue;167;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+31;technician;single;university.degree;no;no;no;telephone;may;tue;47;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+56;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;tue;214;10;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+40;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;tue;446;7;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+46;management;married;basic.9y;no;yes;no;telephone;may;tue;153;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+56;admin.;divorced;high.school;no;yes;no;telephone;may;tue;181;6;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+42;blue-collar;divorced;basic.4y;no;no;no;telephone;may;tue;747;5;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+41;admin.;single;high.school;no;yes;no;telephone;may;tue;214;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+41;technician;divorced;basic.4y;no;yes;no;telephone;may;tue;270;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+53;admin.;married;university.degree;no;no;yes;telephone;may;tue;37;13;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+33;housemaid;married;basic.4y;no;unknown;unknown;telephone;may;tue;129;8;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+25;services;single;high.school;no;no;no;telephone;may;tue;72;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+42;admin.;married;high.school;no;no;no;telephone;may;tue;1392;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;yes
+34;services;married;high.school;unknown;yes;yes;telephone;may;tue;441;9;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+41;technician;divorced;basic.4y;no;yes;no;telephone;may;tue;725;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+38;admin.;married;high.school;no;no;no;telephone;may;tue;213;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+31;technician;single;high.school;no;no;yes;telephone;may;tue;177;10;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+46;services;married;professional.course;no;yes;no;telephone;may;tue;273;4;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+58;retired;married;university.degree;no;no;no;telephone;may;tue;98;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+39;services;married;high.school;no;no;yes;telephone;may;tue;480;4;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+54;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;tue;152;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+31;admin.;divorced;university.degree;no;yes;no;telephone;may;tue;204;2;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+40;services;single;high.school;no;yes;yes;telephone;may;tue;117;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+56;retired;divorced;basic.4y;no;no;no;telephone;may;tue;246;3;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+41;admin.;married;university.degree;no;no;no;telephone;may;tue;352;5;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+33;admin.;divorced;high.school;no;no;no;telephone;may;tue;190;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+55;technician;married;high.school;no;yes;no;telephone;may;tue;719;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;yes
+33;admin.;divorced;high.school;no;no;no;telephone;may;tue;277;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+48;admin.;divorced;high.school;no;no;no;telephone;may;tue;315;1;999;0;nonexistent;1.1;93.994;-36.4;4.856;5191.0;no
+28;blue-collar;married;basic.6y;unknown;yes;no;telephone;may;wed;289;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+39;unemployed;married;university.degree;no;no;no;telephone;may;wed;225;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+42;admin.;single;basic.9y;unknown;no;yes;telephone;may;wed;408;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+60;housemaid;married;high.school;unknown;yes;no;telephone;may;wed;74;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+35;technician;married;basic.9y;no;no;no;telephone;may;wed;24;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+45;admin.;married;university.degree;no;yes;yes;telephone;may;wed;369;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+36;blue-collar;married;basic.6y;no;yes;no;telephone;may;wed;167;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+33;unemployed;married;basic.9y;no;yes;no;telephone;may;wed;64;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+54;management;divorced;basic.6y;unknown;yes;no;telephone;may;wed;151;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+49;housemaid;married;basic.4y;unknown;no;yes;telephone;may;wed;801;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;yes
+46;housemaid;married;basic.4y;no;no;no;telephone;may;wed;336;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+32;management;single;university.degree;no;no;no;telephone;may;wed;59;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+42;blue-collar;divorced;basic.4y;no;no;no;telephone;may;wed;93;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+37;blue-collar;married;basic.6y;no;no;no;telephone;may;wed;181;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+35;technician;married;university.degree;no;no;no;telephone;may;wed;86;6;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+47;blue-collar;married;basic.6y;no;no;no;telephone;may;wed;317;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+33;technician;married;professional.course;no;yes;no;telephone;may;wed;120;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+38;blue-collar;married;basic.9y;no;yes;yes;telephone;may;wed;388;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+39;housemaid;married;university.degree;no;no;no;telephone;may;wed;174;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+55;admin.;married;high.school;no;yes;no;telephone;may;wed;72;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+35;services;married;high.school;no;yes;no;telephone;may;wed;126;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+55;admin.;married;high.school;no;yes;no;telephone;may;wed;339;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+33;blue-collar;married;basic.6y;unknown;no;no;telephone;may;wed;171;5;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+32;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;wed;162;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+32;blue-collar;married;basic.9y;no;yes;no;telephone;may;wed;18;28;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+32;blue-collar;divorced;basic.9y;no;no;no;telephone;may;wed;129;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+42;admin.;single;university.degree;no;yes;yes;telephone;may;wed;938;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;yes
+38;blue-collar;married;high.school;unknown;yes;no;telephone;may;wed;173;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+56;self-employed;married;basic.4y;no;no;no;telephone;may;wed;222;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+55;admin.;married;high.school;no;yes;yes;telephone;may;wed;692;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+33;technician;married;professional.course;no;yes;yes;telephone;may;wed;262;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+45;admin.;single;high.school;unknown;yes;yes;telephone;may;wed;78;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+58;management;married;university.degree;unknown;no;no;telephone;may;wed;134;5;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+46;self-employed;married;university.degree;no;yes;yes;telephone;may;wed;323;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+33;management;married;university.degree;no;yes;no;telephone;may;wed;43;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+50;self-employed;married;basic.4y;unknown;no;yes;telephone;may;wed;245;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+56;blue-collar;married;basic.4y;unknown;no;no;telephone;may;wed;482;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+33;blue-collar;married;basic.4y;unknown;yes;yes;telephone;may;wed;207;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+26;admin.;married;university.degree;no;yes;yes;telephone;may;wed;56;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+49;housemaid;single;high.school;unknown;yes;no;telephone;may;wed;85;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+36;services;married;high.school;no;yes;yes;telephone;may;wed;201;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+52;self-employed;single;university.degree;unknown;no;no;telephone;may;wed;353;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+49;blue-collar;married;basic.9y;unknown;no;yes;telephone;may;wed;554;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+49;blue-collar;married;basic.4y;unknown;no;no;telephone;may;wed;432;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+28;admin.;single;high.school;no;no;no;telephone;may;wed;27;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+36;services;married;high.school;no;no;no;telephone;may;wed;361;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+45;admin.;single;professional.course;no;yes;no;telephone;may;wed;565;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;yes
+41;technician;married;university.degree;no;no;no;telephone;may;wed;162;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+49;admin.;married;high.school;unknown;no;no;telephone;may;wed;139;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+31;services;married;professional.course;no;no;no;telephone;may;wed;287;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+32;technician;married;professional.course;no;no;no;telephone;may;wed;147;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+59;retired;married;professional.course;unknown;no;no;telephone;may;wed;905;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;yes
+25;services;divorced;high.school;no;yes;yes;telephone;may;wed;118;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+22;services;single;basic.4y;no;no;no;telephone;may;wed;91;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+43;blue-collar;married;basic.9y;no;no;no;telephone;may;wed;111;5;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+35;blue-collar;married;basic.9y;no;yes;no;telephone;may;wed;162;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+60;entrepreneur;married;basic.4y;no;yes;no;telephone;may;wed;236;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+40;admin.;married;university.degree;no;no;no;telephone;may;wed;73;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+37;unemployed;married;professional.course;no;yes;no;telephone;may;wed;123;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+37;technician;married;university.degree;no;yes;yes;telephone;may;wed;298;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+36;technician;single;university.degree;no;no;no;telephone;may;wed;86;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+35;blue-collar;married;basic.9y;no;yes;no;telephone;may;wed;420;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+43;entrepreneur;married;basic.9y;no;yes;no;telephone;may;wed;139;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+39;housemaid;married;basic.9y;no;yes;no;telephone;may;wed;164;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+56;blue-collar;married;unknown;unknown;yes;no;telephone;may;wed;508;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+37;services;single;high.school;no;no;no;telephone;may;wed;139;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+38;blue-collar;married;professional.course;no;no;no;telephone;may;wed;192;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+37;technician;single;university.degree;no;no;no;telephone;may;wed;226;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+54;blue-collar;married;basic.9y;unknown;no;no;telephone;may;wed;783;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;yes
+53;retired;married;high.school;unknown;no;no;telephone;may;wed;264;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+38;services;married;basic.9y;no;no;no;telephone;may;wed;166;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+47;technician;single;professional.course;unknown;no;no;telephone;may;wed;27;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+33;management;married;high.school;unknown;no;no;telephone;may;wed;353;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+39;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;wed;85;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+36;technician;single;professional.course;unknown;no;no;telephone;may;wed;1106;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+35;blue-collar;married;basic.9y;no;no;no;telephone;may;wed;419;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+40;admin.;married;university.degree;unknown;yes;yes;telephone;may;wed;603;5;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+55;admin.;single;university.degree;unknown;yes;yes;telephone;may;wed;415;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+37;blue-collar;married;basic.4y;no;yes;no;telephone;may;wed;179;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+53;blue-collar;married;basic.9y;unknown;no;no;telephone;may;wed;872;5;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+36;admin.;married;high.school;no;unknown;unknown;telephone;may;wed;52;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+32;blue-collar;married;basic.9y;no;no;no;telephone;may;wed;490;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+42;admin.;married;high.school;no;yes;no;telephone;may;wed;63;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+52;management;married;university.degree;no;yes;no;telephone;may;wed;27;10;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+33;services;married;high.school;no;no;yes;telephone;may;wed;425;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+51;admin.;married;professional.course;unknown;no;no;telephone;may;wed;12;11;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+32;management;single;university.degree;no;yes;no;telephone;may;wed;350;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+33;technician;divorced;professional.course;no;yes;no;telephone;may;wed;103;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+34;services;married;high.school;no;no;no;telephone;may;wed;210;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+34;services;married;high.school;no;no;no;telephone;may;wed;261;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+55;admin.;divorced;university.degree;no;yes;no;telephone;may;wed;115;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+33;management;married;high.school;unknown;yes;no;telephone;may;wed;641;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+34;blue-collar;married;basic.9y;no;yes;yes;telephone;may;wed;71;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+52;services;married;university.degree;no;yes;no;telephone;may;wed;370;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+55;technician;married;basic.9y;unknown;yes;no;telephone;may;wed;958;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;yes
+45;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;wed;103;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+34;blue-collar;married;basic.9y;unknown;yes;yes;telephone;may;wed;628;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+53;self-employed;married;university.degree;no;yes;no;telephone;may;wed;232;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+43;admin.;married;university.degree;no;no;no;telephone;may;wed;68;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+33;management;married;basic.9y;no;yes;no;telephone;may;wed;192;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+39;blue-collar;married;basic.9y;no;no;no;telephone;may;wed;494;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+29;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;wed;166;7;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+35;self-employed;married;basic.9y;no;yes;no;telephone;may;wed;151;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+45;blue-collar;married;basic.4y;no;yes;no;telephone;may;wed;204;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+35;blue-collar;married;basic.9y;no;yes;no;telephone;may;wed;180;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+37;technician;single;university.degree;no;no;no;telephone;may;wed;494;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+38;blue-collar;married;basic.6y;unknown;no;no;telephone;may;wed;530;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+35;retired;married;professional.course;no;no;no;telephone;may;wed;759;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+36;technician;married;university.degree;no;no;no;telephone;may;wed;85;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+30;blue-collar;married;basic.4y;no;no;no;telephone;may;wed;445;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+53;entrepreneur;single;basic.9y;no;no;no;telephone;may;wed;345;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+30;admin.;single;university.degree;no;no;no;telephone;may;wed;819;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;yes
+41;blue-collar;married;basic.4y;unknown;no;no;telephone;may;wed;16;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+40;blue-collar;married;basic.9y;unknown;no;no;telephone;may;wed;32;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+36;technician;married;university.degree;no;no;no;telephone;may;wed;648;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+36;management;married;high.school;no;no;no;telephone;may;wed;29;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+44;services;divorced;high.school;unknown;no;no;telephone;may;wed;220;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+56;retired;married;high.school;unknown;no;no;telephone;may;wed;151;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+38;management;married;university.degree;no;yes;no;telephone;may;wed;290;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+35;blue-collar;married;professional.course;no;yes;yes;telephone;may;wed;634;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+35;management;married;university.degree;no;no;yes;telephone;may;wed;717;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+28;management;married;high.school;unknown;yes;no;telephone;may;wed;249;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+43;housemaid;married;basic.4y;unknown;no;yes;telephone;may;wed;228;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+30;entrepreneur;married;professional.course;no;no;no;telephone;may;wed;122;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+36;student;single;university.degree;unknown;yes;no;telephone;may;wed;544;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+40;blue-collar;married;basic.9y;no;yes;yes;telephone;may;wed;951;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+35;technician;single;university.degree;no;yes;no;telephone;may;wed;412;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;yes
+27;admin.;single;basic.9y;no;yes;yes;telephone;may;wed;264;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+42;technician;divorced;basic.9y;no;no;no;telephone;may;wed;211;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+49;blue-collar;married;basic.6y;no;yes;no;telephone;may;wed;97;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+38;technician;married;professional.course;no;yes;yes;telephone;may;wed;192;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+31;admin.;married;high.school;no;yes;no;telephone;may;wed;160;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+57;retired;married;basic.4y;no;no;no;telephone;may;wed;97;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+29;blue-collar;single;basic.6y;no;no;no;telephone;may;wed;244;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+36;management;married;university.degree;no;yes;no;telephone;may;wed;578;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+55;retired;divorced;high.school;unknown;yes;no;telephone;may;wed;359;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+30;services;single;high.school;no;yes;no;telephone;may;wed;190;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+32;blue-collar;married;basic.9y;unknown;no;no;telephone;may;wed;111;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+49;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;wed;487;5;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+48;admin.;married;university.degree;no;yes;no;telephone;may;wed;396;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+30;blue-collar;single;basic.4y;no;no;no;telephone;may;wed;59;8;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+53;retired;divorced;high.school;no;yes;no;telephone;may;wed;111;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+40;housemaid;single;university.degree;no;no;yes;telephone;may;wed;502;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+31;blue-collar;married;basic.6y;no;no;yes;telephone;may;wed;795;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;yes
+60;technician;divorced;professional.course;unknown;yes;no;telephone;may;wed;202;6;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+45;blue-collar;married;basic.9y;no;no;no;telephone;may;wed;135;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+56;management;married;university.degree;no;yes;no;telephone;may;wed;29;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+31;blue-collar;married;basic.4y;no;no;no;telephone;may;wed;408;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+56;management;married;university.degree;no;yes;yes;telephone;may;wed;136;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+60;entrepreneur;married;basic.4y;no;no;yes;telephone;may;wed;141;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+34;blue-collar;married;basic.9y;no;no;no;telephone;may;wed;103;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+56;management;married;university.degree;no;no;yes;telephone;may;wed;171;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+33;blue-collar;married;basic.6y;unknown;no;no;telephone;may;wed;229;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+29;admin.;single;high.school;no;no;no;telephone;may;wed;93;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+49;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;wed;61;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+53;admin.;married;basic.9y;no;no;no;telephone;may;wed;35;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+49;entrepreneur;married;high.school;unknown;no;no;telephone;may;wed;7;12;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+43;blue-collar;single;professional.course;no;no;no;telephone;may;wed;51;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+38;blue-collar;single;basic.4y;no;no;no;telephone;may;wed;17;7;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+48;blue-collar;married;basic.4y;no;yes;no;telephone;may;wed;504;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+43;admin.;married;high.school;no;no;no;telephone;may;wed;726;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+30;blue-collar;married;basic.9y;no;no;no;telephone;may;wed;542;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+31;technician;married;professional.course;no;no;no;telephone;may;wed;257;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+37;services;married;high.school;unknown;no;no;telephone;may;wed;112;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+42;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;wed;250;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+59;retired;married;high.school;unknown;no;no;telephone;may;wed;294;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+42;admin.;single;unknown;unknown;yes;yes;telephone;may;wed;303;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+36;admin.;single;professional.course;no;yes;yes;telephone;may;wed;828;4;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;yes
+41;blue-collar;divorced;basic.6y;no;yes;yes;telephone;may;wed;343;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+44;services;married;high.school;no;no;no;telephone;may;wed;206;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+40;admin.;married;university.degree;no;yes;yes;telephone;may;wed;786;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+39;services;married;high.school;no;no;no;telephone;may;wed;178;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+40;admin.;divorced;professional.course;no;no;no;telephone;may;wed;509;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+33;blue-collar;married;professional.course;no;yes;no;telephone;may;wed;161;4;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+57;services;divorced;high.school;no;yes;yes;telephone;may;wed;125;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+31;admin.;married;high.school;no;yes;yes;telephone;may;wed;159;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+57;housemaid;married;basic.4y;no;no;yes;telephone;may;wed;221;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+48;blue-collar;married;basic.4y;no;yes;no;telephone;may;wed;211;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+52;technician;married;high.school;unknown;no;no;telephone;may;wed;68;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+37;blue-collar;single;unknown;unknown;no;no;telephone;may;wed;293;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+42;technician;married;university.degree;unknown;no;no;telephone;may;wed;389;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+33;admin.;single;high.school;no;no;no;telephone;may;wed;240;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+36;services;single;high.school;unknown;no;no;telephone;may;wed;145;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+57;management;married;basic.9y;unknown;yes;no;telephone;may;wed;59;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+51;blue-collar;married;basic.9y;no;yes;yes;telephone;may;wed;39;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+43;admin.;married;high.school;no;yes;no;telephone;may;wed;140;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+55;admin.;single;university.degree;no;yes;no;telephone;may;wed;53;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+41;blue-collar;married;basic.9y;unknown;yes;yes;telephone;may;wed;44;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+27;admin.;single;high.school;unknown;yes;no;telephone;may;wed;212;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+37;management;married;university.degree;unknown;no;no;telephone;may;wed;57;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+37;blue-collar;married;basic.4y;no;no;no;telephone;may;wed;45;13;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+40;admin.;single;high.school;no;yes;no;telephone;may;wed;738;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+28;unknown;single;basic.9y;unknown;yes;no;telephone;may;wed;102;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+31;management;married;basic.9y;no;no;yes;telephone;may;wed;161;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+32;services;married;high.school;no;yes;yes;telephone;may;wed;383;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+32;services;married;high.school;no;yes;yes;telephone;may;wed;184;9;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+35;housemaid;married;high.school;no;no;no;telephone;may;wed;122;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+36;technician;divorced;professional.course;no;yes;no;telephone;may;wed;137;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+31;admin.;married;high.school;no;no;no;telephone;may;wed;189;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+38;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;wed;88;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+46;blue-collar;divorced;basic.9y;no;no;no;telephone;may;wed;418;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+39;self-employed;married;university.degree;no;no;no;telephone;may;wed;17;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+58;management;single;professional.course;no;no;no;telephone;may;wed;233;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+44;technician;divorced;professional.course;no;no;no;telephone;may;wed;445;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+33;admin.;married;university.degree;no;yes;no;telephone;may;wed;623;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+24;services;single;high.school;no;no;no;telephone;may;wed;260;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+33;technician;married;professional.course;no;yes;no;telephone;may;wed;316;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+44;admin.;married;high.school;no;no;no;telephone;may;wed;650;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+30;housemaid;married;high.school;no;yes;no;telephone;may;wed;207;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+36;unemployed;single;basic.4y;unknown;yes;no;telephone;may;wed;226;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+24;services;single;high.school;no;unknown;unknown;telephone;may;wed;1307;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+32;technician;married;professional.course;no;yes;no;telephone;may;wed;104;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+33;admin.;married;high.school;no;no;no;telephone;may;wed;143;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+58;management;married;basic.9y;no;yes;no;telephone;may;wed;187;5;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+42;blue-collar;divorced;basic.9y;no;yes;no;telephone;may;wed;748;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+40;blue-collar;married;basic.9y;unknown;no;no;telephone;may;wed;486;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+29;blue-collar;married;basic.9y;no;yes;no;telephone;may;wed;492;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+52;retired;divorced;basic.4y;no;yes;yes;telephone;may;wed;485;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+36;technician;married;university.degree;no;yes;no;telephone;may;wed;197;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+29;blue-collar;married;basic.9y;no;no;no;telephone;may;wed;304;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+46;entrepreneur;married;professional.course;no;yes;no;telephone;may;wed;51;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+58;blue-collar;married;high.school;no;yes;no;telephone;may;wed;836;12;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+45;blue-collar;married;basic.9y;unknown;no;no;telephone;may;wed;394;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+53;unknown;married;high.school;unknown;yes;no;telephone;may;wed;125;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+57;technician;married;high.school;no;no;no;telephone;may;wed;315;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+46;housemaid;married;basic.4y;no;no;no;telephone;may;wed;506;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;yes
+40;technician;married;professional.course;unknown;no;no;telephone;may;wed;288;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+37;admin.;divorced;high.school;unknown;yes;yes;telephone;may;wed;354;5;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+31;technician;married;professional.course;no;unknown;unknown;telephone;may;wed;154;4;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+29;blue-collar;married;high.school;no;yes;yes;telephone;may;wed;184;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+33;admin.;married;university.degree;no;yes;no;telephone;may;wed;563;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+35;technician;married;professional.course;no;no;no;telephone;may;wed;450;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+47;admin.;married;university.degree;no;yes;no;telephone;may;wed;34;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+26;blue-collar;single;basic.4y;no;yes;yes;telephone;may;wed;371;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+34;blue-collar;married;professional.course;no;yes;no;telephone;may;wed;518;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+38;admin.;married;university.degree;no;no;no;telephone;may;wed;111;4;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+46;admin.;divorced;university.degree;no;yes;no;telephone;may;wed;176;4;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+26;blue-collar;single;basic.4y;no;yes;yes;telephone;may;wed;196;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+30;blue-collar;married;high.school;no;yes;no;telephone;may;wed;85;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+35;blue-collar;married;basic.9y;unknown;no;no;telephone;may;wed;91;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+40;services;divorced;high.school;no;no;no;telephone;may;wed;172;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+30;blue-collar;married;basic.9y;no;no;no;telephone;may;wed;252;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+30;technician;married;professional.course;no;yes;no;telephone;may;wed;265;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+35;technician;married;university.degree;unknown;no;no;telephone;may;wed;899;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+36;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;wed;588;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+27;blue-collar;single;high.school;no;no;no;telephone;may;wed;393;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+32;technician;single;university.degree;unknown;no;no;telephone;may;wed;857;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;yes
+26;services;divorced;basic.6y;no;yes;no;telephone;may;wed;205;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+43;admin.;married;high.school;no;unknown;unknown;telephone;may;wed;164;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+30;management;married;university.degree;no;unknown;unknown;telephone;may;wed;178;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+33;technician;single;university.degree;no;no;no;telephone;may;wed;127;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+50;unemployed;married;high.school;no;no;yes;telephone;may;wed;38;12;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+38;technician;married;professional.course;no;no;no;telephone;may;wed;127;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+36;unknown;single;basic.6y;unknown;yes;no;telephone;may;wed;660;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+25;blue-collar;single;basic.4y;no;yes;no;telephone;may;wed;1681;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;yes
+35;technician;married;high.school;no;no;no;telephone;may;wed;208;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+42;self-employed;married;university.degree;no;no;no;telephone;may;wed;518;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+55;retired;married;basic.4y;unknown;yes;no;telephone;may;wed;316;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+29;technician;single;university.degree;no;no;no;telephone;may;wed;171;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+29;admin.;single;basic.9y;unknown;no;no;telephone;may;wed;272;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+38;blue-collar;married;professional.course;no;yes;no;telephone;may;wed;143;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+45;blue-collar;divorced;basic.9y;no;yes;no;telephone;may;wed;572;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+30;admin.;married;university.degree;no;no;no;telephone;may;wed;573;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+58;admin.;divorced;university.degree;no;yes;no;telephone;may;wed;244;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+51;entrepreneur;married;basic.4y;unknown;yes;no;telephone;may;wed;384;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+39;technician;divorced;professional.course;no;no;no;telephone;may;wed;240;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+44;unemployed;divorced;high.school;unknown;yes;no;telephone;may;wed;269;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+25;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;wed;488;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+30;management;single;university.degree;no;yes;no;telephone;may;wed;83;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+46;admin.;married;high.school;no;yes;no;telephone;may;wed;100;4;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+34;blue-collar;married;basic.6y;unknown;yes;no;telephone;may;wed;811;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+57;management;married;basic.9y;no;no;no;telephone;may;wed;890;26;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+47;blue-collar;divorced;basic.9y;unknown;no;no;telephone;may;wed;159;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+45;admin.;divorced;university.degree;no;no;no;telephone;may;wed;681;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;yes
+36;technician;married;basic.9y;no;no;no;telephone;may;wed;443;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+45;blue-collar;divorced;basic.9y;no;no;no;telephone;may;wed;1162;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+56;entrepreneur;married;university.degree;no;no;yes;telephone;may;wed;1697;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;yes
+28;blue-collar;single;basic.6y;no;no;no;telephone;may;wed;244;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+30;admin.;single;high.school;no;no;no;telephone;may;wed;860;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;yes
+49;housemaid;divorced;basic.6y;no;yes;no;telephone;may;wed;295;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+44;technician;married;high.school;unknown;yes;no;telephone;may;wed;139;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+60;retired;married;professional.course;unknown;no;no;telephone;may;wed;280;5;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+26;admin.;married;basic.9y;no;yes;no;telephone;may;wed;86;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+38;technician;married;professional.course;no;no;no;telephone;may;wed;154;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+58;technician;married;professional.course;unknown;no;no;telephone;may;wed;113;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+29;admin.;single;basic.9y;unknown;yes;no;telephone;may;wed;83;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+49;technician;divorced;university.degree;unknown;yes;yes;telephone;may;wed;297;8;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+48;management;married;university.degree;no;unknown;unknown;telephone;may;wed;291;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+37;self-employed;married;high.school;no;no;yes;telephone;may;wed;394;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+30;technician;married;university.degree;unknown;yes;no;telephone;may;wed;72;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+27;blue-collar;married;basic.9y;unknown;no;no;telephone;may;wed;151;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+57;services;divorced;high.school;no;yes;no;telephone;may;wed;312;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+38;technician;single;professional.course;unknown;no;no;telephone;may;wed;474;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+42;blue-collar;divorced;basic.9y;no;no;no;telephone;may;wed;189;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+52;services;married;high.school;no;no;no;telephone;may;wed;91;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+55;admin.;married;university.degree;unknown;yes;yes;telephone;may;wed;232;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+41;technician;married;professional.course;no;yes;no;telephone;may;wed;446;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+38;admin.;married;high.school;no;no;no;telephone;may;wed;153;4;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+45;services;divorced;high.school;no;no;no;telephone;may;wed;111;5;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+57;services;divorced;high.school;no;yes;no;telephone;may;wed;72;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+53;blue-collar;married;basic.4y;unknown;no;no;telephone;may;wed;559;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+32;blue-collar;divorced;basic.9y;no;no;no;telephone;may;wed;205;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+34;services;married;high.school;unknown;yes;no;telephone;may;wed;189;7;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+43;management;married;university.degree;no;no;no;telephone;may;wed;237;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+31;admin.;married;high.school;no;no;no;telephone;may;wed;230;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+24;unemployed;single;university.degree;no;no;no;telephone;may;wed;96;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+53;self-employed;married;university.degree;no;yes;no;telephone;may;wed;162;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+32;services;married;high.school;unknown;yes;no;telephone;may;wed;127;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+40;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;wed;239;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+53;admin.;single;university.degree;unknown;yes;no;telephone;may;wed;222;5;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+31;technician;married;high.school;no;yes;no;telephone;may;wed;69;4;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+36;services;single;basic.6y;unknown;yes;yes;telephone;may;wed;501;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+56;admin.;married;university.degree;unknown;no;no;telephone;may;wed;192;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+42;blue-collar;divorced;basic.4y;no;yes;no;telephone;may;wed;273;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+49;blue-collar;married;basic.9y;no;yes;no;telephone;may;wed;281;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+32;admin.;single;university.degree;no;yes;no;telephone;may;wed;175;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+47;admin.;married;high.school;no;no;no;telephone;may;wed;465;11;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+34;blue-collar;married;basic.6y;unknown;yes;no;telephone;may;wed;175;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+56;technician;married;high.school;no;yes;no;telephone;may;wed;87;14;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+28;admin.;single;high.school;no;yes;no;telephone;may;wed;292;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+34;admin.;single;high.school;no;yes;no;telephone;may;wed;49;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+30;blue-collar;single;high.school;unknown;yes;no;telephone;may;wed;198;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+38;admin.;married;high.school;no;unknown;unknown;telephone;may;wed;23;16;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+39;technician;married;professional.course;no;unknown;unknown;telephone;may;wed;575;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+31;blue-collar;married;basic.6y;unknown;unknown;unknown;telephone;may;wed;67;5;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+29;admin.;single;university.degree;no;yes;no;telephone;may;wed;248;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+31;self-employed;married;university.degree;no;no;no;telephone;may;wed;108;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+25;self-employed;single;university.degree;no;yes;no;telephone;may;wed;373;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+40;services;single;university.degree;no;no;no;telephone;may;wed;112;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+35;blue-collar;single;basic.9y;unknown;no;no;telephone;may;wed;395;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+36;services;married;high.school;no;yes;no;telephone;may;wed;229;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+43;services;married;high.school;unknown;unknown;unknown;telephone;may;wed;54;4;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+49;management;married;university.degree;no;yes;no;telephone;may;wed;135;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+29;blue-collar;married;high.school;no;no;no;telephone;may;wed;357;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+38;unemployed;divorced;university.degree;no;yes;no;telephone;may;wed;152;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+32;blue-collar;married;basic.6y;no;no;yes;telephone;may;wed;36;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+35;self-employed;married;university.degree;no;yes;no;telephone;may;wed;206;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+39;self-employed;married;basic.4y;unknown;no;no;telephone;may;wed;389;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+35;services;single;professional.course;unknown;no;no;telephone;may;wed;314;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+54;admin.;married;high.school;no;no;no;telephone;may;wed;66;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+35;admin.;married;university.degree;unknown;yes;no;telephone;may;wed;86;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+32;technician;married;professional.course;no;no;no;telephone;may;wed;489;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+55;technician;married;basic.6y;unknown;yes;no;telephone;may;wed;85;4;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+30;blue-collar;married;basic.9y;no;no;yes;telephone;may;wed;117;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+50;blue-collar;divorced;basic.9y;unknown;no;no;telephone;may;wed;832;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+25;blue-collar;single;basic.4y;no;no;no;telephone;may;wed;149;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+52;management;divorced;university.degree;no;no;no;telephone;may;wed;634;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+43;self-employed;married;basic.9y;no;no;no;telephone;may;wed;173;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+38;blue-collar;married;basic.9y;no;yes;no;telephone;may;wed;151;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+45;admin.;married;high.school;no;yes;no;telephone;may;wed;987;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+33;admin.;single;university.degree;no;yes;no;telephone;may;wed;66;13;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+30;blue-collar;married;basic.9y;no;yes;no;telephone;may;wed;139;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+26;services;divorced;basic.6y;no;no;no;telephone;may;wed;281;15;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+51;services;married;high.school;unknown;no;no;telephone;may;wed;132;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+34;services;married;basic.9y;no;yes;yes;telephone;may;wed;369;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+33;services;divorced;high.school;no;yes;yes;telephone;may;wed;88;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+44;blue-collar;divorced;unknown;no;yes;yes;telephone;may;wed;799;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;yes
+43;blue-collar;married;high.school;unknown;unknown;unknown;telephone;may;wed;671;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+48;services;married;high.school;unknown;yes;no;telephone;may;wed;397;9;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+56;services;divorced;high.school;unknown;yes;no;telephone;may;wed;935;1;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+37;management;married;university.degree;no;yes;no;telephone;may;wed;189;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+31;blue-collar;single;basic.9y;unknown;yes;no;telephone;may;wed;165;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+50;blue-collar;married;basic.4y;unknown;unknown;unknown;telephone;may;wed;21;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+38;entrepreneur;married;basic.6y;no;unknown;unknown;telephone;may;wed;234;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+32;admin.;single;university.degree;no;no;no;telephone;may;wed;81;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+35;admin.;single;high.school;no;yes;no;telephone;may;wed;59;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+50;blue-collar;married;basic.4y;no;no;no;telephone;may;wed;233;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+33;self-employed;divorced;unknown;no;no;no;telephone;may;wed;1161;4;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+35;services;married;high.school;no;no;no;telephone;may;wed;265;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+36;services;single;high.school;no;no;no;telephone;may;wed;173;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+29;housemaid;single;high.school;no;yes;no;telephone;may;wed;178;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+38;services;single;basic.9y;unknown;yes;no;telephone;may;wed;203;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+36;services;single;high.school;no;no;no;telephone;may;wed;45;9;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+46;entrepreneur;married;professional.course;no;no;no;telephone;may;wed;86;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+44;unknown;married;basic.6y;no;no;no;telephone;may;wed;254;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+37;blue-collar;single;high.school;no;yes;yes;telephone;may;wed;131;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+26;admin.;married;university.degree;no;no;no;telephone;may;wed;239;4;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+47;blue-collar;married;basic.6y;unknown;no;no;telephone;may;wed;207;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+36;blue-collar;married;high.school;unknown;no;no;telephone;may;wed;713;4;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+28;admin.;single;university.degree;no;no;no;telephone;may;wed;165;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+50;admin.;married;high.school;no;no;no;telephone;may;wed;260;5;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+32;blue-collar;married;basic.9y;no;no;no;telephone;may;wed;923;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;yes
+54;technician;married;professional.course;no;yes;no;telephone;may;wed;150;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+37;services;married;basic.6y;no;no;no;telephone;may;wed;155;4;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+46;entrepreneur;married;university.degree;unknown;no;no;telephone;may;wed;433;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+49;admin.;divorced;high.school;no;yes;no;telephone;may;wed;202;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+33;services;married;high.school;unknown;no;no;telephone;may;wed;227;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+55;technician;married;high.school;no;no;no;telephone;may;wed;214;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+40;admin.;single;unknown;unknown;yes;no;telephone;may;wed;30;12;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+50;blue-collar;divorced;high.school;no;no;no;telephone;may;wed;206;6;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+36;admin.;married;university.degree;no;yes;yes;telephone;may;wed;362;5;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+35;admin.;married;high.school;no;no;no;telephone;may;wed;15;19;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+39;self-employed;married;basic.4y;unknown;yes;no;telephone;may;wed;315;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+44;blue-collar;married;high.school;no;no;no;telephone;may;wed;250;4;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+30;technician;married;professional.course;no;no;no;telephone;may;wed;700;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+40;blue-collar;married;basic.6y;no;no;no;telephone;may;wed;154;5;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+29;entrepreneur;married;basic.6y;no;yes;no;telephone;may;wed;190;5;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+34;blue-collar;married;basic.6y;no;no;no;telephone;may;wed;20;8;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+47;blue-collar;married;unknown;unknown;yes;no;telephone;may;wed;191;6;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+58;admin.;divorced;university.degree;no;yes;yes;telephone;may;wed;363;6;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+43;blue-collar;single;basic.4y;unknown;no;no;telephone;may;wed;339;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+37;services;married;high.school;no;yes;yes;telephone;may;wed;521;3;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;yes
+37;technician;married;professional.course;unknown;no;no;telephone;may;wed;135;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+34;admin.;single;university.degree;no;no;yes;telephone;may;wed;110;4;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+36;technician;married;professional.course;no;no;no;telephone;may;wed;142;10;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+48;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;wed;173;6;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+59;admin.;single;professional.course;no;no;no;telephone;may;wed;291;4;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+32;technician;married;professional.course;no;no;no;telephone;may;wed;293;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+28;services;married;high.school;unknown;yes;no;telephone;may;wed;322;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+53;unemployed;married;basic.4y;unknown;yes;no;telephone;may;wed;339;10;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+50;blue-collar;married;basic.4y;no;no;no;telephone;may;wed;304;2;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+42;blue-collar;married;basic.4y;unknown;no;no;telephone;may;wed;526;8;999;0;nonexistent;1.1;93.994;-36.4;4.858;5191.0;no
+45;technician;married;high.school;no;yes;no;telephone;may;fri;78;9;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;admin.;single;unknown;no;no;yes;telephone;may;fri;219;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;fri;72;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;blue-collar;married;basic.4y;unknown;no;no;telephone;may;fri;72;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+57;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;fri;42;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+48;blue-collar;married;basic.9y;no;no;no;telephone;may;fri;407;14;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+27;services;married;high.school;unknown;no;no;telephone;may;fri;136;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;blue-collar;single;high.school;unknown;yes;no;telephone;may;fri;158;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;blue-collar;married;basic.9y;no;yes;no;telephone;may;fri;405;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;technician;single;university.degree;no;yes;no;telephone;may;fri;417;6;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;blue-collar;single;unknown;unknown;yes;no;telephone;may;fri;48;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;housemaid;married;basic.6y;unknown;yes;no;telephone;may;fri;201;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+28;admin.;married;university.degree;no;yes;no;telephone;may;fri;101;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+56;blue-collar;married;basic.4y;unknown;no;no;telephone;may;fri;214;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;technician;single;professional.course;no;no;no;telephone;may;fri;350;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;admin.;married;high.school;no;yes;no;telephone;may;fri;433;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;entrepreneur;married;university.degree;no;no;yes;telephone;may;fri;253;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;blue-collar;married;basic.6y;unknown;yes;no;telephone;may;fri;329;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+58;admin.;divorced;university.degree;no;yes;no;telephone;may;fri;628;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;yes
+38;blue-collar;married;basic.6y;no;yes;no;telephone;may;fri;110;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;admin.;married;high.school;no;yes;no;telephone;may;fri;259;9;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;services;married;high.school;no;yes;no;telephone;may;fri;260;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;technician;divorced;professional.course;no;yes;no;telephone;may;fri;363;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;blue-collar;divorced;basic.6y;no;yes;no;telephone;may;fri;149;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;blue-collar;divorced;basic.6y;no;yes;no;telephone;may;fri;174;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+26;services;single;basic.9y;no;no;yes;telephone;may;fri;83;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+54;management;married;basic.4y;no;no;no;telephone;may;fri;92;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;blue-collar;divorced;basic.6y;no;no;no;telephone;may;fri;245;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;management;married;unknown;unknown;yes;yes;telephone;may;fri;260;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;admin.;divorced;high.school;no;no;no;telephone;may;fri;346;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;services;single;high.school;no;unknown;unknown;telephone;may;fri;271;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+26;blue-collar;single;high.school;no;no;no;telephone;may;fri;203;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;management;married;university.degree;no;no;no;telephone;may;fri;206;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;admin.;single;university.degree;no;yes;yes;telephone;may;fri;218;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;blue-collar;married;basic.6y;unknown;yes;no;telephone;may;fri;621;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;services;married;high.school;no;no;no;telephone;may;fri;1349;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;yes
+53;blue-collar;divorced;basic.4y;unknown;yes;no;telephone;may;fri;385;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;admin.;single;university.degree;unknown;no;no;telephone;may;fri;70;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;technician;single;professional.course;no;no;no;telephone;may;fri;509;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+57;retired;single;high.school;no;yes;no;telephone;may;fri;128;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;blue-collar;single;basic.9y;no;no;no;telephone;may;fri;136;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;admin.;divorced;high.school;no;no;no;telephone;may;fri;132;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;admin.;married;high.school;no;no;yes;telephone;may;fri;3;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+54;blue-collar;single;basic.4y;unknown;yes;no;telephone;may;fri;1171;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;blue-collar;married;basic.4y;unknown;no;no;telephone;may;fri;107;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;management;married;university.degree;no;no;yes;telephone;may;fri;359;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+49;technician;married;professional.course;no;no;no;telephone;may;fri;736;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;yes
+51;unemployed;married;basic.9y;unknown;no;no;telephone;may;fri;217;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+53;admin.;married;basic.9y;no;no;no;telephone;may;fri;121;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;blue-collar;single;high.school;no;no;yes;telephone;may;fri;154;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+55;housemaid;married;basic.4y;no;no;no;telephone;may;fri;98;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;admin.;married;high.school;no;no;no;telephone;may;fri;189;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+25;services;married;high.school;unknown;no;no;telephone;may;fri;89;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+27;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;fri;412;6;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;blue-collar;married;basic.4y;no;yes;no;telephone;may;fri;302;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;technician;married;professional.course;unknown;no;no;telephone;may;fri;90;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+50;admin.;divorced;basic.9y;no;no;no;telephone;may;fri;145;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+53;blue-collar;married;basic.9y;no;no;yes;telephone;may;fri;203;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;self-employed;married;professional.course;no;no;yes;telephone;may;fri;254;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;services;single;basic.9y;unknown;no;yes;telephone;may;fri;230;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+53;blue-collar;married;basic.9y;no;yes;no;telephone;may;fri;373;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;fri;72;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;blue-collar;married;basic.4y;no;no;yes;telephone;may;fri;534;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;entrepreneur;married;high.school;no;no;yes;telephone;may;fri;225;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;services;married;high.school;unknown;yes;no;telephone;may;fri;445;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+28;technician;divorced;university.degree;no;no;no;telephone;may;fri;193;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;blue-collar;married;basic.9y;no;yes;no;telephone;may;fri;76;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+26;blue-collar;single;basic.9y;unknown;no;yes;telephone;may;fri;268;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;services;single;unknown;no;no;yes;telephone;may;fri;154;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;technician;married;basic.6y;unknown;no;no;telephone;may;fri;785;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;yes
+37;technician;single;basic.9y;no;no;yes;telephone;may;fri;298;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;self-employed;married;university.degree;no;no;no;telephone;may;fri;286;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;blue-collar;divorced;high.school;no;no;yes;telephone;may;fri;442;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+29;admin.;married;high.school;no;no;no;telephone;may;fri;206;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+22;blue-collar;single;basic.6y;unknown;no;yes;telephone;may;fri;1073;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;yes
+49;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;fri;299;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;admin.;single;university.degree;no;no;no;telephone;may;fri;162;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+49;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;fri;504;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;blue-collar;married;basic.4y;unknown;no;no;telephone;may;fri;488;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;management;married;basic.4y;unknown;no;no;telephone;may;fri;190;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;admin.;single;university.degree;no;yes;yes;telephone;may;fri;139;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;admin.;married;university.degree;no;no;no;telephone;may;fri;124;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;admin.;divorced;high.school;no;yes;no;telephone;may;fri;425;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;services;married;high.school;no;yes;no;telephone;may;fri;290;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;blue-collar;married;basic.6y;no;no;no;telephone;may;fri;152;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+27;blue-collar;single;basic.9y;no;yes;no;telephone;may;fri;168;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+53;technician;married;professional.course;unknown;yes;no;telephone;may;fri;204;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;management;divorced;university.degree;no;no;yes;telephone;may;fri;164;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;blue-collar;divorced;basic.9y;no;no;yes;telephone;may;fri;322;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+55;blue-collar;married;professional.course;unknown;yes;no;telephone;may;fri;530;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+60;retired;divorced;basic.4y;unknown;no;yes;telephone;may;fri;237;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+48;technician;married;high.school;no;yes;no;telephone;may;fri;360;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;blue-collar;divorced;basic.4y;no;no;yes;telephone;may;fri;57;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+48;technician;married;high.school;no;no;no;telephone;may;fri;700;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+48;technician;married;high.school;no;no;no;telephone;may;fri;601;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;blue-collar;divorced;basic.4y;no;no;no;telephone;may;fri;231;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;admin.;single;university.degree;no;yes;no;telephone;may;fri;135;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;services;single;basic.9y;no;no;no;telephone;may;fri;86;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+29;technician;single;university.degree;no;yes;no;telephone;may;fri;256;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+50;blue-collar;married;high.school;unknown;yes;no;telephone;may;fri;106;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;admin.;married;unknown;no;yes;no;telephone;may;fri;134;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;management;single;university.degree;no;yes;no;telephone;may;fri;415;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;technician;married;university.degree;no;yes;no;telephone;may;fri;293;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+24;services;single;basic.9y;no;yes;yes;telephone;may;fri;816;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+55;technician;married;university.degree;no;no;no;telephone;may;fri;435;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;blue-collar;married;basic.9y;no;yes;no;telephone;may;fri;100;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;blue-collar;married;university.degree;unknown;yes;yes;telephone;may;fri;297;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;unemployed;married;university.degree;no;no;no;telephone;may;fri;191;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;blue-collar;married;basic.9y;no;no;no;telephone;may;fri;58;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+51;admin.;divorced;unknown;no;unknown;unknown;telephone;may;fri;152;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+48;technician;married;high.school;no;no;no;telephone;may;fri;533;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;admin.;married;university.degree;no;yes;no;telephone;may;fri;28;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;management;divorced;university.degree;no;no;no;telephone;may;fri;63;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;entrepreneur;married;university.degree;no;yes;no;telephone;may;fri;135;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;admin.;married;high.school;no;yes;yes;telephone;may;fri;202;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;management;divorced;university.degree;no;yes;no;telephone;may;fri;181;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;blue-collar;single;basic.9y;no;yes;no;telephone;may;fri;240;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;entrepreneur;divorced;university.degree;no;yes;no;telephone;may;fri;354;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+29;services;single;university.degree;no;yes;yes;telephone;may;fri;210;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;housemaid;married;high.school;unknown;no;no;telephone;may;fri;293;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;blue-collar;married;basic.4y;unknown;no;no;telephone;may;fri;108;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;blue-collar;divorced;basic.4y;no;no;no;telephone;may;fri;223;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;entrepreneur;divorced;university.degree;unknown;yes;no;telephone;may;fri;275;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+25;housemaid;married;basic.9y;no;yes;no;telephone;may;fri;263;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;blue-collar;married;basic.6y;no;yes;no;telephone;may;fri;600;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;yes
+55;housemaid;married;professional.course;no;yes;yes;telephone;may;fri;85;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+56;retired;married;high.school;unknown;no;no;telephone;may;fri;319;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;blue-collar;married;basic.4y;no;yes;no;telephone;may;fri;242;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;technician;single;university.degree;unknown;no;no;telephone;may;fri;128;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;blue-collar;married;basic.9y;no;yes;no;telephone;may;fri;236;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;blue-collar;married;unknown;unknown;no;no;telephone;may;fri;67;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+48;blue-collar;divorced;basic.9y;no;yes;yes;telephone;may;fri;246;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;self-employed;married;high.school;unknown;yes;no;telephone;may;fri;83;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;technician;single;professional.course;no;yes;no;telephone;may;fri;391;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+58;services;divorced;professional.course;no;yes;no;telephone;may;fri;293;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+50;technician;married;professional.course;no;yes;no;telephone;may;fri;245;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+55;retired;married;high.school;no;no;no;telephone;may;fri;924;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;yes
+55;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;fri;334;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+51;management;married;university.degree;no;yes;no;telephone;may;fri;317;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;admin.;married;university.degree;no;no;no;telephone;may;fri;134;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;technician;married;professional.course;no;no;yes;telephone;may;fri;110;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;blue-collar;divorced;basic.4y;no;no;yes;telephone;may;fri;37;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+55;admin.;married;high.school;no;yes;no;telephone;may;fri;188;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;services;married;high.school;no;no;no;telephone;may;fri;911;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+48;blue-collar;married;basic.6y;no;unknown;unknown;telephone;may;fri;379;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;technician;married;university.degree;no;no;no;telephone;may;fri;206;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;blue-collar;divorced;basic.6y;no;yes;no;telephone;may;fri;160;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;services;single;high.school;unknown;no;no;telephone;may;fri;156;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;entrepreneur;married;high.school;unknown;yes;no;telephone;may;fri;314;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+56;unemployed;divorced;university.degree;unknown;yes;no;telephone;may;fri;98;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+53;technician;married;professional.course;no;no;no;telephone;may;fri;260;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;admin.;married;university.degree;no;no;no;telephone;may;fri;78;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+48;technician;single;high.school;no;yes;yes;telephone;may;fri;115;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;admin.;divorced;high.school;no;yes;no;telephone;may;fri;99;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;blue-collar;married;basic.9y;no;yes;yes;telephone;may;fri;95;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;technician;married;professional.course;no;yes;yes;telephone;may;fri;14;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;admin.;married;unknown;no;no;no;telephone;may;fri;230;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;blue-collar;married;basic.4y;no;no;no;telephone;may;fri;438;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+59;retired;married;university.degree;no;no;no;telephone;may;fri;35;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;admin.;divorced;basic.6y;no;no;no;telephone;may;fri;111;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;management;married;basic.4y;unknown;no;no;telephone;may;fri;463;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+53;services;divorced;university.degree;no;no;yes;telephone;may;fri;252;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;self-employed;married;university.degree;unknown;unknown;unknown;telephone;may;fri;38;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+48;services;single;high.school;unknown;yes;yes;telephone;may;fri;127;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+50;blue-collar;married;basic.6y;unknown;no;no;telephone;may;fri;66;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;housemaid;single;unknown;unknown;yes;yes;telephone;may;fri;234;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;unemployed;married;basic.9y;no;yes;yes;telephone;may;fri;691;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;entrepreneur;married;high.school;no;yes;no;telephone;may;fri;81;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;services;single;basic.9y;unknown;yes;no;telephone;may;fri;270;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+51;blue-collar;married;basic.4y;no;yes;no;telephone;may;fri;153;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;blue-collar;married;professional.course;no;yes;yes;telephone;may;fri;65;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+55;technician;single;university.degree;unknown;yes;no;telephone;may;fri;390;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;services;single;professional.course;no;yes;yes;telephone;may;fri;249;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;blue-collar;married;basic.9y;unknown;no;no;telephone;may;fri;31;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;admin.;divorced;university.degree;no;no;yes;telephone;may;fri;161;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+57;blue-collar;divorced;unknown;unknown;yes;no;telephone;may;fri;369;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+57;admin.;divorced;high.school;no;no;no;telephone;may;fri;162;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;blue-collar;married;basic.9y;no;yes;no;telephone;may;fri;118;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;admin.;divorced;university.degree;no;yes;no;telephone;may;fri;397;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;blue-collar;married;basic.9y;no;yes;no;telephone;may;fri;227;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;technician;single;university.degree;no;yes;no;telephone;may;fri;7;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;admin.;married;high.school;no;no;no;telephone;may;fri;465;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+28;blue-collar;single;basic.9y;unknown;no;yes;telephone;may;fri;137;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+29;admin.;single;university.degree;no;no;no;telephone;may;fri;98;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+56;retired;married;basic.4y;no;yes;no;telephone;may;fri;665;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;management;married;university.degree;no;yes;yes;telephone;may;fri;80;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+26;student;single;basic.9y;unknown;yes;yes;telephone;may;fri;164;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;management;married;university.degree;no;yes;yes;telephone;may;fri;145;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+51;services;married;unknown;unknown;no;no;telephone;may;fri;25;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+54;technician;single;university.degree;unknown;no;no;telephone;may;fri;187;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;unemployed;married;basic.9y;no;yes;yes;telephone;may;fri;76;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+57;blue-collar;married;basic.4y;unknown;yes;yes;telephone;may;fri;163;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+27;blue-collar;married;basic.9y;no;yes;yes;telephone;may;fri;152;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+27;technician;single;professional.course;no;yes;no;telephone;may;fri;27;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+59;technician;divorced;university.degree;no;no;no;telephone;may;fri;281;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;blue-collar;divorced;basic.9y;unknown;yes;no;telephone;may;fri;567;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;admin.;married;professional.course;no;no;no;telephone;may;fri;284;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;blue-collar;married;basic.6y;unknown;no;no;telephone;may;fri;378;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;management;divorced;basic.6y;unknown;yes;yes;telephone;may;fri;353;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;blue-collar;married;basic.9y;no;no;no;telephone;may;fri;83;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;entrepreneur;married;basic.9y;no;no;no;telephone;may;fri;104;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;blue-collar;married;basic.9y;no;yes;no;telephone;may;fri;50;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;entrepreneur;married;basic.9y;unknown;yes;no;telephone;may;fri;536;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;blue-collar;married;unknown;no;no;no;telephone;may;fri;496;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;technician;single;professional.course;no;no;no;telephone;may;fri;139;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;blue-collar;single;unknown;no;no;no;telephone;may;fri;122;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;blue-collar;married;basic.9y;no;yes;no;telephone;may;fri;59;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;management;married;university.degree;no;yes;no;telephone;may;fri;258;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+49;entrepreneur;married;university.degree;no;no;no;telephone;may;fri;110;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;services;single;high.school;no;yes;no;telephone;may;fri;466;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;admin.;divorced;university.degree;no;no;no;telephone;may;fri;254;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+23;services;married;basic.9y;no;yes;no;telephone;may;fri;250;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+28;services;married;high.school;no;yes;no;telephone;may;fri;79;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;blue-collar;married;basic.9y;unknown;no;no;telephone;may;fri;563;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;admin.;married;high.school;unknown;yes;no;telephone;may;fri;147;14;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+27;technician;married;university.degree;no;no;no;telephone;may;fri;125;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;entrepreneur;married;basic.6y;unknown;unknown;unknown;telephone;may;fri;71;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+49;housemaid;married;basic.4y;no;no;no;telephone;may;fri;556;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+55;blue-collar;married;basic.4y;no;no;yes;telephone;may;fri;119;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;management;married;unknown;unknown;no;no;telephone;may;fri;456;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;services;married;high.school;no;no;yes;telephone;may;fri;268;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+29;services;single;university.degree;no;no;no;telephone;may;fri;332;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+28;blue-collar;single;basic.6y;unknown;unknown;unknown;telephone;may;fri;159;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;admin.;single;high.school;no;no;yes;telephone;may;fri;148;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+51;blue-collar;single;basic.4y;unknown;no;no;telephone;may;fri;448;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+58;admin.;married;university.degree;no;no;yes;telephone;may;fri;160;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;technician;married;university.degree;no;yes;no;telephone;may;fri;240;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+27;blue-collar;single;basic.9y;unknown;yes;no;telephone;may;fri;115;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;admin.;married;high.school;unknown;no;no;telephone;may;fri;290;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;blue-collar;single;basic.9y;unknown;yes;no;telephone;may;fri;140;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;blue-collar;married;basic.6y;unknown;yes;no;telephone;may;fri;57;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;blue-collar;married;basic.9y;no;yes;no;telephone;may;fri;811;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;admin.;married;university.degree;no;yes;yes;telephone;may;fri;221;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;entrepreneur;married;basic.6y;no;yes;no;telephone;may;fri;108;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+29;admin.;married;high.school;no;no;no;telephone;may;fri;288;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+50;technician;married;professional.course;no;yes;no;telephone;may;fri;1003;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;admin.;married;university.degree;no;no;no;telephone;may;fri;542;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;admin.;single;high.school;no;yes;no;telephone;may;fri;541;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;admin.;divorced;high.school;no;no;no;telephone;may;fri;198;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;admin.;married;university.degree;unknown;no;no;telephone;may;fri;302;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+57;management;married;university.degree;no;yes;no;telephone;may;fri;268;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+53;retired;married;basic.9y;no;yes;no;telephone;may;fri;154;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;management;married;university.degree;no;yes;no;telephone;may;fri;66;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;technician;married;professional.course;no;no;no;telephone;may;fri;216;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+29;technician;married;university.degree;no;yes;no;telephone;may;fri;206;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;management;married;university.degree;no;yes;no;telephone;may;fri;28;18;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;self-employed;married;basic.9y;no;no;no;telephone;may;fri;101;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+51;technician;married;basic.6y;unknown;yes;yes;telephone;may;fri;168;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;admin.;single;university.degree;no;yes;no;telephone;may;fri;186;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+58;management;married;university.degree;unknown;no;no;telephone;may;fri;472;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;blue-collar;married;basic.6y;no;no;no;telephone;may;fri;189;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+48;technician;divorced;professional.course;no;yes;yes;telephone;may;fri;215;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;blue-collar;married;basic.6y;no;yes;no;telephone;may;fri;216;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;blue-collar;married;basic.6y;unknown;no;no;telephone;may;fri;418;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;services;single;basic.6y;no;no;no;telephone;may;fri;361;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;fri;926;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;blue-collar;married;high.school;no;yes;no;telephone;may;fri;116;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;self-employed;married;university.degree;no;yes;no;telephone;may;fri;150;6;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;services;divorced;high.school;no;yes;no;telephone;may;fri;228;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;admin.;married;university.degree;no;yes;no;telephone;may;fri;411;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;blue-collar;divorced;basic.6y;no;no;no;telephone;may;fri;253;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+27;services;single;high.school;no;no;no;telephone;may;fri;144;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+57;blue-collar;married;basic.9y;no;yes;no;telephone;may;fri;248;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;housemaid;married;high.school;no;no;no;telephone;may;fri;138;6;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+54;blue-collar;single;basic.4y;unknown;unknown;unknown;telephone;may;fri;824;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;fri;345;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;retired;married;basic.9y;no;yes;no;telephone;may;fri;147;42;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;admin.;single;high.school;no;yes;no;telephone;may;fri;773;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;blue-collar;married;basic.6y;unknown;no;yes;telephone;may;fri;574;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+50;admin.;divorced;university.degree;no;no;no;telephone;may;fri;122;6;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;admin.;married;basic.6y;no;no;no;telephone;may;fri;193;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;admin.;married;high.school;unknown;yes;no;telephone;may;fri;138;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;blue-collar;married;basic.6y;unknown;yes;no;telephone;may;fri;343;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;services;single;professional.course;no;no;no;telephone;may;fri;111;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;management;married;university.degree;no;no;no;telephone;may;fri;166;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;blue-collar;married;basic.4y;no;yes;no;telephone;may;fri;469;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;blue-collar;married;professional.course;no;unknown;unknown;telephone;may;fri;189;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;management;married;university.degree;no;no;no;telephone;may;fri;106;6;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;blue-collar;married;basic.6y;no;yes;no;telephone;may;fri;165;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+49;services;married;high.school;unknown;yes;yes;telephone;may;fri;178;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;blue-collar;married;basic.6y;no;yes;no;telephone;may;fri;364;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;admin.;married;high.school;no;yes;no;telephone;may;fri;185;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;technician;married;university.degree;unknown;no;no;telephone;may;fri;224;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+27;blue-collar;married;unknown;no;yes;no;telephone;may;fri;187;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;blue-collar;married;basic.9y;no;no;no;telephone;may;fri;451;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;services;married;professional.course;no;yes;no;telephone;may;fri;226;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;blue-collar;single;professional.course;no;no;no;telephone;may;fri;128;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;blue-collar;divorced;basic.4y;unknown;yes;yes;telephone;may;fri;301;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+52;technician;married;basic.9y;no;no;no;telephone;may;fri;97;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+49;admin.;divorced;university.degree;no;no;no;telephone;may;fri;24;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;admin.;married;professional.course;no;yes;no;telephone;may;fri;232;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+50;technician;married;high.school;no;yes;no;telephone;may;fri;893;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;yes
+49;admin.;single;university.degree;no;no;no;telephone;may;fri;201;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;blue-collar;married;basic.9y;no;yes;no;telephone;may;fri;83;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;blue-collar;married;basic.9y;no;yes;no;telephone;may;fri;339;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+28;blue-collar;married;basic.9y;no;no;yes;telephone;may;fri;478;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;blue-collar;married;basic.6y;unknown;yes;yes;telephone;may;fri;13;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;fri;242;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+53;services;single;high.school;unknown;no;yes;telephone;may;fri;55;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+49;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;fri;281;27;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+55;technician;married;professional.course;no;yes;yes;telephone;may;fri;210;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;blue-collar;single;high.school;no;yes;no;telephone;may;fri;423;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;blue-collar;married;basic.6y;unknown;no;no;telephone;may;fri;200;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;blue-collar;married;basic.6y;unknown;yes;no;telephone;may;fri;109;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;admin.;married;basic.9y;unknown;no;no;telephone;may;fri;233;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+49;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;fri;133;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+48;housemaid;divorced;basic.4y;unknown;no;yes;telephone;may;fri;209;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+49;blue-collar;divorced;basic.4y;no;yes;no;telephone;may;fri;114;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+49;technician;married;unknown;no;yes;no;telephone;may;fri;319;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;admin.;single;university.degree;no;no;no;telephone;may;fri;588;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;yes
+25;self-employed;married;university.degree;no;yes;no;telephone;may;fri;274;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+26;blue-collar;married;basic.6y;unknown;yes;yes;telephone;may;fri;353;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;technician;married;professional.course;no;yes;no;telephone;may;fri;83;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;admin.;single;high.school;no;yes;yes;telephone;may;fri;123;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+53;technician;divorced;professional.course;no;no;no;telephone;may;fri;327;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;entrepreneur;married;university.degree;no;yes;no;telephone;may;fri;167;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;blue-collar;married;basic.6y;unknown;no;yes;telephone;may;fri;89;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+48;blue-collar;married;high.school;no;no;no;telephone;may;fri;34;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+51;blue-collar;married;unknown;no;no;no;telephone;may;fri;208;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;admin.;divorced;university.degree;no;yes;no;telephone;may;fri;117;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+51;blue-collar;married;basic.9y;unknown;no;no;telephone;may;fri;304;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;housemaid;married;high.school;no;yes;no;telephone;may;fri;82;7;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;blue-collar;married;basic.6y;unknown;no;no;telephone;may;fri;131;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;blue-collar;married;basic.4y;unknown;no;no;telephone;may;fri;25;14;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+51;blue-collar;married;basic.9y;no;yes;no;telephone;may;fri;76;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;services;single;high.school;no;no;no;telephone;may;fri;777;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;yes
+37;admin.;single;high.school;no;no;no;telephone;may;fri;147;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;blue-collar;married;basic.9y;no;yes;no;telephone;may;fri;243;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;admin.;married;university.degree;unknown;yes;no;telephone;may;fri;124;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+53;entrepreneur;married;university.degree;unknown;no;yes;telephone;may;fri;199;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;admin.;married;professional.course;unknown;yes;no;telephone;may;fri;488;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;management;divorced;university.degree;unknown;yes;no;telephone;may;fri;157;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;technician;single;professional.course;no;no;no;telephone;may;fri;700;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+58;blue-collar;married;basic.4y;no;yes;no;telephone;may;fri;281;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;services;divorced;unknown;no;no;no;telephone;may;fri;211;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;student;single;high.school;no;yes;no;telephone;may;fri;160;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;admin.;married;university.degree;no;yes;no;telephone;may;fri;138;6;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+52;technician;married;unknown;unknown;yes;no;telephone;may;fri;553;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;self-employed;single;university.degree;no;no;no;telephone;may;fri;92;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;management;married;university.degree;no;yes;no;telephone;may;fri;247;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;services;married;high.school;unknown;no;no;telephone;may;fri;50;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+48;services;married;professional.course;no;yes;no;telephone;may;fri;253;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;admin.;single;university.degree;no;yes;no;telephone;may;fri;153;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;entrepreneur;married;high.school;no;no;yes;telephone;may;fri;241;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+26;services;single;high.school;no;no;no;telephone;may;fri;211;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;self-employed;married;university.degree;no;no;no;telephone;may;fri;493;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+60;retired;married;high.school;unknown;yes;no;telephone;may;fri;597;6;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;yes
+35;student;single;university.degree;unknown;no;yes;telephone;may;fri;107;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+59;technician;married;professional.course;no;yes;no;telephone;may;fri;1438;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;management;married;high.school;no;no;no;telephone;may;fri;172;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;admin.;married;high.school;no;no;no;telephone;may;fri;159;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;management;divorced;university.degree;no;yes;no;telephone;may;fri;29;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;blue-collar;single;high.school;no;no;no;telephone;may;fri;76;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;blue-collar;married;basic.4y;no;yes;no;telephone;may;fri;185;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;admin.;single;university.degree;no;yes;no;telephone;may;fri;569;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;blue-collar;married;illiterate;unknown;no;yes;telephone;may;fri;333;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;management;married;university.degree;no;yes;no;telephone;may;fri;95;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+60;retired;married;basic.4y;unknown;yes;no;telephone;may;fri;557;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;entrepreneur;married;unknown;unknown;yes;no;telephone;may;fri;160;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;blue-collar;divorced;basic.9y;no;yes;no;telephone;may;fri;209;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+56;management;married;unknown;no;yes;no;telephone;may;fri;335;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+28;services;single;high.school;no;yes;yes;telephone;may;fri;372;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+29;blue-collar;single;unknown;no;no;no;telephone;may;fri;92;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+26;blue-collar;single;basic.9y;no;yes;yes;telephone;may;fri;277;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;entrepreneur;married;high.school;no;no;no;telephone;may;fri;178;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+54;services;single;high.school;unknown;no;no;telephone;may;fri;85;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;blue-collar;married;professional.course;no;no;yes;telephone;may;fri;95;12;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;blue-collar;married;basic.9y;unknown;no;no;telephone;may;fri;134;10;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;admin.;single;university.degree;no;yes;yes;telephone;may;fri;138;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+28;admin.;married;university.degree;no;no;no;telephone;may;fri;63;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;housemaid;married;high.school;unknown;yes;no;telephone;may;fri;67;13;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;services;married;high.school;no;no;no;telephone;may;fri;77;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+50;blue-collar;married;basic.4y;no;yes;no;telephone;may;fri;292;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;technician;married;university.degree;unknown;no;no;telephone;may;fri;57;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+28;housemaid;married;basic.6y;unknown;no;no;telephone;may;fri;38;11;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+52;blue-collar;married;basic.4y;no;no;no;telephone;may;fri;151;9;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;blue-collar;single;unknown;unknown;no;no;telephone;may;fri;331;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;blue-collar;married;basic.4y;no;yes;no;telephone;may;fri;1392;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;yes
+27;services;married;high.school;unknown;no;yes;telephone;may;fri;100;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;blue-collar;married;basic.9y;unknown;no;no;telephone;may;fri;358;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;unemployed;married;professional.course;no;yes;no;telephone;may;fri;298;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;management;married;unknown;no;yes;no;telephone;may;fri;181;16;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+56;retired;divorced;basic.4y;no;yes;yes;telephone;may;fri;188;6;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+51;admin.;married;basic.9y;no;yes;no;telephone;may;fri;368;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;blue-collar;married;basic.6y;no;no;no;telephone;may;fri;203;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;housemaid;married;high.school;no;yes;no;telephone;may;fri;61;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;blue-collar;married;basic.6y;no;no;yes;telephone;may;fri;297;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+48;retired;divorced;professional.course;no;no;no;telephone;may;fri;219;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+55;admin.;married;high.school;no;no;no;telephone;may;fri;129;6;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;blue-collar;single;basic.9y;no;yes;no;telephone;may;fri;247;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;admin.;married;university.degree;no;no;no;telephone;may;fri;266;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;blue-collar;married;basic.9y;no;no;no;telephone;may;fri;559;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;admin.;married;high.school;unknown;yes;no;telephone;may;fri;162;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;technician;married;professional.course;no;yes;no;telephone;may;fri;75;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;admin.;married;university.degree;no;yes;no;telephone;may;fri;82;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;services;married;high.school;no;yes;no;telephone;may;fri;352;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+51;blue-collar;married;basic.9y;unknown;no;no;telephone;may;fri;204;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;technician;single;professional.course;no;no;no;telephone;may;fri;1059;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;yes
+42;blue-collar;married;unknown;no;no;yes;telephone;may;fri;248;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+49;services;divorced;high.school;unknown;no;yes;telephone;may;fri;82;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;management;divorced;basic.4y;unknown;yes;no;telephone;may;fri;259;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;technician;married;professional.course;no;no;yes;telephone;may;fri;703;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;admin.;divorced;high.school;no;no;yes;telephone;may;fri;100;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+25;blue-collar;married;basic.9y;no;yes;no;telephone;may;fri;348;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;services;married;high.school;no;yes;no;telephone;may;fri;430;6;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;yes
+49;technician;married;professional.course;no;no;no;telephone;may;fri;146;6;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+53;blue-collar;divorced;basic.4y;no;yes;no;telephone;may;fri;34;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+26;admin.;single;high.school;no;yes;yes;telephone;may;fri;297;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;technician;married;professional.course;no;no;yes;telephone;may;fri;22;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;blue-collar;divorced;basic.9y;no;no;no;telephone;may;fri;106;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;admin.;divorced;university.degree;no;no;no;telephone;may;fri;465;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;fri;104;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+56;admin.;married;university.degree;unknown;no;no;telephone;may;fri;213;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;housemaid;married;basic.4y;no;no;yes;telephone;may;fri;74;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;blue-collar;single;university.degree;no;no;no;telephone;may;fri;245;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+28;unknown;single;basic.9y;unknown;yes;no;telephone;may;fri;252;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+50;admin.;married;high.school;unknown;yes;no;telephone;may;fri;317;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;management;married;university.degree;no;no;yes;telephone;may;fri;93;8;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+55;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;fri;116;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;services;single;basic.6y;no;yes;no;telephone;may;fri;386;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;blue-collar;married;basic.4y;no;no;no;telephone;may;fri;283;11;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;services;married;high.school;no;unknown;unknown;telephone;may;fri;146;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+27;technician;married;university.degree;no;no;yes;telephone;may;fri;215;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+56;services;married;high.school;unknown;no;yes;telephone;may;fri;90;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;admin.;married;high.school;no;yes;yes;telephone;may;fri;260;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;admin.;divorced;high.school;no;no;no;telephone;may;fri;267;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;management;married;university.degree;no;yes;yes;telephone;may;fri;107;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;admin.;divorced;university.degree;no;no;yes;telephone;may;fri;164;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;services;married;high.school;no;no;no;telephone;may;fri;427;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;services;single;basic.6y;unknown;yes;no;telephone;may;fri;1222;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;services;single;basic.9y;no;no;yes;telephone;may;fri;426;9;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;technician;married;professional.course;no;yes;yes;telephone;may;fri;456;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+29;self-employed;married;basic.9y;unknown;yes;no;telephone;may;fri;40;7;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;admin.;single;university.degree;no;no;yes;telephone;may;fri;105;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+50;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;fri;98;17;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+57;technician;married;professional.course;no;no;no;telephone;may;fri;27;7;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;blue-collar;married;basic.9y;no;no;no;telephone;may;fri;137;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;self-employed;married;basic.9y;no;no;no;telephone;may;fri;100;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+49;management;married;university.degree;unknown;yes;no;telephone;may;fri;1034;9;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;technician;single;professional.course;no;yes;no;telephone;may;fri;320;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;management;married;university.degree;no;no;no;telephone;may;fri;159;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;admin.;single;basic.9y;no;no;no;telephone;may;fri;353;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;blue-collar;single;basic.6y;no;yes;no;telephone;may;fri;331;6;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;admin.;single;high.school;unknown;yes;no;telephone;may;fri;159;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+28;admin.;married;university.degree;no;no;no;telephone;may;mon;52;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;housemaid;married;professional.course;no;yes;no;telephone;may;mon;117;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;blue-collar;married;unknown;no;yes;no;telephone;may;mon;85;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+49;technician;married;basic.9y;no;yes;no;telephone;may;mon;146;6;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+59;admin.;married;university.degree;unknown;no;yes;telephone;may;mon;49;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;self-employed;married;professional.course;no;no;no;telephone;may;mon;260;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;admin.;married;university.degree;no;yes;no;telephone;may;mon;60;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;blue-collar;married;high.school;no;yes;no;telephone;may;mon;193;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;technician;married;professional.course;no;yes;no;telephone;may;mon;373;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;admin.;married;university.degree;no;no;no;telephone;may;mon;336;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+51;blue-collar;married;high.school;no;yes;no;telephone;may;mon;200;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+49;admin.;single;high.school;no;no;no;telephone;may;mon;501;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+48;admin.;single;university.degree;no;no;no;telephone;may;mon;80;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;blue-collar;married;unknown;no;yes;no;telephone;may;mon;299;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+29;services;single;high.school;no;no;no;telephone;may;mon;207;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;technician;married;university.degree;no;no;no;telephone;may;mon;125;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;self-employed;married;high.school;no;no;no;telephone;may;mon;237;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+28;self-employed;married;professional.course;no;no;no;telephone;may;mon;185;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;technician;single;high.school;no;no;no;telephone;may;mon;224;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;blue-collar;married;unknown;no;yes;no;telephone;may;mon;183;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;blue-collar;divorced;basic.4y;unknown;yes;no;telephone;may;mon;63;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;services;married;high.school;no;yes;no;telephone;may;mon;312;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+57;retired;single;professional.course;no;yes;no;telephone;may;mon;188;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;mon;897;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;admin.;divorced;university.degree;no;no;no;telephone;may;mon;168;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;admin.;married;basic.4y;no;no;no;telephone;may;mon;322;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+52;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;mon;317;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;admin.;married;basic.9y;no;no;no;telephone;may;mon;511;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;admin.;married;university.degree;no;yes;no;telephone;may;mon;155;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+26;blue-collar;married;basic.9y;no;yes;no;telephone;may;mon;161;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;services;married;high.school;no;yes;no;telephone;may;mon;368;6;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;entrepreneur;married;university.degree;no;yes;no;telephone;may;mon;247;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;self-employed;married;basic.9y;unknown;yes;yes;telephone;may;mon;88;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;self-employed;married;basic.9y;unknown;yes;yes;telephone;may;mon;140;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+48;self-employed;married;basic.9y;unknown;no;no;telephone;may;mon;31;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+52;services;divorced;high.school;no;no;no;telephone;may;mon;142;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;entrepreneur;married;high.school;no;no;no;telephone;may;mon;118;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;admin.;single;university.degree;no;yes;no;telephone;may;mon;158;7;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;services;single;basic.9y;no;yes;yes;telephone;may;mon;129;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+48;retired;divorced;professional.course;no;yes;no;telephone;may;mon;136;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;blue-collar;married;high.school;no;no;no;telephone;may;mon;122;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+28;blue-collar;married;basic.6y;no;yes;no;telephone;may;mon;120;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;technician;married;basic.9y;no;no;no;telephone;may;mon;180;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;blue-collar;married;basic.4y;unknown;no;no;telephone;may;mon;702;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;services;single;basic.9y;no;yes;no;telephone;may;mon;329;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;entrepreneur;married;basic.6y;no;no;no;telephone;may;mon;204;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;blue-collar;married;basic.9y;unknown;no;no;telephone;may;mon;120;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;mon;181;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;unemployed;married;university.degree;unknown;no;yes;telephone;may;mon;19;17;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;blue-collar;divorced;basic.9y;unknown;yes;no;telephone;may;mon;460;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+55;admin.;married;high.school;no;yes;yes;telephone;may;mon;437;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;services;married;professional.course;no;no;no;telephone;may;mon;76;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;unemployed;married;high.school;unknown;yes;yes;telephone;may;mon;226;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;admin.;single;university.degree;no;yes;no;telephone;may;mon;422;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;entrepreneur;married;high.school;unknown;yes;no;telephone;may;mon;109;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;admin.;married;university.degree;unknown;yes;no;telephone;may;mon;219;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+48;technician;married;professional.course;no;yes;no;telephone;may;mon;41;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;mon;581;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+50;entrepreneur;divorced;university.degree;no;yes;no;telephone;may;mon;131;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;services;married;unknown;no;no;no;telephone;may;mon;50;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;admin.;divorced;university.degree;no;yes;no;telephone;may;mon;130;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;technician;married;professional.course;unknown;no;no;telephone;may;mon;194;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;management;married;university.degree;no;yes;no;telephone;may;mon;165;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;blue-collar;married;basic.4y;no;yes;no;telephone;may;mon;80;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+27;unemployed;married;high.school;no;yes;yes;telephone;may;mon;470;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;blue-collar;married;basic.4y;no;no;no;telephone;may;mon;281;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;services;married;high.school;no;yes;yes;telephone;may;mon;391;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+56;technician;married;professional.course;unknown;no;yes;telephone;may;mon;24;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;blue-collar;single;basic.9y;unknown;no;yes;telephone;may;mon;788;11;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;yes
+38;technician;married;professional.course;unknown;yes;no;telephone;may;mon;210;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+28;admin.;married;high.school;no;unknown;unknown;telephone;may;mon;367;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;entrepreneur;married;basic.6y;unknown;yes;yes;telephone;may;mon;107;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+52;admin.;married;basic.6y;no;no;no;telephone;may;mon;228;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+51;admin.;divorced;basic.9y;unknown;yes;no;telephone;may;mon;135;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;blue-collar;married;basic.6y;unknown;no;no;telephone;may;mon;85;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;management;divorced;university.degree;no;no;no;telephone;may;mon;290;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;management;married;professional.course;no;no;no;telephone;may;mon;153;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;admin.;single;high.school;no;no;no;telephone;may;mon;76;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;admin.;single;high.school;no;no;yes;telephone;may;mon;111;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;admin.;single;high.school;no;no;no;telephone;may;mon;168;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;blue-collar;married;basic.9y;unknown;no;no;telephone;may;mon;109;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;blue-collar;married;basic.9y;unknown;no;no;telephone;may;mon;219;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;admin.;married;university.degree;no;yes;no;telephone;may;mon;14;32;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;admin.;married;unknown;unknown;no;no;telephone;may;mon;285;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;technician;married;high.school;no;yes;no;telephone;may;mon;262;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;admin.;married;high.school;no;yes;no;telephone;may;mon;96;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;housemaid;married;professional.course;unknown;no;no;telephone;may;mon;166;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;admin.;divorced;university.degree;no;yes;no;telephone;may;mon;208;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;admin.;married;high.school;no;yes;yes;telephone;may;mon;483;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;management;divorced;basic.9y;unknown;no;no;telephone;may;mon;129;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;housemaid;married;basic.4y;no;yes;no;telephone;may;mon;130;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;technician;married;professional.course;no;no;no;telephone;may;mon;754;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+59;retired;divorced;professional.course;no;no;no;telephone;may;mon;113;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;housemaid;married;basic.4y;no;yes;no;telephone;may;mon;364;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;admin.;single;university.degree;unknown;yes;no;telephone;may;mon;258;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;admin.;married;university.degree;no;no;no;telephone;may;mon;227;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;blue-collar;married;basic.6y;no;no;no;telephone;may;mon;266;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+49;technician;married;professional.course;no;yes;no;telephone;may;mon;232;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;admin.;married;university.degree;no;no;no;telephone;may;mon;172;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;blue-collar;married;basic.4y;no;no;no;telephone;may;mon;164;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+54;housemaid;divorced;unknown;no;no;no;telephone;may;mon;167;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;management;married;university.degree;no;no;no;telephone;may;mon;103;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;blue-collar;single;unknown;unknown;no;no;telephone;may;mon;168;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;blue-collar;married;basic.6y;no;yes;no;telephone;may;mon;297;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+48;technician;single;unknown;no;unknown;unknown;telephone;may;mon;317;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;technician;single;high.school;no;no;no;telephone;may;mon;388;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;blue-collar;married;basic.9y;unknown;no;no;telephone;may;mon;62;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+53;admin.;married;basic.9y;unknown;no;no;telephone;may;mon;142;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;services;married;high.school;no;no;no;telephone;may;mon;63;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+49;admin.;married;university.degree;no;yes;no;telephone;may;mon;212;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;services;married;high.school;no;yes;no;telephone;may;mon;149;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;services;married;high.school;no;yes;no;telephone;may;mon;161;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;admin.;married;university.degree;no;no;yes;telephone;may;mon;165;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;unknown;single;basic.9y;no;no;yes;telephone;may;mon;369;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;technician;married;basic.9y;no;yes;no;telephone;may;mon;170;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;admin.;divorced;high.school;no;no;no;telephone;may;mon;974;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+51;blue-collar;married;basic.6y;unknown;unknown;unknown;telephone;may;mon;167;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;admin.;married;high.school;unknown;no;no;telephone;may;mon;74;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;admin.;married;university.degree;no;no;no;telephone;may;mon;96;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;blue-collar;married;unknown;unknown;no;no;telephone;may;mon;223;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;admin.;single;university.degree;no;yes;no;telephone;may;mon;140;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+51;blue-collar;married;basic.6y;unknown;yes;no;telephone;may;mon;396;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+24;admin.;married;high.school;no;no;yes;telephone;may;mon;61;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+26;technician;single;high.school;no;yes;no;telephone;may;mon;252;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+56;services;married;basic.9y;unknown;no;no;telephone;may;mon;379;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;blue-collar;married;basic.9y;unknown;no;no;telephone;may;mon;374;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;technician;married;university.degree;unknown;yes;no;telephone;may;mon;351;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;services;married;basic.9y;no;yes;no;telephone;may;mon;262;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;admin.;married;university.degree;no;no;yes;telephone;may;mon;206;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+50;services;married;high.school;no;yes;no;telephone;may;mon;248;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;services;divorced;high.school;unknown;no;no;telephone;may;mon;166;12;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+56;blue-collar;married;professional.course;no;yes;no;telephone;may;mon;621;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;yes
+45;admin.;married;basic.9y;no;no;no;telephone;may;mon;367;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;services;married;high.school;no;no;yes;telephone;may;mon;116;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;admin.;divorced;university.degree;no;yes;no;telephone;may;mon;115;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;admin.;married;university.degree;unknown;no;yes;telephone;may;mon;61;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;admin.;married;university.degree;unknown;yes;no;telephone;may;mon;142;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+58;admin.;single;university.degree;no;no;no;telephone;may;mon;543;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;yes
+50;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;mon;133;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;blue-collar;single;basic.9y;unknown;no;no;telephone;may;mon;52;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;admin.;married;university.degree;unknown;no;no;telephone;may;mon;377;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;services;married;high.school;no;no;no;telephone;may;mon;77;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+28;services;single;high.school;no;no;yes;telephone;may;mon;200;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;blue-collar;married;basic.4y;unknown;no;no;telephone;may;mon;296;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;services;married;high.school;unknown;yes;no;telephone;may;mon;144;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;entrepreneur;married;university.degree;unknown;yes;yes;telephone;may;mon;473;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+29;technician;married;university.degree;no;yes;no;telephone;may;mon;90;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;services;divorced;high.school;no;no;no;telephone;may;mon;470;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;admin.;married;high.school;no;no;no;telephone;may;mon;302;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+26;services;divorced;basic.6y;no;no;yes;telephone;may;mon;81;8;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;blue-collar;single;basic.4y;unknown;yes;no;telephone;may;mon;225;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+29;technician;married;unknown;no;yes;no;telephone;may;mon;252;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;services;divorced;basic.9y;unknown;no;yes;telephone;may;mon;202;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;technician;married;professional.course;unknown;no;yes;telephone;may;mon;68;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;management;single;university.degree;unknown;yes;no;telephone;may;mon;745;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;yes
+39;technician;single;high.school;no;yes;no;telephone;may;mon;247;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+29;student;single;high.school;no;no;yes;telephone;may;mon;630;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;yes
+32;admin.;single;professional.course;no;yes;no;telephone;may;mon;16;11;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;admin.;married;high.school;no;no;yes;telephone;may;mon;863;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;mon;131;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;admin.;married;high.school;unknown;yes;no;telephone;may;mon;265;9;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;admin.;married;university.degree;no;no;no;telephone;may;mon;104;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+57;blue-collar;married;basic.4y;unknown;no;no;telephone;may;mon;80;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;blue-collar;single;high.school;unknown;no;no;telephone;may;mon;90;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;blue-collar;married;high.school;no;yes;no;telephone;may;mon;592;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;housemaid;married;basic.4y;no;no;no;telephone;may;mon;85;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+24;services;married;professional.course;no;yes;no;telephone;may;mon;153;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+48;technician;married;basic.4y;unknown;yes;yes;telephone;may;mon;207;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;technician;single;unknown;unknown;yes;no;telephone;may;mon;440;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;student;single;high.school;no;yes;yes;telephone;may;mon;127;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;services;married;high.school;unknown;yes;no;telephone;may;mon;679;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;yes
+38;housemaid;divorced;high.school;unknown;yes;no;telephone;may;mon;204;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;unknown;married;unknown;unknown;yes;no;telephone;may;mon;269;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;admin.;single;university.degree;no;yes;yes;telephone;may;mon;190;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;technician;single;unknown;no;yes;no;telephone;may;mon;144;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;admin.;single;university.degree;no;no;no;telephone;may;mon;112;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+53;services;married;high.school;unknown;yes;no;telephone;may;mon;107;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+26;admin.;single;high.school;no;yes;no;telephone;may;mon;130;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+56;retired;married;high.school;no;yes;no;telephone;may;mon;167;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;services;married;high.school;unknown;no;no;telephone;may;mon;314;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+56;retired;married;high.school;unknown;yes;yes;telephone;may;mon;77;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;technician;married;professional.course;unknown;no;no;telephone;may;mon;407;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+56;blue-collar;married;basic.4y;unknown;no;no;telephone;may;mon;136;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;self-employed;married;university.degree;no;no;no;telephone;may;mon;293;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;services;married;high.school;no;no;no;telephone;may;mon;97;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;retired;single;basic.9y;unknown;yes;yes;telephone;may;mon;145;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;mon;162;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;blue-collar;married;basic.4y;unknown;yes;yes;telephone;may;mon;105;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+54;retired;married;basic.9y;no;no;yes;telephone;may;mon;596;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;management;married;professional.course;no;yes;no;telephone;may;mon;134;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+28;admin.;single;university.degree;no;no;no;telephone;may;mon;108;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;blue-collar;married;basic.6y;unknown;yes;yes;telephone;may;mon;161;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;blue-collar;single;high.school;no;no;yes;telephone;may;mon;65;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+59;retired;married;unknown;unknown;no;no;telephone;may;mon;188;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+58;management;married;university.degree;no;no;yes;telephone;may;mon;312;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;admin.;single;university.degree;no;no;no;telephone;may;mon;237;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;admin.;married;basic.6y;no;no;no;telephone;may;mon;130;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+52;entrepreneur;divorced;high.school;no;no;no;telephone;may;mon;314;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;technician;married;professional.course;no;no;no;telephone;may;mon;175;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;admin.;single;basic.9y;no;yes;no;telephone;may;mon;87;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;blue-collar;married;basic.9y;no;yes;no;telephone;may;mon;123;14;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;admin.;married;high.school;unknown;yes;yes;telephone;may;mon;157;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;unknown;married;basic.6y;unknown;no;no;telephone;may;mon;204;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;services;married;basic.6y;unknown;yes;no;telephone;may;mon;150;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;management;divorced;basic.9y;no;yes;yes;telephone;may;mon;240;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+26;admin.;single;high.school;no;yes;no;telephone;may;mon;109;7;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;admin.;single;university.degree;no;no;no;telephone;may;mon;243;6;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;unemployed;married;basic.6y;no;yes;yes;telephone;may;mon;536;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+28;blue-collar;single;basic.9y;no;yes;no;telephone;may;mon;120;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+29;technician;married;university.degree;no;no;no;telephone;may;mon;182;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+24;blue-collar;single;high.school;no;unknown;unknown;telephone;may;mon;70;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+51;services;single;high.school;unknown;no;no;telephone;may;mon;45;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;admin.;married;university.degree;no;yes;yes;telephone;may;mon;280;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+50;entrepreneur;married;basic.9y;no;yes;no;telephone;may;mon;215;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;technician;divorced;professional.course;no;yes;no;telephone;may;mon;147;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+57;management;divorced;university.degree;no;no;no;telephone;may;mon;222;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+28;blue-collar;single;basic.9y;no;no;no;telephone;may;mon;404;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+58;admin.;single;university.degree;no;no;no;telephone;may;mon;1234;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;yes
+50;blue-collar;single;basic.4y;no;yes;no;telephone;may;mon;306;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+57;admin.;married;university.degree;unknown;yes;no;telephone;may;mon;506;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;admin.;single;university.degree;no;yes;no;telephone;may;mon;255;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+48;admin.;divorced;university.degree;no;yes;no;telephone;may;mon;252;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;entrepreneur;married;high.school;no;no;yes;telephone;may;mon;127;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;admin.;single;university.degree;no;no;no;telephone;may;mon;140;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;admin.;married;high.school;no;no;no;telephone;may;mon;200;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;entrepreneur;married;high.school;no;yes;yes;telephone;may;mon;642;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;yes
+43;blue-collar;single;basic.4y;unknown;yes;no;telephone;may;mon;181;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;admin.;married;university.degree;no;yes;no;telephone;may;mon;127;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+29;technician;single;high.school;no;no;no;telephone;may;mon;171;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;services;single;basic.6y;unknown;no;no;telephone;may;mon;916;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;blue-collar;married;basic.9y;no;yes;yes;telephone;may;mon;629;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;blue-collar;married;basic.4y;no;yes;no;telephone;may;mon;155;6;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;technician;married;professional.course;no;no;no;telephone;may;mon;290;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;blue-collar;married;basic.9y;no;no;no;telephone;may;mon;159;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;admin.;married;high.school;no;no;no;telephone;may;mon;111;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;unemployed;married;university.degree;unknown;no;no;telephone;may;mon;729;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;admin.;married;high.school;no;yes;no;telephone;may;mon;434;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;admin.;single;high.school;no;no;no;telephone;may;mon;218;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;entrepreneur;divorced;high.school;unknown;yes;no;telephone;may;mon;250;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+49;technician;married;university.degree;no;no;no;telephone;may;mon;107;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;technician;single;high.school;no;yes;no;telephone;may;mon;272;6;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+58;admin.;married;high.school;no;yes;no;telephone;may;mon;574;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;admin.;married;university.degree;no;yes;no;telephone;may;mon;89;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;technician;divorced;professional.course;no;no;no;telephone;may;mon;133;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;management;single;high.school;no;no;no;telephone;may;mon;114;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;management;married;university.degree;no;yes;no;telephone;may;mon;175;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;blue-collar;married;basic.6y;no;yes;no;telephone;may;mon;257;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+58;retired;married;basic.6y;unknown;no;no;telephone;may;mon;268;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;admin.;married;high.school;no;no;yes;telephone;may;mon;208;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;unemployed;married;basic.9y;unknown;yes;yes;telephone;may;mon;895;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;yes
+30;blue-collar;single;basic.9y;unknown;yes;yes;telephone;may;mon;225;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+57;admin.;married;university.degree;no;no;yes;telephone;may;mon;327;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;blue-collar;married;basic.6y;no;no;yes;telephone;may;mon;99;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;technician;single;university.degree;no;no;no;telephone;may;mon;293;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;technician;married;professional.course;no;yes;no;telephone;may;mon;68;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;housemaid;married;high.school;no;yes;no;telephone;may;mon;124;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;admin.;single;high.school;unknown;yes;no;telephone;may;mon;519;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;blue-collar;married;high.school;no;no;yes;telephone;may;mon;150;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;technician;single;basic.9y;no;no;no;telephone;may;mon;504;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;blue-collar;married;unknown;no;yes;no;telephone;may;mon;175;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;management;married;university.degree;unknown;yes;no;telephone;may;mon;289;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;admin.;married;high.school;no;no;yes;telephone;may;mon;16;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;management;married;university.degree;no;no;no;telephone;may;mon;100;8;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+29;admin.;single;high.school;no;no;yes;telephone;may;mon;321;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;entrepreneur;married;university.degree;unknown;yes;no;telephone;may;mon;239;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;technician;married;professional.course;no;no;no;telephone;may;mon;614;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;blue-collar;single;basic.9y;unknown;yes;no;telephone;may;mon;248;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+27;services;single;basic.9y;no;no;no;telephone;may;mon;93;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;admin.;single;high.school;no;yes;no;telephone;may;mon;355;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;admin.;single;university.degree;no;no;yes;telephone;may;mon;177;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;admin.;married;university.degree;no;yes;no;telephone;may;mon;245;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+48;management;married;university.degree;no;yes;no;telephone;may;mon;121;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;admin.;single;high.school;no;yes;no;telephone;may;mon;192;6;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;technician;divorced;professional.course;no;yes;no;telephone;may;mon;110;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;admin.;married;high.school;no;no;no;telephone;may;mon;160;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+29;blue-collar;married;basic.4y;no;yes;no;telephone;may;mon;249;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;services;married;high.school;unknown;yes;no;telephone;may;mon;147;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;services;married;high.school;unknown;yes;no;telephone;may;mon;16;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;unknown;married;basic.6y;no;yes;no;telephone;may;mon;240;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;blue-collar;married;basic.4y;no;no;no;telephone;may;mon;131;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+27;blue-collar;married;basic.9y;unknown;yes;yes;telephone;may;mon;115;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;management;married;university.degree;no;no;no;telephone;may;mon;349;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;admin.;married;high.school;no;no;yes;telephone;may;mon;114;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;housemaid;married;basic.9y;no;yes;no;telephone;may;mon;445;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;technician;divorced;professional.course;no;yes;no;telephone;may;mon;144;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;blue-collar;married;professional.course;no;no;no;telephone;may;mon;341;12;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;self-employed;married;university.degree;no;yes;no;telephone;may;mon;796;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+51;blue-collar;married;unknown;unknown;no;yes;telephone;may;mon;76;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;admin.;married;basic.4y;no;no;no;telephone;may;mon;126;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+28;blue-collar;single;basic.4y;no;yes;no;telephone;may;mon;101;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;blue-collar;married;basic.9y;no;no;no;telephone;may;mon;91;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;admin.;single;high.school;no;no;no;telephone;may;mon;52;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+25;self-employed;single;university.degree;no;no;no;telephone;may;mon;78;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;technician;single;university.degree;no;no;yes;telephone;may;mon;471;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+59;retired;married;professional.course;unknown;yes;yes;telephone;may;mon;724;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+51;retired;married;basic.9y;no;unknown;unknown;telephone;may;mon;99;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+27;blue-collar;married;basic.9y;unknown;no;no;telephone;may;mon;293;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;blue-collar;married;high.school;no;no;no;telephone;may;mon;333;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;management;married;university.degree;no;no;no;telephone;may;mon;431;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;yes
+38;blue-collar;married;basic.6y;unknown;no;no;telephone;may;mon;523;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;self-employed;married;basic.9y;unknown;no;no;telephone;may;mon;470;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;admin.;divorced;university.degree;no;no;no;telephone;may;mon;695;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+25;blue-collar;married;high.school;unknown;yes;yes;telephone;may;mon;741;6;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;yes
+50;blue-collar;married;basic.6y;unknown;no;no;telephone;may;mon;151;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;blue-collar;married;basic.6y;unknown;no;no;telephone;may;mon;135;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;services;married;basic.6y;no;no;no;telephone;may;mon;70;6;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+52;unemployed;married;unknown;no;no;no;telephone;may;mon;472;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;technician;married;basic.9y;unknown;no;no;telephone;may;mon;258;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;self-employed;single;professional.course;no;yes;no;telephone;may;mon;113;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;services;single;basic.9y;no;no;no;telephone;may;mon;372;14;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+27;blue-collar;single;basic.6y;no;no;no;telephone;may;mon;603;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;admin.;single;high.school;no;yes;no;telephone;may;mon;85;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;admin.;married;high.school;no;no;no;telephone;may;mon;76;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;admin.;single;high.school;unknown;no;no;telephone;may;mon;399;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;management;married;professional.course;unknown;no;no;telephone;may;mon;402;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+55;services;married;high.school;unknown;yes;yes;telephone;may;mon;129;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;blue-collar;married;basic.9y;no;no;yes;telephone;may;mon;535;6;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;unemployed;married;high.school;unknown;no;no;telephone;may;mon;181;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+58;management;married;basic.6y;no;yes;no;telephone;may;mon;48;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;management;married;university.degree;no;yes;no;telephone;may;mon;114;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;admin.;single;unknown;unknown;no;no;telephone;may;mon;87;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;unemployed;married;professional.course;no;yes;yes;telephone;may;mon;169;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;technician;single;professional.course;no;yes;no;telephone;may;mon;116;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;admin.;single;high.school;no;yes;no;telephone;may;mon;100;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;admin.;married;university.degree;no;no;no;telephone;may;mon;212;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;services;married;high.school;no;yes;no;telephone;may;mon;304;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;student;single;unknown;unknown;yes;no;telephone;may;mon;114;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;services;married;high.school;no;no;no;telephone;may;mon;102;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;self-employed;married;basic.9y;unknown;no;yes;telephone;may;mon;291;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+51;entrepreneur;divorced;university.degree;unknown;no;yes;telephone;may;mon;112;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;services;married;high.school;no;no;no;telephone;may;mon;207;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+58;management;married;basic.6y;no;yes;no;telephone;may;mon;197;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+56;retired;married;basic.4y;unknown;yes;no;telephone;may;mon;103;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+57;unemployed;married;basic.9y;unknown;yes;no;telephone;may;mon;45;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;technician;single;university.degree;no;yes;no;telephone;may;mon;125;6;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+28;services;married;high.school;no;yes;yes;telephone;may;mon;114;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;self-employed;single;university.degree;no;no;no;telephone;may;mon;414;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;yes
+35;admin.;single;high.school;no;yes;no;telephone;may;mon;319;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+26;blue-collar;married;professional.course;unknown;yes;no;telephone;may;mon;346;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;blue-collar;single;basic.9y;no;yes;no;telephone;may;mon;157;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+52;technician;married;professional.course;no;no;no;telephone;may;mon;160;11;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;technician;married;basic.9y;no;no;no;telephone;may;mon;83;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+51;entrepreneur;single;unknown;no;yes;no;telephone;may;mon;97;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;blue-collar;married;basic.9y;no;no;no;telephone;may;mon;98;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;services;married;high.school;no;yes;no;telephone;may;mon;133;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;admin.;single;university.degree;no;yes;no;telephone;may;mon;451;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;blue-collar;married;high.school;no;no;no;telephone;may;mon;34;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;admin.;married;university.degree;no;no;no;telephone;may;mon;79;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;blue-collar;married;basic.9y;no;no;no;telephone;may;mon;109;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;blue-collar;married;basic.6y;unknown;yes;no;telephone;may;mon;454;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;technician;single;university.degree;no;no;no;telephone;may;mon;251;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+51;admin.;divorced;university.degree;no;no;no;telephone;may;mon;122;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;self-employed;married;basic.9y;unknown;no;no;telephone;may;mon;166;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;mon;816;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+28;admin.;single;university.degree;no;yes;no;telephone;may;mon;87;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;technician;married;professional.course;unknown;yes;no;telephone;may;mon;81;6;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;entrepreneur;married;basic.9y;unknown;no;no;telephone;may;mon;109;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+54;admin.;divorced;university.degree;no;yes;yes;telephone;may;mon;375;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+59;admin.;married;professional.course;no;no;no;telephone;may;mon;51;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;housemaid;married;basic.9y;unknown;yes;no;telephone;may;mon;118;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;services;single;high.school;no;no;no;telephone;may;mon;178;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;admin.;married;high.school;no;no;no;telephone;may;mon;165;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+48;admin.;married;university.degree;no;no;no;telephone;may;mon;155;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+50;technician;divorced;professional.course;no;no;no;telephone;may;mon;173;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+29;self-employed;married;high.school;no;no;no;telephone;may;mon;304;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;admin.;married;university.degree;no;no;no;telephone;may;mon;583;6;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;admin.;married;university.degree;no;yes;no;telephone;may;mon;138;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+52;management;married;unknown;unknown;yes;no;telephone;may;mon;250;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+52;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;mon;748;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;yes
+48;blue-collar;married;basic.4y;unknown;yes;yes;telephone;may;mon;14;11;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+28;entrepreneur;married;basic.9y;no;no;no;telephone;may;mon;896;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;yes
+35;blue-collar;married;high.school;no;yes;yes;telephone;may;mon;83;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;admin.;married;university.degree;no;no;no;telephone;may;mon;543;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;admin.;married;university.degree;unknown;yes;yes;telephone;may;mon;398;7;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;blue-collar;married;basic.6y;no;no;no;telephone;may;mon;158;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;blue-collar;married;basic.9y;no;yes;no;telephone;may;mon;365;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;admin.;married;university.degree;unknown;yes;no;telephone;may;mon;304;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;blue-collar;single;basic.4y;no;no;no;telephone;may;mon;118;6;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;technician;single;professional.course;no;yes;yes;telephone;may;mon;469;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;admin.;divorced;high.school;no;no;no;telephone;may;mon;488;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;management;married;high.school;no;no;no;telephone;may;mon;232;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+24;admin.;married;basic.9y;no;yes;no;telephone;may;mon;764;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;yes
+55;management;married;university.degree;no;yes;yes;telephone;may;mon;411;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+28;blue-collar;single;high.school;unknown;yes;no;telephone;may;mon;149;7;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;management;divorced;high.school;no;yes;no;telephone;may;mon;63;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;mon;125;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;technician;married;professional.course;no;yes;yes;telephone;may;mon;207;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;admin.;divorced;high.school;no;yes;no;telephone;may;mon;84;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;blue-collar;single;professional.course;unknown;no;no;telephone;may;mon;29;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;blue-collar;married;basic.9y;no;yes;yes;telephone;may;mon;162;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;management;single;high.school;no;yes;no;telephone;may;mon;159;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;blue-collar;married;high.school;unknown;yes;no;telephone;may;mon;23;10;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;admin.;married;university.degree;no;yes;yes;telephone;may;mon;147;6;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;blue-collar;married;basic.9y;no;no;no;telephone;may;mon;90;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;technician;married;professional.course;no;no;no;telephone;may;mon;409;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;technician;single;university.degree;unknown;yes;yes;telephone;may;mon;118;6;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;admin.;married;high.school;no;yes;no;telephone;may;mon;175;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;services;married;high.school;no;no;no;telephone;may;mon;219;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;services;single;high.school;no;no;no;telephone;may;mon;96;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+57;technician;married;university.degree;unknown;no;yes;telephone;may;mon;76;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;entrepreneur;married;basic.6y;unknown;no;no;telephone;may;mon;66;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;services;single;high.school;no;no;no;telephone;may;mon;113;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;admin.;single;university.degree;no;yes;yes;telephone;may;mon;232;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;blue-collar;married;basic.9y;unknown;no;no;telephone;may;mon;129;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;blue-collar;divorced;basic.9y;unknown;no;no;telephone;may;mon;405;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+29;services;divorced;high.school;no;no;yes;telephone;may;mon;251;11;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;mon;128;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+52;blue-collar;married;basic.4y;no;yes;no;telephone;may;mon;253;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+53;housemaid;married;basic.4y;unknown;no;no;telephone;may;mon;245;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;technician;single;professional.course;unknown;yes;no;telephone;may;mon;188;7;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;technician;single;professional.course;no;no;no;telephone;may;mon;118;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;blue-collar;married;basic.9y;no;yes;no;telephone;may;mon;140;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;management;married;university.degree;no;no;no;telephone;may;mon;102;22;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;student;single;university.degree;no;yes;no;telephone;may;mon;763;6;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;blue-collar;married;basic.6y;no;no;no;telephone;may;mon;97;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;blue-collar;married;basic.4y;no;no;no;telephone;may;mon;41;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;unknown;married;high.school;unknown;yes;yes;telephone;may;mon;329;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+27;blue-collar;married;basic.4y;no;yes;no;telephone;may;mon;51;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+59;unknown;married;unknown;unknown;no;no;telephone;may;mon;130;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;entrepreneur;married;basic.9y;no;no;no;telephone;may;mon;241;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+54;retired;divorced;high.school;no;yes;no;telephone;may;mon;308;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;blue-collar;married;basic.9y;no;yes;no;telephone;may;mon;118;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;management;single;university.degree;no;no;no;telephone;may;mon;14;16;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;services;divorced;high.school;no;yes;yes;telephone;may;mon;125;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;blue-collar;single;high.school;no;yes;no;telephone;may;mon;193;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;technician;married;professional.course;no;yes;no;telephone;may;mon;200;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;technician;married;professional.course;no;yes;no;telephone;may;mon;349;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+49;admin.;divorced;basic.9y;no;yes;yes;telephone;may;mon;282;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+23;blue-collar;married;basic.9y;no;no;no;telephone;may;mon;633;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+49;blue-collar;married;high.school;no;no;no;telephone;may;mon;560;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;technician;married;professional.course;no;yes;no;telephone;may;tue;114;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;blue-collar;married;high.school;no;yes;yes;telephone;may;tue;172;7;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;admin.;married;professional.course;no;yes;no;telephone;may;tue;292;7;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;blue-collar;married;basic.4y;no;yes;no;telephone;may;tue;269;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;services;married;high.school;unknown;yes;yes;telephone;may;tue;220;6;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+55;housemaid;divorced;unknown;unknown;yes;no;telephone;may;tue;376;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;blue-collar;single;basic.6y;no;no;yes;telephone;may;tue;73;6;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;blue-collar;married;high.school;no;no;yes;telephone;may;tue;121;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;services;married;high.school;no;yes;no;telephone;may;tue;59;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;management;married;university.degree;no;yes;no;telephone;may;tue;64;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+57;admin.;married;basic.6y;unknown;yes;no;telephone;may;tue;353;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;entrepreneur;married;university.degree;no;no;no;telephone;may;tue;322;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+50;blue-collar;married;basic.6y;unknown;yes;yes;telephone;may;tue;67;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;blue-collar;married;basic.4y;no;no;no;telephone;may;tue;163;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+52;technician;divorced;university.degree;no;no;no;telephone;may;tue;99;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;blue-collar;married;high.school;unknown;yes;no;telephone;may;tue;27;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;technician;single;professional.course;no;yes;no;telephone;may;tue;119;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+56;entrepreneur;married;university.degree;no;yes;no;telephone;may;tue;148;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+51;admin.;single;basic.6y;no;no;no;telephone;may;tue;222;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;management;married;high.school;no;yes;yes;telephone;may;tue;265;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;blue-collar;married;basic.9y;no;yes;no;telephone;may;tue;214;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;entrepreneur;married;university.degree;unknown;no;no;telephone;may;tue;152;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+28;admin.;single;university.degree;no;no;no;telephone;may;tue;75;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;management;married;high.school;no;yes;yes;telephone;may;tue;62;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;blue-collar;single;high.school;no;no;no;telephone;may;tue;112;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;blue-collar;married;basic.9y;no;yes;no;telephone;may;tue;220;6;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;management;married;unknown;unknown;no;no;telephone;may;tue;204;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;blue-collar;married;professional.course;no;yes;no;telephone;may;tue;160;6;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;admin.;married;high.school;unknown;no;no;telephone;may;tue;233;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;services;married;high.school;no;yes;no;telephone;may;tue;129;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;management;married;unknown;no;no;no;telephone;may;tue;172;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;blue-collar;married;basic.4y;no;yes;no;telephone;may;tue;578;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;blue-collar;divorced;basic.6y;no;no;no;telephone;may;tue;183;9;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;blue-collar;married;basic.4y;no;no;no;telephone;may;tue;565;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+24;blue-collar;married;basic.9y;no;no;no;telephone;may;tue;154;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;admin.;married;basic.9y;no;yes;yes;telephone;may;tue;125;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;services;divorced;unknown;no;yes;no;telephone;may;tue;1063;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;yes
+36;admin.;married;high.school;no;yes;no;telephone;may;tue;111;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+48;blue-collar;married;professional.course;no;yes;yes;telephone;may;tue;231;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;management;married;professional.course;no;no;no;telephone;may;tue;195;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;admin.;single;university.degree;unknown;no;no;telephone;may;tue;125;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;technician;single;high.school;no;yes;yes;telephone;may;tue;193;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;housemaid;married;basic.9y;no;no;no;telephone;may;tue;287;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;technician;single;high.school;unknown;yes;yes;telephone;may;tue;277;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;technician;single;professional.course;no;no;no;telephone;may;tue;84;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;admin.;married;university.degree;no;yes;no;telephone;may;tue;47;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+28;services;married;unknown;no;yes;no;telephone;may;tue;285;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;blue-collar;married;basic.6y;no;yes;no;telephone;may;tue;130;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;management;married;high.school;no;no;no;telephone;may;tue;24;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;blue-collar;married;basic.9y;no;yes;no;telephone;may;tue;955;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;admin.;married;high.school;unknown;yes;yes;telephone;may;tue;236;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;services;married;university.degree;no;yes;no;telephone;may;tue;336;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+52;unknown;married;basic.4y;no;no;no;telephone;may;tue;150;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;technician;married;professional.course;no;no;no;telephone;may;tue;159;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+28;blue-collar;married;basic.9y;no;yes;no;telephone;may;tue;180;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+50;entrepreneur;married;basic.9y;no;no;no;telephone;may;tue;163;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;blue-collar;married;basic.6y;no;no;no;telephone;may;tue;197;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;blue-collar;married;basic.9y;no;no;no;telephone;may;tue;218;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;technician;married;basic.9y;no;yes;no;telephone;may;tue;34;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;admin.;single;high.school;no;yes;no;telephone;may;tue;386;11;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+27;student;single;university.degree;no;yes;no;telephone;may;tue;154;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;blue-collar;married;basic.9y;no;no;yes;telephone;may;tue;159;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;entrepreneur;married;basic.9y;no;no;no;telephone;may;tue;157;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;housemaid;married;basic.4y;no;yes;no;telephone;may;tue;227;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;entrepreneur;married;basic.4y;no;no;no;telephone;may;tue;116;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+26;technician;married;professional.course;no;no;no;telephone;may;tue;205;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;services;married;professional.course;no;yes;no;telephone;may;tue;1205;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;yes
+36;management;married;university.degree;no;yes;no;telephone;may;tue;133;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;blue-collar;married;high.school;no;yes;no;telephone;may;tue;59;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+50;blue-collar;married;basic.4y;no;yes;no;telephone;may;tue;229;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;self-employed;single;high.school;no;yes;no;telephone;may;tue;147;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+57;retired;married;high.school;unknown;no;no;telephone;may;tue;147;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;services;single;high.school;no;yes;no;telephone;may;tue;179;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+28;services;single;high.school;no;yes;no;telephone;may;tue;185;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;blue-collar;married;basic.9y;no;no;no;telephone;may;tue;427;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+51;unemployed;married;professional.course;no;no;no;telephone;may;tue;171;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;technician;single;high.school;no;yes;no;telephone;may;tue;237;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+28;blue-collar;married;basic.6y;unknown;no;no;telephone;may;tue;228;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;admin.;single;university.degree;unknown;yes;no;telephone;may;tue;269;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;blue-collar;single;basic.9y;no;no;no;telephone;may;tue;156;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;technician;married;university.degree;no;no;no;telephone;may;tue;162;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;services;single;basic.9y;no;no;no;telephone;may;tue;674;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;services;single;high.school;unknown;no;yes;telephone;may;tue;234;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;blue-collar;divorced;basic.9y;unknown;no;no;telephone;may;tue;123;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+29;services;married;high.school;no;yes;no;telephone;may;tue;275;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+56;housemaid;divorced;basic.4y;unknown;no;no;telephone;may;tue;115;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+29;technician;single;university.degree;no;yes;no;telephone;may;tue;1051;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;yes
+27;admin.;single;university.degree;no;yes;no;telephone;may;tue;142;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;blue-collar;married;basic.6y;unknown;no;no;telephone;may;tue;99;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+49;technician;married;professional.course;no;yes;no;telephone;may;tue;340;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+49;blue-collar;married;basic.4y;no;unknown;unknown;telephone;may;tue;47;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;blue-collar;married;basic.6y;unknown;no;no;telephone;may;tue;182;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;housemaid;married;university.degree;no;yes;no;telephone;may;tue;260;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;admin.;single;high.school;no;no;no;telephone;may;tue;35;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;blue-collar;married;basic.9y;no;no;no;telephone;may;tue;121;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;management;married;university.degree;no;yes;no;telephone;may;tue;143;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;blue-collar;single;basic.6y;no;no;no;telephone;may;tue;472;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;technician;married;professional.course;no;yes;yes;telephone;may;tue;207;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;unemployed;single;high.school;no;yes;no;telephone;may;tue;597;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;services;married;high.school;no;yes;yes;telephone;may;tue;274;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;blue-collar;married;basic.9y;no;yes;no;telephone;may;tue;420;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;technician;divorced;professional.course;no;unknown;unknown;telephone;may;tue;532;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;blue-collar;married;professional.course;unknown;yes;no;telephone;may;tue;128;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;entrepreneur;married;high.school;no;no;no;telephone;may;tue;62;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+24;services;single;high.school;no;no;no;telephone;may;tue;185;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+25;admin.;married;high.school;no;yes;yes;telephone;may;tue;275;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;blue-collar;married;basic.9y;no;no;no;telephone;may;tue;740;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;yes
+34;technician;married;university.degree;no;no;no;telephone;may;tue;111;10;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;admin.;divorced;high.school;no;no;no;telephone;may;tue;271;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;management;married;high.school;no;no;no;telephone;may;tue;776;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+26;admin.;single;university.degree;no;no;no;telephone;may;tue;90;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;blue-collar;married;basic.6y;unknown;no;no;telephone;may;tue;299;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;services;married;basic.9y;unknown;yes;no;telephone;may;tue;181;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+29;blue-collar;single;basic.9y;no;yes;no;telephone;may;tue;330;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+51;blue-collar;divorced;basic.6y;unknown;no;no;telephone;may;tue;518;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+50;housemaid;married;basic.4y;no;no;no;telephone;may;tue;243;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;technician;divorced;basic.9y;unknown;no;no;telephone;may;tue;472;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+27;technician;single;professional.course;no;no;no;telephone;may;tue;148;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;services;married;high.school;no;no;no;telephone;may;tue;514;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;technician;divorced;basic.9y;unknown;yes;yes;telephone;may;tue;388;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;management;married;basic.4y;no;yes;no;telephone;may;tue;224;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;unemployed;married;professional.course;no;no;no;telephone;may;tue;118;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;services;married;basic.9y;no;no;no;telephone;may;tue;255;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;technician;single;professional.course;no;no;no;telephone;may;tue;70;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;entrepreneur;married;basic.4y;no;yes;no;telephone;may;tue;296;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;blue-collar;married;basic.9y;unknown;no;no;telephone;may;tue;550;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;services;divorced;high.school;no;yes;no;telephone;may;tue;313;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+53;housemaid;married;basic.4y;no;yes;no;telephone;may;tue;257;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;tue;243;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;blue-collar;married;basic.4y;no;yes;no;telephone;may;tue;77;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;technician;single;university.degree;no;yes;no;telephone;may;tue;114;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;blue-collar;married;basic.9y;no;no;no;telephone;may;tue;73;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;unknown;married;basic.6y;unknown;yes;no;telephone;may;tue;290;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+48;blue-collar;married;basic.4y;unknown;no;no;telephone;may;tue;86;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+26;technician;single;professional.course;no;no;no;telephone;may;tue;126;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;entrepreneur;divorced;high.school;no;yes;no;telephone;may;tue;168;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;services;single;high.school;no;yes;yes;telephone;may;tue;188;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;housemaid;married;basic.4y;no;no;no;telephone;may;tue;106;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+50;admin.;divorced;high.school;no;no;no;telephone;may;tue;45;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;admin.;married;basic.6y;no;yes;yes;telephone;may;tue;25;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;admin.;married;basic.6y;no;yes;no;telephone;may;tue;114;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;entrepreneur;married;basic.9y;unknown;no;no;telephone;may;tue;82;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+29;admin.;single;university.degree;no;yes;no;telephone;may;tue;33;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;blue-collar;married;basic.9y;no;unknown;unknown;telephone;may;tue;322;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+26;technician;single;professional.course;no;no;no;telephone;may;tue;446;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+57;self-employed;married;basic.9y;unknown;yes;yes;telephone;may;tue;122;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;technician;single;professional.course;no;yes;no;telephone;may;tue;121;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;services;divorced;high.school;no;yes;no;telephone;may;tue;78;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;blue-collar;married;basic.4y;unknown;no;no;telephone;may;tue;70;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;blue-collar;single;professional.course;no;yes;no;telephone;may;tue;213;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;blue-collar;married;basic.4y;no;no;no;telephone;may;tue;115;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;admin.;divorced;university.degree;no;no;no;telephone;may;tue;305;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+25;management;single;basic.4y;no;no;no;telephone;may;tue;19;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;blue-collar;single;basic.9y;no;no;no;telephone;may;tue;643;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;admin.;single;high.school;no;no;no;telephone;may;tue;371;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;admin.;married;university.degree;unknown;no;no;telephone;may;tue;363;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+49;blue-collar;married;basic.4y;no;no;no;telephone;may;tue;384;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+51;self-employed;single;university.degree;no;yes;no;telephone;may;tue;492;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;blue-collar;single;basic.4y;unknown;no;no;telephone;may;tue;222;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;entrepreneur;married;high.school;no;no;no;telephone;may;tue;144;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;blue-collar;married;basic.9y;unknown;no;no;telephone;may;tue;426;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;services;married;high.school;no;no;no;telephone;may;tue;181;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;blue-collar;married;basic.9y;unknown;no;yes;telephone;may;tue;39;7;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+29;blue-collar;single;high.school;no;yes;no;telephone;may;tue;174;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;admin.;divorced;high.school;no;no;no;telephone;may;tue;293;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;admin.;married;high.school;no;no;no;telephone;may;tue;316;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+24;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;tue;151;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;blue-collar;married;basic.6y;unknown;no;yes;telephone;may;tue;132;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+27;services;married;high.school;unknown;yes;no;telephone;may;tue;129;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;blue-collar;married;basic.9y;no;yes;no;telephone;may;tue;106;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+28;student;single;basic.9y;unknown;yes;yes;telephone;may;tue;68;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;blue-collar;divorced;basic.6y;no;no;no;telephone;may;tue;255;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+27;blue-collar;married;basic.9y;no;no;no;telephone;may;tue;189;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;technician;married;university.degree;no;no;no;telephone;may;tue;173;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;admin.;divorced;high.school;unknown;no;no;telephone;may;tue;161;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;blue-collar;married;basic.9y;no;no;no;telephone;may;tue;155;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;blue-collar;married;basic.4y;unknown;yes;yes;telephone;may;tue;72;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;unknown;married;high.school;unknown;no;no;telephone;may;tue;109;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+29;admin.;single;basic.9y;unknown;no;no;telephone;may;tue;62;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;blue-collar;single;professional.course;no;no;no;telephone;may;tue;137;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+60;unknown;married;university.degree;no;no;no;telephone;may;tue;310;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;blue-collar;single;basic.6y;unknown;no;no;telephone;may;tue;195;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+51;technician;married;university.degree;no;yes;no;telephone;may;tue;470;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;services;married;high.school;no;no;no;telephone;may;tue;139;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;technician;divorced;professional.course;no;yes;no;telephone;may;tue;169;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;services;married;high.school;no;no;no;telephone;may;tue;223;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;blue-collar;single;basic.9y;unknown;no;no;telephone;may;tue;201;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;services;married;high.school;no;yes;yes;telephone;may;tue;596;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;technician;married;professional.course;no;no;no;telephone;may;tue;253;16;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;management;single;university.degree;no;no;no;telephone;may;tue;600;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+55;services;married;high.school;no;yes;no;telephone;may;tue;133;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+49;unknown;married;high.school;unknown;yes;no;telephone;may;tue;43;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;admin.;married;high.school;no;no;no;telephone;may;tue;731;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;yes
+31;admin.;single;university.degree;no;yes;no;telephone;may;tue;659;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+56;retired;married;basic.4y;no;yes;yes;telephone;may;tue;112;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;entrepreneur;divorced;university.degree;no;no;no;telephone;may;tue;124;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;blue-collar;married;basic.9y;unknown;no;no;telephone;may;tue;59;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+29;self-employed;married;university.degree;unknown;yes;no;telephone;may;tue;121;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+57;blue-collar;married;basic.4y;unknown;no;no;telephone;may;tue;98;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+48;technician;married;basic.6y;no;no;yes;telephone;may;tue;175;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+53;self-employed;married;university.degree;no;no;yes;telephone;may;tue;202;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;admin.;married;high.school;no;no;no;telephone;may;tue;185;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;blue-collar;married;basic.4y;no;yes;no;telephone;may;tue;170;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;blue-collar;single;basic.4y;no;no;no;telephone;may;tue;184;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+26;technician;married;basic.6y;no;no;yes;telephone;may;tue;261;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;self-employed;married;high.school;no;yes;no;telephone;may;tue;103;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;blue-collar;married;high.school;unknown;yes;no;telephone;may;tue;190;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+29;blue-collar;single;unknown;no;no;no;telephone;may;tue;198;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+22;services;single;basic.9y;no;no;no;telephone;may;tue;170;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+51;retired;married;university.degree;no;yes;yes;telephone;may;tue;235;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;technician;married;basic.9y;unknown;no;no;telephone;may;tue;166;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+29;admin.;single;university.degree;no;no;no;telephone;may;tue;169;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;services;married;high.school;no;yes;no;telephone;may;tue;125;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;technician;married;professional.course;unknown;yes;no;telephone;may;tue;272;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+48;unemployed;married;basic.4y;no;yes;no;telephone;may;tue;265;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;technician;married;professional.course;no;yes;no;telephone;may;tue;233;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+50;blue-collar;single;basic.9y;unknown;yes;no;telephone;may;tue;307;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;admin.;married;high.school;no;yes;no;telephone;may;tue;246;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+27;admin.;divorced;high.school;no;no;no;telephone;may;tue;290;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;blue-collar;married;basic.4y;unknown;no;no;telephone;may;tue;56;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;admin.;married;basic.9y;no;no;no;telephone;may;tue;259;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+28;management;married;high.school;unknown;no;no;telephone;may;tue;375;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;entrepreneur;single;professional.course;no;no;no;telephone;may;tue;290;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;self-employed;married;basic.9y;no;no;no;telephone;may;tue;148;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;blue-collar;single;basic.9y;no;yes;no;telephone;may;tue;174;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+29;self-employed;married;basic.6y;unknown;yes;no;telephone;may;tue;32;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;blue-collar;divorced;basic.9y;unknown;no;no;telephone;may;tue;521;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;blue-collar;divorced;basic.4y;no;no;no;telephone;may;tue;537;9;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;management;married;university.degree;no;yes;no;telephone;may;tue;316;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+50;services;single;high.school;unknown;no;no;telephone;may;tue;332;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+57;management;divorced;university.degree;no;no;no;telephone;may;tue;35;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;blue-collar;married;basic.9y;no;no;no;telephone;may;tue;935;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;yes
+37;technician;single;university.degree;no;yes;yes;telephone;may;tue;173;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;technician;single;university.degree;no;no;no;telephone;may;tue;144;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;technician;divorced;basic.9y;no;no;no;telephone;may;tue;474;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;tue;395;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+52;management;divorced;university.degree;no;no;no;telephone;may;tue;313;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;admin.;single;university.degree;no;no;no;telephone;may;tue;147;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+60;admin.;married;university.degree;unknown;no;no;telephone;may;tue;123;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+27;services;married;professional.course;no;no;no;telephone;may;tue;395;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;blue-collar;married;basic.9y;no;yes;no;telephone;may;tue;93;10;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+29;admin.;single;university.degree;no;no;yes;telephone;may;tue;166;9;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;blue-collar;single;high.school;no;yes;no;telephone;may;tue;410;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+53;blue-collar;married;basic.9y;unknown;no;no;telephone;may;tue;755;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+26;technician;married;professional.course;no;no;no;telephone;may;tue;139;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;admin.;married;high.school;no;unknown;unknown;telephone;may;tue;145;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+49;blue-collar;married;basic.6y;no;no;no;telephone;may;tue;95;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;technician;married;professional.course;no;no;no;telephone;may;tue;211;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+55;retired;divorced;high.school;unknown;yes;no;telephone;may;tue;193;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;unknown;single;basic.9y;unknown;yes;no;telephone;may;tue;88;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;blue-collar;married;professional.course;no;no;no;telephone;may;tue;318;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;unemployed;single;basic.9y;unknown;yes;no;telephone;may;tue;405;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;management;single;university.degree;no;yes;no;telephone;may;tue;751;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;yes
+34;admin.;married;high.school;no;yes;no;telephone;may;tue;207;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+29;services;married;high.school;no;yes;no;telephone;may;tue;95;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+52;blue-collar;married;basic.9y;no;yes;no;telephone;may;tue;319;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;blue-collar;married;basic.4y;unknown;no;no;telephone;may;tue;272;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+55;management;married;university.degree;unknown;no;no;telephone;may;tue;142;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+53;admin.;single;basic.6y;no;yes;no;telephone;may;tue;27;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;management;single;university.degree;no;no;no;telephone;may;tue;237;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;tue;193;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;housemaid;married;basic.4y;no;yes;no;telephone;may;tue;129;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+52;management;divorced;university.degree;no;no;yes;telephone;may;tue;116;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+48;blue-collar;married;basic.9y;no;yes;no;telephone;may;tue;99;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;technician;married;professional.course;unknown;no;no;telephone;may;tue;345;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;blue-collar;married;professional.course;no;no;yes;telephone;may;tue;151;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;admin.;divorced;university.degree;no;yes;no;telephone;may;tue;376;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+28;services;married;high.school;no;yes;no;telephone;may;tue;485;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;admin.;married;university.degree;no;yes;no;telephone;may;tue;99;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;blue-collar;married;basic.9y;unknown;no;no;telephone;may;tue;210;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;admin.;married;unknown;no;no;no;telephone;may;tue;277;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;services;married;high.school;unknown;no;no;telephone;may;tue;326;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+29;services;single;professional.course;no;no;yes;telephone;may;tue;305;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;services;married;high.school;unknown;yes;yes;telephone;may;tue;320;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;management;married;basic.9y;no;yes;no;telephone;may;tue;298;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;technician;married;professional.course;no;no;no;telephone;may;tue;125;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+55;admin.;married;high.school;no;no;no;telephone;may;tue;219;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+28;blue-collar;single;basic.9y;no;no;no;telephone;may;tue;222;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+52;housemaid;married;basic.4y;no;no;no;telephone;may;tue;513;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;blue-collar;married;professional.course;no;yes;no;telephone;may;tue;321;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;services;married;high.school;unknown;no;no;telephone;may;tue;355;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+22;admin.;married;high.school;no;no;no;telephone;may;tue;240;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;entrepreneur;divorced;high.school;no;yes;no;telephone;may;tue;383;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;blue-collar;married;basic.9y;no;no;no;telephone;may;tue;301;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;self-employed;married;university.degree;no;no;no;telephone;may;tue;367;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;technician;married;professional.course;no;no;no;telephone;may;tue;179;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;blue-collar;single;high.school;no;no;yes;telephone;may;tue;160;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;technician;married;professional.course;no;yes;no;telephone;may;tue;177;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+29;admin.;married;high.school;no;yes;no;telephone;may;tue;181;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+50;services;married;basic.6y;no;no;no;telephone;may;tue;377;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;blue-collar;married;basic.6y;no;yes;no;telephone;may;tue;240;6;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;services;married;high.school;no;no;yes;telephone;may;tue;1590;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;blue-collar;married;basic.4y;no;yes;no;telephone;may;tue;125;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;management;single;university.degree;unknown;yes;no;telephone;may;tue;174;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+28;self-employed;single;university.degree;no;no;no;telephone;may;tue;518;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;blue-collar;single;high.school;no;no;no;telephone;may;tue;280;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;blue-collar;married;high.school;unknown;no;no;telephone;may;tue;269;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;services;single;high.school;no;yes;no;telephone;may;tue;394;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+52;management;married;professional.course;no;yes;yes;telephone;may;tue;280;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+58;admin.;married;basic.9y;unknown;no;no;telephone;may;tue;228;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+28;blue-collar;married;basic.6y;no;yes;no;telephone;may;tue;312;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+52;management;married;professional.course;no;yes;no;telephone;may;tue;709;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;yes
+45;blue-collar;divorced;basic.4y;no;no;no;telephone;may;tue;78;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;blue-collar;married;basic.9y;no;no;no;telephone;may;tue;33;6;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+28;blue-collar;single;basic.9y;no;yes;no;telephone;may;tue;212;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;blue-collar;married;basic.9y;unknown;no;yes;telephone;may;tue;107;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+48;blue-collar;married;high.school;unknown;yes;yes;telephone;may;tue;299;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;admin.;married;basic.9y;no;yes;no;telephone;may;tue;140;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;admin.;single;university.degree;no;no;no;telephone;may;tue;574;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;self-employed;divorced;high.school;no;no;no;telephone;may;tue;182;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;services;married;high.school;unknown;no;no;telephone;may;tue;318;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;management;married;basic.9y;no;yes;no;telephone;may;tue;68;9;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+59;entrepreneur;married;university.degree;unknown;yes;no;telephone;may;tue;217;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;blue-collar;married;basic.6y;unknown;yes;no;telephone;may;tue;211;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+60;retired;married;university.degree;unknown;yes;no;telephone;may;tue;245;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;admin.;single;university.degree;no;no;no;telephone;may;tue;363;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+50;services;married;high.school;no;yes;no;telephone;may;tue;347;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;services;married;high.school;no;yes;no;telephone;may;tue;392;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;services;married;high.school;no;yes;no;telephone;may;tue;137;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;technician;single;university.degree;no;yes;no;telephone;may;tue;749;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+28;services;married;high.school;no;no;no;telephone;may;tue;498;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;services;married;high.school;no;yes;no;telephone;may;tue;570;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+49;admin.;divorced;high.school;no;yes;no;telephone;may;tue;142;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;blue-collar;married;high.school;unknown;no;no;telephone;may;tue;172;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;blue-collar;married;professional.course;no;no;no;telephone;may;tue;64;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;unknown;married;basic.4y;unknown;yes;no;telephone;may;tue;267;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;retired;married;professional.course;no;no;no;telephone;may;tue;140;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;admin.;married;high.school;no;yes;no;telephone;may;tue;453;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;technician;single;professional.course;no;yes;no;telephone;may;tue;198;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+25;admin.;married;unknown;no;no;no;telephone;may;tue;389;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+54;technician;married;basic.4y;no;no;no;telephone;may;tue;120;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;services;married;high.school;unknown;yes;no;telephone;may;tue;146;8;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+49;blue-collar;married;basic.9y;unknown;no;no;telephone;may;tue;27;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;admin.;single;university.degree;no;yes;no;telephone;may;tue;40;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+53;technician;married;professional.course;no;yes;yes;telephone;may;tue;92;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+27;technician;single;professional.course;no;yes;no;telephone;may;tue;324;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+57;management;divorced;high.school;no;no;no;telephone;may;tue;436;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;blue-collar;married;basic.9y;no;no;no;telephone;may;tue;59;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;blue-collar;single;basic.4y;no;unknown;unknown;telephone;may;tue;100;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;admin.;married;high.school;no;yes;no;telephone;may;tue;0;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;blue-collar;married;basic.9y;no;yes;no;telephone;may;tue;93;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;blue-collar;single;high.school;no;no;no;telephone;may;tue;364;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+50;services;married;professional.course;unknown;no;yes;telephone;may;tue;111;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+28;services;single;high.school;no;yes;yes;telephone;may;tue;466;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+26;technician;married;professional.course;no;yes;no;telephone;may;tue;345;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;blue-collar;married;basic.6y;unknown;no;yes;telephone;may;tue;294;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+53;technician;married;unknown;no;yes;no;telephone;may;tue;241;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;admin.;divorced;basic.9y;no;no;no;telephone;may;tue;233;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+50;blue-collar;married;basic.9y;no;yes;no;telephone;may;tue;149;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;admin.;divorced;university.degree;no;yes;no;telephone;may;tue;304;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;blue-collar;married;high.school;no;yes;no;telephone;may;tue;134;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;blue-collar;married;basic.9y;no;yes;no;telephone;may;tue;355;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;technician;single;university.degree;no;yes;no;telephone;may;tue;953;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+58;retired;married;professional.course;unknown;no;no;telephone;may;tue;427;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;blue-collar;married;basic.9y;no;no;yes;telephone;may;tue;100;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+24;unemployed;single;university.degree;no;no;yes;telephone;may;tue;121;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+26;services;single;basic.9y;no;yes;yes;telephone;may;tue;22;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;entrepreneur;married;university.degree;unknown;no;no;telephone;may;tue;477;11;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;tue;30;8;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+52;technician;married;professional.course;unknown;yes;no;telephone;may;tue;160;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+52;admin.;divorced;university.degree;no;no;no;telephone;may;tue;136;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;blue-collar;married;professional.course;no;no;no;telephone;may;tue;305;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;blue-collar;married;basic.4y;unknown;no;no;telephone;may;tue;123;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+29;blue-collar;married;high.school;unknown;no;no;telephone;may;tue;103;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;technician;married;university.degree;no;yes;no;telephone;may;tue;8;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;unemployed;single;basic.4y;unknown;yes;no;telephone;may;tue;267;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;services;married;high.school;unknown;yes;no;telephone;may;tue;399;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;admin.;married;high.school;no;no;yes;telephone;may;tue;315;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;self-employed;married;basic.9y;no;no;no;telephone;may;tue;3094;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;yes
+29;technician;married;professional.course;no;no;no;telephone;may;tue;64;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;technician;single;professional.course;no;no;yes;telephone;may;tue;3;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+51;management;divorced;university.degree;no;no;no;telephone;may;tue;269;10;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+48;management;divorced;university.degree;no;yes;no;telephone;may;tue;159;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;admin.;single;high.school;unknown;yes;no;telephone;may;tue;182;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;blue-collar;single;basic.9y;no;yes;no;telephone;may;tue;185;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;technician;single;high.school;no;no;no;telephone;may;tue;359;6;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;blue-collar;married;basic.6y;no;no;yes;telephone;may;tue;89;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;admin.;married;unknown;no;yes;no;telephone;may;tue;220;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;blue-collar;married;basic.9y;no;no;yes;telephone;may;tue;179;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;self-employed;married;university.degree;no;yes;no;telephone;may;tue;151;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;blue-collar;married;basic.4y;unknown;unknown;unknown;telephone;may;tue;66;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+60;retired;divorced;basic.4y;unknown;yes;no;telephone;may;tue;135;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;services;married;high.school;no;no;no;telephone;may;tue;166;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;admin.;married;high.school;no;no;no;telephone;may;tue;132;6;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;admin.;married;university.degree;no;no;no;telephone;may;tue;141;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+57;management;single;basic.9y;no;yes;no;telephone;may;tue;265;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;blue-collar;married;basic.4y;unknown;no;no;telephone;may;tue;87;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+55;technician;married;basic.6y;no;yes;no;telephone;may;tue;452;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+48;admin.;divorced;high.school;no;no;no;telephone;may;tue;62;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;technician;married;professional.course;no;no;no;telephone;may;tue;348;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;technician;married;high.school;no;yes;no;telephone;may;tue;354;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;technician;married;professional.course;unknown;yes;no;telephone;may;tue;153;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;admin.;single;high.school;no;yes;no;telephone;may;tue;54;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;management;married;basic.6y;unknown;yes;no;telephone;may;tue;89;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;technician;married;professional.course;no;yes;no;telephone;may;tue;132;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;blue-collar;married;basic.4y;unknown;no;no;telephone;may;tue;580;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;admin.;married;university.degree;unknown;yes;no;telephone;may;tue;99;6;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;admin.;married;basic.9y;no;no;no;telephone;may;tue;34;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;admin.;divorced;high.school;no;no;no;telephone;may;tue;72;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;management;married;university.degree;no;yes;no;telephone;may;tue;99;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+53;housemaid;married;basic.6y;no;unknown;unknown;telephone;may;tue;175;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+57;entrepreneur;married;university.degree;no;yes;no;telephone;may;tue;290;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+55;retired;married;high.school;no;yes;no;telephone;may;tue;591;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+52;blue-collar;married;basic.4y;no;yes;no;telephone;may;tue;336;10;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;blue-collar;divorced;basic.9y;no;no;no;telephone;may;tue;29;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;admin.;single;university.degree;no;no;no;telephone;may;tue;266;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;admin.;married;unknown;no;no;no;telephone;may;tue;45;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;blue-collar;married;basic.9y;no;no;no;telephone;may;tue;298;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;admin.;married;high.school;no;no;no;telephone;may;tue;1043;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;admin.;married;university.degree;no;yes;no;telephone;may;tue;83;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+24;blue-collar;single;basic.9y;no;no;no;telephone;may;tue;282;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;blue-collar;single;high.school;no;no;yes;telephone;may;tue;209;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;blue-collar;married;basic.4y;no;yes;no;telephone;may;tue;106;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+25;entrepreneur;single;high.school;no;yes;no;telephone;may;tue;157;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;management;divorced;university.degree;no;yes;no;telephone;may;tue;197;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;unknown;married;basic.4y;unknown;no;no;telephone;may;tue;257;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;admin.;married;university.degree;unknown;no;no;telephone;may;tue;42;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;admin.;single;university.degree;no;yes;no;telephone;may;tue;319;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+28;management;married;university.degree;no;no;no;telephone;may;tue;371;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;blue-collar;married;basic.6y;no;yes;no;telephone;may;tue;383;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;admin.;divorced;high.school;no;yes;no;telephone;may;tue;110;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+48;blue-collar;divorced;basic.4y;unknown;no;no;telephone;may;tue;88;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;admin.;married;basic.9y;no;no;no;telephone;may;tue;97;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;blue-collar;married;basic.9y;unknown;no;no;telephone;may;tue;335;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;management;married;university.degree;no;no;no;telephone;may;tue;15;10;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+28;self-employed;single;basic.9y;no;yes;no;telephone;may;tue;4;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+55;admin.;married;high.school;unknown;no;no;telephone;may;tue;5;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+50;admin.;married;high.school;unknown;no;no;telephone;may;tue;178;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;entrepreneur;married;basic.6y;no;yes;no;telephone;may;tue;256;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;technician;married;professional.course;unknown;yes;no;telephone;may;tue;284;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;technician;married;professional.course;unknown;yes;no;telephone;may;tue;264;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;blue-collar;single;high.school;no;yes;no;telephone;may;tue;124;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;admin.;married;university.degree;no;yes;yes;telephone;may;tue;239;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+50;admin.;married;high.school;no;yes;no;telephone;may;tue;20;19;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;tue;15;13;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+50;services;single;basic.4y;no;yes;no;telephone;may;tue;98;9;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+24;blue-collar;single;basic.9y;no;yes;no;telephone;may;tue;112;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;technician;married;professional.course;no;yes;no;telephone;may;tue;350;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+56;technician;married;university.degree;unknown;yes;no;telephone;may;tue;240;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;unemployed;single;university.degree;no;yes;no;telephone;may;tue;127;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;admin.;married;high.school;no;no;no;telephone;may;tue;157;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;blue-collar;married;unknown;no;no;no;telephone;may;tue;337;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;housemaid;single;basic.4y;unknown;yes;no;telephone;may;tue;662;7;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;tue;124;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;admin.;married;basic.9y;no;yes;no;telephone;may;tue;165;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;services;married;university.degree;no;yes;no;telephone;may;tue;63;9;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+50;admin.;single;university.degree;no;no;no;telephone;may;tue;101;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;blue-collar;married;basic.6y;no;yes;no;telephone;may;tue;133;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+52;services;married;high.school;no;no;no;telephone;may;tue;145;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+28;admin.;single;high.school;no;no;no;telephone;may;tue;110;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;blue-collar;married;basic.6y;unknown;no;no;telephone;may;tue;858;6;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;yes
+38;unemployed;divorced;high.school;no;no;no;telephone;may;tue;349;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+54;retired;married;basic.9y;unknown;no;no;telephone;may;tue;371;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+51;technician;married;basic.9y;no;yes;no;telephone;may;tue;676;6;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+29;admin.;married;basic.9y;no;yes;no;telephone;may;tue;197;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;admin.;married;university.degree;no;no;no;telephone;may;tue;235;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+57;retired;married;unknown;unknown;no;no;telephone;may;tue;205;8;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;technician;single;university.degree;no;yes;no;telephone;may;tue;291;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;services;married;high.school;no;no;no;telephone;may;tue;132;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+29;housemaid;married;university.degree;no;no;no;telephone;may;tue;165;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+56;admin.;divorced;high.school;no;yes;no;telephone;may;tue;196;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;services;married;high.school;no;no;no;telephone;may;tue;177;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;tue;547;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;services;single;high.school;unknown;yes;no;telephone;may;tue;62;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+50;self-employed;unknown;basic.6y;no;no;no;telephone;may;tue;398;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+52;management;divorced;university.degree;no;yes;no;telephone;may;tue;342;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;services;married;high.school;unknown;no;no;telephone;may;tue;198;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;entrepreneur;single;high.school;no;no;no;telephone;may;tue;77;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;admin.;married;university.degree;no;no;no;telephone;may;tue;160;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;admin.;single;professional.course;unknown;yes;no;telephone;may;tue;352;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;blue-collar;married;unknown;no;yes;no;telephone;may;tue;112;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+52;self-employed;married;basic.9y;unknown;yes;no;telephone;may;tue;90;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+53;services;divorced;university.degree;no;yes;no;telephone;may;tue;22;16;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+25;technician;single;university.degree;no;unknown;unknown;telephone;may;tue;230;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+27;admin.;divorced;high.school;no;yes;no;telephone;may;tue;206;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;services;married;university.degree;no;no;no;telephone;may;tue;143;8;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+29;blue-collar;married;high.school;no;yes;no;telephone;may;tue;102;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;blue-collar;married;basic.9y;no;no;no;telephone;may;tue;224;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;technician;married;professional.course;no;no;no;telephone;may;tue;73;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+28;admin.;single;high.school;no;yes;no;telephone;may;tue;42;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;blue-collar;married;high.school;unknown;no;no;telephone;may;tue;43;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+53;entrepreneur;single;basic.9y;no;no;no;telephone;may;tue;144;7;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;blue-collar;married;basic.9y;no;no;no;telephone;may;tue;1224;8;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;blue-collar;married;basic.6y;unknown;yes;no;telephone;may;tue;306;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+29;services;divorced;high.school;no;yes;no;telephone;may;tue;50;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;blue-collar;married;basic.9y;no;yes;no;telephone;may;tue;132;8;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;blue-collar;married;high.school;no;no;yes;telephone;may;tue;108;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;admin.;single;professional.course;no;no;no;telephone;may;tue;265;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+54;retired;married;basic.4y;unknown;no;no;telephone;may;tue;107;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+59;retired;divorced;basic.4y;no;no;no;telephone;may;tue;167;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+26;blue-collar;single;basic.9y;no;yes;no;telephone;may;tue;145;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+50;admin.;married;university.degree;no;no;yes;telephone;may;tue;20;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+48;admin.;single;basic.6y;unknown;yes;no;telephone;may;tue;141;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;management;married;university.degree;unknown;yes;no;telephone;may;tue;346;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;services;single;basic.9y;unknown;yes;yes;telephone;may;tue;1168;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;unknown;married;unknown;unknown;no;no;telephone;may;wed;17;13;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+29;blue-collar;single;high.school;unknown;yes;no;telephone;may;wed;74;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+51;retired;married;professional.course;no;yes;yes;telephone;may;wed;78;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;housemaid;married;basic.4y;unknown;no;no;telephone;may;wed;125;12;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+25;technician;married;high.school;no;yes;no;telephone;may;wed;153;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;admin.;married;high.school;unknown;yes;no;telephone;may;wed;61;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;admin.;divorced;university.degree;unknown;yes;no;telephone;may;wed;318;6;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;wed;228;9;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;services;single;high.school;unknown;no;no;telephone;may;wed;189;7;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+29;services;married;high.school;no;yes;no;telephone;may;wed;121;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;services;married;high.school;no;no;no;telephone;may;wed;110;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+50;management;single;university.degree;no;unknown;unknown;telephone;may;wed;372;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;wed;223;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+49;services;divorced;high.school;no;no;no;telephone;may;wed;117;6;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;blue-collar;single;basic.4y;unknown;unknown;unknown;telephone;may;wed;64;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+56;services;married;high.school;unknown;no;no;telephone;may;wed;507;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;services;divorced;high.school;no;no;no;telephone;may;wed;201;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;admin.;married;university.degree;unknown;no;no;telephone;may;wed;91;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;management;married;university.degree;no;yes;no;telephone;may;wed;230;8;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+53;unknown;married;high.school;unknown;no;no;telephone;may;wed;249;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;technician;single;high.school;no;no;no;telephone;may;wed;152;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;technician;single;university.degree;unknown;no;no;telephone;may;wed;551;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;admin.;married;high.school;no;no;no;telephone;may;wed;215;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;technician;single;high.school;unknown;yes;no;telephone;may;wed;617;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;blue-collar;single;high.school;no;no;no;telephone;may;wed;332;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+29;admin.;single;basic.9y;unknown;yes;no;telephone;may;wed;198;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+52;admin.;divorced;university.degree;no;yes;no;telephone;may;wed;938;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;yes
+47;admin.;married;university.degree;no;yes;no;telephone;may;wed;385;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;admin.;married;unknown;no;no;no;telephone;may;wed;181;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;blue-collar;divorced;basic.9y;no;yes;no;telephone;may;wed;193;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;admin.;single;high.school;no;yes;no;telephone;may;wed;195;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;wed;254;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;management;divorced;basic.6y;no;no;no;telephone;may;wed;198;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;blue-collar;married;basic.9y;no;no;no;telephone;may;wed;79;6;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;blue-collar;divorced;basic.9y;no;no;no;telephone;may;wed;95;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;technician;single;university.degree;no;no;yes;telephone;may;wed;130;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;technician;married;basic.6y;no;yes;no;telephone;may;wed;190;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;blue-collar;divorced;basic.9y;unknown;no;no;telephone;may;wed;454;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+49;blue-collar;married;basic.9y;no;yes;no;telephone;may;wed;102;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;wed;185;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;management;single;university.degree;no;no;no;telephone;may;wed;231;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;blue-collar;single;basic.9y;unknown;yes;no;telephone;may;wed;189;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;housemaid;married;high.school;no;no;no;telephone;may;wed;132;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+52;services;divorced;high.school;unknown;yes;no;telephone;may;wed;103;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;technician;single;professional.course;unknown;no;no;telephone;may;wed;114;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+52;entrepreneur;married;basic.9y;unknown;yes;no;telephone;may;wed;176;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;blue-collar;divorced;basic.4y;no;yes;yes;telephone;may;wed;738;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+57;admin.;divorced;basic.9y;no;no;no;telephone;may;wed;283;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+57;management;divorced;high.school;no;yes;no;telephone;may;wed;224;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;blue-collar;divorced;basic.4y;no;no;no;telephone;may;wed;519;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;admin.;single;high.school;no;yes;no;telephone;may;wed;593;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;admin.;divorced;university.degree;no;unknown;unknown;telephone;may;wed;128;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;blue-collar;single;professional.course;unknown;no;no;telephone;may;wed;480;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;self-employed;married;basic.4y;unknown;yes;no;telephone;may;wed;177;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;services;married;high.school;no;no;no;telephone;may;wed;102;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+50;services;married;high.school;no;yes;no;telephone;may;wed;49;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+56;retired;married;basic.4y;no;no;no;telephone;may;wed;88;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;blue-collar;married;basic.6y;no;no;no;telephone;may;wed;124;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+56;retired;married;university.degree;no;yes;no;telephone;may;wed;199;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;blue-collar;single;basic.9y;unknown;no;no;telephone;may;wed;576;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;yes
+49;blue-collar;single;basic.4y;no;yes;no;telephone;may;wed;58;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;admin.;single;high.school;unknown;no;no;telephone;may;wed;261;6;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;entrepreneur;single;basic.4y;no;no;no;telephone;may;wed;430;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;admin.;single;university.degree;no;no;no;telephone;may;wed;674;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;blue-collar;single;basic.9y;no;yes;no;telephone;may;wed;112;7;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+53;technician;married;professional.course;no;yes;no;telephone;may;wed;248;6;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;admin.;married;high.school;no;no;no;telephone;may;wed;350;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;technician;single;university.degree;no;yes;no;telephone;may;wed;252;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;services;married;high.school;no;no;no;telephone;may;wed;147;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;blue-collar;married;basic.9y;no;yes;no;telephone;may;wed;141;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;blue-collar;married;basic.6y;unknown;yes;no;telephone;may;wed;256;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;blue-collar;married;basic.6y;no;no;no;telephone;may;wed;163;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;blue-collar;married;basic.4y;unknown;yes;yes;telephone;may;wed;125;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;technician;married;professional.course;no;yes;yes;telephone;may;wed;195;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+53;blue-collar;married;basic.9y;no;yes;no;telephone;may;wed;61;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;admin.;divorced;university.degree;no;yes;no;telephone;may;wed;95;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;blue-collar;married;basic.9y;no;yes;no;telephone;may;wed;166;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;blue-collar;married;basic.6y;no;no;no;telephone;may;wed;39;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;services;married;basic.9y;unknown;yes;no;telephone;may;wed;861;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;blue-collar;single;high.school;no;yes;no;telephone;may;wed;212;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;services;married;high.school;no;yes;no;telephone;may;wed;55;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+59;technician;divorced;professional.course;no;no;no;telephone;may;wed;209;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;technician;married;basic.9y;no;no;no;telephone;may;wed;68;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+59;housemaid;married;basic.4y;no;yes;no;telephone;may;wed;181;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;management;married;professional.course;no;yes;yes;telephone;may;wed;136;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+60;technician;divorced;professional.course;unknown;no;no;telephone;may;wed;390;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;management;married;professional.course;no;no;no;telephone;may;wed;373;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;blue-collar;divorced;basic.4y;unknown;no;no;telephone;may;wed;44;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+59;retired;married;basic.4y;unknown;yes;yes;telephone;may;wed;571;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+25;self-employed;single;university.degree;no;no;no;telephone;may;wed;199;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+27;admin.;single;university.degree;no;yes;no;telephone;may;wed;582;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;blue-collar;single;basic.9y;no;no;no;telephone;may;wed;210;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;technician;married;university.degree;no;no;no;telephone;may;wed;222;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;technician;married;university.degree;no;no;yes;telephone;may;wed;217;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;self-employed;married;university.degree;no;yes;yes;telephone;may;wed;85;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;technician;married;university.degree;no;yes;no;telephone;may;wed;396;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;technician;single;professional.course;no;no;no;telephone;may;wed;58;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;management;married;high.school;no;no;no;telephone;may;wed;263;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+26;admin.;single;high.school;no;no;no;telephone;may;wed;160;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;blue-collar;married;professional.course;unknown;yes;no;telephone;may;wed;94;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+58;unknown;married;basic.4y;no;yes;no;telephone;may;wed;210;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+26;blue-collar;single;high.school;no;yes;no;telephone;may;wed;418;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;blue-collar;divorced;basic.9y;no;yes;no;telephone;may;wed;64;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;entrepreneur;divorced;high.school;no;yes;no;telephone;may;wed;181;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;self-employed;single;university.degree;unknown;yes;no;telephone;may;wed;140;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;services;married;high.school;unknown;yes;no;telephone;may;wed;171;6;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;technician;single;professional.course;no;no;no;telephone;may;wed;223;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;admin.;single;university.degree;no;no;no;telephone;may;wed;204;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+56;technician;married;basic.9y;no;yes;no;telephone;may;wed;52;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;admin.;single;high.school;no;yes;no;telephone;may;wed;199;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;admin.;single;high.school;no;no;yes;telephone;may;wed;195;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;admin.;married;high.school;no;no;yes;telephone;may;wed;139;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;admin.;divorced;university.degree;no;no;no;telephone;may;wed;63;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+57;blue-collar;divorced;basic.9y;no;yes;no;telephone;may;wed;543;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;yes
+45;blue-collar;married;basic.4y;unknown;no;no;telephone;may;wed;154;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;services;married;high.school;no;no;no;telephone;may;wed;226;10;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;technician;single;university.degree;no;no;no;telephone;may;wed;141;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;blue-collar;single;university.degree;no;yes;yes;telephone;may;wed;165;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;blue-collar;single;university.degree;no;no;no;telephone;may;wed;156;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+52;admin.;married;high.school;unknown;yes;no;telephone;may;wed;99;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;services;married;high.school;unknown;no;no;telephone;may;wed;297;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;unemployed;married;basic.9y;no;no;no;telephone;may;wed;174;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;admin.;single;university.degree;unknown;yes;yes;telephone;may;wed;62;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;technician;divorced;basic.9y;no;no;no;telephone;may;wed;221;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;blue-collar;married;basic.9y;no;yes;yes;telephone;may;wed;1479;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;yes
+29;technician;married;university.degree;no;no;no;telephone;may;wed;104;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;admin.;married;basic.9y;no;yes;no;telephone;may;wed;136;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;wed;21;21;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+51;admin.;divorced;university.degree;no;yes;no;telephone;may;wed;72;18;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;blue-collar;single;high.school;no;yes;no;telephone;may;wed;125;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;admin.;married;high.school;no;no;no;telephone;may;wed;307;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;admin.;married;university.degree;no;yes;yes;telephone;may;wed;154;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;admin.;married;high.school;no;no;yes;telephone;may;wed;357;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;blue-collar;married;professional.course;unknown;yes;yes;telephone;may;wed;236;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;blue-collar;single;high.school;no;yes;no;telephone;may;wed;202;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;admin.;married;high.school;no;no;no;telephone;may;wed;227;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;blue-collar;divorced;basic.9y;no;yes;no;telephone;may;wed;166;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;admin.;married;university.degree;no;yes;yes;telephone;may;wed;143;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;services;married;high.school;no;yes;no;telephone;may;wed;119;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;services;single;high.school;no;yes;no;telephone;may;wed;268;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+48;admin.;divorced;high.school;no;yes;no;telephone;may;wed;507;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+25;management;single;university.degree;no;yes;no;telephone;may;wed;126;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;self-employed;married;professional.course;no;yes;yes;telephone;may;wed;268;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+27;services;single;high.school;no;yes;no;telephone;may;wed;386;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;blue-collar;married;basic.6y;unknown;no;no;telephone;may;wed;313;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;services;married;high.school;no;no;no;telephone;may;wed;63;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;services;married;basic.9y;unknown;yes;no;telephone;may;wed;87;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;blue-collar;single;basic.9y;no;yes;no;telephone;may;wed;75;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;blue-collar;married;basic.4y;no;no;no;telephone;may;wed;89;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;technician;married;professional.course;no;no;yes;telephone;may;wed;96;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;blue-collar;married;basic.9y;no;yes;no;telephone;may;wed;209;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;blue-collar;married;basic.6y;unknown;no;no;telephone;may;wed;181;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;admin.;married;high.school;unknown;no;no;telephone;may;wed;173;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;blue-collar;married;basic.6y;no;no;no;telephone;may;wed;439;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+28;self-employed;married;professional.course;no;yes;no;telephone;may;wed;119;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+29;admin.;single;university.degree;no;yes;no;telephone;may;wed;713;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;technician;single;high.school;no;yes;no;telephone;may;wed;202;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;admin.;married;professional.course;no;yes;yes;telephone;may;wed;72;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;admin.;single;high.school;no;yes;no;telephone;may;wed;78;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+27;blue-collar;married;basic.9y;no;no;yes;telephone;may;wed;217;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+27;blue-collar;married;basic.9y;no;no;no;telephone;may;wed;392;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;technician;divorced;basic.9y;no;yes;no;telephone;may;wed;188;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;services;married;high.school;unknown;no;no;telephone;may;wed;130;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;blue-collar;married;basic.4y;no;yes;no;telephone;may;wed;151;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;blue-collar;single;basic.9y;no;no;no;telephone;may;wed;211;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;blue-collar;single;high.school;no;no;no;telephone;may;wed;249;11;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+56;technician;married;basic.4y;unknown;no;yes;telephone;may;wed;1210;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+49;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;wed;27;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+20;entrepreneur;single;high.school;no;no;yes;telephone;may;wed;680;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+53;technician;divorced;university.degree;no;yes;no;telephone;may;wed;206;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;blue-collar;single;basic.9y;no;no;yes;telephone;may;wed;227;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;blue-collar;married;basic.6y;no;no;no;telephone;may;wed;124;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+50;housemaid;married;basic.9y;unknown;unknown;unknown;telephone;may;wed;66;7;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;services;married;basic.9y;no;yes;no;telephone;may;wed;821;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;services;divorced;basic.9y;no;yes;no;telephone;may;wed;189;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+53;technician;divorced;university.degree;no;yes;no;telephone;may;wed;352;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;admin.;single;university.degree;no;yes;no;telephone;may;wed;126;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;blue-collar;single;basic.4y;unknown;no;no;telephone;may;wed;565;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;admin.;married;university.degree;no;yes;no;telephone;may;wed;615;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;yes
+56;blue-collar;married;basic.9y;unknown;no;no;telephone;may;wed;167;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;admin.;married;high.school;no;no;no;telephone;may;wed;211;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;admin.;single;high.school;no;yes;no;telephone;may;wed;742;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;blue-collar;married;basic.6y;no;yes;no;telephone;may;wed;134;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;wed;615;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+29;admin.;single;high.school;no;yes;no;telephone;may;wed;143;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+55;admin.;married;high.school;no;yes;no;telephone;may;wed;497;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;admin.;single;university.degree;no;yes;no;telephone;may;wed;105;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;housemaid;married;basic.4y;unknown;yes;yes;telephone;may;wed;213;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;technician;single;university.degree;no;yes;no;telephone;may;wed;294;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;blue-collar;married;basic.6y;no;yes;no;telephone;may;wed;289;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+28;admin.;married;basic.6y;no;no;no;telephone;may;wed;461;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;admin.;married;university.degree;no;no;no;telephone;may;wed;162;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;blue-collar;single;basic.9y;no;no;no;telephone;may;wed;207;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+27;blue-collar;single;basic.9y;no;yes;no;telephone;may;wed;185;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;technician;married;university.degree;unknown;no;no;telephone;may;wed;399;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;entrepreneur;married;high.school;no;yes;no;telephone;may;wed;67;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;blue-collar;married;unknown;no;no;no;telephone;may;wed;85;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;services;single;high.school;unknown;yes;no;telephone;may;wed;317;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+50;services;married;basic.4y;unknown;yes;no;telephone;may;wed;507;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;yes
+33;blue-collar;married;basic.6y;no;no;no;telephone;may;wed;1183;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;yes
+55;retired;married;high.school;no;no;no;telephone;may;wed;302;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;management;married;basic.9y;no;yes;yes;telephone;may;wed;344;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+25;entrepreneur;single;university.degree;no;yes;no;telephone;may;wed;8;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;wed;489;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+49;housemaid;married;basic.4y;unknown;no;no;telephone;may;wed;328;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+27;technician;married;high.school;no;no;no;telephone;may;wed;201;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+50;management;married;university.degree;no;yes;no;telephone;may;wed;117;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+48;entrepreneur;married;university.degree;no;no;no;telephone;may;wed;226;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;entrepreneur;married;high.school;no;no;no;telephone;may;wed;97;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;technician;single;high.school;no;no;no;telephone;may;wed;438;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;blue-collar;married;basic.6y;no;no;no;telephone;may;wed;174;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+49;management;divorced;university.degree;no;no;no;telephone;may;wed;675;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;blue-collar;married;basic.9y;no;no;no;telephone;may;wed;123;18;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;blue-collar;married;basic.9y;unknown;no;no;telephone;may;wed;257;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;technician;married;university.degree;unknown;no;no;telephone;may;wed;266;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;blue-collar;married;basic.9y;unknown;unknown;unknown;telephone;may;wed;195;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;management;single;university.degree;no;yes;no;telephone;may;wed;145;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;entrepreneur;single;basic.9y;no;no;no;telephone;may;wed;232;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;retired;married;professional.course;no;no;no;telephone;may;wed;97;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+56;retired;married;basic.6y;no;yes;no;telephone;may;wed;91;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;management;married;university.degree;no;no;no;telephone;may;wed;83;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;admin.;married;professional.course;no;no;no;telephone;may;wed;314;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+25;unemployed;single;high.school;unknown;no;no;telephone;may;wed;694;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;yes
+35;blue-collar;married;unknown;no;no;no;telephone;may;wed;146;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+25;blue-collar;married;basic.9y;no;no;no;telephone;may;wed;149;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+27;admin.;single;unknown;no;yes;no;telephone;may;wed;591;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+57;housemaid;divorced;basic.4y;unknown;yes;no;telephone;may;wed;288;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;blue-collar;married;basic.4y;unknown;no;no;telephone;may;wed;36;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+49;services;married;high.school;unknown;yes;no;telephone;may;wed;191;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;blue-collar;married;unknown;no;no;no;telephone;may;wed;97;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;blue-collar;married;basic.6y;no;yes;no;telephone;may;wed;71;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+48;admin.;single;high.school;no;yes;no;telephone;may;wed;275;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;technician;single;university.degree;unknown;no;no;telephone;may;wed;187;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;technician;married;university.degree;no;yes;no;telephone;may;wed;170;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+49;retired;married;basic.4y;no;no;no;telephone;may;wed;177;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+50;blue-collar;married;basic.6y;unknown;no;no;telephone;may;wed;251;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;services;married;basic.4y;no;no;no;telephone;may;wed;152;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;blue-collar;married;basic.6y;unknown;no;no;telephone;may;wed;463;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+48;retired;married;basic.4y;no;no;no;telephone;may;wed;157;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+55;admin.;divorced;university.degree;no;yes;no;telephone;may;wed;74;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+27;blue-collar;single;basic.4y;unknown;no;yes;telephone;may;wed;179;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+54;technician;married;professional.course;no;no;no;telephone;may;wed;796;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;yes
+38;blue-collar;married;basic.9y;no;yes;no;telephone;may;wed;160;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;admin.;married;high.school;no;no;no;telephone;may;wed;272;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;blue-collar;married;basic.4y;unknown;no;no;telephone;may;wed;296;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;technician;married;university.degree;no;no;yes;telephone;may;wed;125;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;technician;married;high.school;no;no;no;telephone;may;wed;81;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;technician;single;high.school;no;no;no;telephone;may;wed;189;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;blue-collar;married;basic.9y;no;yes;no;telephone;may;wed;597;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;blue-collar;married;basic.9y;no;no;no;telephone;may;wed;61;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;services;single;basic.9y;no;no;no;telephone;may;wed;53;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;blue-collar;married;basic.4y;no;yes;no;telephone;may;wed;159;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+27;blue-collar;married;basic.9y;no;no;no;telephone;may;wed;198;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+54;admin.;married;high.school;no;unknown;unknown;telephone;may;wed;45;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;admin.;single;high.school;no;yes;no;telephone;may;wed;132;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;admin.;married;university.degree;no;no;no;telephone;may;wed;664;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;yes
+45;services;married;high.school;unknown;no;no;telephone;may;wed;290;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;technician;married;professional.course;unknown;yes;yes;telephone;may;wed;184;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;unemployed;single;basic.4y;unknown;yes;no;telephone;may;wed;51;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+55;admin.;married;basic.9y;no;no;no;telephone;may;wed;119;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;services;married;basic.6y;unknown;yes;no;telephone;may;wed;260;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+51;entrepreneur;married;basic.9y;no;no;yes;telephone;may;wed;68;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+29;management;single;university.degree;no;no;no;telephone;may;wed;99;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;blue-collar;single;basic.9y;no;no;no;telephone;may;wed;285;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;blue-collar;married;professional.course;no;no;no;telephone;may;wed;247;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;blue-collar;married;basic.9y;no;no;no;telephone;may;wed;81;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;admin.;married;basic.9y;unknown;no;no;telephone;may;wed;244;6;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+52;services;married;unknown;unknown;no;no;telephone;may;wed;227;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+49;management;divorced;university.degree;unknown;no;yes;telephone;may;wed;289;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;housemaid;married;basic.4y;unknown;no;no;telephone;may;wed;183;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+29;services;married;high.school;unknown;no;no;telephone;may;wed;100;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;management;married;basic.6y;no;yes;no;telephone;may;wed;648;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;yes
+42;retired;married;basic.9y;unknown;yes;no;telephone;may;wed;198;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;housemaid;married;university.degree;no;yes;no;telephone;may;wed;536;7;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;admin.;married;basic.9y;no;yes;no;telephone;may;wed;173;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;services;divorced;professional.course;unknown;no;no;telephone;may;wed;184;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;management;married;basic.9y;unknown;no;no;telephone;may;wed;282;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;technician;single;university.degree;no;yes;no;telephone;may;wed;269;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;admin.;single;high.school;no;no;yes;telephone;may;wed;176;6;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;management;married;basic.6y;unknown;no;no;telephone;may;wed;347;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;technician;married;basic.9y;no;yes;no;telephone;may;wed;88;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;blue-collar;married;basic.6y;no;yes;no;telephone;may;wed;279;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;services;divorced;professional.course;no;yes;yes;telephone;may;wed;294;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;blue-collar;single;basic.9y;unknown;no;no;telephone;may;wed;188;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;blue-collar;married;basic.4y;no;yes;no;telephone;may;wed;116;6;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;admin.;married;basic.6y;unknown;no;no;telephone;may;wed;60;6;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+55;retired;divorced;professional.course;no;no;yes;telephone;may;wed;217;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+29;blue-collar;single;professional.course;no;no;no;telephone;may;wed;298;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+53;technician;married;professional.course;unknown;no;no;telephone;may;wed;864;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;yes
+31;admin.;married;high.school;no;no;no;telephone;may;wed;469;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+59;retired;divorced;basic.9y;unknown;no;yes;telephone;may;wed;139;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;technician;divorced;unknown;no;no;no;telephone;may;wed;80;9;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;admin.;married;high.school;no;yes;no;telephone;may;wed;67;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;blue-collar;married;basic.9y;unknown;no;no;telephone;may;wed;129;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;technician;married;professional.course;no;no;no;telephone;may;wed;89;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;admin.;divorced;university.degree;unknown;no;no;telephone;may;wed;346;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+27;blue-collar;married;basic.6y;unknown;no;no;telephone;may;wed;47;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;admin.;single;university.degree;no;no;no;telephone;may;wed;244;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;blue-collar;married;basic.4y;no;no;no;telephone;may;wed;136;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;admin.;single;university.degree;no;no;no;telephone;may;wed;110;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;blue-collar;divorced;basic.4y;no;yes;yes;telephone;may;wed;433;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+24;services;married;high.school;no;yes;no;telephone;may;wed;66;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+55;unemployed;married;basic.4y;unknown;yes;no;telephone;may;wed;140;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+49;blue-collar;married;basic.4y;no;yes;no;telephone;may;wed;89;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;services;married;high.school;no;yes;no;telephone;may;wed;54;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;blue-collar;married;basic.9y;no;yes;no;telephone;may;wed;172;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+28;services;single;high.school;no;no;no;telephone;may;wed;72;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+50;technician;married;professional.course;unknown;yes;yes;telephone;may;wed;124;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+27;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;wed;118;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;blue-collar;married;basic.4y;no;yes;no;telephone;may;wed;24;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+52;blue-collar;single;basic.4y;no;unknown;unknown;telephone;may;wed;489;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;admin.;married;high.school;no;no;no;telephone;may;wed;357;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;admin.;single;high.school;no;no;no;telephone;may;wed;84;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;services;married;high.school;no;no;no;telephone;may;wed;239;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+27;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;wed;466;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+50;management;married;university.degree;no;yes;no;telephone;may;wed;383;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+27;management;single;university.degree;no;no;yes;telephone;may;wed;413;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;services;single;basic.6y;unknown;yes;no;telephone;may;wed;101;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+49;blue-collar;married;basic.4y;unknown;no;no;telephone;may;wed;344;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+51;unemployed;married;basic.9y;unknown;yes;no;telephone;may;wed;360;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;blue-collar;married;basic.9y;unknown;no;no;telephone;may;wed;79;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+58;retired;divorced;university.degree;no;yes;no;telephone;may;wed;314;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;admin.;divorced;university.degree;no;no;no;telephone;may;wed;315;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+53;technician;married;professional.course;unknown;yes;yes;telephone;may;wed;117;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;blue-collar;divorced;basic.6y;no;no;no;telephone;may;wed;229;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;retired;married;basic.4y;no;no;no;telephone;may;wed;94;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;services;married;unknown;no;yes;yes;telephone;may;wed;83;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;admin.;married;university.degree;no;yes;yes;telephone;may;wed;338;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;services;single;high.school;unknown;no;no;telephone;may;wed;491;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;blue-collar;married;basic.9y;unknown;no;no;telephone;may;wed;167;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;wed;258;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+54;retired;married;basic.4y;unknown;no;no;telephone;may;wed;1730;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;yes
+31;unemployed;single;professional.course;no;no;no;telephone;may;wed;83;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;blue-collar;married;basic.4y;no;no;no;telephone;may;wed;193;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;admin.;married;high.school;no;no;no;telephone;may;wed;249;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;admin.;married;high.school;no;no;no;telephone;may;wed;629;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;technician;married;professional.course;unknown;yes;no;telephone;may;wed;260;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;blue-collar;single;basic.9y;no;no;yes;telephone;may;wed;202;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;blue-collar;married;high.school;no;no;no;telephone;may;wed;471;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+25;self-employed;single;university.degree;no;no;no;telephone;may;wed;217;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+56;services;married;basic.9y;unknown;no;no;telephone;may;wed;300;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+29;services;married;basic.9y;no;yes;no;telephone;may;wed;94;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+28;services;single;high.school;no;no;no;telephone;may;wed;397;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;entrepreneur;married;high.school;no;no;no;telephone;may;wed;157;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;housemaid;married;basic.4y;no;yes;no;telephone;may;wed;238;8;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;blue-collar;married;basic.9y;no;no;no;telephone;may;wed;389;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+49;blue-collar;married;basic.9y;unknown;no;yes;telephone;may;wed;667;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+28;management;single;university.degree;no;no;no;telephone;may;wed;376;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;technician;single;university.degree;no;no;no;telephone;may;wed;23;16;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;services;married;high.school;unknown;yes;no;telephone;may;wed;133;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;services;married;basic.9y;no;yes;no;telephone;may;wed;251;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;blue-collar;married;basic.6y;no;yes;no;telephone;may;wed;115;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;blue-collar;divorced;professional.course;no;unknown;unknown;telephone;may;wed;209;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;services;single;basic.9y;unknown;yes;yes;telephone;may;wed;124;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;admin.;married;university.degree;unknown;no;no;telephone;may;wed;96;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;management;single;university.degree;no;no;yes;telephone;may;wed;691;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;yes
+38;housemaid;married;basic.6y;unknown;yes;yes;telephone;may;wed;87;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+53;entrepreneur;married;unknown;no;yes;no;telephone;may;wed;126;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+28;blue-collar;single;basic.9y;no;no;no;telephone;may;wed;259;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;blue-collar;married;basic.9y;no;no;no;telephone;may;wed;330;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;technician;married;university.degree;no;no;no;telephone;may;wed;198;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+59;entrepreneur;married;basic.9y;no;yes;yes;telephone;may;wed;429;10;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;blue-collar;married;basic.4y;unknown;no;no;telephone;may;wed;545;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;blue-collar;married;high.school;unknown;yes;no;telephone;may;wed;44;7;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+28;admin.;single;unknown;no;yes;no;telephone;may;wed;279;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;services;married;high.school;unknown;no;no;telephone;may;wed;136;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+55;technician;married;professional.course;unknown;no;no;telephone;may;wed;48;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;blue-collar;married;basic.4y;unknown;no;yes;telephone;may;wed;449;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;admin.;single;university.degree;no;no;no;telephone;may;wed;362;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;technician;single;basic.9y;no;yes;no;telephone;may;wed;99;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;technician;single;professional.course;no;yes;no;telephone;may;wed;207;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;technician;married;university.degree;no;no;no;telephone;may;wed;297;14;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+25;blue-collar;married;basic.9y;no;yes;no;telephone;may;wed;172;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+49;housemaid;married;basic.4y;unknown;yes;no;telephone;may;wed;158;10;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+51;blue-collar;divorced;basic.4y;no;yes;no;telephone;may;wed;180;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+49;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;wed;410;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;entrepreneur;married;high.school;no;yes;no;telephone;may;wed;57;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;admin.;single;university.degree;no;no;yes;telephone;may;wed;424;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+28;admin.;single;university.degree;unknown;no;yes;telephone;may;wed;74;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;wed;96;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+21;technician;single;professional.course;no;no;yes;telephone;may;wed;109;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;entrepreneur;divorced;high.school;no;no;no;telephone;may;wed;52;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;blue-collar;single;professional.course;no;no;no;telephone;may;wed;26;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+57;retired;married;basic.9y;unknown;no;no;telephone;may;wed;506;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+27;admin.;married;high.school;unknown;no;no;telephone;may;wed;173;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+52;admin.;married;high.school;no;no;no;telephone;may;wed;643;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;technician;married;professional.course;no;yes;no;telephone;may;wed;77;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;management;single;university.degree;no;no;yes;telephone;may;wed;95;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+52;blue-collar;married;basic.9y;no;yes;no;telephone;may;wed;463;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;admin.;married;high.school;no;yes;no;telephone;may;wed;25;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+25;technician;single;professional.course;no;yes;no;telephone;may;wed;104;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+56;blue-collar;married;basic.4y;unknown;no;no;telephone;may;wed;267;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;blue-collar;divorced;basic.9y;unknown;yes;no;telephone;may;wed;64;1;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+25;blue-collar;married;basic.9y;no;no;no;telephone;may;wed;340;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;admin.;divorced;university.degree;no;no;no;telephone;may;wed;325;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+53;management;married;basic.4y;unknown;no;no;telephone;may;wed;528;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;admin.;divorced;university.degree;no;yes;no;telephone;may;wed;1277;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;entrepreneur;married;university.degree;no;no;yes;telephone;may;wed;363;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;wed;411;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;blue-collar;married;basic.6y;no;yes;no;telephone;may;wed;245;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+51;admin.;divorced;university.degree;no;unknown;unknown;telephone;may;wed;160;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+25;blue-collar;single;high.school;no;no;no;telephone;may;wed;313;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;blue-collar;married;basic.4y;no;yes;no;telephone;may;wed;140;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+30;blue-collar;divorced;basic.9y;no;yes;no;telephone;may;wed;25;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;blue-collar;married;basic.6y;unknown;yes;no;telephone;may;wed;157;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;admin.;married;university.degree;no;no;yes;telephone;may;wed;157;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;entrepreneur;married;university.degree;no;no;no;telephone;may;wed;386;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;technician;married;basic.9y;no;no;no;telephone;may;wed;593;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;services;divorced;high.school;no;no;yes;telephone;may;wed;176;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;blue-collar;single;basic.4y;unknown;no;no;telephone;may;wed;189;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;unemployed;married;university.degree;unknown;unknown;unknown;telephone;may;wed;302;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;services;married;university.degree;unknown;yes;no;telephone;may;wed;165;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+29;blue-collar;married;basic.9y;no;no;no;telephone;may;wed;48;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;management;married;university.degree;no;yes;no;telephone;may;wed;51;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;blue-collar;married;basic.4y;no;no;yes;telephone;may;wed;99;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+25;services;married;high.school;no;yes;no;telephone;may;wed;452;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+50;management;married;university.degree;no;no;yes;telephone;may;wed;187;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+26;blue-collar;single;basic.9y;unknown;yes;no;telephone;may;wed;335;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;services;married;high.school;no;no;no;telephone;may;wed;110;8;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;blue-collar;single;unknown;unknown;no;no;telephone;may;wed;299;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+28;self-employed;married;professional.course;no;yes;yes;telephone;may;wed;85;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;blue-collar;married;basic.9y;no;no;yes;telephone;may;wed;234;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+50;admin.;married;high.school;no;no;no;telephone;may;wed;264;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;admin.;divorced;high.school;no;yes;yes;telephone;may;wed;233;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+50;technician;married;professional.course;unknown;no;no;telephone;may;wed;239;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+52;blue-collar;married;professional.course;no;no;yes;telephone;may;wed;611;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;blue-collar;single;professional.course;no;no;yes;telephone;may;wed;600;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+60;retired;divorced;basic.4y;unknown;no;no;telephone;may;wed;478;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;blue-collar;married;basic.9y;no;no;no;telephone;may;wed;92;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+25;self-employed;single;university.degree;no;yes;no;telephone;may;wed;158;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;technician;single;professional.course;unknown;no;no;telephone;may;wed;198;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+37;management;single;high.school;no;no;no;telephone;may;wed;438;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;management;married;university.degree;no;yes;no;telephone;may;wed;205;7;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;blue-collar;married;basic.6y;no;no;no;telephone;may;wed;342;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+49;services;married;high.school;no;no;no;telephone;may;wed;249;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;blue-collar;married;basic.9y;no;no;no;telephone;may;wed;75;6;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;services;single;professional.course;unknown;no;no;telephone;may;wed;225;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+48;entrepreneur;married;high.school;unknown;yes;no;telephone;may;wed;88;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+28;self-employed;single;university.degree;no;no;no;telephone;may;wed;314;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;management;married;university.degree;no;no;no;telephone;may;wed;109;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+42;blue-collar;married;basic.4y;no;no;no;telephone;may;wed;456;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;admin.;married;university.degree;no;no;no;telephone;may;wed;92;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+29;blue-collar;married;professional.course;no;no;no;telephone;may;wed;223;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+27;technician;married;professional.course;no;no;no;telephone;may;wed;148;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;technician;married;professional.course;no;yes;no;telephone;may;wed;205;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;blue-collar;married;high.school;no;no;no;telephone;may;wed;80;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;blue-collar;divorced;basic.9y;no;yes;no;telephone;may;wed;357;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+41;self-employed;single;university.degree;no;yes;yes;telephone;may;wed;23;17;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+39;admin.;married;university.degree;no;unknown;unknown;telephone;may;wed;513;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;admin.;single;high.school;no;no;yes;telephone;may;wed;171;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;admin.;single;university.degree;no;no;no;telephone;may;wed;90;8;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+35;blue-collar;married;high.school;no;no;no;telephone;may;wed;55;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;technician;married;professional.course;no;no;yes;telephone;may;wed;51;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+59;retired;married;professional.course;no;no;no;telephone;may;wed;560;9;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;yes
+27;admin.;single;university.degree;no;no;no;telephone;may;wed;245;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;admin.;married;high.school;no;yes;no;telephone;may;wed;318;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;management;married;university.degree;no;no;no;telephone;may;wed;105;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+51;blue-collar;married;basic.9y;unknown;no;yes;telephone;may;wed;261;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+60;retired;divorced;high.school;unknown;yes;no;telephone;may;wed;398;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+45;admin.;married;basic.6y;unknown;yes;no;telephone;may;wed;200;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+52;entrepreneur;married;basic.9y;unknown;no;no;telephone;may;wed;267;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+27;admin.;married;university.degree;no;no;no;telephone;may;wed;191;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;technician;single;professional.course;no;yes;no;telephone;may;wed;300;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;blue-collar;married;basic.9y;no;yes;no;telephone;may;wed;82;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+32;unemployed;single;high.school;no;no;no;telephone;may;wed;153;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+24;blue-collar;single;basic.9y;unknown;no;no;telephone;may;wed;504;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+46;admin.;single;high.school;unknown;yes;no;telephone;may;wed;104;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;admin.;single;high.school;no;no;no;telephone;may;wed;194;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+44;services;married;high.school;no;yes;yes;telephone;may;wed;212;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+29;blue-collar;married;basic.4y;unknown;yes;yes;telephone;may;wed;122;4;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+31;services;married;high.school;no;no;no;telephone;may;wed;185;6;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+38;unknown;divorced;high.school;unknown;yes;no;telephone;may;wed;107;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+26;admin.;single;high.school;no;no;no;telephone;may;wed;87;5;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+40;admin.;married;basic.9y;no;no;yes;telephone;may;wed;145;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+47;blue-collar;divorced;basic.9y;unknown;yes;no;telephone;may;wed;30;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+43;unemployed;married;high.school;no;yes;no;telephone;may;wed;585;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;blue-collar;married;basic.6y;no;no;no;telephone;may;wed;136;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+25;blue-collar;single;basic.6y;unknown;no;yes;telephone;may;wed;90;8;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+36;technician;married;university.degree;no;no;no;telephone;may;wed;146;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+34;blue-collar;married;basic.9y;no;yes;yes;telephone;may;wed;180;2;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+29;admin.;married;basic.6y;no;no;yes;telephone;may;wed;376;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+33;technician;married;university.degree;unknown;no;yes;telephone;may;wed;619;3;999;0;nonexistent;1.1;93.994;-36.4;4.857;5191.0;no
+22;blue-collar;single;basic.9y;no;yes;no;telephone;may;thu;100;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+48;entrepreneur;divorced;basic.4y;no;no;no;telephone;may;thu;75;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+29;admin.;single;basic.9y;unknown;no;no;telephone;may;thu;93;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+46;retired;married;university.degree;no;no;no;telephone;may;thu;334;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+34;blue-collar;married;basic.9y;no;no;yes;telephone;may;thu;92;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+56;management;married;university.degree;no;no;no;telephone;may;thu;750;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+39;blue-collar;married;basic.4y;unknown;no;no;telephone;may;thu;332;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+36;blue-collar;single;basic.9y;no;no;no;telephone;may;thu;333;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+56;management;divorced;university.degree;no;yes;no;telephone;may;thu;118;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+36;blue-collar;married;basic.9y;no;no;no;telephone;may;thu;620;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+36;admin.;single;high.school;no;yes;no;telephone;may;thu;193;6;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+52;retired;married;basic.4y;no;yes;no;telephone;may;thu;138;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+39;admin.;married;university.degree;no;yes;no;telephone;may;thu;543;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;yes
+35;student;single;university.degree;unknown;no;no;telephone;may;thu;297;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+54;services;single;high.school;unknown;no;no;telephone;may;thu;144;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+59;admin.;married;university.degree;no;no;yes;telephone;may;thu;155;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+33;admin.;married;professional.course;no;yes;yes;telephone;may;thu;140;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+42;admin.;single;basic.9y;unknown;no;no;telephone;may;thu;42;7;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+54;management;married;university.degree;no;yes;no;telephone;may;thu;127;4;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+52;self-employed;single;basic.4y;unknown;yes;no;telephone;may;thu;61;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+35;services;married;high.school;unknown;no;no;telephone;may;thu;267;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+55;admin.;married;basic.9y;unknown;no;yes;telephone;may;thu;103;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+35;housemaid;married;basic.4y;unknown;no;yes;telephone;may;thu;205;5;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+47;blue-collar;single;basic.9y;no;yes;no;telephone;may;thu;54;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+26;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;thu;132;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+36;blue-collar;single;basic.6y;unknown;yes;no;telephone;may;thu;275;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+40;technician;married;basic.9y;no;yes;no;telephone;may;thu;203;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+34;student;single;basic.4y;unknown;no;no;telephone;may;thu;95;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+40;admin.;single;unknown;unknown;yes;no;telephone;may;thu;177;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+42;blue-collar;married;basic.6y;unknown;no;no;telephone;may;thu;179;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+51;technician;married;unknown;no;yes;no;telephone;may;thu;136;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+39;blue-collar;married;basic.6y;no;no;no;telephone;may;thu;128;7;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+58;blue-collar;married;basic.4y;no;yes;no;telephone;may;thu;184;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+37;services;married;high.school;unknown;no;yes;telephone;may;thu;284;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+33;services;married;basic.6y;no;yes;no;telephone;may;thu;148;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+30;self-employed;single;university.degree;no;yes;no;telephone;may;thu;244;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+30;admin.;single;high.school;no;no;no;telephone;may;thu;107;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+31;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;thu;140;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+47;self-employed;married;university.degree;no;yes;no;telephone;may;thu;217;5;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+45;blue-collar;married;illiterate;unknown;no;no;telephone;may;thu;1196;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+46;admin.;married;professional.course;no;yes;no;telephone;may;thu;78;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+45;blue-collar;married;basic.9y;no;no;no;telephone;may;thu;129;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+35;admin.;married;high.school;no;yes;no;telephone;may;thu;52;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+33;admin.;married;high.school;no;yes;no;telephone;may;thu;41;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+43;unemployed;married;high.school;no;yes;no;telephone;may;thu;285;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+56;admin.;divorced;unknown;unknown;yes;no;telephone;may;thu;134;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+26;technician;single;professional.course;no;no;no;telephone;may;thu;14;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+29;blue-collar;single;professional.course;no;yes;no;telephone;may;thu;182;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+40;technician;married;basic.9y;unknown;yes;no;telephone;may;thu;539;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;yes
+41;blue-collar;married;basic.6y;no;yes;no;telephone;may;thu;37;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+35;admin.;married;university.degree;no;yes;no;telephone;may;thu;162;5;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+33;blue-collar;married;basic.9y;unknown;no;no;telephone;may;thu;413;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+53;entrepreneur;divorced;unknown;no;no;no;telephone;may;thu;184;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+34;services;married;high.school;no;no;no;telephone;may;thu;285;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+47;blue-collar;married;unknown;unknown;no;no;telephone;may;thu;361;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+40;technician;married;basic.9y;no;yes;no;telephone;may;thu;74;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+52;blue-collar;single;basic.9y;unknown;yes;no;telephone;may;thu;130;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+29;admin.;married;university.degree;no;yes;no;telephone;may;thu;203;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+42;technician;single;high.school;no;no;no;telephone;may;thu;186;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+37;admin.;married;high.school;unknown;yes;no;telephone;may;thu;37;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+39;blue-collar;married;basic.4y;unknown;no;no;telephone;may;thu;206;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+31;blue-collar;single;high.school;no;unknown;unknown;telephone;may;thu;230;4;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+28;entrepreneur;married;basic.9y;unknown;no;no;telephone;may;thu;73;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+35;services;married;high.school;no;no;no;telephone;may;thu;283;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+37;technician;married;professional.course;no;no;yes;telephone;may;thu;44;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+34;self-employed;married;professional.course;no;no;no;telephone;may;thu;205;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+37;blue-collar;married;basic.9y;no;no;no;telephone;may;thu;291;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+42;blue-collar;divorced;basic.9y;no;no;no;telephone;may;thu;159;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+42;admin.;married;basic.4y;no;no;no;telephone;may;thu;148;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+58;technician;married;professional.course;no;yes;no;telephone;may;thu;57;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+28;entrepreneur;married;basic.9y;unknown;yes;no;telephone;may;thu;733;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;yes
+38;services;single;basic.9y;no;yes;no;telephone;may;thu;193;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+38;admin.;married;university.degree;no;yes;no;telephone;may;thu;744;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+34;management;single;basic.9y;no;yes;no;telephone;may;thu;84;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+45;admin.;married;basic.9y;no;yes;yes;telephone;may;thu;254;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+53;admin.;married;university.degree;no;yes;no;telephone;may;thu;135;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+50;self-employed;married;basic.4y;unknown;no;no;telephone;may;thu;23;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+30;blue-collar;single;basic.9y;unknown;yes;no;telephone;may;thu;578;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+38;technician;divorced;professional.course;no;yes;no;telephone;may;thu;1093;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;yes
+36;technician;married;professional.course;no;yes;no;telephone;may;thu;247;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+46;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;thu;114;9;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+42;admin.;divorced;high.school;no;yes;no;telephone;may;thu;119;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+32;management;married;university.degree;no;yes;no;telephone;may;thu;619;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+38;technician;married;basic.9y;no;no;no;telephone;may;thu;514;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+51;technician;married;professional.course;unknown;no;no;telephone;may;thu;337;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+45;services;divorced;high.school;unknown;yes;no;telephone;may;thu;561;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+44;blue-collar;single;basic.9y;no;no;no;telephone;may;thu;111;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+48;technician;married;high.school;no;no;no;telephone;may;thu;418;8;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+46;admin.;divorced;basic.9y;no;yes;no;telephone;may;thu;56;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+43;unemployed;married;university.degree;unknown;no;no;telephone;may;thu;456;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+49;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;thu;109;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+44;admin.;married;university.degree;no;yes;no;telephone;may;thu;413;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+56;retired;divorced;basic.4y;unknown;yes;no;telephone;may;thu;278;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+34;services;married;high.school;no;no;no;telephone;may;thu;791;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;yes
+59;entrepreneur;married;university.degree;unknown;no;no;telephone;may;thu;146;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+53;unemployed;married;unknown;unknown;no;no;telephone;may;thu;202;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+33;services;married;university.degree;no;unknown;unknown;telephone;may;thu;73;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+57;blue-collar;married;basic.4y;unknown;no;no;telephone;may;thu;154;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+40;technician;married;basic.9y;no;yes;no;telephone;may;thu;257;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+43;entrepreneur;married;basic.4y;no;yes;no;telephone;may;thu;199;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+45;unknown;married;unknown;no;no;no;telephone;may;thu;208;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+41;admin.;married;high.school;no;yes;no;telephone;may;thu;471;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+25;student;single;high.school;no;unknown;unknown;telephone;may;thu;360;5;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+33;management;single;university.degree;no;unknown;unknown;telephone;may;thu;131;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+56;blue-collar;married;basic.4y;unknown;unknown;unknown;telephone;may;thu;137;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+37;admin.;married;high.school;no;no;yes;telephone;may;thu;155;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+48;admin.;divorced;high.school;no;no;no;telephone;may;thu;66;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+32;services;married;professional.course;no;no;no;telephone;may;thu;103;7;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+47;admin.;single;university.degree;unknown;yes;yes;telephone;may;thu;656;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+45;blue-collar;married;basic.9y;no;yes;no;telephone;may;thu;358;10;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+43;management;single;basic.4y;no;yes;no;telephone;may;thu;514;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+32;technician;married;professional.course;no;no;no;telephone;may;thu;27;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+48;blue-collar;married;basic.6y;no;yes;no;telephone;may;thu;544;4;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+46;blue-collar;married;basic.9y;unknown;no;no;telephone;may;thu;346;6;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+50;services;married;high.school;no;no;no;telephone;may;thu;134;6;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+41;admin.;married;high.school;no;no;no;telephone;may;thu;135;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+42;admin.;single;unknown;no;no;no;telephone;may;thu;633;6;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+42;technician;married;university.degree;unknown;no;no;telephone;may;thu;48;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+31;admin.;married;university.degree;no;yes;no;telephone;may;thu;359;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+40;technician;married;professional.course;unknown;yes;no;telephone;may;thu;105;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+37;unemployed;married;professional.course;unknown;no;no;telephone;may;thu;746;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;yes
+37;technician;single;professional.course;no;no;no;telephone;may;thu;322;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+45;unknown;married;unknown;unknown;yes;no;telephone;may;thu;56;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+32;management;single;university.degree;no;unknown;unknown;telephone;may;thu;315;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+41;entrepreneur;married;university.degree;unknown;yes;no;telephone;may;thu;126;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+57;technician;married;basic.4y;unknown;no;no;telephone;may;thu;122;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+33;management;married;university.degree;no;yes;no;telephone;may;thu;144;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+36;admin.;married;university.degree;no;yes;no;telephone;may;thu;445;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+39;technician;married;professional.course;no;no;no;telephone;may;thu;356;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+40;self-employed;married;high.school;unknown;yes;no;telephone;may;thu;144;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+31;admin.;married;university.degree;no;yes;no;telephone;may;thu;102;4;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+34;management;married;university.degree;no;no;no;telephone;may;thu;187;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+42;management;married;university.degree;unknown;no;no;telephone;may;thu;329;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+59;retired;divorced;basic.4y;unknown;yes;no;telephone;may;thu;247;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+52;admin.;married;basic.6y;no;yes;no;telephone;may;thu;152;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+30;services;divorced;basic.9y;no;yes;no;telephone;may;thu;49;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+52;technician;single;professional.course;unknown;no;no;telephone;may;thu;223;4;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+30;services;divorced;basic.9y;no;no;no;telephone;may;thu;177;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+38;services;married;high.school;unknown;no;yes;telephone;may;thu;77;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+44;blue-collar;single;basic.4y;no;yes;no;telephone;may;thu;106;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+47;admin.;married;basic.9y;no;yes;no;telephone;may;thu;146;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+38;blue-collar;married;basic.6y;unknown;yes;no;telephone;may;thu;125;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+41;blue-collar;married;basic.4y;no;no;no;telephone;may;thu;404;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+48;entrepreneur;married;university.degree;no;yes;no;telephone;may;thu;413;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+31;admin.;single;high.school;no;yes;no;telephone;may;thu;177;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+38;self-employed;married;unknown;no;yes;no;telephone;may;thu;118;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+52;services;divorced;high.school;no;yes;no;telephone;may;thu;201;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+43;blue-collar;married;basic.4y;no;yes;no;telephone;may;thu;609;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+46;technician;married;professional.course;no;no;no;telephone;may;thu;251;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+34;unemployed;single;university.degree;no;yes;yes;telephone;may;thu;35;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+35;services;married;basic.6y;no;yes;no;telephone;may;thu;473;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+29;entrepreneur;divorced;basic.9y;no;yes;no;telephone;may;thu;596;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+55;admin.;divorced;university.degree;no;no;no;telephone;may;thu;370;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+24;student;married;university.degree;no;no;no;telephone;may;thu;691;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+29;services;single;high.school;no;no;no;telephone;may;thu;70;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+39;entrepreneur;single;basic.6y;no;yes;no;telephone;may;thu;77;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+30;technician;married;high.school;no;yes;no;telephone;may;thu;212;6;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+30;technician;single;professional.course;no;yes;no;telephone;may;thu;245;4;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+33;blue-collar;married;basic.9y;no;no;no;telephone;may;thu;544;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+38;services;married;high.school;no;no;yes;telephone;may;thu;117;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+41;blue-collar;married;basic.9y;no;no;no;telephone;may;thu;410;5;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+41;blue-collar;married;basic.4y;unknown;no;no;telephone;may;thu;513;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+40;management;single;university.degree;no;no;no;telephone;may;thu;179;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+38;services;married;high.school;no;yes;no;telephone;may;thu;896;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+28;technician;divorced;professional.course;unknown;yes;no;telephone;may;thu;174;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+33;self-employed;single;university.degree;no;no;no;telephone;may;thu;365;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+31;admin.;divorced;high.school;no;no;no;telephone;may;thu;1207;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;yes
+41;services;married;university.degree;no;no;no;telephone;may;thu;158;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+47;blue-collar;married;basic.4y;unknown;no;no;telephone;may;thu;159;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+38;technician;married;professional.course;no;yes;no;telephone;may;thu;82;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+57;services;married;high.school;unknown;yes;no;telephone;may;thu;180;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+56;admin.;divorced;basic.9y;unknown;yes;no;telephone;may;thu;42;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+28;technician;divorced;high.school;no;yes;no;telephone;may;thu;206;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+28;blue-collar;married;basic.9y;unknown;no;no;telephone;may;thu;92;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+51;self-employed;married;basic.9y;no;yes;no;telephone;may;thu;162;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+41;management;married;unknown;no;yes;no;telephone;may;thu;347;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+36;blue-collar;married;unknown;unknown;no;no;telephone;may;thu;117;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+41;services;married;university.degree;no;yes;yes;telephone;may;thu;936;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+56;admin.;married;high.school;no;no;no;telephone;may;thu;162;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+41;blue-collar;married;basic.9y;unknown;no;no;telephone;may;thu;126;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+26;admin.;married;high.school;no;yes;no;telephone;may;thu;344;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+44;services;divorced;high.school;no;no;no;telephone;may;thu;71;5;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+42;services;married;basic.6y;no;yes;no;telephone;may;thu;178;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+35;technician;single;university.degree;no;no;no;telephone;may;thu;52;5;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+28;self-employed;single;university.degree;no;yes;no;telephone;may;thu;409;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+30;technician;single;university.degree;no;no;no;telephone;may;thu;272;5;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+45;technician;divorced;professional.course;no;no;no;telephone;may;thu;87;7;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+47;admin.;single;unknown;unknown;no;no;telephone;may;thu;127;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+33;management;married;high.school;unknown;yes;no;telephone;may;thu;202;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+36;services;married;high.school;unknown;yes;no;telephone;may;thu;117;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+41;blue-collar;married;basic.9y;no;no;no;telephone;may;thu;441;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+47;admin.;married;basic.4y;no;no;no;telephone;may;thu;175;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+36;blue-collar;single;high.school;no;no;no;telephone;may;thu;164;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+52;services;married;basic.9y;unknown;no;no;telephone;may;thu;80;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+28;blue-collar;married;basic.4y;no;no;no;telephone;may;thu;932;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+26;self-employed;married;university.degree;no;no;no;telephone;may;thu;13;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+36;services;married;high.school;no;no;no;telephone;may;thu;139;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+38;management;married;high.school;unknown;no;no;telephone;may;thu;879;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+36;admin.;married;high.school;no;no;no;telephone;may;thu;263;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+39;blue-collar;married;high.school;unknown;yes;no;telephone;may;thu;64;4;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+35;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;thu;440;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+37;unemployed;married;university.degree;unknown;no;no;telephone;may;thu;76;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+38;admin.;married;high.school;no;yes;no;telephone;may;thu;26;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+45;technician;married;professional.course;no;no;no;telephone;may;thu;455;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+33;unemployed;divorced;basic.9y;no;yes;no;telephone;may;thu;180;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+34;management;married;university.degree;no;no;no;telephone;may;thu;200;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+31;blue-collar;married;basic.9y;no;no;no;telephone;may;thu;535;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;yes
+46;blue-collar;married;basic.4y;unknown;unknown;unknown;telephone;may;thu;313;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+58;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;thu;101;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+40;services;married;high.school;unknown;no;no;telephone;may;thu;473;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+46;self-employed;divorced;university.degree;no;yes;yes;telephone;may;thu;1026;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+39;admin.;single;university.degree;no;no;yes;telephone;may;thu;364;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+40;technician;married;basic.4y;no;yes;no;telephone;may;thu;153;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+34;services;divorced;professional.course;unknown;yes;no;telephone;may;thu;158;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+36;unemployed;divorced;professional.course;no;yes;no;telephone;may;thu;617;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+30;admin.;married;university.degree;no;no;no;telephone;may;thu;99;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+50;services;divorced;basic.4y;unknown;yes;yes;telephone;may;thu;217;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+42;admin.;married;university.degree;no;no;no;telephone;may;thu;129;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+45;blue-collar;married;basic.6y;unknown;yes;no;telephone;may;thu;277;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+59;entrepreneur;married;basic.9y;no;no;no;telephone;may;thu;200;4;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+59;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;thu;105;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+51;admin.;married;high.school;no;yes;no;telephone;may;thu;431;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+49;technician;married;professional.course;no;no;no;telephone;may;thu;417;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+44;blue-collar;married;basic.9y;no;yes;no;telephone;may;thu;480;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+30;blue-collar;single;basic.4y;unknown;yes;yes;telephone;may;thu;331;4;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+39;services;married;high.school;no;no;no;telephone;may;thu;359;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+35;technician;single;basic.6y;no;unknown;unknown;telephone;may;thu;332;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+35;technician;married;university.degree;unknown;no;no;telephone;may;thu;215;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+59;admin.;married;university.degree;no;yes;yes;telephone;may;thu;535;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+59;entrepreneur;married;university.degree;unknown;no;no;telephone;may;thu;147;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+43;blue-collar;married;basic.9y;no;no;no;telephone;may;thu;13;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+29;services;single;high.school;no;no;no;telephone;may;thu;689;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+56;blue-collar;married;basic.4y;no;yes;no;telephone;may;thu;242;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+41;housemaid;married;university.degree;no;no;no;telephone;may;thu;665;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+47;services;divorced;high.school;no;yes;no;telephone;may;thu;97;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+49;services;married;high.school;unknown;yes;no;telephone;may;thu;166;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+43;admin.;married;basic.9y;no;no;no;telephone;may;thu;207;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+34;services;married;high.school;unknown;no;no;telephone;may;thu;376;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+31;housemaid;married;high.school;no;no;no;telephone;may;thu;480;10;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+60;admin.;single;high.school;no;yes;no;telephone;may;thu;609;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+29;self-employed;married;university.degree;no;no;no;telephone;may;thu;116;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+34;management;married;professional.course;unknown;no;no;telephone;may;thu;484;5;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+54;retired;married;basic.9y;no;yes;no;telephone;may;thu;217;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+31;admin.;married;basic.9y;no;no;no;telephone;may;thu;112;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+45;blue-collar;married;basic.9y;unknown;no;no;telephone;may;thu;726;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+51;services;single;high.school;unknown;yes;no;telephone;may;thu;148;4;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+40;admin.;single;high.school;no;yes;no;telephone;may;thu;1047;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;yes
+38;blue-collar;divorced;unknown;no;no;no;telephone;may;thu;362;5;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+37;admin.;married;university.degree;no;yes;no;telephone;may;thu;1059;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;yes
+37;technician;single;high.school;unknown;yes;no;telephone;may;thu;54;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+36;admin.;married;university.degree;no;no;yes;telephone;may;thu;184;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+35;entrepreneur;married;university.degree;unknown;yes;yes;telephone;may;thu;253;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+54;services;married;unknown;no;no;no;telephone;may;thu;114;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+34;services;divorced;basic.9y;no;yes;yes;telephone;may;thu;293;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+49;blue-collar;married;unknown;unknown;no;no;telephone;may;thu;246;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+42;self-employed;married;basic.6y;no;yes;yes;telephone;may;thu;195;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+32;unknown;unknown;university.degree;no;yes;yes;telephone;may;thu;221;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+55;technician;married;professional.course;no;yes;no;telephone;may;thu;166;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+40;technician;single;university.degree;unknown;no;yes;telephone;may;thu;385;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+50;entrepreneur;married;basic.9y;no;no;no;telephone;may;thu;85;6;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+31;blue-collar;married;basic.9y;unknown;no;no;telephone;may;thu;173;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+50;technician;divorced;basic.9y;no;no;yes;telephone;may;thu;48;5;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+51;management;married;university.degree;no;yes;no;telephone;may;thu;410;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+46;management;married;university.degree;unknown;yes;no;telephone;may;thu;311;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+44;blue-collar;married;basic.4y;no;yes;no;telephone;may;thu;40;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+57;management;divorced;university.degree;no;yes;no;telephone;may;thu;81;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+30;blue-collar;married;university.degree;no;no;no;telephone;may;thu;558;13;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+54;technician;married;university.degree;unknown;no;no;telephone;may;thu;109;4;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+54;retired;divorced;basic.4y;no;yes;no;telephone;may;thu;77;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+24;services;single;high.school;no;yes;no;telephone;may;thu;70;7;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+45;self-employed;divorced;university.degree;no;yes;no;telephone;may;thu;229;4;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+49;housemaid;married;professional.course;no;no;no;telephone;may;thu;565;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+39;blue-collar;divorced;unknown;unknown;no;yes;telephone;may;thu;145;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+36;admin.;single;university.degree;no;no;no;telephone;may;thu;792;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;yes
+31;admin.;married;high.school;unknown;yes;no;telephone;may;thu;199;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+36;management;married;university.degree;unknown;yes;no;telephone;may;thu;488;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+51;services;married;basic.6y;no;yes;no;telephone;may;thu;176;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+48;housemaid;divorced;basic.4y;unknown;yes;yes;telephone;may;thu;123;4;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+51;blue-collar;married;basic.6y;unknown;yes;yes;telephone;may;thu;88;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+41;technician;married;professional.course;unknown;yes;no;telephone;may;thu;768;4;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+37;blue-collar;single;professional.course;no;yes;no;telephone;may;thu;105;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+46;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;thu;101;4;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+54;retired;married;basic.4y;no;no;no;telephone;may;thu;225;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+49;admin.;single;unknown;unknown;yes;no;telephone;may;thu;122;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+41;blue-collar;married;basic.9y;unknown;unknown;unknown;telephone;may;thu;52;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+52;self-employed;single;university.degree;unknown;yes;no;telephone;may;thu;150;4;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+30;technician;married;university.degree;unknown;yes;no;telephone;may;thu;399;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+30;blue-collar;married;basic.9y;no;yes;no;telephone;may;thu;58;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+42;admin.;married;high.school;no;no;no;telephone;may;thu;260;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+37;technician;single;university.degree;no;yes;no;telephone;may;thu;199;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+35;unknown;married;basic.9y;no;no;no;telephone;may;thu;241;4;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+34;blue-collar;married;basic.9y;no;yes;no;telephone;may;thu;399;5;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+49;management;married;basic.4y;no;yes;no;telephone;may;thu;637;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+53;self-employed;married;basic.4y;no;no;no;telephone;may;thu;107;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+30;admin.;single;university.degree;no;yes;no;telephone;may;thu;68;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+41;admin.;single;university.degree;unknown;yes;no;telephone;may;thu;137;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+35;blue-collar;married;basic.4y;no;no;no;telephone;may;thu;182;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+55;housemaid;single;basic.9y;no;no;no;telephone;may;thu;553;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+27;blue-collar;married;basic.4y;no;yes;no;telephone;may;thu;310;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+30;admin.;single;university.degree;no;yes;no;telephone;may;thu;206;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+33;blue-collar;single;basic.4y;no;no;no;telephone;may;thu;119;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+33;admin.;married;high.school;no;yes;no;telephone;may;thu;764;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+49;admin.;married;basic.6y;unknown;no;yes;telephone;may;thu;29;4;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+39;services;married;basic.4y;no;no;no;telephone;may;thu;126;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+25;admin.;married;university.degree;no;yes;no;telephone;may;thu;251;4;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+35;self-employed;married;university.degree;no;no;yes;telephone;may;thu;188;6;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+37;unemployed;married;professional.course;no;no;no;telephone;may;thu;368;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+34;technician;married;professional.course;no;no;no;telephone;may;thu;414;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+32;blue-collar;married;basic.9y;unknown;no;no;telephone;may;thu;128;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+38;services;single;high.school;no;yes;no;telephone;may;thu;685;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+37;self-employed;single;university.degree;unknown;yes;no;telephone;may;thu;512;5;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+31;services;single;high.school;unknown;yes;no;telephone;may;thu;102;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+45;admin.;married;basic.9y;no;yes;no;telephone;may;thu;1611;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+35;technician;single;university.degree;unknown;yes;no;telephone;may;thu;44;15;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+31;blue-collar;married;basic.9y;no;yes;no;telephone;may;thu;203;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+41;blue-collar;married;basic.6y;no;no;no;telephone;may;thu;74;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+29;self-employed;married;university.degree;no;no;no;telephone;may;thu;118;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+35;blue-collar;single;unknown;no;no;no;telephone;may;thu;725;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+50;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;thu;100;5;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+56;technician;married;professional.course;unknown;yes;no;telephone;may;thu;124;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+50;admin.;married;basic.9y;no;no;no;telephone;may;thu;752;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+25;self-employed;single;university.degree;no;no;no;telephone;may;thu;241;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+29;services;single;high.school;no;yes;no;telephone;may;thu;430;1;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+37;blue-collar;divorced;basic.9y;unknown;yes;no;telephone;may;thu;219;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+33;self-employed;single;university.degree;no;yes;no;telephone;may;thu;67;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+41;technician;single;professional.course;no;yes;no;telephone;may;thu;294;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+44;blue-collar;divorced;basic.6y;unknown;yes;no;telephone;may;thu;318;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+34;student;single;basic.4y;unknown;yes;no;telephone;may;thu;1185;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+38;admin.;single;basic.9y;no;no;yes;telephone;may;thu;110;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+37;services;married;high.school;no;yes;no;telephone;may;thu;58;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+35;blue-collar;married;basic.4y;unknown;no;no;telephone;may;thu;386;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+52;unemployed;married;high.school;unknown;no;no;telephone;may;thu;218;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+40;technician;married;high.school;no;no;no;telephone;may;thu;191;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+43;technician;married;university.degree;unknown;no;no;telephone;may;thu;84;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+25;services;single;high.school;no;no;no;telephone;may;thu;130;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+53;services;married;high.school;unknown;no;no;telephone;may;thu;113;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+36;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;thu;744;6;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+59;admin.;married;high.school;no;yes;no;telephone;may;thu;76;4;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+46;entrepreneur;married;professional.course;unknown;yes;no;telephone;may;thu;187;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+57;self-employed;single;high.school;unknown;no;no;telephone;may;thu;587;4;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+45;technician;married;university.degree;no;yes;no;telephone;may;thu;336;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+36;management;married;university.degree;no;yes;no;telephone;may;thu;59;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+37;admin.;married;university.degree;no;yes;no;telephone;may;thu;72;12;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+31;technician;married;professional.course;no;no;no;telephone;may;thu;127;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+46;admin.;married;unknown;unknown;yes;no;telephone;may;thu;352;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+28;technician;married;high.school;no;yes;no;telephone;may;thu;347;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+52;blue-collar;married;basic.4y;no;yes;no;telephone;may;thu;286;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+59;blue-collar;married;basic.9y;unknown;no;no;telephone;may;thu;668;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+59;admin.;married;university.degree;no;yes;yes;telephone;may;thu;29;9;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+38;blue-collar;married;basic.4y;unknown;no;no;telephone;may;thu;211;6;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+25;services;single;unknown;no;yes;yes;telephone;may;thu;175;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+36;blue-collar;married;basic.9y;no;yes;no;telephone;may;thu;55;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+58;housemaid;married;basic.4y;unknown;no;no;telephone;may;thu;324;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+35;admin.;married;high.school;no;yes;no;telephone;may;thu;228;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+32;blue-collar;single;university.degree;no;yes;no;telephone;may;thu;128;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+27;student;single;high.school;unknown;yes;no;telephone;may;thu;38;9;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+34;technician;married;university.degree;no;no;no;telephone;may;thu;96;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+50;blue-collar;married;basic.4y;unknown;no;no;telephone;may;thu;18;16;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+32;admin.;divorced;university.degree;no;yes;no;telephone;may;thu;147;4;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+37;admin.;single;university.degree;no;yes;no;telephone;may;thu;900;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;yes
+53;management;married;university.degree;unknown;unknown;unknown;telephone;may;thu;135;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+33;admin.;married;university.degree;no;yes;no;telephone;may;thu;56;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+46;blue-collar;married;basic.6y;no;yes;no;telephone;may;thu;39;22;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+40;blue-collar;married;basic.4y;unknown;no;no;telephone;may;thu;144;5;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+51;unemployed;married;basic.4y;unknown;yes;no;telephone;may;thu;249;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+39;blue-collar;married;basic.6y;unknown;no;no;telephone;may;thu;286;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+42;blue-collar;married;basic.4y;no;yes;no;telephone;may;thu;384;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+52;blue-collar;married;basic.4y;unknown;no;no;telephone;may;thu;183;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+37;technician;married;university.degree;no;yes;no;telephone;may;thu;240;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+36;admin.;married;university.degree;no;yes;yes;telephone;may;thu;238;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+35;blue-collar;married;basic.9y;unknown;no;no;telephone;may;thu;225;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+41;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;thu;151;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+33;services;single;high.school;no;no;no;telephone;may;thu;194;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+29;admin.;married;university.degree;no;no;no;telephone;may;thu;273;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+46;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;thu;431;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+30;blue-collar;married;basic.9y;no;yes;no;telephone;may;thu;57;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+55;retired;married;university.degree;unknown;yes;no;telephone;may;thu;720;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+42;admin.;single;university.degree;unknown;yes;no;telephone;may;thu;814;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;yes
+48;services;married;high.school;no;yes;no;telephone;may;thu;859;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+32;services;married;high.school;unknown;yes;yes;telephone;may;thu;184;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+56;management;divorced;basic.9y;unknown;yes;no;telephone;may;thu;313;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+48;technician;married;professional.course;unknown;no;no;telephone;may;thu;142;7;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+40;technician;married;basic.9y;unknown;no;yes;telephone;may;thu;171;4;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+38;technician;single;university.degree;no;yes;yes;telephone;may;thu;245;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+38;blue-collar;single;basic.6y;no;no;no;telephone;may;thu;238;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+41;blue-collar;married;professional.course;no;no;no;telephone;may;thu;53;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+39;management;married;basic.6y;no;yes;no;telephone;may;thu;364;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+45;admin.;married;basic.9y;unknown;no;yes;telephone;may;thu;191;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+46;self-employed;married;basic.4y;unknown;no;no;telephone;may;thu;35;24;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+54;blue-collar;married;university.degree;no;no;yes;telephone;may;thu;106;4;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+29;services;single;basic.4y;no;yes;no;telephone;may;thu;382;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+51;blue-collar;married;basic.9y;no;no;no;telephone;may;thu;191;5;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+41;entrepreneur;married;basic.9y;no;yes;no;telephone;may;thu;483;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+54;blue-collar;single;basic.4y;no;no;no;telephone;may;thu;253;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+31;admin.;divorced;university.degree;no;yes;yes;telephone;may;thu;328;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+54;admin.;married;university.degree;unknown;no;yes;telephone;may;thu;82;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+54;technician;divorced;university.degree;no;no;yes;telephone;may;thu;155;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+36;admin.;divorced;high.school;no;yes;no;telephone;may;thu;233;5;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+31;self-employed;married;university.degree;no;no;yes;telephone;may;thu;66;6;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+30;technician;single;university.degree;unknown;yes;no;telephone;may;thu;1109;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;yes
+58;retired;married;basic.9y;unknown;yes;no;telephone;may;thu;828;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;yes
+55;admin.;married;high.school;no;no;yes;telephone;may;thu;134;4;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+37;blue-collar;single;basic.9y;unknown;no;no;telephone;may;thu;96;5;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+55;technician;married;university.degree;no;yes;no;telephone;may;thu;197;9;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+30;blue-collar;married;basic.9y;no;yes;yes;telephone;may;thu;645;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+39;blue-collar;married;basic.4y;no;yes;yes;telephone;may;thu;81;4;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+27;services;single;professional.course;no;no;no;telephone;may;thu;201;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+34;blue-collar;married;basic.6y;no;no;no;telephone;may;thu;248;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+53;services;married;high.school;unknown;no;no;telephone;may;thu;2260;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+52;retired;married;basic.9y;unknown;no;no;telephone;may;thu;91;7;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+51;blue-collar;divorced;basic.4y;no;yes;no;telephone;may;thu;660;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+49;technician;married;basic.9y;no;yes;no;telephone;may;thu;182;6;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+37;management;married;basic.9y;no;no;no;telephone;may;thu;30;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+53;retired;married;basic.4y;no;no;no;telephone;may;thu;101;23;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+53;housemaid;single;basic.4y;unknown;no;no;telephone;may;thu;54;15;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+59;management;married;basic.4y;unknown;yes;no;telephone;may;thu;374;4;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+55;technician;divorced;university.degree;unknown;no;no;telephone;may;thu;216;7;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+34;blue-collar;married;basic.9y;no;no;no;telephone;may;thu;76;4;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+37;services;married;high.school;unknown;yes;yes;telephone;may;thu;73;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+45;unknown;married;unknown;no;no;yes;telephone;may;thu;62;6;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+50;blue-collar;single;basic.4y;no;no;no;telephone;may;thu;152;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+35;services;married;high.school;no;no;no;telephone;may;thu;86;4;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+28;services;single;high.school;no;no;no;telephone;may;thu;95;6;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+36;entrepreneur;married;university.degree;no;yes;no;telephone;may;thu;23;15;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+37;housemaid;married;university.degree;unknown;yes;no;telephone;may;thu;25;11;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+35;services;single;high.school;no;yes;yes;telephone;may;thu;151;7;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+26;technician;single;professional.course;no;no;no;telephone;may;thu;95;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+32;services;married;high.school;no;yes;no;telephone;may;thu;52;8;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+32;blue-collar;married;basic.6y;no;yes;no;telephone;may;thu;52;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+59;admin.;single;university.degree;no;yes;yes;telephone;may;thu;421;3;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+45;blue-collar;married;basic.6y;unknown;yes;no;telephone;may;thu;322;11;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+30;services;single;high.school;no;yes;no;telephone;may;thu;52;4;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+27;blue-collar;married;basic.4y;unknown;no;no;telephone;may;thu;340;7;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+48;admin.;divorced;high.school;no;yes;no;telephone;may;thu;139;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+59;blue-collar;married;basic.4y;unknown;no;no;telephone;may;thu;763;2;999;0;nonexistent;1.1;93.994;-36.4;4.86;5191.0;no
+35;blue-collar;married;basic.9y;unknown;no;no;telephone;may;fri;288;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+35;blue-collar;single;university.degree;no;yes;yes;telephone;may;fri;231;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+37;blue-collar;married;basic.4y;no;no;no;telephone;may;fri;120;17;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+38;blue-collar;married;high.school;unknown;yes;no;telephone;may;fri;203;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+39;blue-collar;married;basic.9y;no;no;yes;telephone;may;fri;67;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+42;blue-collar;married;unknown;unknown;unknown;unknown;telephone;may;fri;311;4;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+57;technician;married;university.degree;no;no;no;telephone;may;fri;50;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+42;housemaid;single;basic.4y;no;yes;no;telephone;may;fri;86;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+25;blue-collar;single;high.school;no;yes;no;telephone;may;fri;139;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+54;self-employed;married;professional.course;unknown;no;no;telephone;may;fri;235;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+46;management;married;basic.9y;no;no;no;telephone;may;fri;43;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+34;entrepreneur;married;basic.4y;no;yes;no;telephone;may;fri;233;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+44;blue-collar;married;high.school;no;yes;no;telephone;may;fri;230;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+42;services;married;professional.course;no;no;no;telephone;may;fri;177;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+42;services;married;professional.course;no;yes;no;telephone;may;fri;149;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+58;blue-collar;married;basic.4y;unknown;yes;yes;telephone;may;fri;422;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+41;blue-collar;married;basic.9y;unknown;no;no;telephone;may;fri;121;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+41;management;single;high.school;no;yes;no;telephone;may;fri;324;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+48;blue-collar;married;basic.6y;no;no;no;telephone;may;fri;287;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+33;blue-collar;single;basic.9y;no;yes;yes;telephone;may;fri;58;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+58;services;married;basic.4y;no;no;no;telephone;may;fri;226;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+42;admin.;single;basic.9y;unknown;no;no;telephone;may;fri;153;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+52;self-employed;married;university.degree;no;no;no;telephone;may;fri;151;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+31;technician;single;university.degree;no;yes;no;telephone;may;fri;57;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+39;admin.;single;university.degree;unknown;no;no;telephone;may;fri;31;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+35;blue-collar;married;basic.4y;unknown;no;no;telephone;may;fri;118;6;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+28;services;married;high.school;no;yes;no;telephone;may;fri;133;4;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+32;blue-collar;single;basic.9y;no;no;no;telephone;may;fri;171;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+37;technician;single;university.degree;no;no;no;telephone;may;fri;62;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+36;blue-collar;single;basic.9y;unknown;no;no;telephone;may;fri;45;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+51;blue-collar;married;basic.6y;no;yes;no;telephone;may;fri;91;9;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+34;admin.;married;high.school;no;no;no;telephone;may;fri;172;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+40;admin.;married;high.school;no;yes;yes;telephone;may;fri;498;4;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+47;blue-collar;married;basic.9y;no;no;no;telephone;may;fri;85;7;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+43;admin.;married;university.degree;no;yes;no;telephone;may;fri;224;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+34;housemaid;divorced;high.school;no;no;no;telephone;may;fri;553;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;yes
+30;admin.;married;university.degree;no;yes;no;telephone;may;fri;242;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+35;blue-collar;divorced;basic.9y;no;no;yes;telephone;may;fri;192;6;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+45;technician;married;professional.course;unknown;no;no;telephone;may;fri;207;4;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+52;blue-collar;married;basic.4y;unknown;no;no;telephone;may;fri;711;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+26;admin.;single;high.school;no;yes;no;telephone;may;fri;160;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+36;admin.;single;university.degree;no;no;no;telephone;may;fri;147;5;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+42;admin.;single;university.degree;no;yes;no;telephone;may;fri;87;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+30;admin.;married;high.school;no;no;no;telephone;may;fri;199;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+37;blue-collar;unknown;basic.6y;unknown;no;yes;telephone;may;fri;34;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+35;blue-collar;single;basic.9y;no;yes;no;telephone;may;fri;65;7;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+33;entrepreneur;married;university.degree;no;yes;no;telephone;may;fri;150;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+38;blue-collar;married;basic.9y;no;yes;yes;telephone;may;fri;57;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+34;admin.;single;university.degree;no;no;no;telephone;may;fri;234;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+28;blue-collar;single;basic.9y;no;no;no;telephone;may;fri;521;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+33;admin.;married;university.degree;no;yes;no;telephone;may;fri;555;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+39;admin.;married;university.degree;no;yes;no;telephone;may;fri;86;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+26;blue-collar;single;basic.9y;no;no;no;telephone;may;fri;204;4;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+36;housemaid;married;high.school;no;no;no;telephone;may;fri;222;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+35;admin.;single;high.school;no;no;no;telephone;may;fri;162;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+33;self-employed;married;basic.6y;no;no;no;telephone;may;fri;648;5;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+34;services;married;high.school;no;no;yes;telephone;may;fri;659;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+27;student;single;university.degree;unknown;no;no;telephone;may;fri;867;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+41;admin.;single;high.school;no;no;yes;telephone;may;fri;96;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+34;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;fri;123;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+25;admin.;married;university.degree;no;no;no;telephone;may;fri;56;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+34;unemployed;married;unknown;no;yes;no;telephone;may;fri;54;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+50;admin.;married;university.degree;no;yes;no;telephone;may;fri;152;4;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+25;blue-collar;married;basic.6y;no;no;no;telephone;may;fri;25;4;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+26;admin.;married;high.school;unknown;no;no;telephone;may;fri;120;6;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+37;self-employed;divorced;university.degree;no;yes;no;telephone;may;fri;491;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+49;entrepreneur;married;university.degree;unknown;no;no;telephone;may;fri;379;17;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+37;blue-collar;married;basic.9y;unknown;no;no;telephone;may;fri;343;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+32;unemployed;single;high.school;unknown;yes;yes;telephone;may;fri;289;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+50;blue-collar;married;basic.4y;unknown;no;no;telephone;may;fri;574;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+51;services;married;high.school;unknown;yes;no;telephone;may;fri;85;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+55;unknown;married;unknown;unknown;no;no;telephone;may;fri;319;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+49;services;married;high.school;no;yes;yes;telephone;may;fri;108;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+40;services;married;high.school;no;no;yes;telephone;may;fri;762;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;yes
+52;blue-collar;single;unknown;unknown;no;no;telephone;may;fri;80;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+55;unknown;married;unknown;unknown;yes;no;telephone;may;fri;449;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+38;admin.;single;university.degree;no;yes;no;telephone;may;fri;198;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+52;self-employed;married;university.degree;no;yes;no;telephone;may;fri;135;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+34;services;married;high.school;no;yes;no;telephone;may;fri;69;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+44;admin.;divorced;university.degree;unknown;yes;no;telephone;may;fri;55;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+48;blue-collar;married;basic.6y;no;yes;no;telephone;may;fri;290;5;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;yes
+26;technician;married;basic.6y;no;yes;no;telephone;may;fri;138;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+28;services;married;unknown;no;no;yes;telephone;may;fri;135;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+31;entrepreneur;married;basic.9y;unknown;yes;no;telephone;may;fri;70;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+58;housemaid;married;basic.4y;unknown;yes;no;telephone;may;fri;652;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+37;self-employed;married;basic.9y;no;no;no;telephone;may;fri;327;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+43;housemaid;married;basic.4y;unknown;no;no;telephone;may;fri;246;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+37;technician;single;university.degree;no;yes;no;telephone;may;fri;295;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+37;technician;single;university.degree;no;no;no;telephone;may;fri;255;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+35;services;single;high.school;no;yes;no;telephone;may;fri;523;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+30;blue-collar;single;basic.4y;unknown;no;no;telephone;may;fri;130;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+34;services;married;high.school;no;no;no;telephone;may;fri;103;5;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+30;services;married;high.school;unknown;no;no;telephone;may;fri;205;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+37;technician;married;professional.course;unknown;unknown;unknown;telephone;may;fri;92;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+38;blue-collar;married;high.school;no;yes;no;telephone;may;fri;107;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+30;admin.;married;university.degree;no;no;no;telephone;may;fri;864;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;yes
+25;technician;single;professional.course;no;yes;no;telephone;may;fri;65;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+41;admin.;divorced;high.school;no;no;no;telephone;may;fri;556;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+25;student;single;high.school;no;no;no;telephone;may;fri;115;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+26;technician;married;professional.course;no;no;no;telephone;may;fri;180;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+37;admin.;married;university.degree;no;no;no;telephone;may;fri;87;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+44;management;divorced;basic.9y;unknown;no;no;telephone;may;fri;70;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+39;technician;married;professional.course;no;yes;no;telephone;may;fri;435;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+49;admin.;divorced;high.school;no;no;no;telephone;may;fri;132;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+41;admin.;married;high.school;no;no;no;telephone;may;fri;312;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+33;admin.;married;high.school;no;no;no;telephone;may;fri;283;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+30;admin.;married;university.degree;no;yes;yes;telephone;may;fri;182;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+37;blue-collar;single;unknown;unknown;no;no;telephone;may;fri;379;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+33;management;married;basic.9y;unknown;no;no;telephone;may;fri;127;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+35;management;single;unknown;no;no;no;telephone;may;fri;126;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+35;housemaid;married;basic.4y;no;no;no;telephone;may;fri;91;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+45;blue-collar;divorced;basic.9y;no;unknown;unknown;telephone;may;fri;78;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+40;technician;married;university.degree;no;no;no;telephone;may;fri;417;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+43;blue-collar;divorced;basic.4y;unknown;yes;no;telephone;may;fri;618;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;yes
+39;technician;married;university.degree;unknown;yes;no;telephone;may;fri;407;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+32;technician;single;university.degree;no;yes;no;telephone;may;fri;160;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+45;blue-collar;divorced;basic.9y;no;no;no;telephone;may;fri;171;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+29;technician;married;professional.course;no;no;no;telephone;may;fri;210;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+36;housemaid;married;high.school;no;yes;yes;telephone;may;fri;135;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+35;blue-collar;divorced;basic.9y;no;yes;no;telephone;may;fri;461;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+25;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;fri;763;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;yes
+27;admin.;single;high.school;unknown;no;no;telephone;may;fri;682;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;yes
+40;admin.;married;high.school;no;no;no;telephone;may;fri;171;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+46;housemaid;married;basic.4y;no;no;no;telephone;may;fri;68;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+30;services;single;professional.course;no;yes;no;telephone;may;fri;120;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+52;blue-collar;single;unknown;unknown;no;no;telephone;may;fri;67;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+36;admin.;married;high.school;no;no;no;telephone;may;fri;381;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+32;blue-collar;married;professional.course;no;no;no;telephone;may;fri;278;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+43;blue-collar;married;basic.4y;unknown;no;yes;telephone;may;fri;126;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+26;blue-collar;single;basic.9y;no;yes;no;telephone;may;fri;149;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+56;technician;married;basic.4y;unknown;no;no;telephone;may;fri;95;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+32;blue-collar;married;basic.9y;no;no;no;telephone;may;fri;197;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+43;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;fri;38;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+40;management;divorced;university.degree;unknown;yes;yes;telephone;may;fri;201;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+30;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;fri;176;4;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+26;admin.;married;high.school;no;yes;no;telephone;may;fri;61;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+42;unemployed;divorced;high.school;no;no;no;telephone;may;fri;275;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+32;blue-collar;married;basic.4y;no;no;no;telephone;may;fri;201;4;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+33;admin.;married;university.degree;no;no;no;telephone;may;fri;724;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+42;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;fri;143;4;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+43;admin.;married;university.degree;no;no;no;telephone;may;fri;197;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+26;admin.;single;high.school;no;no;yes;telephone;may;fri;143;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+41;blue-collar;married;basic.4y;no;yes;no;telephone;may;fri;153;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+39;technician;married;professional.course;no;no;no;telephone;may;fri;197;12;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+26;services;single;unknown;no;yes;no;telephone;may;fri;536;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+48;blue-collar;married;professional.course;no;no;no;telephone;may;fri;120;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+47;blue-collar;married;basic.6y;unknown;yes;no;telephone;may;fri;604;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;yes
+41;admin.;married;university.degree;no;no;no;telephone;may;fri;254;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+37;blue-collar;single;basic.9y;unknown;no;no;telephone;may;fri;121;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+60;admin.;married;high.school;no;yes;no;telephone;may;fri;118;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+24;technician;single;professional.course;unknown;yes;yes;telephone;may;fri;447;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+52;services;married;high.school;unknown;unknown;unknown;telephone;may;fri;854;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;yes
+44;blue-collar;married;basic.4y;no;yes;no;telephone;may;fri;151;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+30;services;married;high.school;no;yes;yes;telephone;may;fri;114;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+50;technician;married;professional.course;no;yes;no;telephone;may;fri;855;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;yes
+30;blue-collar;married;basic.9y;unknown;no;no;telephone;may;fri;115;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+30;services;married;high.school;no;no;no;telephone;may;fri;274;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+35;blue-collar;married;unknown;no;no;no;telephone;may;fri;100;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+27;services;single;high.school;no;no;no;telephone;may;fri;156;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+53;technician;married;professional.course;unknown;yes;no;telephone;may;fri;153;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+53;technician;married;professional.course;unknown;yes;no;telephone;may;fri;264;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+57;services;divorced;high.school;no;no;no;telephone;may;fri;251;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+31;services;married;high.school;no;no;no;telephone;may;fri;1269;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;yes
+25;admin.;single;unknown;no;no;no;telephone;may;fri;48;4;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+44;technician;married;professional.course;unknown;no;no;telephone;may;fri;119;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+47;admin.;single;university.degree;no;no;no;telephone;may;fri;104;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+28;technician;single;professional.course;no;yes;no;telephone;may;fri;65;13;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+44;technician;married;high.school;no;no;no;telephone;may;fri;75;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+46;blue-collar;divorced;basic.4y;no;yes;no;telephone;may;fri;157;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+38;blue-collar;single;basic.9y;unknown;yes;no;telephone;may;fri;565;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+29;admin.;married;university.degree;no;no;no;telephone;may;fri;165;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+46;unemployed;divorced;basic.9y;no;no;no;telephone;may;fri;314;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+41;admin.;divorced;high.school;no;yes;no;telephone;may;fri;109;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+38;blue-collar;single;basic.9y;no;yes;no;telephone;may;fri;219;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+25;admin.;single;unknown;no;no;no;telephone;may;fri;60;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+24;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;fri;385;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+30;admin.;married;unknown;no;yes;no;telephone;may;fri;96;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+37;admin.;married;high.school;no;no;no;telephone;may;fri;868;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+60;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;fri;161;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+38;technician;married;professional.course;no;no;no;telephone;may;fri;448;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+33;admin.;married;unknown;no;unknown;unknown;telephone;may;fri;137;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+47;admin.;married;university.degree;unknown;yes;no;telephone;may;fri;155;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+45;unknown;married;unknown;no;no;no;telephone;may;fri;633;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+55;technician;married;university.degree;no;no;no;telephone;may;fri;58;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+31;blue-collar;married;basic.9y;no;yes;no;telephone;may;fri;127;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+37;admin.;divorced;high.school;unknown;no;no;telephone;may;fri;99;8;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+46;technician;married;university.degree;no;yes;no;telephone;may;fri;170;4;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+39;admin.;married;university.degree;no;no;no;telephone;may;fri;208;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+30;blue-collar;married;unknown;unknown;yes;yes;telephone;may;fri;129;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+46;management;married;basic.9y;no;no;no;telephone;may;fri;134;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+43;admin.;married;university.degree;no;no;no;telephone;may;fri;129;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+28;technician;single;high.school;no;no;no;telephone;may;fri;184;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+53;self-employed;married;university.degree;no;no;no;telephone;may;fri;371;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+54;services;married;unknown;no;no;no;telephone;may;fri;270;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+28;services;single;high.school;no;no;no;telephone;may;fri;145;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+33;technician;married;high.school;no;yes;no;telephone;may;fri;136;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+36;unemployed;married;basic.9y;no;no;no;telephone;may;fri;363;8;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+38;blue-collar;married;unknown;no;yes;no;telephone;may;fri;63;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+59;entrepreneur;divorced;high.school;no;no;no;telephone;may;fri;143;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+36;blue-collar;single;basic.6y;no;yes;no;telephone;may;fri;56;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+43;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;fri;226;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+49;blue-collar;married;basic.4y;unknown;yes;yes;telephone;may;fri;35;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+36;blue-collar;married;basic.9y;no;no;yes;telephone;may;fri;298;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+47;self-employed;married;unknown;unknown;yes;no;telephone;may;fri;158;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+32;admin.;single;university.degree;no;no;no;telephone;may;fri;47;8;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+49;self-employed;single;basic.9y;no;yes;yes;telephone;may;fri;827;5;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+34;admin.;married;university.degree;no;no;no;telephone;may;fri;83;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+37;admin.;single;university.degree;no;no;yes;telephone;may;fri;570;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+41;admin.;married;professional.course;unknown;yes;no;telephone;may;fri;72;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+23;services;single;high.school;no;no;no;telephone;may;fri;557;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+26;technician;married;professional.course;no;no;no;telephone;may;fri;59;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+54;admin.;married;basic.4y;unknown;unknown;unknown;telephone;may;fri;296;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+46;admin.;married;university.degree;unknown;no;no;telephone;may;fri;38;5;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+31;admin.;married;high.school;no;no;no;telephone;may;fri;170;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+37;admin.;married;high.school;no;yes;no;telephone;may;fri;422;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+53;admin.;single;university.degree;unknown;unknown;unknown;telephone;may;fri;230;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+54;housemaid;divorced;basic.4y;unknown;yes;no;telephone;may;fri;141;9;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+31;services;single;high.school;no;no;no;telephone;may;fri;76;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+41;entrepreneur;married;university.degree;no;yes;no;telephone;may;fri;691;10;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;yes
+30;admin.;married;university.degree;no;yes;no;telephone;may;fri;238;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+56;blue-collar;married;basic.4y;unknown;no;no;telephone;may;fri;1097;15;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;yes
+33;services;single;high.school;no;yes;no;telephone;may;fri;111;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+33;admin.;married;high.school;no;no;yes;telephone;may;fri;84;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+34;admin.;married;university.degree;no;no;no;telephone;may;fri;371;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+34;admin.;married;university.degree;no;yes;no;telephone;may;fri;103;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+39;blue-collar;married;basic.6y;no;no;no;telephone;may;fri;206;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+43;blue-collar;married;basic.9y;unknown;no;no;telephone;may;fri;1500;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;yes
+30;services;married;high.school;no;yes;no;telephone;may;fri;265;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+55;blue-collar;married;basic.6y;unknown;no;no;telephone;may;fri;567;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+28;blue-collar;married;basic.9y;no;no;no;telephone;may;fri;254;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+59;technician;married;unknown;no;no;no;telephone;may;fri;464;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+37;blue-collar;married;high.school;no;no;no;telephone;may;fri;1236;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;yes
+33;blue-collar;married;basic.4y;no;no;no;telephone;may;fri;33;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+33;technician;single;professional.course;unknown;yes;no;telephone;may;fri;613;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+25;blue-collar;single;high.school;no;no;no;telephone;may;fri;1212;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+32;admin.;single;university.degree;unknown;no;no;telephone;may;fri;96;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+48;self-employed;married;high.school;unknown;yes;no;telephone;may;fri;171;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+43;technician;married;professional.course;unknown;yes;no;telephone;may;fri;53;5;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+38;blue-collar;single;basic.9y;unknown;no;no;telephone;may;fri;91;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+42;technician;married;professional.course;unknown;yes;no;telephone;may;fri;185;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+43;technician;divorced;professional.course;no;yes;no;telephone;may;fri;201;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+41;technician;single;university.degree;unknown;no;yes;telephone;may;fri;169;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+46;admin.;married;high.school;no;no;no;telephone;may;fri;515;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+44;technician;married;professional.course;unknown;yes;no;telephone;may;fri;388;7;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+35;blue-collar;married;basic.6y;no;yes;no;telephone;may;fri;178;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+53;housemaid;divorced;basic.4y;no;yes;no;telephone;may;fri;422;9;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+29;services;married;high.school;no;no;no;telephone;may;fri;76;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+29;technician;married;professional.course;no;no;no;telephone;may;fri;886;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;yes
+51;retired;divorced;basic.9y;no;no;no;telephone;may;fri;296;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+33;technician;unknown;professional.course;unknown;yes;no;telephone;may;fri;378;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+41;technician;single;professional.course;no;unknown;unknown;telephone;may;fri;136;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+33;services;married;basic.4y;no;no;no;telephone;may;fri;58;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+35;admin.;married;university.degree;no;no;no;telephone;may;fri;60;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+56;blue-collar;married;professional.course;no;unknown;unknown;telephone;may;fri;340;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+36;blue-collar;single;basic.9y;no;no;no;telephone;may;fri;522;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+39;management;married;basic.9y;no;yes;no;telephone;may;fri;159;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+25;admin.;single;high.school;no;no;no;telephone;may;fri;113;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+26;services;single;high.school;no;yes;no;telephone;may;fri;123;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+46;blue-collar;married;basic.9y;unknown;no;no;telephone;may;fri;306;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+40;admin.;married;professional.course;no;no;yes;telephone;may;fri;148;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+32;technician;married;professional.course;no;yes;no;telephone;may;fri;322;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+59;retired;single;high.school;no;no;no;telephone;may;fri;475;4;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+38;admin.;divorced;high.school;no;yes;no;telephone;may;fri;224;5;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+30;blue-collar;married;basic.6y;no;no;no;telephone;may;fri;88;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+48;entrepreneur;married;unknown;unknown;no;no;telephone;may;fri;509;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+49;blue-collar;divorced;high.school;no;no;no;telephone;may;fri;152;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+47;unknown;married;unknown;unknown;no;no;telephone;may;fri;147;1;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+37;management;married;university.degree;no;yes;no;telephone;may;fri;97;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+39;blue-collar;divorced;basic.9y;no;yes;no;telephone;may;fri;113;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+31;admin.;married;basic.9y;no;yes;no;telephone;may;fri;465;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+31;admin.;married;university.degree;no;no;no;telephone;may;fri;294;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+48;admin.;divorced;university.degree;no;yes;no;telephone;may;fri;224;4;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+41;services;married;high.school;unknown;yes;no;telephone;may;fri;58;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+29;services;married;unknown;no;yes;no;telephone;may;fri;137;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+49;entrepreneur;married;university.degree;no;yes;no;telephone;may;fri;142;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+31;blue-collar;single;basic.9y;unknown;no;no;telephone;may;fri;312;7;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+48;admin.;married;professional.course;unknown;yes;no;telephone;may;fri;34;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+38;services;divorced;basic.6y;no;no;no;telephone;may;fri;825;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+46;blue-collar;married;basic.9y;no;yes;no;telephone;may;fri;116;6;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+38;self-employed;married;basic.9y;no;yes;no;telephone;may;fri;103;5;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+43;management;married;unknown;no;no;no;telephone;may;fri;38;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+53;admin.;married;basic.9y;unknown;yes;no;telephone;may;fri;168;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+36;blue-collar;married;basic.9y;no;yes;no;telephone;may;fri;31;6;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+34;management;married;university.degree;no;no;no;telephone;may;fri;66;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+41;blue-collar;married;basic.4y;no;no;no;telephone;may;fri;512;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+35;blue-collar;married;basic.9y;no;yes;no;telephone;may;fri;188;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+38;technician;single;university.degree;no;unknown;unknown;telephone;may;fri;214;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+49;entrepreneur;married;university.degree;unknown;yes;yes;telephone;may;fri;65;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+37;admin.;married;high.school;no;no;no;telephone;may;fri;80;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+49;blue-collar;married;basic.6y;no;yes;no;telephone;may;fri;1980;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;yes
+36;services;married;high.school;unknown;no;no;telephone;may;fri;358;4;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+54;management;married;basic.9y;no;yes;no;telephone;may;fri;398;5;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+29;blue-collar;married;high.school;no;yes;yes;telephone;may;fri;62;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+43;technician;married;professional.course;no;no;no;telephone;may;fri;265;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+52;self-employed;married;university.degree;unknown;no;no;telephone;may;fri;618;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+31;management;single;professional.course;no;yes;no;telephone;may;fri;256;6;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+48;technician;single;unknown;no;yes;no;telephone;may;fri;722;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;yes
+39;blue-collar;married;basic.9y;no;no;no;telephone;may;fri;199;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+38;services;married;high.school;no;no;no;telephone;may;fri;510;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+37;admin.;single;university.degree;no;yes;no;telephone;may;fri;355;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+47;technician;married;basic.9y;no;no;no;telephone;may;fri;150;5;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+39;blue-collar;married;basic.4y;no;yes;no;telephone;may;fri;159;4;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+29;management;single;university.degree;no;no;no;telephone;may;fri;170;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+34;housemaid;divorced;basic.6y;no;no;no;telephone;may;fri;243;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+52;self-employed;single;university.degree;unknown;yes;yes;telephone;may;fri;140;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+29;blue-collar;single;basic.9y;no;no;no;telephone;may;fri;267;14;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+36;blue-collar;married;unknown;unknown;yes;no;telephone;may;fri;219;4;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+54;blue-collar;married;unknown;unknown;no;no;telephone;may;fri;67;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+33;technician;unknown;professional.course;unknown;no;no;telephone;may;fri;112;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+47;admin.;married;university.degree;unknown;no;no;telephone;may;fri;216;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+59;blue-collar;divorced;basic.4y;no;no;no;telephone;may;fri;167;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+38;technician;divorced;professional.course;no;yes;yes;telephone;may;fri;78;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+45;blue-collar;married;basic.9y;unknown;no;no;telephone;may;fri;222;9;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+41;technician;single;professional.course;no;no;no;telephone;may;fri;363;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+44;services;married;basic.9y;no;yes;no;telephone;may;fri;109;4;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+32;services;single;high.school;no;no;no;telephone;may;fri;67;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+55;technician;married;university.degree;no;no;no;telephone;may;fri;41;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+47;technician;divorced;high.school;no;no;no;telephone;may;fri;156;5;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+32;blue-collar;married;basic.9y;no;yes;no;telephone;may;fri;108;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+27;blue-collar;married;basic.6y;no;yes;no;telephone;may;fri;408;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+35;blue-collar;married;high.school;no;yes;yes;telephone;may;fri;272;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+59;technician;married;basic.9y;no;no;no;telephone;may;fri;135;9;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+35;technician;married;basic.6y;no;no;no;telephone;may;fri;107;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+33;self-employed;single;basic.4y;no;yes;no;telephone;may;fri;742;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+36;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;fri;166;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+37;blue-collar;married;basic.9y;unknown;yes;yes;telephone;may;fri;376;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+56;admin.;married;high.school;no;yes;no;telephone;may;fri;138;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+30;blue-collar;single;basic.9y;unknown;no;no;telephone;may;fri;16;18;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+42;services;married;high.school;no;no;no;telephone;may;fri;984;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;yes
+44;technician;married;high.school;no;yes;no;telephone;may;fri;363;7;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+43;management;married;university.degree;no;yes;no;telephone;may;fri;339;4;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+29;housemaid;married;high.school;no;no;no;telephone;may;fri;161;12;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+40;admin.;single;university.degree;no;yes;no;telephone;may;fri;28;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+49;management;divorced;university.degree;no;no;no;telephone;may;fri;170;7;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+33;admin.;single;high.school;no;yes;no;telephone;may;fri;66;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+41;housemaid;married;university.degree;unknown;no;no;telephone;may;fri;199;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+27;services;single;high.school;no;yes;no;telephone;may;fri;274;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+45;services;divorced;high.school;no;no;no;telephone;may;fri;136;8;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+34;housemaid;single;university.degree;no;no;no;telephone;may;fri;62;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+35;technician;single;university.degree;no;no;no;telephone;may;fri;58;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+45;unknown;single;basic.4y;no;yes;no;telephone;may;fri;189;5;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+35;self-employed;married;basic.9y;no;yes;yes;telephone;may;fri;135;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+34;blue-collar;married;basic.9y;no;yes;no;telephone;may;fri;319;6;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+47;admin.;married;high.school;no;yes;no;telephone;may;fri;352;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+27;technician;single;professional.course;no;no;no;telephone;may;fri;230;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+22;blue-collar;single;basic.6y;unknown;no;no;telephone;may;fri;178;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+36;blue-collar;married;basic.4y;unknown;no;no;telephone;may;fri;42;11;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+54;technician;married;professional.course;no;no;no;telephone;may;fri;171;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+51;admin.;married;university.degree;unknown;yes;no;telephone;may;fri;119;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+50;admin.;married;basic.6y;no;no;no;telephone;may;fri;66;4;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+44;admin.;married;high.school;no;no;no;telephone;may;fri;130;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+52;entrepreneur;married;basic.9y;no;yes;yes;telephone;may;fri;390;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+33;management;single;university.degree;no;no;no;telephone;may;fri;101;16;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+51;admin.;married;professional.course;no;yes;no;telephone;may;fri;78;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+30;admin.;single;high.school;no;yes;no;telephone;may;fri;100;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+36;self-employed;divorced;basic.4y;no;no;no;telephone;may;fri;212;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+42;blue-collar;divorced;basic.4y;no;no;no;telephone;may;fri;181;4;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+30;blue-collar;single;basic.6y;no;yes;no;telephone;may;fri;72;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+23;admin.;married;high.school;no;yes;no;telephone;may;fri;390;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+44;services;married;high.school;no;no;no;telephone;may;fri;324;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+28;admin.;single;university.degree;no;yes;yes;telephone;may;fri;163;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+39;services;married;high.school;no;no;no;telephone;may;fri;110;6;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+57;retired;married;high.school;unknown;no;no;telephone;may;fri;72;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+30;blue-collar;married;unknown;no;no;no;telephone;may;fri;85;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+52;unknown;married;basic.6y;no;no;no;telephone;may;fri;54;4;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+27;admin.;married;basic.9y;no;yes;no;telephone;may;fri;231;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+37;self-employed;married;high.school;no;no;no;telephone;may;fri;833;8;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+44;technician;married;professional.course;no;no;no;telephone;may;fri;124;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+35;technician;divorced;professional.course;no;no;no;telephone;may;fri;57;10;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+35;blue-collar;married;basic.6y;no;yes;no;telephone;may;fri;115;6;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+37;self-employed;married;professional.course;unknown;yes;no;telephone;may;fri;78;13;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+44;admin.;married;high.school;no;yes;no;telephone;may;fri;43;5;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+39;entrepreneur;married;high.school;no;no;yes;telephone;may;fri;229;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+50;blue-collar;married;unknown;unknown;yes;no;telephone;may;fri;81;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+53;services;married;basic.4y;no;no;no;telephone;may;fri;86;5;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+31;blue-collar;single;unknown;no;yes;no;telephone;may;fri;273;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+28;admin.;married;high.school;no;no;yes;telephone;may;fri;30;18;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+57;services;divorced;high.school;no;yes;no;telephone;may;fri;288;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+42;services;married;high.school;unknown;yes;no;telephone;may;fri;247;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+34;admin.;married;university.degree;no;no;no;telephone;may;fri;85;4;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+48;admin.;married;university.degree;no;no;no;telephone;may;fri;76;9;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+47;admin.;married;basic.6y;unknown;yes;no;telephone;may;fri;85;6;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+36;management;married;university.degree;no;yes;no;telephone;may;fri;170;4;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+28;blue-collar;married;basic.6y;unknown;yes;no;telephone;may;fri;428;7;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+31;admin.;married;university.degree;no;no;no;telephone;may;fri;370;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+30;blue-collar;married;basic.9y;no;no;no;telephone;may;fri;137;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+38;services;married;high.school;unknown;no;no;telephone;may;fri;293;6;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+57;blue-collar;married;basic.9y;no;no;no;telephone;may;fri;153;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+45;blue-collar;divorced;basic.9y;no;yes;no;telephone;may;fri;281;4;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+42;technician;divorced;university.degree;no;yes;no;telephone;may;fri;46;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+31;admin.;single;high.school;no;yes;no;telephone;may;fri;26;25;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+30;technician;married;university.degree;no;yes;no;telephone;may;fri;104;6;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+37;housemaid;married;high.school;no;yes;yes;telephone;may;fri;205;6;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+32;admin.;single;high.school;no;yes;no;telephone;may;fri;891;4;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;yes
+41;technician;married;professional.course;no;no;no;telephone;may;fri;34;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+43;blue-collar;married;basic.4y;unknown;no;no;telephone;may;fri;745;12;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;yes
+34;entrepreneur;married;professional.course;no;yes;no;telephone;may;fri;292;4;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+47;technician;married;professional.course;no;no;no;telephone;may;fri;135;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+40;management;married;high.school;unknown;no;no;telephone;may;fri;45;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+43;services;married;high.school;unknown;yes;no;telephone;may;fri;99;6;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+48;blue-collar;single;basic.6y;unknown;no;no;telephone;may;fri;148;4;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+40;admin.;divorced;professional.course;no;yes;no;telephone;may;fri;539;12;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;yes
+38;blue-collar;married;basic.9y;no;no;no;telephone;may;fri;84;9;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+37;unemployed;married;professional.course;no;yes;no;telephone;may;fri;3631;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;yes
+55;blue-collar;married;basic.4y;no;no;no;telephone;may;fri;435;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+42;blue-collar;married;basic.4y;no;yes;no;telephone;may;fri;29;4;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+30;self-employed;single;university.degree;no;no;no;telephone;may;fri;510;5;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+31;services;single;basic.9y;no;no;no;telephone;may;fri;1044;5;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;yes
+57;management;married;university.degree;unknown;no;yes;telephone;may;fri;59;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+47;entrepreneur;married;university.degree;unknown;yes;no;telephone;may;fri;96;8;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+38;technician;married;professional.course;no;yes;no;telephone;may;fri;122;4;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+40;admin.;married;high.school;unknown;no;yes;telephone;may;fri;84;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+60;unknown;single;unknown;unknown;no;no;telephone;may;fri;33;4;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+50;blue-collar;married;basic.9y;no;no;no;telephone;may;fri;43;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+44;admin.;married;high.school;no;yes;no;telephone;may;fri;223;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+40;services;married;high.school;no;yes;no;telephone;may;fri;288;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+34;blue-collar;divorced;basic.4y;no;yes;no;telephone;may;fri;306;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+46;technician;married;basic.9y;unknown;no;no;telephone;may;fri;81;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+33;admin.;married;high.school;no;yes;no;telephone;may;fri;53;7;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+51;blue-collar;married;unknown;unknown;yes;no;telephone;may;fri;436;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+37;unemployed;married;professional.course;no;no;no;telephone;may;fri;41;8;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+30;services;married;high.school;no;no;no;telephone;may;fri;147;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+56;housemaid;married;basic.4y;no;yes;no;telephone;may;fri;81;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+31;blue-collar;married;basic.9y;no;no;no;telephone;may;fri;232;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+39;blue-collar;married;basic.9y;unknown;no;yes;telephone;may;fri;97;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+40;self-employed;married;basic.4y;unknown;yes;no;telephone;may;fri;82;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+36;housemaid;married;basic.6y;no;yes;no;telephone;may;fri;60;16;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+40;services;married;high.school;no;yes;yes;telephone;may;fri;141;9;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+41;self-employed;married;high.school;no;yes;no;telephone;may;fri;206;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+42;unemployed;married;basic.4y;no;yes;no;telephone;may;fri;170;19;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+47;management;married;basic.4y;unknown;no;yes;telephone;may;fri;251;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+51;admin.;married;basic.9y;no;no;no;telephone;may;fri;25;5;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+33;technician;married;professional.course;no;no;no;telephone;may;fri;120;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+35;admin.;single;university.degree;no;no;no;telephone;may;fri;123;4;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+48;unemployed;married;basic.6y;no;no;yes;telephone;may;fri;58;3;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+46;blue-collar;married;basic.4y;unknown;no;yes;telephone;may;fri;28;8;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+24;entrepreneur;married;university.degree;unknown;no;no;telephone;may;fri;1193;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+27;blue-collar;married;basic.9y;unknown;no;yes;telephone;may;fri;127;5;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+33;technician;married;professional.course;no;no;no;telephone;may;fri;395;2;999;0;nonexistent;1.1;93.994;-36.4;4.864;5191.0;no
+26;management;single;university.degree;no;no;no;telephone;jun;mon;72;3;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+42;technician;married;professional.course;unknown;no;no;telephone;jun;mon;119;9;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+30;admin.;married;university.degree;no;no;no;telephone;jun;mon;100;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+55;technician;married;basic.9y;no;no;no;telephone;jun;mon;80;3;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+41;blue-collar;married;basic.4y;no;yes;no;telephone;jun;mon;132;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+47;blue-collar;divorced;basic.4y;no;no;no;telephone;jun;mon;140;3;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+42;admin.;married;university.degree;no;no;no;telephone;jun;mon;130;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+53;housemaid;married;professional.course;unknown;yes;no;telephone;jun;mon;251;4;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+45;services;married;basic.9y;no;no;no;telephone;jun;mon;71;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+54;technician;married;professional.course;unknown;yes;no;telephone;jun;mon;52;3;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+39;unemployed;married;university.degree;no;yes;no;telephone;jun;mon;108;4;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+52;technician;married;professional.course;no;yes;no;telephone;jun;mon;150;3;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+38;services;married;high.school;unknown;yes;no;telephone;jun;mon;25;7;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+58;blue-collar;married;basic.9y;no;no;no;telephone;jun;mon;90;3;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+37;technician;single;professional.course;unknown;unknown;unknown;telephone;jun;mon;51;4;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+29;services;divorced;high.school;no;no;yes;telephone;jun;mon;361;3;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+59;retired;married;unknown;no;no;yes;telephone;jun;mon;88;4;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+36;self-employed;divorced;university.degree;no;yes;yes;telephone;jun;mon;372;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+30;services;married;high.school;no;no;no;telephone;jun;mon;360;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+46;technician;married;professional.course;no;no;yes;telephone;jun;mon;63;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+46;retired;married;basic.4y;no;yes;no;telephone;jun;mon;550;3;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+38;unknown;divorced;high.school;unknown;yes;no;telephone;jun;mon;133;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+57;blue-collar;divorced;unknown;unknown;no;no;telephone;jun;mon;68;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+25;admin.;single;high.school;no;no;no;telephone;jun;mon;175;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+49;management;married;university.degree;no;no;no;telephone;jun;mon;202;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+38;blue-collar;married;high.school;no;yes;yes;telephone;jun;mon;192;8;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+59;retired;married;university.degree;unknown;yes;no;telephone;jun;mon;484;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+32;technician;single;professional.course;no;unknown;unknown;telephone;jun;mon;230;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+37;entrepreneur;married;university.degree;no;yes;no;telephone;jun;mon;403;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+34;blue-collar;divorced;basic.4y;unknown;no;no;telephone;jun;mon;178;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+46;admin.;married;university.degree;no;yes;no;telephone;jun;mon;502;5;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;yes
+47;self-employed;married;professional.course;no;yes;no;telephone;jun;mon;338;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+26;services;single;basic.9y;no;yes;no;telephone;jun;mon;205;3;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+35;technician;single;high.school;no;yes;no;telephone;jun;mon;92;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+42;blue-collar;married;unknown;unknown;no;no;telephone;jun;mon;268;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+48;technician;married;high.school;no;no;no;telephone;jun;mon;185;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+42;management;divorced;high.school;no;no;no;telephone;jun;mon;163;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+55;technician;married;basic.9y;unknown;no;no;telephone;jun;mon;362;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+41;admin.;single;university.degree;no;no;no;telephone;jun;mon;367;3;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+46;admin.;married;university.degree;unknown;no;no;telephone;jun;mon;230;3;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+44;technician;married;basic.4y;no;no;no;telephone;jun;mon;26;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+38;admin.;married;basic.9y;unknown;no;no;telephone;jun;mon;63;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+30;admin.;married;university.degree;no;no;no;telephone;jun;mon;493;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+54;services;divorced;high.school;no;no;no;telephone;jun;mon;113;3;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+48;entrepreneur;married;basic.4y;no;no;yes;telephone;jun;mon;215;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+38;unemployed;married;basic.6y;no;no;no;telephone;jun;mon;947;4;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;yes
+33;services;single;basic.6y;no;yes;no;telephone;jun;mon;177;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+44;self-employed;divorced;high.school;no;yes;no;telephone;jun;mon;123;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+39;admin.;single;university.degree;no;yes;yes;telephone;jun;mon;1075;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+40;technician;married;professional.course;unknown;no;no;telephone;jun;mon;21;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+43;unemployed;married;university.degree;unknown;no;no;telephone;jun;mon;114;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+60;management;married;university.degree;no;no;no;telephone;jun;mon;526;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;yes
+56;retired;divorced;basic.4y;no;no;no;telephone;jun;mon;163;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+46;entrepreneur;married;basic.9y;no;no;no;telephone;jun;mon;245;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+30;services;divorced;basic.9y;no;no;no;telephone;jun;mon;394;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;yes
+38;technician;single;university.degree;no;no;no;telephone;jun;mon;258;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+28;services;married;high.school;no;no;no;telephone;jun;mon;659;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;yes
+40;admin.;married;university.degree;unknown;yes;no;telephone;jun;mon;417;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+34;services;single;professional.course;unknown;yes;no;telephone;jun;mon;40;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+40;admin.;married;university.degree;unknown;yes;no;telephone;jun;mon;527;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+35;services;single;basic.4y;no;no;no;telephone;jun;mon;651;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+43;retired;married;basic.4y;unknown;yes;no;telephone;jun;mon;129;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+51;management;married;university.degree;no;yes;yes;telephone;jun;mon;409;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+33;blue-collar;married;high.school;no;no;no;telephone;jun;mon;283;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+35;admin.;divorced;university.degree;no;yes;no;telephone;jun;mon;144;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+25;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;mon;97;4;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+50;services;divorced;basic.4y;unknown;yes;no;telephone;jun;mon;168;4;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+34;blue-collar;single;basic.4y;unknown;yes;no;telephone;jun;mon;101;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+47;technician;single;university.degree;no;no;yes;telephone;jun;mon;67;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+35;blue-collar;married;basic.6y;no;yes;yes;telephone;jun;mon;64;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+35;admin.;single;basic.4y;unknown;yes;no;telephone;jun;mon;143;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+39;entrepreneur;married;basic.9y;unknown;yes;no;telephone;jun;mon;70;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+42;blue-collar;married;basic.6y;no;yes;no;telephone;jun;mon;1036;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;yes
+42;blue-collar;married;basic.6y;no;no;no;telephone;jun;mon;384;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+43;blue-collar;divorced;unknown;no;yes;no;telephone;jun;mon;172;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+48;technician;married;professional.course;unknown;no;no;telephone;jun;mon;105;3;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+25;blue-collar;married;basic.9y;no;yes;yes;telephone;jun;mon;60;5;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+32;blue-collar;married;professional.course;no;yes;no;telephone;jun;mon;26;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+47;self-employed;divorced;professional.course;unknown;yes;no;telephone;jun;mon;364;13;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+47;technician;single;professional.course;unknown;yes;yes;telephone;jun;mon;227;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+30;services;married;high.school;no;no;no;telephone;jun;mon;151;3;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+31;self-employed;married;university.degree;no;yes;yes;telephone;jun;mon;464;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+35;management;single;university.degree;no;yes;no;telephone;jun;mon;68;21;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+38;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;mon;464;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+39;blue-collar;married;basic.9y;unknown;yes;no;telephone;jun;mon;389;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+45;blue-collar;single;basic.9y;no;no;no;telephone;jun;mon;185;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+40;blue-collar;single;basic.9y;no;yes;no;telephone;jun;mon;128;3;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+30;services;married;high.school;no;no;no;telephone;jun;mon;88;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+48;blue-collar;married;unknown;unknown;no;no;telephone;jun;mon;136;7;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+38;blue-collar;married;basic.6y;unknown;no;no;telephone;jun;mon;123;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+58;unemployed;married;basic.9y;no;no;no;telephone;jun;mon;266;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+39;blue-collar;married;basic.4y;unknown;yes;no;telephone;jun;mon;466;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+58;blue-collar;married;basic.6y;unknown;no;no;telephone;jun;mon;80;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+39;admin.;married;university.degree;no;yes;no;telephone;jun;mon;490;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+35;blue-collar;married;basic.9y;no;no;no;telephone;jun;mon;232;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+40;management;married;university.degree;no;unknown;unknown;telephone;jun;mon;61;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+49;admin.;divorced;high.school;no;yes;no;telephone;jun;mon;537;5;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+34;blue-collar;married;basic.9y;unknown;yes;no;telephone;jun;mon;197;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+49;unemployed;divorced;professional.course;no;no;no;telephone;jun;mon;464;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+32;blue-collar;married;basic.9y;no;no;no;telephone;jun;mon;447;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+44;admin.;single;high.school;no;no;no;telephone;jun;mon;164;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+35;blue-collar;married;high.school;no;no;no;telephone;jun;mon;184;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+38;technician;single;professional.course;unknown;yes;no;telephone;jun;mon;127;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+35;blue-collar;married;basic.9y;no;yes;no;telephone;jun;mon;373;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+33;technician;single;university.degree;no;yes;no;telephone;jun;mon;42;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+30;services;single;high.school;no;no;no;telephone;jun;mon;132;6;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+55;entrepreneur;divorced;university.degree;no;yes;yes;telephone;jun;mon;579;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+47;entrepreneur;married;university.degree;no;no;yes;telephone;jun;mon;180;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+51;blue-collar;married;basic.9y;no;yes;no;telephone;jun;mon;159;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+40;entrepreneur;married;professional.course;unknown;no;no;telephone;jun;mon;66;6;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+44;blue-collar;married;professional.course;no;no;no;telephone;jun;mon;239;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+41;blue-collar;married;basic.9y;no;no;no;telephone;jun;mon;95;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+32;blue-collar;single;basic.4y;no;yes;yes;telephone;jun;mon;156;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+40;services;single;high.school;unknown;yes;no;telephone;jun;mon;89;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+41;self-employed;married;basic.4y;no;no;no;telephone;jun;mon;174;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+38;technician;married;basic.9y;no;no;no;telephone;jun;mon;59;3;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+29;technician;single;unknown;no;no;no;telephone;jun;mon;193;4;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+32;admin.;single;university.degree;no;unknown;unknown;telephone;jun;mon;215;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+39;services;single;high.school;unknown;yes;yes;telephone;jun;mon;563;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;yes
+41;services;divorced;high.school;no;yes;yes;telephone;jun;mon;273;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+39;self-employed;married;basic.4y;unknown;yes;yes;telephone;jun;mon;258;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+25;admin.;single;high.school;no;no;no;telephone;jun;mon;223;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+33;technician;married;basic.9y;no;no;no;telephone;jun;mon;76;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+24;services;single;high.school;no;yes;no;telephone;jun;mon;920;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+36;housemaid;married;basic.4y;no;no;no;telephone;jun;mon;152;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+35;blue-collar;divorced;basic.4y;unknown;yes;no;telephone;jun;mon;130;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+40;blue-collar;married;basic.6y;unknown;yes;yes;telephone;jun;mon;21;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+26;admin.;married;high.school;unknown;no;no;telephone;jun;mon;118;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+40;technician;divorced;university.degree;no;yes;no;telephone;jun;mon;113;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+45;management;married;university.degree;no;no;no;telephone;jun;mon;369;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+39;entrepreneur;married;high.school;no;unknown;unknown;telephone;jun;mon;122;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+26;admin.;single;high.school;no;no;yes;telephone;jun;mon;445;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+41;technician;single;university.degree;unknown;no;no;telephone;jun;mon;47;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+48;housemaid;married;basic.6y;unknown;yes;no;telephone;jun;mon;425;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+32;admin.;married;high.school;no;no;no;telephone;jun;mon;142;4;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+47;admin.;married;professional.course;no;no;no;telephone;jun;mon;317;6;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+51;blue-collar;married;basic.4y;no;yes;yes;telephone;jun;mon;184;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+55;blue-collar;married;professional.course;unknown;yes;yes;telephone;jun;mon;354;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+37;admin.;divorced;university.degree;no;yes;no;telephone;jun;mon;82;3;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+52;services;married;high.school;unknown;yes;no;telephone;jun;mon;105;3;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+47;management;divorced;university.degree;no;yes;yes;telephone;jun;mon;83;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+33;blue-collar;married;basic.9y;no;no;no;telephone;jun;mon;209;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+53;admin.;divorced;university.degree;unknown;no;no;telephone;jun;mon;53;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+57;housemaid;married;basic.4y;no;yes;no;telephone;jun;mon;210;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+53;services;married;high.school;unknown;yes;no;telephone;jun;mon;381;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+25;admin.;married;unknown;no;no;no;telephone;jun;mon;112;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+26;admin.;single;high.school;no;no;no;telephone;jun;mon;278;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+46;management;married;university.degree;unknown;no;no;telephone;jun;mon;183;3;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+58;retired;married;high.school;unknown;no;no;telephone;jun;mon;389;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+56;technician;married;university.degree;no;no;yes;telephone;jun;mon;69;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+52;technician;married;high.school;no;unknown;unknown;telephone;jun;mon;24;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+43;technician;married;professional.course;no;no;no;telephone;jun;mon;143;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+36;technician;married;professional.course;no;yes;no;telephone;jun;mon;302;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+45;blue-collar;single;high.school;unknown;no;no;telephone;jun;mon;68;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+36;blue-collar;married;basic.6y;unknown;no;no;telephone;jun;mon;183;5;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+55;admin.;divorced;unknown;unknown;yes;no;telephone;jun;mon;49;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+29;blue-collar;married;basic.4y;no;yes;no;telephone;jun;mon;148;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+48;blue-collar;married;basic.4y;no;yes;no;telephone;jun;mon;481;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+42;services;divorced;high.school;unknown;yes;no;telephone;jun;mon;45;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+47;admin.;married;university.degree;no;no;no;telephone;jun;mon;121;4;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+45;technician;single;professional.course;no;no;no;telephone;jun;mon;180;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+25;blue-collar;married;basic.9y;unknown;yes;no;telephone;jun;mon;283;5;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+41;services;divorced;basic.9y;no;yes;no;telephone;jun;mon;312;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+51;technician;married;professional.course;no;no;yes;telephone;jun;mon;147;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+41;technician;single;university.degree;unknown;yes;no;telephone;jun;mon;178;4;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+40;blue-collar;married;basic.9y;no;yes;no;telephone;jun;mon;154;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+33;services;single;high.school;no;no;no;telephone;jun;mon;326;3;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+28;admin.;single;university.degree;no;no;no;telephone;jun;mon;362;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+27;admin.;married;basic.9y;no;yes;no;telephone;jun;mon;72;3;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+25;admin.;married;university.degree;no;no;no;telephone;jun;mon;121;4;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+45;admin.;married;unknown;no;yes;no;telephone;jun;mon;1068;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;yes
+55;blue-collar;married;basic.9y;no;no;no;telephone;jun;mon;101;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+49;blue-collar;married;basic.9y;unknown;yes;no;telephone;jun;mon;210;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+39;admin.;single;unknown;no;yes;no;telephone;jun;mon;163;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+53;management;divorced;university.degree;no;no;no;telephone;jun;mon;306;4;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+53;unknown;married;high.school;unknown;no;no;telephone;jun;mon;313;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+31;blue-collar;married;basic.9y;no;yes;no;telephone;jun;mon;94;4;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+39;admin.;single;university.degree;unknown;no;no;telephone;jun;mon;658;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+55;admin.;married;high.school;no;no;yes;telephone;jun;mon;250;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+38;blue-collar;married;basic.9y;unknown;yes;no;telephone;jun;mon;493;3;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+32;blue-collar;divorced;basic.4y;unknown;no;no;telephone;jun;mon;23;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+34;blue-collar;married;high.school;no;yes;no;telephone;jun;mon;562;3;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+54;admin.;married;high.school;unknown;yes;no;telephone;jun;mon;490;12;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+54;management;married;university.degree;unknown;no;yes;telephone;jun;mon;140;4;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+47;management;divorced;university.degree;no;no;yes;telephone;jun;mon;302;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+29;services;single;high.school;no;yes;yes;telephone;jun;mon;46;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+36;admin.;married;university.degree;no;yes;no;telephone;jun;mon;149;8;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+37;services;married;high.school;no;no;no;telephone;jun;mon;88;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+41;admin.;married;high.school;unknown;no;no;telephone;jun;mon;118;3;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+26;blue-collar;married;basic.9y;no;no;no;telephone;jun;mon;230;3;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;yes
+25;self-employed;single;university.degree;no;no;no;telephone;jun;mon;426;3;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+60;management;married;university.degree;unknown;no;no;telephone;jun;mon;403;6;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+40;entrepreneur;married;university.degree;unknown;yes;no;telephone;jun;mon;169;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+40;technician;single;professional.course;no;yes;no;telephone;jun;mon;123;4;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+36;management;married;university.degree;no;no;no;telephone;jun;mon;221;7;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+38;admin.;married;high.school;no;yes;no;telephone;jun;mon;169;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+28;blue-collar;single;high.school;no;yes;no;telephone;jun;mon;102;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+25;technician;divorced;university.degree;no;yes;no;telephone;jun;mon;214;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+45;management;divorced;university.degree;no;no;no;telephone;jun;mon;572;4;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+44;blue-collar;married;basic.9y;unknown;yes;no;telephone;jun;mon;147;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+51;management;married;unknown;unknown;yes;yes;telephone;jun;mon;124;3;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+39;admin.;married;university.degree;no;no;no;telephone;jun;mon;105;11;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+33;self-employed;single;university.degree;no;yes;no;telephone;jun;mon;171;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+49;unknown;married;unknown;unknown;yes;no;telephone;jun;mon;498;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+36;blue-collar;single;basic.4y;no;yes;no;telephone;jun;mon;50;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+39;self-employed;married;university.degree;no;yes;yes;telephone;jun;mon;31;3;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+55;blue-collar;married;basic.4y;unknown;yes;yes;telephone;jun;mon;266;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+48;blue-collar;divorced;basic.4y;unknown;yes;no;telephone;jun;mon;163;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+33;admin.;single;university.degree;no;yes;yes;telephone;jun;mon;304;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+58;blue-collar;married;basic.4y;no;no;no;telephone;jun;mon;469;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+36;housemaid;married;basic.6y;no;yes;no;telephone;jun;mon;45;3;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+28;admin.;married;university.degree;no;no;no;telephone;jun;mon;249;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+37;admin.;married;university.degree;no;no;no;telephone;jun;mon;85;8;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+45;technician;married;university.degree;no;no;no;telephone;jun;mon;79;3;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+43;technician;single;professional.course;no;yes;no;telephone;jun;mon;70;3;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+30;blue-collar;married;professional.course;no;no;no;telephone;jun;mon;758;3;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+34;services;divorced;professional.course;unknown;no;no;telephone;jun;mon;466;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+39;blue-collar;married;basic.9y;no;no;no;telephone;jun;mon;200;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+35;admin.;single;university.degree;no;yes;no;telephone;jun;mon;87;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+33;admin.;married;high.school;no;yes;no;telephone;jun;mon;966;3;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+33;services;single;university.degree;unknown;no;no;telephone;jun;mon;747;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;yes
+37;blue-collar;married;basic.9y;no;no;no;telephone;jun;mon;430;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+39;services;divorced;high.school;unknown;yes;no;telephone;jun;mon;241;5;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+49;technician;married;professional.course;no;no;no;telephone;jun;mon;147;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+39;blue-collar;married;basic.9y;no;no;no;telephone;jun;mon;131;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+37;entrepreneur;married;basic.9y;no;yes;no;telephone;jun;mon;541;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+45;admin.;married;university.degree;no;no;no;telephone;jun;mon;281;4;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+40;services;divorced;high.school;no;no;no;telephone;jun;mon;158;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+52;admin.;divorced;university.degree;no;no;no;telephone;jun;mon;201;3;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+41;admin.;married;high.school;no;no;no;telephone;jun;mon;56;3;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+43;admin.;married;high.school;unknown;yes;no;telephone;jun;mon;91;3;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+30;blue-collar;single;basic.4y;no;no;no;telephone;jun;mon;187;9;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+34;unemployed;single;university.degree;no;no;no;telephone;jun;mon;409;4;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+41;services;married;basic.9y;no;yes;no;telephone;jun;mon;269;3;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+45;admin.;married;high.school;no;yes;no;telephone;jun;mon;221;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+36;services;single;basic.6y;unknown;no;no;telephone;jun;mon;255;3;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+33;blue-collar;single;basic.9y;unknown;yes;no;telephone;jun;mon;71;4;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+55;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;mon;184;3;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+42;retired;married;basic.9y;unknown;no;no;telephone;jun;mon;67;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+42;services;married;high.school;no;no;no;telephone;jun;mon;276;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+44;blue-collar;married;basic.6y;unknown;yes;no;telephone;jun;mon;41;5;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+36;services;married;high.school;unknown;no;no;telephone;jun;mon;145;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+41;blue-collar;married;unknown;no;no;no;telephone;jun;mon;424;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+35;unknown;married;basic.9y;no;no;no;telephone;jun;mon;612;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+58;admin.;divorced;university.degree;no;yes;no;telephone;jun;mon;282;7;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+58;retired;married;basic.9y;no;yes;no;telephone;jun;mon;198;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+52;entrepreneur;married;university.degree;unknown;yes;no;telephone;jun;mon;76;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+32;admin.;married;university.degree;no;yes;no;telephone;jun;mon;102;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+33;technician;married;high.school;no;no;yes;telephone;jun;mon;60;9;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+56;management;divorced;university.degree;no;no;no;telephone;jun;mon;252;4;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+37;admin.;married;university.degree;no;yes;no;telephone;jun;mon;23;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+55;technician;married;professional.course;no;yes;no;telephone;jun;mon;555;5;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;yes
+35;technician;married;professional.course;no;no;no;telephone;jun;mon;200;3;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+24;admin.;married;high.school;no;no;yes;telephone;jun;mon;1330;6;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+54;retired;divorced;basic.4y;no;no;no;telephone;jun;mon;157;3;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+42;admin.;married;high.school;no;no;yes;telephone;jun;mon;218;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+47;services;married;high.school;no;no;no;telephone;jun;mon;548;8;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+27;blue-collar;married;basic.9y;no;no;no;telephone;jun;mon;176;4;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+33;admin.;single;university.degree;no;no;no;telephone;jun;mon;335;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+34;technician;married;professional.course;no;yes;no;telephone;jun;mon;142;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+51;services;married;high.school;no;no;yes;telephone;jun;mon;267;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+30;management;single;university.degree;no;no;no;telephone;jun;mon;86;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+58;admin.;married;university.degree;no;no;yes;telephone;jun;mon;129;4;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+31;management;married;high.school;no;yes;no;telephone;jun;mon;322;5;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+33;admin.;married;high.school;no;yes;no;telephone;jun;mon;111;3;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+47;housemaid;married;basic.4y;no;yes;yes;telephone;jun;mon;106;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+35;blue-collar;single;unknown;no;no;no;telephone;jun;mon;136;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+55;retired;divorced;basic.6y;unknown;no;no;telephone;jun;mon;228;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+45;admin.;divorced;university.degree;unknown;no;no;telephone;jun;mon;71;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+32;services;married;high.school;no;yes;no;telephone;jun;mon;29;32;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+30;technician;married;university.degree;no;no;yes;telephone;jun;mon;150;5;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+39;admin.;married;high.school;unknown;yes;no;telephone;jun;mon;252;5;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+53;blue-collar;married;basic.4y;unknown;yes;no;telephone;jun;mon;518;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+47;entrepreneur;single;university.degree;unknown;yes;no;telephone;jun;mon;42;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+52;blue-collar;married;basic.4y;no;yes;no;telephone;jun;mon;140;3;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+38;blue-collar;married;basic.6y;no;no;no;telephone;jun;mon;144;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+37;admin.;divorced;basic.9y;unknown;yes;no;telephone;jun;mon;303;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+36;housemaid;married;high.school;no;yes;no;telephone;jun;mon;171;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+47;housemaid;married;professional.course;no;yes;yes;telephone;jun;mon;132;5;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+28;blue-collar;married;basic.9y;no;yes;yes;telephone;jun;mon;288;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+44;blue-collar;divorced;unknown;no;no;yes;telephone;jun;mon;73;3;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+34;admin.;married;university.degree;no;no;no;telephone;jun;mon;230;4;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+33;blue-collar;married;basic.6y;no;yes;no;telephone;jun;mon;685;5;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+30;technician;married;professional.course;no;yes;yes;telephone;jun;mon;82;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+41;blue-collar;married;basic.9y;no;no;no;telephone;jun;mon;345;3;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+57;blue-collar;married;basic.4y;unknown;yes;no;telephone;jun;mon;75;5;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+60;retired;married;basic.4y;unknown;no;no;telephone;jun;mon;223;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+34;blue-collar;married;basic.6y;unknown;no;no;telephone;jun;mon;479;3;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+39;management;married;basic.6y;unknown;no;no;telephone;jun;mon;156;5;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+36;admin.;married;university.degree;no;yes;no;telephone;jun;mon;80;3;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+48;technician;divorced;professional.course;no;no;no;telephone;jun;mon;204;5;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+44;technician;married;high.school;no;no;no;telephone;jun;mon;360;3;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+34;technician;married;professional.course;no;yes;yes;telephone;jun;mon;126;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+42;technician;married;university.degree;no;yes;no;telephone;jun;mon;148;4;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+28;admin.;married;high.school;no;yes;no;telephone;jun;mon;267;10;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+30;technician;married;professional.course;no;yes;no;telephone;jun;mon;290;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+40;admin.;single;high.school;no;yes;no;telephone;jun;mon;136;4;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+38;technician;single;university.degree;no;no;no;telephone;jun;mon;127;6;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+52;technician;divorced;professional.course;unknown;yes;no;telephone;jun;mon;56;8;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+52;blue-collar;married;high.school;unknown;no;no;telephone;jun;mon;777;4;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;yes
+36;admin.;single;high.school;no;yes;no;telephone;jun;mon;32;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+27;blue-collar;married;basic.6y;unknown;yes;no;telephone;jun;mon;235;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+53;services;divorced;basic.4y;unknown;no;no;telephone;jun;mon;91;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+38;admin.;single;university.degree;unknown;no;no;telephone;jun;mon;198;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+39;technician;married;professional.course;no;no;no;telephone;jun;mon;164;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+47;blue-collar;married;unknown;unknown;yes;no;telephone;jun;mon;98;4;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+35;admin.;married;high.school;no;yes;yes;telephone;jun;mon;92;3;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+54;blue-collar;married;high.school;no;no;no;telephone;jun;mon;53;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+33;technician;single;professional.course;no;no;no;telephone;jun;mon;349;4;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+39;admin.;married;university.degree;no;no;no;telephone;jun;mon;178;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+41;blue-collar;single;basic.4y;no;no;no;telephone;jun;mon;532;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+29;technician;married;basic.9y;no;yes;yes;telephone;jun;mon;164;4;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+50;retired;married;basic.4y;no;yes;no;telephone;jun;mon;35;6;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+32;entrepreneur;single;professional.course;no;no;no;telephone;jun;mon;20;20;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+31;blue-collar;married;basic.6y;no;no;yes;telephone;jun;mon;154;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+29;entrepreneur;married;professional.course;no;yes;no;telephone;jun;mon;930;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+44;unemployed;married;professional.course;no;no;no;telephone;jun;mon;392;3;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+41;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;mon;213;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+30;housemaid;married;high.school;unknown;yes;yes;telephone;jun;mon;18;1;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+33;services;married;high.school;unknown;yes;no;telephone;jun;mon;393;3;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+56;services;married;basic.4y;unknown;no;no;telephone;jun;mon;746;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+26;blue-collar;married;basic.6y;unknown;unknown;unknown;telephone;jun;mon;351;6;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+49;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;mon;174;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+40;admin.;single;high.school;unknown;yes;no;telephone;jun;mon;142;3;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+51;services;married;high.school;unknown;yes;no;telephone;jun;mon;229;8;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+48;blue-collar;married;basic.6y;no;yes;no;telephone;jun;mon;261;8;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+47;technician;divorced;high.school;no;yes;no;telephone;jun;mon;289;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+34;blue-collar;married;basic.9y;no;no;no;telephone;jun;mon;227;15;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+36;admin.;married;university.degree;no;yes;no;telephone;jun;mon;115;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+43;services;married;high.school;unknown;no;no;telephone;jun;mon;178;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+56;entrepreneur;married;unknown;unknown;no;no;telephone;jun;mon;41;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+39;housemaid;divorced;basic.9y;no;yes;no;telephone;jun;mon;154;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+43;technician;single;university.degree;no;yes;no;telephone;jun;mon;100;4;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+39;admin.;married;university.degree;no;no;no;telephone;jun;mon;61;7;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+59;management;married;basic.6y;unknown;yes;no;telephone;jun;mon;181;16;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+50;admin.;married;high.school;no;no;no;telephone;jun;mon;205;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+24;services;single;high.school;no;yes;no;telephone;jun;mon;468;8;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+38;blue-collar;married;high.school;no;no;no;telephone;jun;mon;358;3;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+41;technician;married;professional.course;unknown;yes;no;telephone;jun;mon;442;11;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+34;blue-collar;married;basic.6y;no;no;yes;telephone;jun;mon;1576;3;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+48;unemployed;single;basic.4y;no;yes;no;telephone;jun;mon;83;6;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+35;admin.;married;university.degree;unknown;yes;no;telephone;jun;mon;134;3;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+54;entrepreneur;divorced;university.degree;no;yes;yes;telephone;jun;mon;28;8;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+31;services;married;basic.6y;no;no;no;telephone;jun;mon;92;5;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+42;services;married;high.school;no;no;no;telephone;jun;mon;217;4;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+45;blue-collar;married;basic.6y;no;yes;no;telephone;jun;mon;134;8;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+24;services;single;basic.9y;unknown;no;yes;telephone;jun;mon;222;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+37;management;married;university.degree;unknown;no;yes;telephone;jun;mon;179;7;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+57;housemaid;married;professional.course;no;no;yes;telephone;jun;mon;110;3;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+35;student;single;university.degree;unknown;yes;yes;telephone;jun;mon;444;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;yes
+41;admin.;married;high.school;no;unknown;unknown;telephone;jun;mon;548;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+33;unemployed;single;university.degree;no;no;yes;telephone;jun;mon;16;13;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+42;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;mon;213;3;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+35;technician;single;professional.course;no;yes;yes;telephone;jun;mon;402;9;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+44;technician;married;professional.course;unknown;no;no;telephone;jun;mon;312;3;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+36;blue-collar;married;basic.9y;unknown;no;yes;telephone;jun;mon;280;2;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+28;services;single;high.school;no;no;no;telephone;jun;mon;689;3;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+57;blue-collar;divorced;basic.4y;no;no;no;telephone;jun;mon;716;4;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+41;management;divorced;university.degree;no;no;no;telephone;jun;mon;43;12;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+41;blue-collar;divorced;professional.course;no;no;no;telephone;jun;mon;39;10;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+36;technician;divorced;professional.course;unknown;no;no;telephone;jun;mon;90;4;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+38;student;single;university.degree;no;no;no;telephone;jun;mon;194;4;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+48;blue-collar;married;basic.4y;no;no;no;telephone;jun;mon;984;4;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+48;blue-collar;married;basic.4y;unknown;yes;no;telephone;jun;mon;153;9;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+39;technician;married;professional.course;no;yes;no;telephone;jun;mon;59;4;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+33;admin.;married;university.degree;no;yes;no;telephone;jun;mon;20;8;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+52;services;married;high.school;no;no;yes;telephone;jun;mon;359;6;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+59;retired;divorced;university.degree;no;no;no;telephone;jun;mon;605;6;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;yes
+42;self-employed;married;university.degree;no;no;no;telephone;jun;mon;180;3;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+57;management;married;basic.9y;unknown;yes;no;telephone;jun;mon;30;4;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+33;services;married;high.school;no;no;no;telephone;jun;mon;94;14;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+39;entrepreneur;married;high.school;no;no;no;telephone;jun;mon;232;3;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;no
+39;technician;single;professional.course;unknown;no;no;telephone;jun;mon;432;4;999;0;nonexistent;1.4;94.465;-41.8;4.865;5228.1;yes
+28;services;married;high.school;no;no;no;telephone;jun;tue;152;6;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+60;unknown;married;basic.6y;unknown;no;no;telephone;jun;tue;104;7;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+44;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;tue;154;5;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+36;services;single;basic.9y;no;no;no;telephone;jun;tue;70;10;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+26;admin.;married;high.school;no;no;no;telephone;jun;tue;48;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+40;admin.;married;high.school;no;no;no;telephone;jun;tue;201;3;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+48;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;tue;182;5;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+40;blue-collar;married;basic.9y;unknown;yes;no;telephone;jun;tue;150;3;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+43;blue-collar;single;professional.course;no;yes;no;telephone;jun;tue;209;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+49;services;married;high.school;unknown;yes;no;telephone;jun;tue;86;5;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+32;technician;married;professional.course;no;yes;no;telephone;jun;tue;67;10;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+56;management;married;basic.4y;unknown;yes;no;telephone;jun;tue;197;5;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+48;housemaid;married;high.school;no;no;no;telephone;jun;tue;87;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+44;entrepreneur;married;basic.6y;unknown;no;yes;telephone;jun;tue;75;4;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+57;blue-collar;married;basic.9y;no;yes;no;telephone;jun;tue;450;3;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+30;technician;single;university.degree;no;no;no;telephone;jun;tue;174;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+34;blue-collar;married;basic.6y;unknown;no;no;telephone;jun;tue;180;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+34;technician;married;university.degree;no;no;no;telephone;jun;tue;20;8;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+46;unemployed;married;basic.6y;unknown;yes;no;telephone;jun;tue;179;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+32;services;married;high.school;no;yes;no;telephone;jun;tue;73;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+48;admin.;married;professional.course;unknown;no;no;telephone;jun;tue;55;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+46;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;tue;222;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+38;technician;single;university.degree;no;yes;no;telephone;jun;tue;267;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+43;entrepreneur;married;basic.4y;no;yes;no;telephone;jun;tue;69;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+41;management;married;unknown;unknown;no;no;telephone;jun;tue;200;4;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+36;services;single;basic.6y;unknown;no;no;telephone;jun;tue;63;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+48;blue-collar;divorced;basic.4y;unknown;yes;no;telephone;jun;tue;332;3;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+52;blue-collar;married;basic.9y;no;no;no;telephone;jun;tue;542;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+43;entrepreneur;married;basic.9y;no;no;no;telephone;jun;tue;301;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+46;blue-collar;married;basic.9y;no;no;no;telephone;jun;tue;207;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+55;blue-collar;divorced;basic.4y;unknown;no;yes;telephone;jun;tue;115;3;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+44;blue-collar;single;basic.4y;no;yes;no;telephone;jun;tue;159;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+24;services;single;high.school;no;yes;no;telephone;jun;tue;117;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+58;retired;married;basic.4y;no;yes;no;telephone;jun;tue;159;4;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+41;unemployed;married;university.degree;unknown;no;no;telephone;jun;tue;238;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+29;management;single;university.degree;no;no;no;telephone;jun;tue;161;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+26;technician;single;university.degree;no;no;no;telephone;jun;tue;1173;3;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;yes
+32;management;married;high.school;no;no;no;telephone;jun;tue;206;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+35;blue-collar;married;basic.9y;no;no;no;telephone;jun;tue;438;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+45;blue-collar;divorced;basic.9y;no;yes;no;telephone;jun;tue;250;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+33;technician;married;professional.course;no;no;yes;telephone;jun;tue;46;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+38;admin.;married;high.school;no;no;no;telephone;jun;tue;147;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+36;blue-collar;single;high.school;no;no;no;telephone;jun;tue;275;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+35;blue-collar;married;unknown;no;no;no;telephone;jun;tue;26;7;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+34;blue-collar;married;basic.9y;no;no;no;telephone;jun;tue;963;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;yes
+41;blue-collar;married;basic.6y;no;unknown;unknown;telephone;jun;tue;202;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+37;blue-collar;married;basic.6y;unknown;no;no;telephone;jun;tue;50;4;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+39;housemaid;married;basic.9y;no;no;no;telephone;jun;tue;236;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+33;technician;married;university.degree;unknown;yes;no;telephone;jun;tue;272;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+43;technician;married;professional.course;no;yes;no;telephone;jun;tue;112;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+47;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;tue;384;5;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+33;admin.;married;high.school;no;yes;no;telephone;jun;tue;361;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+40;blue-collar;married;basic.6y;unknown;yes;no;telephone;jun;tue;49;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+31;services;single;high.school;no;yes;no;telephone;jun;tue;953;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+34;admin.;married;university.degree;no;yes;no;telephone;jun;tue;148;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+39;blue-collar;married;basic.6y;no;yes;no;telephone;jun;tue;233;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+35;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;tue;409;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+35;technician;married;university.degree;unknown;no;no;telephone;jun;tue;194;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+59;retired;single;high.school;no;no;yes;telephone;jun;tue;103;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+42;admin.;single;high.school;no;no;no;telephone;jun;tue;579;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+32;blue-collar;single;high.school;no;no;no;telephone;jun;tue;956;3;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;yes
+48;admin.;married;high.school;no;no;yes;telephone;jun;tue;183;4;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+46;technician;married;professional.course;no;no;no;telephone;jun;tue;117;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+41;unemployed;divorced;high.school;no;no;no;telephone;jun;tue;175;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+29;admin.;married;high.school;no;yes;no;telephone;jun;tue;186;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+38;student;single;university.degree;no;unknown;unknown;telephone;jun;tue;23;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+30;blue-collar;single;basic.4y;unknown;yes;no;telephone;jun;tue;256;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+38;unemployed;married;professional.course;no;no;no;telephone;jun;tue;68;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+50;self-employed;married;university.degree;no;yes;no;telephone;jun;tue;157;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+37;services;married;high.school;unknown;yes;no;telephone;jun;tue;132;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+30;blue-collar;married;basic.6y;no;no;no;telephone;jun;tue;131;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+52;management;divorced;university.degree;unknown;no;no;telephone;jun;tue;43;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+40;blue-collar;divorced;basic.9y;unknown;no;no;telephone;jun;tue;479;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+50;unknown;single;unknown;unknown;yes;no;telephone;jun;tue;363;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+36;entrepreneur;married;university.degree;no;yes;no;telephone;jun;tue;56;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+41;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;tue;201;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+50;housemaid;single;unknown;no;no;yes;telephone;jun;tue;517;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+38;technician;married;basic.9y;no;yes;no;telephone;jun;tue;447;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+51;retired;divorced;university.degree;no;yes;yes;telephone;jun;tue;342;3;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+38;services;married;high.school;unknown;no;yes;telephone;jun;tue;135;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+38;blue-collar;married;basic.4y;unknown;yes;no;telephone;jun;tue;119;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+55;management;married;university.degree;no;yes;no;telephone;jun;tue;22;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+58;technician;married;professional.course;no;yes;yes;telephone;jun;tue;150;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+41;blue-collar;married;basic.4y;no;no;yes;telephone;jun;tue;110;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+31;management;single;university.degree;no;no;no;telephone;jun;tue;166;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+36;management;married;university.degree;unknown;no;no;telephone;jun;tue;65;13;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+34;blue-collar;married;basic.4y;no;no;no;telephone;jun;tue;404;13;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+33;blue-collar;single;basic.9y;unknown;yes;no;telephone;jun;tue;280;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+42;services;married;high.school;unknown;no;no;telephone;jun;tue;157;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+35;blue-collar;married;basic.9y;no;yes;no;telephone;jun;tue;170;3;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+49;technician;married;high.school;no;yes;no;telephone;jun;tue;80;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+58;retired;married;basic.4y;no;no;no;telephone;jun;tue;164;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+51;self-employed;married;university.degree;unknown;yes;no;telephone;jun;tue;34;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+38;blue-collar;married;basic.6y;unknown;yes;no;telephone;jun;tue;258;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+48;blue-collar;married;basic.4y;no;no;yes;telephone;jun;tue;291;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+35;blue-collar;married;basic.9y;no;yes;no;telephone;jun;tue;126;4;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+49;technician;married;basic.6y;unknown;no;no;telephone;jun;tue;88;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+56;management;married;basic.9y;no;yes;no;telephone;jun;tue;941;3;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;yes
+35;blue-collar;married;basic.9y;no;yes;no;telephone;jun;tue;349;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+60;retired;divorced;basic.4y;unknown;yes;no;telephone;jun;tue;131;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+37;admin.;single;high.school;no;yes;no;telephone;jun;tue;384;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+31;blue-collar;single;high.school;no;yes;yes;telephone;jun;tue;440;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+44;admin.;single;university.degree;no;no;yes;telephone;jun;tue;143;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+38;admin.;single;university.degree;no;yes;no;telephone;jun;tue;284;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+40;blue-collar;married;basic.4y;unknown;yes;no;telephone;jun;tue;161;3;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+30;self-employed;married;professional.course;no;yes;no;telephone;jun;tue;123;4;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+36;student;single;basic.9y;no;yes;no;telephone;jun;tue;771;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+50;blue-collar;married;basic.6y;unknown;yes;no;telephone;jun;tue;103;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+28;admin.;single;high.school;no;no;no;telephone;jun;tue;132;5;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+50;services;married;high.school;unknown;yes;no;telephone;jun;tue;235;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+48;management;married;university.degree;no;yes;yes;telephone;jun;tue;1025;7;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;yes
+57;blue-collar;divorced;basic.9y;no;yes;no;telephone;jun;tue;45;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+56;entrepreneur;married;university.degree;no;no;no;telephone;jun;tue;21;3;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+56;entrepreneur;married;unknown;unknown;yes;no;telephone;jun;tue;536;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+27;admin.;married;basic.9y;no;yes;no;telephone;jun;tue;243;3;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+49;blue-collar;married;basic.4y;unknown;yes;yes;telephone;jun;tue;131;5;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+52;blue-collar;married;basic.4y;unknown;yes;no;telephone;jun;tue;316;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+35;blue-collar;married;basic.4y;unknown;yes;no;telephone;jun;tue;192;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+34;technician;married;professional.course;no;no;yes;telephone;jun;tue;145;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+50;blue-collar;divorced;basic.9y;no;yes;no;telephone;jun;tue;288;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+29;admin.;single;basic.9y;unknown;no;yes;telephone;jun;tue;569;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+31;blue-collar;married;basic.9y;no;yes;no;telephone;jun;tue;23;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+40;admin.;married;high.school;no;yes;no;telephone;jun;tue;406;3;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+37;self-employed;married;basic.9y;unknown;yes;no;telephone;jun;tue;106;6;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+37;services;married;high.school;no;no;no;telephone;jun;tue;393;3;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+57;blue-collar;married;high.school;unknown;no;no;telephone;jun;tue;171;3;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+31;admin.;single;university.degree;no;yes;no;telephone;jun;tue;116;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+40;admin.;single;high.school;no;no;yes;telephone;jun;tue;25;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+30;blue-collar;married;unknown;no;no;yes;telephone;jun;tue;118;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+43;blue-collar;married;basic.9y;no;no;yes;telephone;jun;tue;75;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+35;blue-collar;married;high.school;no;yes;no;telephone;jun;tue;54;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+29;services;single;university.degree;unknown;no;yes;telephone;jun;tue;235;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+38;admin.;married;basic.9y;no;no;yes;telephone;jun;tue;404;4;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+46;blue-collar;married;basic.6y;no;no;yes;telephone;jun;tue;179;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+47;technician;single;professional.course;unknown;no;no;telephone;jun;tue;126;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+39;admin.;married;university.degree;no;no;no;telephone;jun;tue;102;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+42;blue-collar;married;basic.4y;no;no;no;telephone;jun;tue;110;4;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+35;self-employed;married;basic.9y;no;no;yes;telephone;jun;tue;227;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+39;self-employed;married;university.degree;unknown;yes;no;telephone;jun;tue;123;5;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+57;technician;married;professional.course;no;yes;no;telephone;jun;tue;194;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+38;admin.;single;university.degree;unknown;yes;no;telephone;jun;tue;992;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;yes
+47;management;married;basic.4y;unknown;yes;no;telephone;jun;tue;100;3;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+37;management;married;university.degree;no;no;no;telephone;jun;tue;303;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+41;blue-collar;married;basic.6y;no;yes;no;telephone;jun;tue;732;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;yes
+41;services;married;high.school;no;no;no;telephone;jun;tue;366;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+42;technician;married;university.degree;unknown;no;no;telephone;jun;tue;228;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+38;blue-collar;married;basic.6y;unknown;no;no;telephone;jun;tue;14;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+46;admin.;single;university.degree;unknown;no;no;telephone;jun;tue;193;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+31;blue-collar;single;basic.9y;unknown;yes;no;telephone;jun;tue;409;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+32;technician;married;professional.course;no;yes;no;telephone;jun;tue;220;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+46;unemployed;divorced;basic.9y;no;yes;no;telephone;jun;tue;231;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+59;entrepreneur;married;unknown;no;no;no;telephone;jun;tue;242;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+55;unknown;married;basic.4y;unknown;yes;no;telephone;jun;tue;216;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+53;self-employed;married;university.degree;no;yes;no;telephone;jun;tue;119;4;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+43;unemployed;married;professional.course;no;no;no;telephone;jun;tue;41;5;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+49;blue-collar;married;basic.4y;no;yes;yes;telephone;jun;tue;495;3;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+50;blue-collar;married;basic.9y;no;no;no;telephone;jun;tue;128;6;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+26;blue-collar;single;high.school;no;no;no;telephone;jun;tue;185;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+30;technician;single;university.degree;unknown;no;no;telephone;jun;tue;722;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+40;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;tue;240;5;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+43;retired;married;basic.9y;unknown;no;no;telephone;jun;tue;455;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+53;admin.;married;high.school;no;no;no;telephone;jun;tue;138;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+25;admin.;married;university.degree;unknown;yes;no;telephone;jun;tue;361;3;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+48;admin.;divorced;university.degree;no;no;no;telephone;jun;tue;418;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+27;blue-collar;married;basic.9y;no;no;no;telephone;jun;tue;208;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+53;admin.;married;high.school;no;no;no;telephone;jun;tue;177;26;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+44;self-employed;married;basic.9y;no;yes;no;telephone;jun;tue;249;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+54;management;married;university.degree;no;no;no;telephone;jun;tue;84;15;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+30;blue-collar;married;basic.6y;no;no;no;telephone;jun;tue;338;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+32;admin.;married;university.degree;no;yes;yes;telephone;jun;tue;299;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+29;entrepreneur;married;high.school;unknown;yes;no;telephone;jun;tue;284;3;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+43;admin.;married;high.school;no;yes;no;telephone;jun;tue;282;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+43;management;married;university.degree;no;yes;yes;telephone;jun;tue;435;3;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+36;services;married;high.school;unknown;yes;no;telephone;jun;tue;120;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+45;blue-collar;married;basic.4y;unknown;yes;yes;telephone;jun;tue;825;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+34;services;married;high.school;no;no;no;telephone;jun;tue;51;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+38;services;married;high.school;unknown;no;no;telephone;jun;tue;253;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+53;housemaid;married;basic.4y;no;unknown;unknown;telephone;jun;tue;259;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+57;technician;divorced;unknown;no;yes;yes;telephone;jun;tue;237;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+38;blue-collar;married;basic.6y;unknown;no;no;telephone;jun;tue;1045;3;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;yes
+41;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;tue;110;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+49;blue-collar;married;basic.4y;no;no;no;telephone;jun;tue;188;5;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+35;technician;married;unknown;unknown;yes;no;telephone;jun;tue;320;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+39;admin.;married;university.degree;no;yes;no;telephone;jun;tue;231;12;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+31;services;married;high.school;unknown;yes;no;telephone;jun;tue;170;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+50;admin.;married;high.school;no;no;no;telephone;jun;tue;58;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+30;admin.;married;high.school;no;yes;no;telephone;jun;tue;615;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+50;blue-collar;married;basic.4y;unknown;no;yes;telephone;jun;tue;676;5;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+49;management;divorced;university.degree;unknown;yes;no;telephone;jun;tue;165;3;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+37;admin.;married;university.degree;no;no;no;telephone;jun;tue;192;4;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+47;blue-collar;divorced;basic.9y;unknown;no;yes;telephone;jun;tue;258;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+43;admin.;divorced;high.school;no;no;no;telephone;jun;tue;319;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+29;admin.;divorced;professional.course;no;yes;no;telephone;jun;tue;860;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+31;housemaid;married;high.school;no;no;no;telephone;jun;tue;680;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+38;entrepreneur;married;basic.6y;no;no;yes;telephone;jun;tue;165;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+43;admin.;divorced;university.degree;no;no;no;telephone;jun;tue;356;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+29;admin.;single;high.school;no;yes;no;telephone;jun;tue;235;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+35;admin.;married;high.school;no;yes;yes;telephone;jun;tue;173;3;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+54;technician;married;university.degree;unknown;no;no;telephone;jun;tue;294;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+27;management;single;university.degree;no;yes;no;telephone;jun;tue;216;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+57;blue-collar;divorced;basic.9y;no;yes;no;telephone;jun;tue;177;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+30;services;married;high.school;no;no;yes;telephone;jun;tue;220;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+30;admin.;single;high.school;unknown;no;no;telephone;jun;tue;641;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+43;unemployed;married;basic.9y;no;no;no;telephone;jun;tue;633;28;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+32;admin.;single;university.degree;no;no;no;telephone;jun;tue;94;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+34;admin.;single;university.degree;no;no;no;telephone;jun;tue;35;32;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+44;blue-collar;single;unknown;unknown;yes;no;telephone;jun;tue;828;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+31;unemployed;married;basic.6y;no;yes;no;telephone;jun;tue;35;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+29;admin.;married;basic.9y;no;no;no;telephone;jun;tue;263;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+51;self-employed;married;university.degree;unknown;no;no;telephone;jun;tue;143;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+58;technician;married;university.degree;no;yes;no;telephone;jun;tue;108;12;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+33;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;tue;164;7;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+52;admin.;divorced;university.degree;no;no;no;telephone;jun;tue;245;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+57;blue-collar;married;basic.4y;unknown;yes;no;telephone;jun;tue;43;5;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+24;admin.;single;high.school;no;no;no;telephone;jun;tue;768;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;yes
+27;unemployed;married;high.school;no;no;no;telephone;jun;tue;327;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+42;admin.;married;university.degree;unknown;yes;no;telephone;jun;tue;215;3;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+30;services;married;university.degree;unknown;yes;no;telephone;jun;tue;200;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+28;blue-collar;single;basic.4y;no;no;no;telephone;jun;tue;320;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+31;unemployed;divorced;basic.4y;no;yes;no;telephone;jun;tue;801;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;yes
+32;blue-collar;married;basic.6y;no;unknown;unknown;telephone;jun;tue;31;5;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+33;blue-collar;single;basic.9y;unknown;yes;no;telephone;jun;tue;114;3;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+42;management;married;university.degree;no;no;no;telephone;jun;tue;236;7;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+29;blue-collar;single;high.school;no;yes;no;telephone;jun;tue;201;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+30;blue-collar;married;basic.6y;unknown;yes;no;telephone;jun;tue;482;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;yes
+34;admin.;married;university.degree;unknown;no;no;telephone;jun;tue;133;3;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+40;blue-collar;married;basic.9y;no;no;yes;telephone;jun;tue;2456;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;yes
+28;student;single;university.degree;unknown;no;no;telephone;jun;tue;171;5;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+45;services;single;high.school;no;no;no;telephone;jun;tue;443;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+35;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;tue;263;6;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+35;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;tue;94;18;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+26;self-employed;married;university.degree;no;yes;no;telephone;jun;tue;59;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+60;admin.;married;university.degree;unknown;no;no;telephone;jun;tue;111;7;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+51;technician;married;professional.course;no;no;yes;telephone;jun;tue;72;3;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+36;services;divorced;professional.course;no;no;no;telephone;jun;tue;199;4;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+35;technician;married;professional.course;no;yes;no;telephone;jun;tue;589;6;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+39;self-employed;married;university.degree;no;no;no;telephone;jun;tue;199;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+31;blue-collar;single;high.school;no;yes;no;telephone;jun;tue;113;3;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+40;blue-collar;married;basic.9y;no;yes;yes;telephone;jun;tue;179;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+30;unemployed;married;basic.6y;unknown;no;no;telephone;jun;tue;215;10;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+40;technician;married;professional.course;no;no;no;telephone;jun;tue;61;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+46;admin.;married;high.school;no;no;no;telephone;jun;tue;107;3;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+45;admin.;married;unknown;no;no;no;telephone;jun;tue;242;6;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+39;blue-collar;married;basic.6y;no;no;no;telephone;jun;tue;1340;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+41;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;tue;13;13;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+36;admin.;married;professional.course;no;yes;no;telephone;jun;tue;129;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+57;blue-collar;divorced;unknown;unknown;no;no;telephone;jun;tue;50;3;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+38;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;tue;406;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+42;services;divorced;basic.6y;no;no;no;telephone;jun;tue;239;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+39;admin.;married;university.degree;no;yes;yes;telephone;jun;tue;178;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+51;blue-collar;married;basic.9y;no;yes;no;telephone;jun;tue;81;6;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+32;blue-collar;married;basic.4y;unknown;yes;no;telephone;jun;tue;327;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+57;admin.;divorced;unknown;unknown;no;no;telephone;jun;tue;604;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+50;blue-collar;divorced;basic.9y;no;no;no;telephone;jun;tue;137;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+27;blue-collar;married;basic.9y;no;yes;no;telephone;jun;tue;72;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+38;technician;single;professional.course;no;no;yes;telephone;jun;tue;246;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+50;admin.;married;university.degree;no;yes;no;telephone;jun;tue;199;3;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+46;technician;married;high.school;no;no;no;telephone;jun;tue;372;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+26;blue-collar;single;high.school;no;yes;no;telephone;jun;tue;167;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+29;admin.;married;high.school;no;no;no;telephone;jun;tue;30;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+32;blue-collar;divorced;basic.9y;no;no;no;telephone;jun;tue;189;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+33;admin.;married;high.school;no;no;yes;telephone;jun;tue;277;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+59;admin.;married;university.degree;no;yes;yes;telephone;jun;tue;215;3;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+33;admin.;married;university.degree;no;no;no;telephone;jun;tue;133;3;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+58;blue-collar;married;high.school;no;yes;no;telephone;jun;tue;183;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+42;blue-collar;divorced;basic.4y;no;no;no;telephone;jun;tue;134;3;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+32;admin.;single;university.degree;unknown;yes;no;telephone;jun;tue;211;5;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+50;services;divorced;basic.4y;unknown;no;no;telephone;jun;tue;80;4;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+43;blue-collar;married;basic.4y;unknown;yes;no;telephone;jun;tue;220;3;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+46;management;married;basic.9y;unknown;yes;no;telephone;jun;tue;495;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+28;admin.;married;high.school;no;no;no;telephone;jun;tue;157;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+29;services;married;high.school;no;no;no;telephone;jun;tue;81;5;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+45;services;married;high.school;unknown;no;no;telephone;jun;tue;559;7;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+31;blue-collar;married;basic.9y;no;yes;no;telephone;jun;tue;441;3;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+42;admin.;married;unknown;unknown;no;no;telephone;jun;tue;14;21;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+31;technician;single;professional.course;no;no;no;telephone;jun;tue;662;5;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+53;services;married;high.school;unknown;no;no;telephone;jun;tue;76;8;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+31;housemaid;married;university.degree;no;no;yes;telephone;jun;tue;230;3;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+27;services;single;high.school;no;no;no;telephone;jun;tue;323;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+40;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;tue;117;4;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+40;admin.;single;university.degree;unknown;yes;no;telephone;jun;tue;176;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+40;blue-collar;divorced;basic.9y;unknown;no;yes;telephone;jun;tue;1259;6;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;yes
+58;self-employed;married;university.degree;no;no;no;telephone;jun;tue;380;4;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+31;management;single;university.degree;no;yes;no;telephone;jun;tue;214;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+60;retired;single;high.school;no;no;no;telephone;jun;tue;136;4;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+38;blue-collar;married;basic.9y;no;yes;no;telephone;jun;tue;350;3;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+27;blue-collar;single;high.school;no;yes;no;telephone;jun;tue;56;5;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+59;technician;married;unknown;no;no;no;telephone;jun;tue;131;4;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+36;blue-collar;single;basic.9y;unknown;no;no;telephone;jun;tue;113;6;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+40;services;married;unknown;no;yes;no;telephone;jun;tue;71;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+58;retired;married;basic.4y;unknown;yes;no;telephone;jun;tue;137;3;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+35;blue-collar;married;basic.9y;no;no;no;telephone;jun;tue;497;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+54;services;married;high.school;no;yes;no;telephone;jun;tue;184;5;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+34;blue-collar;married;basic.4y;unknown;no;yes;telephone;jun;tue;276;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+42;services;married;high.school;no;no;no;telephone;jun;tue;68;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+36;blue-collar;married;basic.9y;no;yes;yes;telephone;jun;tue;11;18;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+45;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;tue;313;7;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+31;blue-collar;married;basic.9y;no;no;no;telephone;jun;tue;397;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+33;blue-collar;married;basic.9y;no;no;no;telephone;jun;tue;164;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+37;admin.;divorced;basic.9y;no;no;no;telephone;jun;tue;1363;7;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;yes
+29;admin.;single;university.degree;unknown;no;yes;telephone;jun;tue;816;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+40;blue-collar;married;basic.4y;no;no;no;telephone;jun;tue;1030;6;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+30;admin.;married;high.school;no;yes;no;telephone;jun;tue;266;10;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+32;admin.;single;university.degree;unknown;no;no;telephone;jun;tue;56;12;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+46;housemaid;divorced;basic.6y;no;yes;no;telephone;jun;tue;143;8;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+30;admin.;single;high.school;no;yes;no;telephone;jun;tue;229;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+29;management;single;university.degree;no;no;no;telephone;jun;tue;342;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+35;entrepreneur;married;high.school;no;no;yes;telephone;jun;tue;340;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+37;housemaid;married;basic.4y;no;yes;no;telephone;jun;tue;59;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+47;self-employed;married;basic.4y;unknown;unknown;unknown;telephone;jun;tue;72;8;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+42;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;tue;599;3;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+59;retired;married;professional.course;no;yes;no;telephone;jun;tue;77;8;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+45;technician;divorced;professional.course;no;yes;no;telephone;jun;tue;157;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+29;self-employed;single;professional.course;no;no;no;telephone;jun;tue;199;7;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+31;blue-collar;single;high.school;unknown;yes;no;telephone;jun;tue;187;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+34;blue-collar;married;basic.4y;unknown;yes;no;telephone;jun;tue;239;8;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+48;services;single;high.school;unknown;no;yes;telephone;jun;tue;246;5;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+40;self-employed;married;high.school;unknown;yes;no;telephone;jun;tue;238;5;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+45;services;married;high.school;no;yes;no;telephone;jun;tue;118;7;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+32;self-employed;divorced;university.degree;no;no;yes;telephone;jun;tue;254;21;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+33;blue-collar;married;basic.9y;no;no;no;telephone;jun;tue;281;7;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+42;blue-collar;married;high.school;unknown;yes;no;telephone;jun;tue;94;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+38;services;divorced;basic.6y;no;no;no;telephone;jun;tue;269;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+47;admin.;married;university.degree;no;yes;no;telephone;jun;tue;203;9;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+41;management;married;university.degree;no;no;no;telephone;jun;tue;140;6;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+41;blue-collar;married;basic.4y;no;no;no;telephone;jun;tue;148;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+43;management;married;high.school;no;yes;no;telephone;jun;tue;583;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+34;services;single;high.school;no;no;no;telephone;jun;tue;172;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+34;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;tue;60;5;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+52;unemployed;married;high.school;unknown;yes;no;telephone;jun;tue;70;6;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+48;blue-collar;married;professional.course;no;no;no;telephone;jun;tue;68;6;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+37;technician;married;high.school;no;yes;no;telephone;jun;tue;267;3;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+41;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;tue;88;4;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+47;technician;married;professional.course;no;no;no;telephone;jun;tue;19;20;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+46;admin.;married;high.school;unknown;no;no;telephone;jun;tue;490;6;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+42;admin.;married;university.degree;no;no;no;telephone;jun;tue;604;14;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+28;services;single;high.school;no;no;no;telephone;jun;tue;290;3;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+36;admin.;single;university.degree;no;yes;yes;telephone;jun;tue;78;3;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+49;admin.;married;university.degree;no;no;no;telephone;jun;tue;88;6;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+37;admin.;married;high.school;unknown;yes;no;telephone;jun;tue;113;4;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+28;blue-collar;single;basic.9y;no;no;no;telephone;jun;tue;550;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+35;entrepreneur;married;university.degree;no;no;no;telephone;jun;tue;52;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+56;unemployed;married;high.school;unknown;no;no;telephone;jun;tue;197;3;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+42;blue-collar;married;basic.9y;no;no;no;telephone;jun;tue;235;3;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+36;blue-collar;married;basic.9y;no;no;no;telephone;jun;tue;159;6;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+36;admin.;married;university.degree;no;yes;no;telephone;jun;tue;120;11;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+45;entrepreneur;married;high.school;no;no;no;telephone;jun;tue;1516;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+57;admin.;divorced;unknown;unknown;no;no;telephone;jun;tue;28;19;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+46;unemployed;married;basic.9y;unknown;no;no;telephone;jun;tue;87;7;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+28;blue-collar;married;basic.6y;unknown;no;no;telephone;jun;tue;151;7;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+36;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;tue;226;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+38;services;married;high.school;unknown;no;no;telephone;jun;tue;113;11;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+36;admin.;single;high.school;no;yes;no;telephone;jun;tue;281;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+45;technician;married;university.degree;unknown;no;yes;telephone;jun;tue;1336;4;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;yes
+35;services;married;high.school;unknown;no;no;telephone;jun;wed;173;14;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+30;blue-collar;single;basic.9y;no;no;no;telephone;jun;wed;83;11;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+35;blue-collar;married;basic.4y;unknown;yes;no;telephone;jun;wed;180;6;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+42;technician;single;high.school;no;yes;no;telephone;jun;wed;457;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+44;admin.;married;university.degree;no;yes;no;telephone;jun;wed;25;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+48;retired;married;basic.4y;unknown;no;no;telephone;jun;wed;145;8;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+26;admin.;single;high.school;no;yes;yes;telephone;jun;wed;622;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+30;services;divorced;basic.9y;no;no;no;telephone;jun;wed;89;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+56;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;wed;99;6;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+26;blue-collar;married;basic.9y;no;yes;no;telephone;jun;wed;71;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+50;admin.;married;university.degree;no;yes;no;telephone;jun;wed;407;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+34;entrepreneur;married;basic.4y;no;yes;no;telephone;jun;wed;250;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+52;retired;married;basic.4y;no;no;no;telephone;jun;wed;633;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;yes
+58;admin.;single;university.degree;no;no;yes;telephone;jun;wed;111;3;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+50;technician;married;professional.course;no;no;no;telephone;jun;wed;462;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+43;blue-collar;married;basic.4y;no;yes;no;telephone;jun;wed;28;4;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+46;blue-collar;married;professional.course;unknown;no;no;telephone;jun;wed;1138;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+45;blue-collar;married;basic.4y;unknown;yes;no;telephone;jun;wed;107;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+31;admin.;married;high.school;unknown;yes;yes;telephone;jun;wed;135;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+39;services;married;high.school;unknown;yes;no;telephone;jun;wed;96;3;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+31;technician;married;professional.course;no;yes;no;telephone;jun;wed;131;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+34;management;married;university.degree;unknown;no;yes;telephone;jun;wed;46;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+46;blue-collar;married;basic.6y;no;yes;no;telephone;jun;wed;267;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+30;blue-collar;married;basic.4y;no;yes;no;telephone;jun;wed;213;3;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+30;student;single;high.school;no;no;no;telephone;jun;wed;1242;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;yes
+37;technician;single;high.school;no;unknown;unknown;telephone;jun;wed;109;3;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+38;unknown;married;basic.6y;no;no;no;telephone;jun;wed;75;3;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+41;admin.;married;university.degree;no;no;no;telephone;jun;wed;129;4;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+48;admin.;divorced;high.school;no;no;no;telephone;jun;wed;89;3;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+39;blue-collar;married;basic.9y;no;unknown;unknown;telephone;jun;wed;103;4;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+41;self-employed;married;basic.4y;no;yes;no;telephone;jun;wed;105;3;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+57;blue-collar;married;basic.4y;unknown;yes;no;telephone;jun;wed;71;5;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+31;blue-collar;married;basic.6y;no;yes;no;telephone;jun;wed;406;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+41;unknown;single;unknown;unknown;yes;yes;telephone;jun;wed;66;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+54;admin.;divorced;unknown;unknown;no;no;telephone;jun;wed;38;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+42;blue-collar;single;basic.4y;no;no;no;telephone;jun;wed;166;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+32;blue-collar;married;professional.course;no;yes;no;telephone;jun;wed;67;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+47;admin.;divorced;university.degree;no;no;no;telephone;jun;wed;121;4;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+26;unknown;single;high.school;unknown;yes;yes;telephone;jun;wed;524;15;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;yes
+39;admin.;married;high.school;no;yes;no;telephone;jun;wed;1141;4;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;yes
+36;entrepreneur;married;basic.6y;unknown;no;no;telephone;jun;wed;125;5;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+26;blue-collar;single;basic.6y;no;no;no;telephone;jun;wed;18;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+32;blue-collar;single;university.degree;no;no;no;telephone;jun;wed;355;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+29;unemployed;married;high.school;unknown;no;no;telephone;jun;wed;237;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+30;admin.;married;university.degree;no;yes;no;telephone;jun;wed;299;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+38;admin.;single;university.degree;no;no;yes;telephone;jun;wed;578;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;yes
+25;admin.;single;high.school;no;yes;yes;telephone;jun;wed;109;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+33;admin.;married;university.degree;no;no;no;telephone;jun;wed;142;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+41;technician;married;basic.9y;unknown;no;no;telephone;jun;wed;102;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+31;blue-collar;married;basic.4y;unknown;yes;no;telephone;jun;wed;233;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+29;admin.;married;high.school;no;yes;no;telephone;jun;wed;194;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+42;admin.;married;basic.6y;no;yes;yes;telephone;jun;wed;365;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+35;admin.;single;high.school;no;no;no;telephone;jun;wed;984;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;yes
+60;admin.;married;high.school;no;no;yes;telephone;jun;wed;16;8;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+48;admin.;married;high.school;no;yes;yes;telephone;jun;wed;105;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+58;blue-collar;divorced;unknown;no;yes;no;telephone;jun;wed;215;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+46;admin.;married;high.school;no;yes;yes;telephone;jun;wed;148;10;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+30;services;single;professional.course;no;no;no;telephone;jun;wed;386;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+31;blue-collar;married;basic.6y;unknown;no;no;telephone;jun;wed;91;4;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+34;admin.;single;university.degree;no;no;no;telephone;jun;wed;98;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+37;admin.;divorced;university.degree;no;no;no;telephone;jun;wed;193;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+24;student;single;high.school;no;no;no;telephone;jun;wed;132;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+58;services;married;basic.4y;no;yes;no;telephone;jun;wed;279;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+59;retired;married;professional.course;no;yes;no;telephone;jun;wed;109;9;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+36;entrepreneur;married;university.degree;no;yes;no;telephone;jun;wed;1045;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+28;management;single;university.degree;no;no;no;telephone;jun;wed;361;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+31;blue-collar;married;basic.9y;no;no;no;telephone;jun;wed;204;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+23;blue-collar;single;basic.9y;no;yes;no;telephone;jun;wed;83;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+34;technician;divorced;basic.9y;no;no;no;telephone;jun;wed;105;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+40;admin.;married;high.school;no;yes;yes;telephone;jun;wed;73;10;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+46;technician;married;professional.course;unknown;yes;no;telephone;jun;wed;77;8;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+25;blue-collar;married;high.school;no;no;yes;telephone;jun;wed;29;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+33;admin.;married;university.degree;no;yes;no;telephone;jun;wed;355;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+26;technician;single;professional.course;no;yes;no;telephone;jun;wed;153;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+32;admin.;single;university.degree;no;yes;yes;telephone;jun;wed;87;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+50;admin.;single;university.degree;no;no;no;telephone;jun;wed;178;6;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+32;admin.;single;university.degree;no;no;yes;telephone;jun;wed;174;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+26;technician;single;professional.course;no;yes;no;telephone;jun;wed;605;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+34;admin.;married;high.school;no;no;no;telephone;jun;wed;638;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;yes
+31;services;single;high.school;no;yes;no;telephone;jun;wed;89;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+34;management;married;university.degree;no;no;no;telephone;jun;wed;121;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+31;services;single;high.school;no;yes;yes;telephone;jun;wed;216;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+26;blue-collar;single;basic.6y;no;no;no;telephone;jun;wed;83;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+42;blue-collar;married;basic.4y;unknown;yes;yes;telephone;jun;wed;317;9;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+26;management;single;basic.9y;no;yes;no;telephone;jun;wed;184;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+27;self-employed;single;university.degree;no;yes;yes;telephone;jun;wed;161;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+30;blue-collar;married;high.school;no;no;no;telephone;jun;wed;301;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+50;admin.;married;high.school;no;no;no;telephone;jun;wed;276;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+55;retired;divorced;professional.course;no;no;no;telephone;jun;wed;182;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+50;self-employed;married;basic.9y;unknown;no;no;telephone;jun;wed;139;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+52;retired;married;basic.4y;no;no;yes;telephone;jun;wed;87;3;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+36;blue-collar;single;basic.9y;no;no;no;telephone;jun;wed;377;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+29;admin.;single;high.school;no;no;no;telephone;jun;wed;211;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+36;blue-collar;married;basic.4y;no;no;no;telephone;jun;wed;357;4;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+26;admin.;married;high.school;no;yes;yes;telephone;jun;wed;119;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+25;admin.;married;high.school;no;yes;no;telephone;jun;wed;264;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+45;self-employed;single;high.school;no;no;no;telephone;jun;wed;165;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+28;blue-collar;single;high.school;no;yes;yes;telephone;jun;wed;148;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+31;blue-collar;divorced;basic.9y;no;yes;yes;telephone;jun;wed;121;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+27;student;single;university.degree;unknown;yes;no;telephone;jun;wed;235;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+32;services;married;high.school;no;no;no;telephone;jun;wed;90;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+57;blue-collar;married;basic.9y;no;yes;yes;telephone;jun;wed;367;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+27;blue-collar;single;basic.6y;no;yes;yes;telephone;jun;wed;444;3;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+39;blue-collar;married;basic.6y;no;yes;yes;telephone;jun;wed;141;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+50;technician;married;professional.course;unknown;yes;yes;telephone;jun;wed;31;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+29;admin.;single;high.school;no;no;no;telephone;jun;wed;283;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+31;blue-collar;single;basic.9y;no;no;no;telephone;jun;wed;767;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;yes
+25;services;single;high.school;no;no;no;telephone;jun;wed;123;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+38;blue-collar;married;basic.6y;unknown;no;no;telephone;jun;wed;236;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+38;blue-collar;single;high.school;unknown;yes;no;telephone;jun;wed;936;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;yes
+49;housemaid;divorced;basic.6y;no;yes;no;telephone;jun;wed;85;3;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+53;technician;married;professional.course;unknown;yes;no;telephone;jun;wed;104;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+35;student;single;high.school;no;no;no;telephone;jun;wed;71;4;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+32;admin.;married;university.degree;no;no;no;telephone;jun;wed;525;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;yes
+30;services;single;high.school;unknown;no;no;telephone;jun;wed;324;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+28;blue-collar;single;basic.9y;no;yes;no;telephone;jun;wed;525;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+33;admin.;single;university.degree;no;yes;yes;telephone;jun;wed;238;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+33;unemployed;married;basic.9y;no;no;no;telephone;jun;wed;563;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;yes
+25;admin.;single;high.school;no;yes;yes;telephone;jun;wed;217;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+25;student;single;high.school;no;no;yes;telephone;jun;wed;433;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+32;housemaid;married;university.degree;no;yes;no;telephone;jun;wed;52;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+25;admin.;married;university.degree;no;yes;no;telephone;jun;wed;149;8;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+31;admin.;single;university.degree;no;yes;no;telephone;jun;wed;357;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+42;admin.;divorced;university.degree;no;no;no;telephone;jun;wed;140;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+45;management;married;unknown;unknown;yes;no;telephone;jun;wed;171;3;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+52;blue-collar;married;basic.4y;no;no;no;telephone;jun;wed;154;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+26;student;single;high.school;no;no;no;telephone;jun;wed;219;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+40;housemaid;divorced;high.school;no;no;no;telephone;jun;wed;1449;6;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;yes
+29;admin.;single;university.degree;no;no;yes;telephone;jun;wed;251;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+31;blue-collar;married;high.school;no;no;no;telephone;jun;wed;544;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+53;management;married;university.degree;no;unknown;unknown;telephone;jun;wed;232;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+36;blue-collar;married;basic.9y;no;no;yes;telephone;jun;wed;920;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;yes
+56;admin.;married;university.degree;no;no;no;telephone;jun;wed;79;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+48;blue-collar;married;basic.9y;no;yes;no;telephone;jun;wed;103;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+32;services;married;high.school;unknown;yes;no;telephone;jun;wed;833;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+27;technician;single;university.degree;no;no;yes;telephone;jun;wed;97;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+26;admin.;single;high.school;no;no;no;telephone;jun;wed;205;6;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+31;admin.;married;high.school;no;unknown;unknown;telephone;jun;wed;360;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+35;blue-collar;married;high.school;no;no;no;telephone;jun;wed;344;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+56;housemaid;married;basic.4y;no;no;no;telephone;jun;wed;204;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+34;technician;divorced;basic.9y;no;no;no;telephone;jun;wed;156;3;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+39;admin.;single;high.school;no;no;no;telephone;jun;wed;213;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+31;admin.;married;university.degree;no;yes;no;telephone;jun;wed;153;6;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+49;admin.;married;university.degree;no;no;no;telephone;jun;wed;29;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+42;services;married;basic.9y;no;no;no;telephone;jun;wed;15;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+41;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;wed;38;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+37;blue-collar;married;basic.6y;no;no;no;telephone;jun;wed;654;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+51;blue-collar;married;basic.4y;unknown;yes;no;telephone;jun;wed;1254;10;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+39;admin.;single;high.school;no;no;no;telephone;jun;wed;139;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+41;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;wed;81;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+53;blue-collar;married;basic.4y;unknown;yes;no;telephone;jun;wed;597;7;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+32;blue-collar;married;basic.4y;unknown;yes;no;telephone;jun;wed;228;8;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+50;housemaid;divorced;high.school;unknown;yes;no;telephone;jun;wed;763;4;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+25;unknown;single;university.degree;no;no;no;telephone;jun;wed;2203;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;yes
+45;management;married;unknown;unknown;yes;no;telephone;jun;wed;61;6;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+61;retired;married;high.school;no;unknown;unknown;telephone;jun;wed;99;4;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+51;unemployed;married;basic.4y;no;no;yes;telephone;jun;wed;85;5;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+33;admin.;single;high.school;no;no;no;telephone;jun;wed;187;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+25;admin.;single;university.degree;no;no;no;telephone;jun;wed;188;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+23;blue-collar;married;basic.9y;no;yes;no;telephone;jun;wed;298;3;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+35;admin.;married;high.school;no;no;no;telephone;jun;wed;113;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+29;unemployed;single;university.degree;no;yes;no;telephone;jun;wed;201;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+42;blue-collar;married;basic.9y;no;yes;no;telephone;jun;wed;264;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+32;admin.;single;high.school;no;yes;no;telephone;jun;wed;23;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+37;unemployed;married;professional.course;unknown;no;no;telephone;jun;wed;42;16;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+38;admin.;married;high.school;no;no;no;telephone;jun;wed;180;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+41;entrepreneur;married;basic.4y;no;yes;no;telephone;jun;wed;95;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+40;blue-collar;married;basic.4y;no;no;no;telephone;jun;wed;69;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+32;admin.;single;high.school;no;no;no;telephone;jun;wed;324;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+50;admin.;married;high.school;unknown;no;no;telephone;jun;wed;144;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+27;blue-collar;single;basic.9y;no;no;no;telephone;jun;wed;298;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+36;blue-collar;single;basic.9y;no;unknown;unknown;telephone;jun;wed;1224;7;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+45;services;married;basic.6y;no;unknown;unknown;telephone;jun;wed;173;10;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+35;technician;single;professional.course;no;yes;no;telephone;jun;wed;134;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+30;services;single;high.school;no;no;no;telephone;jun;wed;245;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+36;admin.;married;basic.9y;no;no;no;telephone;jun;wed;121;3;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+26;blue-collar;married;basic.9y;no;no;no;telephone;jun;wed;49;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+26;admin.;married;high.school;no;no;no;telephone;jun;wed;606;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+32;blue-collar;married;basic.4y;no;no;no;telephone;jun;wed;489;5;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+29;admin.;single;high.school;no;yes;no;telephone;jun;wed;184;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+26;self-employed;married;university.degree;no;yes;no;telephone;jun;wed;106;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+46;blue-collar;married;basic.9y;no;no;no;telephone;jun;wed;91;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+39;technician;married;professional.course;no;no;no;telephone;jun;wed;249;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+46;blue-collar;married;basic.9y;no;no;no;telephone;jun;wed;92;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+27;unemployed;single;university.degree;no;no;no;telephone;jun;wed;404;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+32;admin.;married;university.degree;no;no;no;telephone;jun;wed;135;3;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+48;admin.;divorced;professional.course;no;yes;no;telephone;jun;wed;37;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+42;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;wed;141;6;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+32;technician;married;professional.course;no;no;no;telephone;jun;wed;117;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+23;services;single;high.school;no;no;no;telephone;jun;wed;174;9;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+35;unemployed;married;basic.9y;unknown;unknown;unknown;telephone;jun;wed;60;4;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+59;retired;married;basic.6y;unknown;no;no;telephone;jun;wed;235;5;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+27;blue-collar;married;basic.9y;no;yes;yes;telephone;jun;wed;285;4;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+53;admin.;divorced;university.degree;no;yes;no;telephone;jun;wed;112;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+50;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;wed;99;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+41;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;wed;132;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+52;management;divorced;university.degree;no;no;no;telephone;jun;wed;208;4;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+36;entrepreneur;married;university.degree;no;yes;yes;telephone;jun;wed;135;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+27;services;single;high.school;no;yes;no;telephone;jun;wed;179;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+38;admin.;single;university.degree;no;yes;no;telephone;jun;wed;126;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+25;blue-collar;married;basic.9y;unknown;yes;no;telephone;jun;wed;329;4;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+29;blue-collar;single;university.degree;no;no;no;telephone;jun;wed;126;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+51;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;wed;119;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+29;services;married;high.school;no;no;no;telephone;jun;wed;209;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+45;admin.;single;high.school;no;no;no;telephone;jun;wed;192;6;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+56;admin.;single;basic.9y;no;yes;no;telephone;jun;wed;341;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+47;blue-collar;married;unknown;unknown;no;yes;telephone;jun;wed;17;13;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+28;blue-collar;married;basic.6y;unknown;yes;no;telephone;jun;wed;167;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+39;blue-collar;married;basic.6y;no;yes;no;telephone;jun;wed;52;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+53;management;married;basic.6y;unknown;yes;no;telephone;jun;wed;152;6;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+28;admin.;married;high.school;no;no;no;telephone;jun;wed;84;3;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+45;blue-collar;married;high.school;no;no;no;telephone;jun;wed;341;4;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+36;blue-collar;married;basic.9y;no;no;no;telephone;jun;wed;244;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+36;blue-collar;married;basic.9y;no;no;no;telephone;jun;wed;423;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+47;blue-collar;married;basic.9y;no;no;yes;telephone;jun;wed;65;3;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+40;admin.;divorced;basic.6y;unknown;no;yes;telephone;jun;wed;170;3;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+31;blue-collar;single;basic.9y;no;no;no;telephone;jun;wed;87;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+36;technician;single;basic.9y;unknown;yes;no;telephone;jun;wed;227;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+44;blue-collar;divorced;basic.4y;no;no;no;telephone;jun;wed;34;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+24;technician;single;high.school;no;yes;no;telephone;jun;wed;169;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+45;entrepreneur;married;unknown;no;no;no;telephone;jun;wed;46;16;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+54;entrepreneur;married;university.degree;no;yes;no;telephone;jun;wed;39;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+35;blue-collar;single;basic.4y;unknown;yes;no;telephone;jun;wed;282;15;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+49;blue-collar;married;unknown;unknown;no;no;telephone;jun;wed;112;4;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+38;technician;married;university.degree;unknown;no;no;telephone;jun;wed;36;4;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+55;retired;divorced;professional.course;no;yes;no;telephone;jun;wed;69;4;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+27;technician;married;professional.course;no;yes;yes;telephone;jun;wed;299;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+54;technician;married;professional.course;no;yes;no;telephone;jun;wed;80;6;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+25;services;single;high.school;no;no;yes;telephone;jun;wed;729;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+40;technician;married;professional.course;no;no;no;telephone;jun;wed;389;5;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+40;management;married;basic.6y;unknown;yes;no;telephone;jun;wed;229;6;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+47;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;wed;624;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+46;admin.;divorced;university.degree;no;yes;no;telephone;jun;wed;165;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+46;blue-collar;married;high.school;no;yes;no;telephone;jun;wed;216;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+52;technician;married;high.school;unknown;yes;no;telephone;jun;wed;122;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+30;blue-collar;married;basic.6y;no;no;no;telephone;jun;wed;201;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+39;admin.;single;high.school;no;no;no;telephone;jun;wed;172;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+54;admin.;married;university.degree;unknown;yes;no;telephone;jun;wed;79;10;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+36;technician;married;basic.9y;no;yes;yes;telephone;jun;wed;702;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+33;blue-collar;married;basic.4y;no;yes;yes;telephone;jun;wed;112;4;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+37;blue-collar;single;unknown;no;no;no;telephone;jun;wed;65;10;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+59;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;wed;361;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+37;blue-collar;married;basic.4y;no;yes;no;telephone;jun;wed;140;2;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+38;blue-collar;married;basic.6y;no;yes;no;telephone;jun;wed;382;3;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+33;technician;divorced;professional.course;no;no;no;telephone;jun;wed;128;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+34;services;married;university.degree;no;no;no;telephone;jun;wed;175;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+38;technician;married;professional.course;no;no;no;telephone;jun;wed;147;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+42;blue-collar;married;basic.6y;no;no;yes;telephone;jun;wed;292;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+27;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;wed;235;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+22;services;single;high.school;no;no;no;telephone;jun;wed;156;1;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+26;services;married;high.school;no;no;yes;telephone;jun;wed;570;11;999;0;nonexistent;1.4;94.465;-41.8;4.864;5228.1;no
+51;technician;divorced;professional.course;no;no;no;telephone;jun;thu;399;3;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+51;admin.;married;high.school;no;no;yes;telephone;jun;thu;222;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+40;unemployed;divorced;high.school;no;no;yes;telephone;jun;thu;243;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+35;services;divorced;high.school;no;yes;no;telephone;jun;thu;74;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+54;admin.;married;high.school;no;yes;no;telephone;jun;thu;243;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+43;blue-collar;married;basic.9y;unknown;yes;no;telephone;jun;thu;88;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+36;technician;married;professional.course;no;no;no;telephone;jun;thu;38;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+45;services;married;high.school;unknown;no;no;telephone;jun;thu;379;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+32;self-employed;married;university.degree;no;no;no;telephone;jun;thu;178;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+39;blue-collar;married;professional.course;unknown;yes;no;telephone;jun;thu;27;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+36;admin.;divorced;high.school;no;no;no;telephone;jun;thu;80;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+44;entrepreneur;single;university.degree;no;no;no;telephone;jun;thu;75;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+37;blue-collar;married;professional.course;no;yes;no;telephone;jun;thu;65;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+37;blue-collar;married;professional.course;no;yes;no;telephone;jun;thu;168;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+36;blue-collar;married;unknown;no;no;no;telephone;jun;thu;179;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+46;self-employed;married;basic.9y;unknown;no;no;telephone;jun;thu;49;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+58;blue-collar;married;professional.course;unknown;no;yes;telephone;jun;thu;25;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+34;management;married;university.degree;no;no;no;telephone;jun;thu;221;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+45;unknown;married;unknown;no;no;no;telephone;jun;thu;484;8;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+43;technician;married;professional.course;no;no;no;telephone;jun;thu;119;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+34;management;married;university.degree;no;yes;no;telephone;jun;thu;773;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+45;blue-collar;married;basic.9y;unknown;yes;no;telephone;jun;thu;135;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+23;services;single;professional.course;unknown;no;no;telephone;jun;thu;169;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+33;admin.;single;professional.course;no;no;no;telephone;jun;thu;104;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+45;self-employed;married;university.degree;no;yes;no;telephone;jun;thu;870;11;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+26;self-employed;married;university.degree;no;yes;no;telephone;jun;thu;400;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+52;blue-collar;married;basic.9y;no;yes;no;telephone;jun;thu;112;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+34;admin.;married;university.degree;no;no;no;telephone;jun;thu;283;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+31;services;single;professional.course;no;no;no;telephone;jun;thu;56;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+31;services;single;professional.course;no;no;no;telephone;jun;thu;224;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+54;admin.;divorced;university.degree;no;no;no;telephone;jun;thu;172;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+35;blue-collar;married;basic.4y;no;no;no;telephone;jun;thu;636;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+53;technician;married;unknown;no;no;no;telephone;jun;thu;40;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+37;admin.;married;university.degree;no;no;no;telephone;jun;thu;63;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+34;services;married;high.school;unknown;yes;no;telephone;jun;thu;396;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+49;admin.;divorced;university.degree;no;no;no;telephone;jun;thu;487;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+55;housemaid;divorced;university.degree;no;yes;no;telephone;jun;thu;221;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+30;blue-collar;single;unknown;no;no;no;telephone;jun;thu;116;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+30;blue-collar;single;unknown;no;yes;no;telephone;jun;thu;400;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+45;blue-collar;married;basic.6y;unknown;yes;no;telephone;jun;thu;222;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+35;blue-collar;married;unknown;no;no;yes;telephone;jun;thu;78;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+35;blue-collar;married;basic.9y;no;no;no;telephone;jun;thu;92;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+52;retired;married;high.school;no;no;no;telephone;jun;thu;48;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+35;blue-collar;married;basic.9y;no;yes;yes;telephone;jun;thu;97;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+58;blue-collar;married;basic.4y;no;no;no;telephone;jun;thu;69;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+48;admin.;single;university.degree;no;yes;no;telephone;jun;thu;333;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+28;admin.;single;university.degree;no;yes;no;telephone;jun;thu;78;6;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+24;admin.;single;high.school;no;no;no;telephone;jun;thu;131;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+32;blue-collar;married;basic.9y;no;yes;no;telephone;jun;thu;155;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+40;housemaid;married;basic.4y;unknown;yes;no;telephone;jun;thu;397;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+41;housemaid;married;high.school;no;yes;no;telephone;jun;thu;41;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+46;admin.;married;university.degree;unknown;no;no;telephone;jun;thu;93;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+29;services;single;high.school;no;yes;no;telephone;jun;thu;133;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+46;admin.;single;university.degree;no;no;no;telephone;jun;thu;57;6;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+36;technician;married;professional.course;no;yes;no;telephone;jun;thu;21;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+32;admin.;married;university.degree;no;no;no;telephone;jun;thu;47;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+48;admin.;married;high.school;no;yes;yes;telephone;jun;thu;89;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+41;services;divorced;basic.9y;no;yes;no;telephone;jun;thu;163;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+50;housemaid;married;unknown;no;yes;no;telephone;jun;thu;86;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+41;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;thu;142;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+28;technician;single;professional.course;unknown;no;no;telephone;jun;thu;492;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+41;blue-collar;married;basic.9y;no;no;yes;telephone;jun;thu;327;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+30;technician;married;university.degree;unknown;no;no;telephone;jun;thu;189;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+42;blue-collar;married;basic.4y;unknown;yes;no;telephone;jun;thu;812;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;yes
+52;management;divorced;university.degree;no;yes;yes;telephone;jun;thu;73;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+46;admin.;married;high.school;no;no;no;telephone;jun;thu;428;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+41;technician;married;basic.6y;no;no;no;telephone;jun;thu;41;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+23;services;single;professional.course;unknown;no;no;telephone;jun;thu;202;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+28;unknown;single;unknown;unknown;yes;no;telephone;jun;thu;169;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+33;self-employed;married;university.degree;no;yes;no;telephone;jun;thu;271;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+45;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;thu;232;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+38;services;married;high.school;unknown;no;no;telephone;jun;thu;305;5;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+44;management;married;university.degree;no;no;no;telephone;jun;thu;175;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+30;technician;single;professional.course;no;unknown;unknown;telephone;jun;thu;67;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+26;blue-collar;married;basic.9y;unknown;no;yes;telephone;jun;thu;81;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+57;retired;single;professional.course;no;no;no;telephone;jun;thu;647;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+52;blue-collar;divorced;basic.4y;no;no;no;telephone;jun;thu;910;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;yes
+30;blue-collar;single;unknown;no;no;no;telephone;jun;thu;65;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+35;admin.;married;university.degree;no;yes;yes;telephone;jun;thu;21;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+58;admin.;married;unknown;unknown;no;no;telephone;jun;thu;292;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+46;blue-collar;married;professional.course;no;no;no;telephone;jun;thu;1446;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;yes
+26;admin.;single;high.school;no;no;no;telephone;jun;thu;463;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+52;self-employed;married;basic.4y;unknown;no;no;telephone;jun;thu;60;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+48;management;married;university.degree;no;yes;no;telephone;jun;thu;141;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+45;admin.;married;basic.9y;unknown;yes;no;telephone;jun;thu;60;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+49;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;thu;1149;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;yes
+58;retired;married;basic.4y;unknown;yes;no;telephone;jun;thu;179;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+31;blue-collar;divorced;basic.9y;no;yes;no;telephone;jun;thu;166;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+41;technician;married;professional.course;no;no;no;telephone;jun;thu;67;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+27;admin.;single;university.degree;no;no;yes;telephone;jun;thu;263;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+43;blue-collar;single;professional.course;no;no;no;telephone;jun;thu;133;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+33;services;married;high.school;no;yes;no;telephone;jun;thu;124;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+40;entrepreneur;married;basic.9y;no;no;no;telephone;jun;thu;331;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+36;self-employed;divorced;basic.4y;no;yes;no;telephone;jun;thu;174;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+58;housemaid;married;basic.4y;no;yes;no;telephone;jun;thu;190;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+43;unemployed;married;university.degree;unknown;yes;no;telephone;jun;thu;409;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+31;admin.;married;basic.9y;no;no;no;telephone;jun;thu;145;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+32;services;single;basic.9y;no;no;yes;telephone;jun;thu;139;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+59;technician;married;unknown;unknown;unknown;unknown;telephone;jun;thu;247;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+38;services;married;basic.4y;no;no;yes;telephone;jun;thu;90;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+30;blue-collar;married;basic.9y;no;yes;no;telephone;jun;thu;52;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+40;admin.;divorced;high.school;no;no;no;telephone;jun;thu;170;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+45;blue-collar;married;basic.4y;unknown;yes;no;telephone;jun;thu;100;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+46;admin.;married;basic.9y;unknown;yes;no;telephone;jun;thu;70;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+41;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;thu;89;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+31;blue-collar;married;basic.9y;no;yes;no;telephone;jun;thu;91;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+31;blue-collar;married;basic.9y;no;no;no;telephone;jun;thu;47;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+41;management;married;university.degree;no;yes;no;telephone;jun;thu;52;8;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+39;services;divorced;high.school;no;no;no;telephone;jun;thu;81;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+30;self-employed;single;university.degree;no;no;no;telephone;jun;thu;39;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+49;blue-collar;married;unknown;no;no;no;telephone;jun;thu;225;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+56;blue-collar;married;basic.4y;no;yes;yes;telephone;jun;thu;36;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+43;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;thu;287;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+53;blue-collar;married;basic.4y;no;no;no;telephone;jun;thu;627;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+29;blue-collar;single;basic.6y;no;yes;no;telephone;jun;thu;83;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+37;services;married;high.school;unknown;no;no;telephone;jun;thu;106;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+52;technician;married;basic.9y;no;yes;no;telephone;jun;thu;166;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+45;blue-collar;married;unknown;unknown;no;no;telephone;jun;thu;264;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+57;technician;divorced;basic.9y;no;no;no;telephone;jun;thu;72;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+57;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;thu;452;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+36;management;married;university.degree;no;no;no;telephone;jun;thu;22;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+36;blue-collar;married;high.school;no;no;no;telephone;jun;thu;272;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+50;blue-collar;married;basic.4y;no;yes;no;telephone;jun;thu;152;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+40;entrepreneur;married;basic.6y;unknown;no;no;telephone;jun;thu;85;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+39;blue-collar;married;basic.6y;unknown;no;no;telephone;jun;thu;247;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+28;technician;single;professional.course;no;no;no;telephone;jun;thu;508;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;yes
+40;management;married;university.degree;no;unknown;unknown;telephone;jun;thu;315;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+28;blue-collar;married;basic.9y;no;yes;yes;telephone;jun;thu;109;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+39;blue-collar;married;basic.6y;unknown;yes;no;telephone;jun;thu;414;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+32;entrepreneur;married;high.school;unknown;yes;no;telephone;jun;thu;107;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+37;technician;married;high.school;unknown;yes;no;telephone;jun;thu;218;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+49;entrepreneur;married;basic.4y;unknown;no;no;telephone;jun;thu;285;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+49;blue-collar;married;basic.4y;no;yes;no;telephone;jun;thu;290;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+40;unemployed;divorced;high.school;no;no;yes;telephone;jun;thu;257;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+57;services;married;high.school;unknown;no;yes;telephone;jun;thu;267;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+42;housemaid;divorced;basic.4y;unknown;yes;no;telephone;jun;thu;150;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+41;management;married;university.degree;no;no;no;telephone;jun;thu;21;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+53;services;married;high.school;unknown;yes;no;telephone;jun;thu;108;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+44;blue-collar;married;basic.4y;no;no;no;telephone;jun;thu;153;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+47;technician;married;professional.course;no;no;no;telephone;jun;thu;202;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+56;retired;married;basic.9y;unknown;yes;no;telephone;jun;thu;60;20;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+40;services;divorced;high.school;no;no;no;telephone;jun;thu;265;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+31;blue-collar;single;basic.4y;no;no;no;telephone;jun;thu;590;3;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;yes
+45;housemaid;married;professional.course;unknown;yes;no;telephone;jun;thu;126;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+56;technician;married;professional.course;unknown;no;no;telephone;jun;thu;48;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+49;admin.;divorced;university.degree;no;yes;no;telephone;jun;thu;234;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+29;entrepreneur;divorced;basic.9y;no;yes;no;telephone;jun;thu;53;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+39;admin.;married;university.degree;no;no;no;telephone;jun;thu;370;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+38;services;married;high.school;unknown;no;no;telephone;jun;thu;419;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+58;retired;married;high.school;no;no;no;telephone;jun;thu;355;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+37;blue-collar;married;high.school;no;no;no;telephone;jun;thu;280;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+50;blue-collar;married;basic.4y;no;unknown;unknown;telephone;jun;thu;80;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+59;retired;married;high.school;unknown;no;yes;telephone;jun;thu;222;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+59;retired;married;high.school;unknown;yes;no;telephone;jun;thu;251;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+35;admin.;single;basic.4y;unknown;no;no;telephone;jun;thu;117;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+31;admin.;single;university.degree;no;yes;no;telephone;jun;thu;237;3;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+41;management;married;unknown;unknown;no;yes;telephone;jun;thu;636;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;yes
+55;retired;married;professional.course;no;yes;no;telephone;jun;thu;147;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+41;blue-collar;single;basic.4y;no;no;no;telephone;jun;thu;83;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+42;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;thu;164;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+47;blue-collar;married;basic.6y;no;no;no;telephone;jun;thu;103;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+42;blue-collar;married;unknown;unknown;yes;no;telephone;jun;thu;280;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+28;blue-collar;married;basic.4y;no;no;no;telephone;jun;thu;118;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+54;admin.;married;university.degree;no;yes;yes;telephone;jun;thu;80;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+32;technician;single;high.school;no;yes;no;telephone;jun;thu;127;3;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+59;unknown;married;unknown;unknown;no;no;telephone;jun;thu;701;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;yes
+35;technician;married;professional.course;no;yes;no;telephone;jun;thu;160;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+31;housemaid;divorced;high.school;no;no;no;telephone;jun;thu;57;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+39;services;married;high.school;no;no;no;telephone;jun;thu;227;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+41;admin.;married;university.degree;no;no;no;telephone;jun;thu;115;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+36;blue-collar;married;high.school;no;yes;no;telephone;jun;thu;267;11;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+34;blue-collar;married;basic.9y;no;no;no;telephone;jun;thu;761;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;yes
+39;entrepreneur;single;basic.6y;no;no;no;telephone;jun;thu;1053;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;yes
+54;technician;single;university.degree;unknown;no;no;telephone;jun;thu;594;3;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+44;blue-collar;married;basic.4y;no;unknown;unknown;telephone;jun;thu;471;3;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+44;services;married;high.school;no;no;no;telephone;jun;thu;227;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+44;technician;single;basic.9y;no;yes;no;telephone;jun;thu;113;3;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+31;services;married;high.school;unknown;no;no;telephone;jun;thu;447;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+56;entrepreneur;married;university.degree;unknown;yes;no;telephone;jun;thu;215;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+31;admin.;married;high.school;unknown;no;no;telephone;jun;thu;185;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+33;self-employed;single;university.degree;no;unknown;unknown;telephone;jun;thu;169;3;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+44;admin.;married;university.degree;unknown;yes;no;telephone;jun;thu;18;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+47;admin.;divorced;high.school;no;no;no;telephone;jun;thu;23;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+37;blue-collar;single;basic.6y;unknown;no;no;telephone;jun;thu;27;8;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+41;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;thu;348;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+27;admin.;single;university.degree;no;no;no;telephone;jun;thu;64;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+49;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;thu;57;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+46;housemaid;married;basic.4y;no;yes;no;telephone;jun;thu;71;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+42;blue-collar;married;basic.4y;no;yes;no;telephone;jun;thu;168;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+37;admin.;married;high.school;no;yes;no;telephone;jun;thu;581;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+46;blue-collar;married;basic.4y;unknown;yes;no;telephone;jun;thu;346;3;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+46;self-employed;married;basic.9y;unknown;no;no;telephone;jun;thu;99;3;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+41;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;thu;237;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+37;services;married;high.school;no;yes;no;telephone;jun;thu;52;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+49;blue-collar;married;basic.4y;unknown;yes;no;telephone;jun;thu;27;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+34;services;married;high.school;no;no;no;telephone;jun;thu;511;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+37;services;married;high.school;no;no;no;telephone;jun;thu;201;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+29;services;single;high.school;no;yes;no;telephone;jun;thu;170;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+26;blue-collar;single;basic.9y;no;yes;no;telephone;jun;thu;61;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+31;admin.;married;university.degree;no;no;no;telephone;jun;thu;256;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+50;technician;married;professional.course;unknown;yes;no;telephone;jun;thu;87;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+55;admin.;married;basic.4y;no;no;no;telephone;jun;thu;137;4;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+40;technician;married;basic.9y;unknown;yes;no;telephone;jun;thu;245;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+50;management;married;unknown;no;yes;no;telephone;jun;thu;1005;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+52;management;divorced;university.degree;no;no;no;telephone;jun;thu;20;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+39;services;married;high.school;no;no;no;telephone;jun;thu;387;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+31;management;single;university.degree;unknown;no;yes;telephone;jun;thu;690;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+39;admin.;married;high.school;unknown;yes;no;telephone;jun;thu;1084;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+38;blue-collar;married;high.school;no;no;no;telephone;jun;thu;140;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+38;services;married;basic.4y;no;yes;no;telephone;jun;thu;400;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+60;retired;married;professional.course;no;yes;no;telephone;jun;thu;190;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+34;technician;single;professional.course;no;no;no;telephone;jun;thu;432;8;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+37;technician;married;university.degree;no;no;no;telephone;jun;thu;82;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+32;housemaid;married;basic.6y;unknown;no;no;telephone;jun;thu;19;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+48;management;married;university.degree;no;no;yes;telephone;jun;thu;94;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+42;blue-collar;married;basic.4y;unknown;yes;no;telephone;jun;thu;34;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+29;blue-collar;married;basic.9y;unknown;no;yes;telephone;jun;thu;586;3;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+31;technician;married;university.degree;no;no;no;telephone;jun;thu;983;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;yes
+40;admin.;married;high.school;no;no;no;telephone;jun;thu;221;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+40;admin.;single;unknown;unknown;no;no;telephone;jun;thu;563;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+31;technician;married;university.degree;no;no;no;telephone;jun;thu;741;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+58;entrepreneur;divorced;university.degree;no;no;no;telephone;jun;thu;40;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+40;entrepreneur;married;university.degree;unknown;no;no;telephone;jun;thu;85;3;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+48;blue-collar;married;basic.6y;no;no;no;telephone;jun;thu;313;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+34;admin.;single;university.degree;no;no;no;telephone;jun;thu;128;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+41;blue-collar;married;basic.4y;no;no;no;telephone;jun;thu;163;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+36;blue-collar;single;basic.9y;no;yes;no;telephone;jun;thu;21;10;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+41;blue-collar;married;basic.4y;no;no;no;telephone;jun;thu;17;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+37;entrepreneur;married;university.degree;no;unknown;unknown;telephone;jun;thu;59;7;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+33;admin.;married;university.degree;no;unknown;unknown;telephone;jun;thu;49;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+38;housemaid;married;basic.9y;unknown;unknown;unknown;telephone;jun;thu;138;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+38;admin.;married;university.degree;no;yes;no;telephone;jun;thu;197;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+36;admin.;married;basic.9y;no;yes;no;telephone;jun;thu;622;4;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+34;services;divorced;professional.course;unknown;yes;no;telephone;jun;thu;339;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+45;unknown;married;unknown;unknown;no;yes;telephone;jun;thu;91;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+43;admin.;married;university.degree;no;no;no;telephone;jun;thu;175;4;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+31;technician;single;university.degree;unknown;yes;no;telephone;jun;thu;817;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;yes
+52;management;married;university.degree;no;no;no;telephone;jun;thu;423;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+35;blue-collar;married;professional.course;no;yes;no;telephone;jun;thu;181;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+47;admin.;married;university.degree;unknown;no;no;telephone;jun;thu;49;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+26;housemaid;married;university.degree;no;no;no;telephone;jun;thu;181;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+35;blue-collar;divorced;basic.9y;no;no;no;telephone;jun;thu;77;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+57;self-employed;married;university.degree;unknown;yes;no;telephone;jun;thu;318;3;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+50;technician;married;professional.course;no;no;no;telephone;jun;thu;158;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+43;admin.;married;unknown;no;yes;no;telephone;jun;thu;189;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+41;blue-collar;divorced;professional.course;no;unknown;unknown;telephone;jun;thu;127;6;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+47;blue-collar;married;basic.6y;unknown;yes;no;telephone;jun;thu;86;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+48;blue-collar;divorced;basic.4y;unknown;yes;no;telephone;jun;thu;63;3;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+45;technician;married;professional.course;no;no;no;telephone;jun;thu;517;3;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+30;blue-collar;single;basic.9y;unknown;no;no;telephone;jun;thu;420;4;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+45;blue-collar;married;basic.6y;unknown;no;no;telephone;jun;thu;333;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+34;entrepreneur;married;basic.4y;no;no;no;telephone;jun;thu;26;24;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+56;admin.;divorced;unknown;no;no;no;telephone;jun;thu;57;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+36;admin.;married;high.school;no;no;no;telephone;jun;thu;127;4;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+45;blue-collar;married;basic.6y;unknown;no;no;telephone;jun;thu;272;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+31;admin.;single;basic.9y;no;no;no;telephone;jun;thu;105;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+40;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;thu;101;11;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+41;admin.;married;high.school;no;no;no;telephone;jun;thu;152;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+32;services;married;high.school;unknown;no;no;telephone;jun;thu;97;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+52;housemaid;married;basic.4y;unknown;no;no;telephone;jun;thu;92;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+39;admin.;married;high.school;no;yes;no;telephone;jun;thu;337;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+47;blue-collar;married;basic.9y;no;yes;no;telephone;jun;thu;955;4;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+29;services;single;high.school;no;yes;no;telephone;jun;thu;1018;3;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;yes
+46;management;married;basic.6y;unknown;no;no;telephone;jun;thu;90;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+34;services;single;high.school;no;no;no;telephone;jun;thu;729;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+35;technician;single;high.school;no;yes;no;telephone;jun;thu;159;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+30;technician;divorced;professional.course;no;yes;no;telephone;jun;thu;330;3;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+31;entrepreneur;married;university.degree;no;yes;no;telephone;jun;thu;130;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+37;blue-collar;married;basic.9y;no;unknown;unknown;telephone;jun;thu;94;4;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+40;admin.;married;high.school;no;no;no;telephone;jun;thu;314;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+47;blue-collar;married;basic.4y;unknown;yes;no;telephone;jun;thu;74;5;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+43;admin.;married;professional.course;no;yes;no;telephone;jun;thu;193;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+30;blue-collar;married;basic.9y;no;no;no;telephone;jun;thu;53;29;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+41;services;married;high.school;no;no;no;telephone;jun;thu;231;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+46;admin.;divorced;university.degree;no;no;no;telephone;jun;thu;353;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+32;technician;married;professional.course;no;no;no;telephone;jun;thu;805;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+47;entrepreneur;married;professional.course;unknown;unknown;unknown;telephone;jun;thu;19;3;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+32;services;single;basic.6y;no;unknown;unknown;telephone;jun;thu;131;3;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+37;entrepreneur;married;basic.9y;no;yes;yes;telephone;jun;thu;102;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+27;blue-collar;single;basic.9y;no;no;yes;telephone;jun;thu;869;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+39;admin.;married;university.degree;no;yes;no;telephone;jun;thu;65;3;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+56;technician;married;professional.course;unknown;yes;no;telephone;jun;thu;150;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+39;management;divorced;university.degree;unknown;no;no;telephone;jun;thu;91;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+35;blue-collar;married;basic.6y;unknown;no;no;telephone;jun;thu;144;7;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+36;management;divorced;professional.course;no;no;no;telephone;jun;thu;115;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+49;technician;married;university.degree;no;yes;yes;telephone;jun;thu;460;3;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+40;entrepreneur;married;basic.9y;no;yes;no;telephone;jun;thu;561;3;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+34;blue-collar;divorced;professional.course;no;no;no;telephone;jun;thu;884;4;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;yes
+51;unemployed;married;high.school;no;no;no;telephone;jun;thu;93;3;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+38;entrepreneur;married;university.degree;no;no;no;telephone;jun;thu;989;3;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+37;admin.;married;basic.9y;no;yes;no;telephone;jun;thu;209;3;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+51;admin.;married;university.degree;no;no;no;telephone;jun;thu;295;3;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+34;admin.;single;basic.9y;unknown;yes;no;telephone;jun;thu;319;6;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+47;admin.;married;unknown;unknown;yes;yes;telephone;jun;thu;323;3;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+38;management;married;high.school;unknown;no;yes;telephone;jun;thu;70;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+43;services;married;basic.9y;no;no;no;telephone;jun;thu;110;17;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+46;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;thu;162;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+38;admin.;single;high.school;unknown;yes;no;telephone;jun;thu;67;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+25;services;single;professional.course;no;yes;no;telephone;jun;thu;18;3;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+37;technician;married;professional.course;no;no;no;telephone;jun;thu;221;3;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+46;admin.;divorced;university.degree;no;no;no;telephone;jun;thu;138;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+52;blue-collar;married;unknown;unknown;yes;no;telephone;jun;thu;60;3;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+34;admin.;single;university.degree;unknown;no;no;telephone;jun;thu;17;16;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+37;technician;married;professional.course;no;no;no;telephone;jun;thu;214;5;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+40;admin.;married;university.degree;unknown;no;no;telephone;jun;thu;650;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+27;blue-collar;married;basic.4y;no;yes;no;telephone;jun;thu;75;3;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+43;technician;married;basic.9y;unknown;no;no;telephone;jun;thu;246;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+29;blue-collar;married;high.school;no;no;no;telephone;jun;thu;718;13;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+45;self-employed;married;university.degree;unknown;no;no;telephone;jun;thu;108;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+36;services;married;high.school;no;yes;no;telephone;jun;thu;394;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+30;management;single;university.degree;no;no;no;telephone;jun;thu;27;7;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+48;admin.;divorced;high.school;no;yes;yes;telephone;jun;thu;1011;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+41;admin.;married;high.school;no;yes;yes;telephone;jun;thu;204;4;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+42;admin.;married;university.degree;unknown;yes;no;telephone;jun;thu;160;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+37;blue-collar;married;basic.4y;no;yes;no;telephone;jun;thu;222;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+48;blue-collar;married;basic.4y;no;no;no;telephone;jun;thu;240;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+38;unemployed;married;basic.4y;unknown;no;no;telephone;jun;thu;54;26;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+41;technician;married;university.degree;no;unknown;unknown;telephone;jun;thu;131;10;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+35;technician;married;professional.course;no;yes;no;telephone;jun;thu;18;31;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+39;blue-collar;married;basic.6y;no;no;no;telephone;jun;thu;31;5;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+45;services;divorced;unknown;no;no;no;telephone;jun;thu;474;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+23;blue-collar;married;high.school;no;no;yes;telephone;jun;thu;173;3;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+42;unemployed;married;basic.6y;unknown;no;no;telephone;jun;thu;87;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+31;services;married;high.school;unknown;yes;no;telephone;jun;thu;67;12;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+43;blue-collar;married;basic.9y;no;no;no;telephone;jun;thu;246;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+25;technician;single;university.degree;no;yes;yes;telephone;jun;thu;128;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+36;admin.;married;high.school;no;yes;no;telephone;jun;thu;285;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+46;technician;married;professional.course;unknown;yes;no;telephone;jun;thu;69;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+57;technician;single;professional.course;no;yes;no;telephone;jun;thu;451;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+41;blue-collar;married;basic.4y;no;no;no;telephone;jun;thu;96;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+44;services;married;high.school;no;yes;no;telephone;jun;thu;172;3;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+53;technician;married;professional.course;unknown;yes;no;telephone;jun;thu;939;6;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+46;management;married;university.degree;no;yes;no;telephone;jun;thu;234;3;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+29;services;single;high.school;no;no;no;telephone;jun;thu;240;3;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+45;housemaid;married;professional.course;unknown;no;no;telephone;jun;thu;210;3;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+42;blue-collar;divorced;high.school;no;no;yes;telephone;jun;thu;175;7;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+50;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;thu;182;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+44;housemaid;married;basic.4y;unknown;no;no;telephone;jun;thu;124;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+32;housemaid;married;high.school;no;no;no;telephone;jun;thu;372;1;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+32;housemaid;single;high.school;no;no;no;telephone;jun;thu;406;2;999;0;nonexistent;1.4;94.465;-41.8;4.866;5228.1;no
+35;admin.;married;university.degree;no;yes;no;telephone;jun;fri;463;4;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+30;services;married;high.school;unknown;no;no;telephone;jun;fri;24;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+30;services;married;high.school;unknown;unknown;unknown;telephone;jun;fri;127;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+30;services;married;high.school;unknown;no;yes;telephone;jun;fri;105;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+31;services;married;high.school;no;yes;no;telephone;jun;fri;130;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+50;entrepreneur;married;unknown;no;no;no;telephone;jun;fri;42;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+36;blue-collar;married;high.school;no;yes;no;telephone;jun;fri;178;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+48;admin.;divorced;university.degree;no;no;no;telephone;jun;fri;94;4;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+36;blue-collar;married;high.school;no;no;no;telephone;jun;fri;82;4;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+50;blue-collar;married;basic.4y;unknown;yes;yes;telephone;jun;fri;144;15;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+47;entrepreneur;married;unknown;unknown;no;no;telephone;jun;fri;1072;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+54;retired;married;professional.course;no;yes;no;telephone;jun;fri;40;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+33;admin.;single;university.degree;no;no;yes;telephone;jun;fri;164;4;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+41;management;married;high.school;no;unknown;unknown;telephone;jun;fri;190;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+35;services;married;high.school;no;yes;no;telephone;jun;fri;582;11;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+33;blue-collar;single;basic.9y;unknown;yes;no;telephone;jun;fri;261;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+44;management;single;university.degree;unknown;no;no;telephone;jun;fri;215;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+38;blue-collar;divorced;unknown;no;no;no;telephone;jun;fri;278;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+46;blue-collar;married;high.school;unknown;no;no;telephone;jun;fri;116;3;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+35;blue-collar;married;basic.9y;no;no;yes;telephone;jun;fri;188;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+39;services;married;high.school;no;yes;no;telephone;jun;fri;554;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;yes
+33;blue-collar;married;basic.9y;no;no;no;telephone;jun;fri;432;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+60;admin.;single;high.school;no;no;no;telephone;jun;fri;118;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+36;technician;married;professional.course;no;no;no;telephone;jun;fri;193;3;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+54;technician;married;basic.9y;no;no;no;telephone;jun;fri;63;9;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+35;technician;married;university.degree;no;yes;no;telephone;jun;fri;246;3;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+32;management;married;high.school;no;no;no;telephone;jun;fri;143;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+30;blue-collar;married;basic.9y;no;unknown;unknown;telephone;jun;fri;361;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+34;services;married;high.school;unknown;no;no;telephone;jun;fri;453;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+54;entrepreneur;married;basic.9y;no;no;yes;telephone;jun;fri;249;6;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+50;admin.;married;high.school;no;no;yes;telephone;jun;fri;219;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+41;housemaid;married;basic.6y;unknown;no;no;telephone;jun;fri;126;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+54;management;married;high.school;unknown;no;no;telephone;jun;fri;552;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+44;technician;married;basic.9y;no;yes;no;telephone;jun;fri;447;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+31;blue-collar;married;unknown;no;no;no;telephone;jun;fri;339;5;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+38;technician;married;professional.course;no;yes;no;telephone;jun;fri;220;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+53;services;married;high.school;unknown;no;no;telephone;jun;fri;373;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+37;blue-collar;married;basic.4y;no;no;no;telephone;jun;fri;26;3;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+49;technician;married;professional.course;no;yes;no;telephone;jun;fri;79;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+45;self-employed;married;basic.4y;unknown;no;no;telephone;jun;fri;339;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+40;technician;married;professional.course;no;no;no;telephone;jun;fri;18;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+50;blue-collar;married;basic.4y;unknown;yes;no;telephone;jun;fri;91;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+41;blue-collar;married;basic.9y;unknown;yes;no;telephone;jun;fri;513;3;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+56;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;fri;84;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+43;blue-collar;married;basic.9y;no;no;no;telephone;jun;fri;404;3;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+34;admin.;married;university.degree;no;yes;no;telephone;jun;fri;186;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+54;technician;married;university.degree;unknown;yes;yes;telephone;jun;fri;123;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+57;management;divorced;university.degree;no;yes;no;telephone;jun;fri;351;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+58;technician;married;unknown;no;yes;no;telephone;jun;fri;78;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+54;technician;married;university.degree;unknown;no;no;telephone;jun;fri;399;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+42;blue-collar;married;basic.6y;no;yes;no;telephone;jun;fri;60;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+47;technician;married;basic.9y;no;no;no;telephone;jun;fri;72;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+31;admin.;single;university.degree;no;no;no;telephone;jun;fri;19;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+48;unemployed;married;high.school;unknown;yes;no;telephone;jun;fri;334;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+36;management;married;university.degree;no;no;yes;telephone;jun;fri;49;5;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+39;blue-collar;married;basic.9y;unknown;yes;no;telephone;jun;fri;50;3;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+27;services;single;professional.course;no;no;no;telephone;jun;fri;106;5;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+33;admin.;married;professional.course;no;yes;yes;telephone;jun;fri;248;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+30;self-employed;married;professional.course;no;no;no;telephone;jun;fri;101;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+50;management;married;university.degree;no;no;no;telephone;jun;fri;114;5;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+50;self-employed;married;university.degree;no;no;no;telephone;jun;fri;414;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+41;admin.;single;high.school;no;yes;no;telephone;jun;fri;266;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+26;services;single;high.school;no;no;no;telephone;jun;fri;363;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+51;services;married;high.school;unknown;yes;no;telephone;jun;fri;246;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+32;admin.;single;university.degree;no;yes;yes;telephone;jun;fri;431;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+44;blue-collar;married;basic.4y;no;yes;yes;telephone;jun;fri;110;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+44;blue-collar;married;basic.4y;no;yes;no;telephone;jun;fri;113;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+39;technician;married;unknown;no;no;no;telephone;jun;fri;237;3;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+56;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;fri;1276;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;yes
+35;blue-collar;single;unknown;no;no;yes;telephone;jun;fri;1114;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+40;admin.;divorced;basic.9y;no;no;no;telephone;jun;fri;161;5;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+41;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;fri;189;3;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+29;technician;married;professional.course;no;no;no;telephone;jun;fri;29;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+48;services;married;high.school;unknown;yes;no;telephone;jun;fri;329;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+33;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;fri;420;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+31;blue-collar;single;high.school;no;no;no;telephone;jun;fri;672;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+52;self-employed;married;basic.4y;unknown;no;yes;telephone;jun;fri;381;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;yes
+58;technician;divorced;basic.9y;no;no;no;telephone;jun;fri;80;3;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+45;blue-collar;married;basic.9y;unknown;yes;no;telephone;jun;fri;194;3;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+34;technician;married;professional.course;no;no;no;telephone;jun;fri;1994;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+35;blue-collar;married;basic.4y;no;no;no;telephone;jun;fri;183;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+32;technician;single;high.school;no;no;no;telephone;jun;fri;250;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+50;services;married;unknown;unknown;no;no;telephone;jun;fri;81;5;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+53;blue-collar;married;basic.4y;no;no;no;telephone;jun;fri;223;3;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+45;admin.;single;basic.9y;unknown;yes;no;telephone;jun;fri;172;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+36;services;married;high.school;no;no;no;telephone;jun;fri;100;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+52;technician;married;basic.9y;no;no;no;telephone;jun;fri;188;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+41;blue-collar;married;high.school;unknown;no;yes;telephone;jun;fri;320;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+50;technician;married;professional.course;no;no;yes;telephone;jun;fri;64;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+57;retired;married;basic.4y;no;no;no;telephone;jun;fri;83;3;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+34;admin.;single;high.school;no;yes;no;telephone;jun;fri;122;16;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+30;services;married;high.school;no;yes;no;telephone;jun;fri;51;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+33;self-employed;married;basic.9y;no;no;no;telephone;jun;fri;330;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+53;blue-collar;married;basic.9y;unknown;no;yes;telephone;jun;fri;164;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+35;unemployed;married;university.degree;no;yes;yes;telephone;jun;fri;272;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+34;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;fri;120;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+41;technician;married;basic.9y;no;yes;no;telephone;jun;fri;307;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+39;admin.;married;high.school;unknown;yes;no;telephone;jun;fri;377;3;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+55;services;married;high.school;unknown;yes;no;telephone;jun;fri;315;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+42;services;married;professional.course;no;no;no;telephone;jun;fri;24;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+40;services;divorced;basic.6y;no;no;yes;telephone;jun;fri;386;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+30;services;divorced;high.school;no;yes;no;telephone;jun;fri;56;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+56;blue-collar;married;high.school;unknown;yes;no;telephone;jun;fri;79;3;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+41;management;married;unknown;no;yes;no;telephone;jun;fri;30;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+32;blue-collar;married;high.school;unknown;no;no;telephone;jun;fri;182;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+35;admin.;single;university.degree;no;yes;no;telephone;jun;fri;358;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+42;retired;married;basic.9y;unknown;no;no;telephone;jun;fri;42;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+28;admin.;single;university.degree;no;no;no;telephone;jun;fri;227;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+52;unknown;married;basic.4y;no;yes;no;telephone;jun;fri;29;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+38;admin.;married;university.degree;no;no;no;telephone;jun;fri;52;13;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+35;unemployed;married;university.degree;no;no;no;telephone;jun;fri;360;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+58;services;married;high.school;unknown;yes;yes;telephone;jun;fri;136;13;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+35;entrepreneur;divorced;high.school;no;no;no;telephone;jun;fri;106;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+39;admin.;single;high.school;no;yes;no;telephone;jun;fri;141;3;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+37;blue-collar;married;basic.9y;no;yes;no;telephone;jun;fri;28;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+33;blue-collar;married;professional.course;no;yes;no;telephone;jun;fri;862;11;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;yes
+40;admin.;single;high.school;no;no;no;telephone;jun;fri;97;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+35;blue-collar;married;high.school;no;no;no;telephone;jun;fri;107;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+42;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;fri;94;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+26;entrepreneur;married;university.degree;no;yes;no;telephone;jun;fri;168;3;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+47;blue-collar;single;basic.4y;unknown;yes;no;telephone;jun;fri;44;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+28;admin.;married;high.school;no;no;yes;telephone;jun;fri;260;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+38;admin.;married;university.degree;no;no;no;telephone;jun;fri;460;4;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;yes
+35;management;single;unknown;no;no;no;telephone;jun;fri;712;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;yes
+36;blue-collar;married;basic.9y;unknown;yes;no;telephone;jun;fri;1567;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+35;technician;single;university.degree;no;no;no;telephone;jun;fri;78;3;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+28;entrepreneur;married;basic.9y;no;yes;yes;telephone;jun;fri;262;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+43;management;married;university.degree;no;no;no;telephone;jun;fri;84;5;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+38;housemaid;married;basic.9y;no;yes;yes;telephone;jun;fri;173;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+44;blue-collar;married;basic.9y;unknown;yes;yes;telephone;jun;fri;175;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+42;technician;single;professional.course;unknown;no;no;telephone;jun;fri;29;4;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+35;blue-collar;married;basic.9y;no;no;no;telephone;jun;fri;968;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+32;unemployed;single;high.school;unknown;yes;no;telephone;jun;fri;219;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+41;unknown;married;basic.6y;no;no;yes;telephone;jun;fri;220;4;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+32;blue-collar;married;basic.6y;no;no;no;telephone;jun;fri;642;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;yes
+30;admin.;married;university.degree;no;no;yes;telephone;jun;fri;71;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+35;admin.;married;high.school;unknown;no;no;telephone;jun;fri;238;3;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+52;entrepreneur;married;university.degree;unknown;no;yes;telephone;jun;fri;60;3;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+48;blue-collar;married;basic.4y;no;unknown;unknown;telephone;jun;fri;165;3;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+35;retired;single;basic.6y;unknown;yes;no;telephone;jun;fri;133;3;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+44;technician;married;professional.course;unknown;no;no;telephone;jun;fri;45;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+33;admin.;single;university.degree;no;yes;no;telephone;jun;fri;136;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+47;admin.;married;high.school;unknown;unknown;unknown;telephone;jun;fri;136;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+30;admin.;divorced;university.degree;unknown;yes;no;telephone;jun;fri;40;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+47;admin.;married;high.school;unknown;no;yes;telephone;jun;fri;383;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+46;self-employed;single;high.school;no;no;no;telephone;jun;fri;464;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+43;blue-collar;married;basic.9y;no;unknown;unknown;telephone;jun;fri;37;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+54;blue-collar;married;basic.9y;unknown;unknown;unknown;telephone;jun;fri;189;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+33;services;married;high.school;unknown;no;no;telephone;jun;fri;78;3;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+40;blue-collar;married;basic.9y;no;no;yes;telephone;jun;fri;176;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+40;blue-collar;married;basic.4y;unknown;no;yes;telephone;jun;fri;181;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+46;admin.;married;university.degree;no;yes;no;telephone;jun;fri;193;7;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+31;admin.;married;high.school;no;yes;yes;telephone;jun;fri;118;4;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+36;entrepreneur;married;university.degree;unknown;unknown;unknown;telephone;jun;fri;217;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+46;entrepreneur;married;unknown;unknown;yes;no;telephone;jun;fri;86;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+48;blue-collar;married;basic.6y;no;unknown;unknown;telephone;jun;fri;52;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+30;blue-collar;married;basic.9y;no;yes;no;telephone;jun;fri;185;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+50;management;married;university.degree;unknown;no;no;telephone;jun;fri;442;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+40;blue-collar;married;professional.course;unknown;no;no;telephone;jun;fri;554;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;yes
+58;services;married;basic.4y;no;no;no;telephone;jun;fri;247;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+58;services;married;basic.4y;no;unknown;unknown;telephone;jun;fri;250;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+48;blue-collar;married;basic.6y;no;no;no;telephone;jun;fri;800;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+43;blue-collar;married;basic.4y;no;no;no;telephone;jun;fri;216;3;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+27;self-employed;single;university.degree;no;no;no;telephone;jun;fri;46;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+51;admin.;married;basic.9y;no;no;yes;telephone;jun;fri;434;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+39;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;fri;250;3;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+35;admin.;married;university.degree;no;no;no;telephone;jun;fri;230;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+42;blue-collar;married;basic.9y;no;yes;no;telephone;jun;fri;516;5;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+58;housemaid;married;high.school;unknown;unknown;unknown;telephone;jun;fri;153;4;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+34;blue-collar;married;basic.4y;no;no;no;telephone;jun;fri;78;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+44;self-employed;divorced;high.school;no;yes;no;telephone;jun;fri;1041;13;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+40;admin.;married;university.degree;no;yes;no;telephone;jun;fri;66;3;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+51;technician;married;basic.6y;unknown;no;no;telephone;jun;fri;527;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+42;technician;married;basic.9y;no;no;no;telephone;jun;fri;100;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+51;admin.;married;high.school;no;no;no;telephone;jun;fri;308;4;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+48;self-employed;married;university.degree;no;no;no;telephone;jun;fri;467;3;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;yes
+47;services;married;high.school;no;no;no;telephone;jun;fri;341;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+46;technician;divorced;university.degree;no;no;no;telephone;jun;fri;1288;3;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+34;admin.;married;university.degree;no;no;no;telephone;jun;fri;178;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+31;technician;married;professional.course;no;no;no;telephone;jun;fri;163;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+37;blue-collar;married;basic.9y;no;yes;no;telephone;jun;fri;172;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+58;management;married;basic.4y;unknown;no;no;telephone;jun;fri;301;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+37;technician;married;professional.course;no;no;no;telephone;jun;fri;140;5;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+35;blue-collar;married;basic.9y;no;no;no;telephone;jun;fri;311;3;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+39;unemployed;married;university.degree;no;no;no;telephone;jun;fri;212;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+45;unemployed;married;basic.4y;no;yes;yes;telephone;jun;fri;264;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+41;blue-collar;married;basic.9y;unknown;yes;no;telephone;jun;fri;326;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+29;admin.;married;high.school;no;no;no;telephone;jun;fri;319;4;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+33;technician;married;university.degree;no;yes;no;telephone;jun;fri;186;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+46;blue-collar;married;basic.4y;no;no;no;telephone;jun;fri;473;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+40;blue-collar;single;unknown;no;no;yes;telephone;jun;fri;274;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+34;unemployed;married;basic.6y;unknown;no;yes;telephone;jun;fri;152;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+51;blue-collar;married;basic.4y;no;yes;yes;telephone;jun;fri;18;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+45;entrepreneur;married;university.degree;unknown;no;no;telephone;jun;fri;13;5;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+41;technician;divorced;basic.4y;no;no;no;telephone;jun;fri;639;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+47;admin.;divorced;university.degree;no;yes;no;telephone;jun;fri;2653;3;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;yes
+31;housemaid;single;university.degree;no;no;yes;telephone;jun;fri;129;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+34;blue-collar;married;basic.4y;no;yes;yes;telephone;jun;fri;426;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+57;management;single;basic.9y;no;no;no;telephone;jun;fri;229;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+37;entrepreneur;married;university.degree;unknown;yes;no;telephone;jun;fri;460;8;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+36;blue-collar;married;basic.6y;no;unknown;unknown;telephone;jun;fri;154;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+47;blue-collar;married;basic.4y;no;yes;no;telephone;jun;fri;252;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+32;housemaid;married;high.school;no;yes;yes;telephone;jun;fri;292;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+43;admin.;married;high.school;no;yes;no;telephone;jun;fri;44;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+48;management;married;basic.9y;no;yes;no;telephone;jun;fri;384;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+31;admin.;single;university.degree;no;no;no;telephone;jun;fri;213;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+34;admin.;married;university.degree;no;no;no;telephone;jun;fri;94;7;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+31;blue-collar;married;basic.4y;no;no;no;telephone;jun;fri;72;6;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+44;admin.;married;high.school;no;no;no;telephone;jun;fri;36;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+37;entrepreneur;married;university.degree;no;yes;no;telephone;jun;fri;316;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+49;retired;married;basic.9y;no;no;no;telephone;jun;fri;217;4;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+32;admin.;single;high.school;no;no;yes;telephone;jun;fri;180;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+32;technician;married;university.degree;no;yes;no;telephone;jun;fri;562;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+31;management;married;university.degree;no;yes;no;telephone;jun;fri;422;5;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+42;blue-collar;single;basic.6y;unknown;no;yes;telephone;jun;fri;198;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+29;admin.;single;high.school;no;yes;no;telephone;jun;fri;17;4;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+46;self-employed;married;professional.course;no;yes;no;telephone;jun;fri;174;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+55;unemployed;married;basic.4y;unknown;yes;yes;telephone;jun;fri;95;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+45;admin.;divorced;basic.9y;no;yes;no;telephone;jun;fri;261;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+38;blue-collar;married;basic.9y;no;unknown;unknown;telephone;jun;fri;144;4;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+53;admin.;married;basic.9y;no;no;no;telephone;jun;fri;122;3;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+38;technician;single;professional.course;no;unknown;unknown;telephone;jun;fri;59;3;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+29;services;single;high.school;unknown;yes;no;telephone;jun;fri;334;3;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+30;blue-collar;married;basic.4y;unknown;no;yes;telephone;jun;fri;49;8;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+34;services;married;high.school;no;yes;yes;telephone;jun;fri;165;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+57;retired;married;university.degree;no;yes;no;telephone;jun;fri;59;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+29;services;divorced;high.school;no;no;no;telephone;jun;fri;103;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+49;housemaid;married;basic.4y;unknown;yes;no;telephone;jun;fri;190;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+27;blue-collar;single;basic.6y;no;yes;yes;telephone;jun;fri;187;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+46;blue-collar;married;professional.course;no;no;no;telephone;jun;fri;286;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+28;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;fri;167;4;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+36;technician;married;high.school;no;no;no;telephone;jun;fri;52;4;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+46;technician;married;professional.course;no;no;yes;telephone;jun;fri;197;3;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+37;housemaid;married;university.degree;no;yes;no;telephone;jun;fri;262;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+56;technician;married;professional.course;unknown;no;yes;telephone;jun;fri;168;4;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+38;blue-collar;married;basic.9y;unknown;unknown;unknown;telephone;jun;fri;430;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+33;technician;married;professional.course;no;no;no;telephone;jun;fri;100;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+40;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;fri;48;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+33;technician;married;professional.course;no;yes;no;telephone;jun;fri;350;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+39;management;married;university.degree;no;yes;no;telephone;jun;fri;30;24;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+42;blue-collar;married;basic.9y;no;no;yes;telephone;jun;fri;213;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+44;technician;married;professional.course;unknown;yes;no;telephone;jun;fri;371;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+43;blue-collar;married;basic.9y;no;no;no;telephone;jun;fri;207;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+32;blue-collar;married;professional.course;no;no;no;telephone;jun;fri;24;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+41;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;fri;204;3;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+38;technician;married;professional.course;no;no;no;telephone;jun;fri;36;24;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+37;unemployed;married;basic.9y;no;no;no;telephone;jun;fri;139;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+55;admin.;married;high.school;no;unknown;unknown;telephone;jun;fri;92;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+42;housemaid;single;basic.4y;no;no;no;telephone;jun;fri;322;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+40;self-employed;married;basic.4y;unknown;no;no;telephone;jun;fri;420;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+40;admin.;married;university.degree;unknown;unknown;unknown;telephone;jun;fri;65;6;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+56;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;fri;143;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+38;blue-collar;married;high.school;unknown;unknown;unknown;telephone;jun;fri;102;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+38;blue-collar;married;high.school;unknown;no;no;telephone;jun;fri;58;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+44;admin.;married;university.degree;unknown;yes;yes;telephone;jun;fri;545;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+37;technician;single;high.school;no;yes;yes;telephone;jun;fri;190;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+40;admin.;married;high.school;unknown;yes;no;telephone;jun;fri;85;3;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+41;blue-collar;married;basic.9y;no;no;no;telephone;jun;fri;1085;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;yes
+38;admin.;married;basic.9y;unknown;yes;no;telephone;jun;fri;514;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+27;student;single;high.school;unknown;no;no;telephone;jun;fri;471;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+41;unknown;single;unknown;unknown;yes;no;telephone;jun;fri;94;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+35;admin.;single;university.degree;no;no;yes;telephone;jun;fri;159;9;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+39;management;married;basic.6y;unknown;yes;no;telephone;jun;fri;38;3;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+34;technician;married;university.degree;no;no;no;telephone;jun;fri;191;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+34;blue-collar;divorced;professional.course;no;no;no;telephone;jun;fri;10;23;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+53;admin.;divorced;university.degree;no;no;no;telephone;jun;fri;1330;3;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+45;admin.;married;high.school;no;no;no;telephone;jun;fri;48;5;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+34;technician;single;high.school;no;no;no;telephone;jun;fri;236;7;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+47;technician;married;basic.9y;no;yes;no;telephone;jun;fri;503;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+31;services;married;high.school;no;no;yes;telephone;jun;fri;108;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+39;management;married;university.degree;no;no;no;telephone;jun;fri;47;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+35;blue-collar;single;basic.6y;no;no;no;telephone;jun;fri;319;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+37;blue-collar;single;professional.course;no;yes;no;telephone;jun;fri;42;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+41;management;married;unknown;no;yes;no;telephone;jun;fri;143;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+34;services;married;high.school;unknown;unknown;unknown;telephone;jun;fri;82;3;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+35;admin.;single;basic.4y;unknown;unknown;unknown;telephone;jun;fri;248;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+43;technician;single;basic.9y;no;yes;no;telephone;jun;fri;461;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+50;self-employed;married;basic.4y;unknown;yes;no;telephone;jun;fri;313;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+36;blue-collar;married;basic.4y;no;yes;no;telephone;jun;fri;86;3;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+38;management;married;university.degree;no;no;no;telephone;jun;fri;197;3;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+53;admin.;divorced;university.degree;no;no;no;telephone;jun;fri;80;5;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+28;admin.;married;high.school;no;no;no;telephone;jun;fri;113;3;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+35;admin.;single;basic.6y;no;yes;yes;telephone;jun;fri;613;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+41;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;fri;201;6;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+33;technician;married;professional.course;no;no;no;telephone;jun;fri;1271;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+37;admin.;married;university.degree;no;no;no;telephone;jun;fri;155;3;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+35;admin.;married;university.degree;no;no;no;telephone;jun;fri;466;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+31;unemployed;married;university.degree;no;no;no;telephone;jun;fri;298;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+51;technician;married;professional.course;unknown;yes;no;telephone;jun;fri;119;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+51;admin.;married;basic.9y;unknown;yes;no;telephone;jun;fri;114;7;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+50;self-employed;married;university.degree;no;yes;no;telephone;jun;fri;306;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+60;self-employed;married;professional.course;unknown;no;no;telephone;jun;fri;162;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+28;blue-collar;married;basic.6y;unknown;no;no;telephone;jun;fri;419;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+34;entrepreneur;single;professional.course;no;no;yes;telephone;jun;fri;85;4;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+52;self-employed;single;university.degree;unknown;yes;no;telephone;jun;fri;73;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+56;technician;married;unknown;no;no;no;telephone;jun;fri;49;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+42;admin.;single;university.degree;no;no;no;telephone;jun;fri;298;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+39;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;fri;250;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+39;blue-collar;divorced;basic.9y;no;unknown;unknown;telephone;jun;fri;92;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+47;admin.;married;university.degree;no;no;no;telephone;jun;fri;143;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+49;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;fri;151;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+56;admin.;married;high.school;no;yes;no;telephone;jun;fri;21;20;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+46;admin.;married;high.school;no;no;no;telephone;jun;fri;354;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+53;blue-collar;divorced;basic.4y;unknown;no;no;telephone;jun;fri;63;3;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+38;unemployed;married;basic.9y;no;no;no;telephone;jun;fri;56;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+36;admin.;divorced;high.school;no;yes;yes;telephone;jun;fri;354;5;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+33;blue-collar;married;basic.6y;unknown;unknown;unknown;telephone;jun;fri;161;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+33;blue-collar;married;basic.6y;unknown;no;no;telephone;jun;fri;113;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+34;blue-collar;married;basic.6y;unknown;no;no;telephone;jun;fri;176;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+54;technician;married;university.degree;unknown;no;no;telephone;jun;fri;431;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+47;retired;married;basic.4y;unknown;no;no;telephone;jun;fri;63;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+36;blue-collar;married;high.school;no;no;yes;telephone;jun;fri;164;3;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+35;blue-collar;divorced;basic.6y;unknown;no;no;telephone;jun;fri;81;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+39;unemployed;married;professional.course;no;yes;no;telephone;jun;fri;136;6;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+31;services;married;high.school;no;yes;no;telephone;jun;fri;303;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+30;services;divorced;basic.9y;no;no;no;telephone;jun;fri;158;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+34;blue-collar;married;basic.6y;unknown;no;no;telephone;jun;fri;651;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+39;technician;married;professional.course;no;yes;no;telephone;jun;fri;118;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+41;unemployed;married;unknown;no;no;no;telephone;jun;fri;280;3;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+41;technician;married;university.degree;no;no;yes;telephone;jun;fri;145;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+29;admin.;married;university.degree;no;no;no;telephone;jun;fri;39;4;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+50;entrepreneur;married;basic.9y;no;yes;no;telephone;jun;fri;82;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+36;admin.;married;high.school;no;no;no;telephone;jun;fri;355;4;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+43;blue-collar;married;basic.9y;no;yes;no;telephone;jun;fri;151;6;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+31;technician;married;university.degree;no;yes;no;telephone;jun;fri;59;3;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+35;technician;married;professional.course;unknown;yes;no;telephone;jun;fri;34;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+49;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;fri;190;4;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+45;technician;married;professional.course;unknown;no;no;telephone;jun;fri;124;3;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+33;admin.;single;university.degree;no;yes;no;telephone;jun;fri;342;10;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+41;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;fri;72;3;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+42;services;single;high.school;no;no;no;telephone;jun;fri;207;4;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+41;technician;divorced;basic.4y;no;yes;no;telephone;jun;fri;128;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+43;management;married;high.school;no;yes;yes;telephone;jun;fri;304;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+40;blue-collar;married;high.school;no;no;no;telephone;jun;fri;42;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+40;technician;married;basic.9y;no;no;no;telephone;jun;fri;27;4;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+39;blue-collar;single;basic.4y;no;no;yes;telephone;jun;fri;396;4;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+42;admin.;single;university.degree;no;yes;no;telephone;jun;fri;520;3;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+38;admin.;single;university.degree;unknown;yes;no;telephone;jun;fri;188;7;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+32;blue-collar;married;basic.9y;no;no;no;telephone;jun;fri;93;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+43;admin.;divorced;university.degree;no;no;no;telephone;jun;fri;70;3;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+38;technician;married;professional.course;no;yes;no;telephone;jun;fri;95;4;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+34;technician;single;professional.course;no;no;no;telephone;jun;fri;392;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+44;admin.;divorced;university.degree;no;yes;no;telephone;jun;fri;25;6;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+48;self-employed;married;basic.9y;unknown;no;no;telephone;jun;fri;246;4;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+34;technician;married;university.degree;no;no;no;telephone;jun;fri;94;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+35;technician;married;basic.9y;no;yes;no;telephone;jun;fri;197;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+25;blue-collar;single;high.school;no;yes;no;telephone;jun;fri;446;3;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+51;self-employed;married;university.degree;unknown;no;no;telephone;jun;fri;145;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+31;entrepreneur;married;high.school;no;yes;no;telephone;jun;fri;100;3;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+29;technician;married;university.degree;no;no;yes;telephone;jun;fri;252;4;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+27;self-employed;single;university.degree;no;no;yes;telephone;jun;fri;100;4;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+55;admin.;married;basic.4y;unknown;no;no;telephone;jun;fri;1469;9;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;yes
+47;retired;married;basic.4y;unknown;no;yes;telephone;jun;fri;37;3;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+27;technician;single;professional.course;no;no;no;telephone;jun;fri;112;5;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+41;housemaid;married;university.degree;unknown;no;no;telephone;jun;fri;235;3;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+54;blue-collar;married;basic.4y;no;no;no;telephone;jun;fri;28;6;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+54;admin.;married;unknown;unknown;no;no;telephone;jun;fri;34;16;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+32;admin.;single;university.degree;no;unknown;unknown;telephone;jun;fri;121;4;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+29;technician;married;professional.course;no;no;no;telephone;jun;fri;145;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+42;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;fri;61;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+32;technician;married;basic.9y;no;no;no;telephone;jun;fri;82;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+47;technician;single;professional.course;unknown;no;no;telephone;jun;fri;61;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+25;housemaid;married;basic.9y;no;no;no;telephone;jun;fri;152;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+40;admin.;married;university.degree;no;yes;no;telephone;jun;fri;606;5;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+34;technician;married;university.degree;no;no;no;telephone;jun;fri;288;12;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+33;blue-collar;married;basic.9y;no;yes;no;telephone;jun;fri;135;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+40;services;divorced;high.school;no;yes;no;telephone;jun;fri;685;3;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;yes
+37;entrepreneur;married;basic.9y;no;no;no;telephone;jun;fri;50;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+37;unemployed;married;professional.course;no;no;no;telephone;jun;fri;119;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+52;blue-collar;married;basic.4y;no;yes;no;telephone;jun;fri;160;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+39;management;married;university.degree;no;yes;no;telephone;jun;fri;23;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+43;blue-collar;divorced;basic.9y;unknown;no;yes;telephone;jun;fri;222;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+39;admin.;single;university.degree;unknown;no;no;telephone;jun;fri;122;5;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+30;admin.;married;university.degree;no;no;no;telephone;jun;fri;75;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+35;services;married;professional.course;unknown;no;no;telephone;jun;fri;103;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+39;management;married;university.degree;no;yes;yes;telephone;jun;fri;383;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+38;technician;single;professional.course;unknown;yes;no;telephone;jun;fri;111;5;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+42;services;married;high.school;no;yes;yes;telephone;jun;fri;26;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+42;services;married;high.school;no;yes;no;telephone;jun;fri;174;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+51;blue-collar;married;basic.4y;unknown;yes;no;telephone;jun;fri;183;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+36;blue-collar;single;high.school;no;yes;no;telephone;jun;fri;61;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+42;self-employed;married;university.degree;no;yes;no;telephone;jun;fri;59;3;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+58;retired;married;basic.9y;no;no;no;telephone;jun;fri;33;2;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+38;services;married;basic.9y;no;no;no;telephone;jun;fri;31;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+25;admin.;married;university.degree;no;yes;no;telephone;jun;fri;109;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+32;unemployed;divorced;basic.4y;no;no;yes;telephone;jun;fri;19;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+49;admin.;single;high.school;no;yes;no;telephone;jun;fri;68;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+46;entrepreneur;married;professional.course;unknown;no;no;telephone;jun;fri;243;7;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+42;entrepreneur;single;university.degree;no;yes;no;telephone;jun;fri;491;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+59;blue-collar;married;basic.6y;no;yes;no;telephone;jun;fri;127;1;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+32;housemaid;married;university.degree;no;yes;no;telephone;jun;fri;1291;3;999;0;nonexistent;1.4;94.465;-41.8;4.967;5228.1;no
+29;self-employed;single;university.degree;no;no;no;telephone;jun;mon;221;10;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+45;blue-collar;married;basic.9y;no;yes;no;telephone;jun;mon;214;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+32;housemaid;single;basic.4y;no;yes;yes;telephone;jun;mon;123;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+26;services;single;high.school;no;no;yes;telephone;jun;mon;74;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+47;entrepreneur;married;university.degree;no;yes;no;telephone;jun;mon;82;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+29;admin.;single;university.degree;no;yes;no;telephone;jun;mon;164;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+26;services;single;high.school;no;yes;no;telephone;jun;mon;256;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+46;blue-collar;married;basic.4y;no;no;no;telephone;jun;mon;86;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+48;technician;married;professional.course;no;yes;no;telephone;jun;mon;358;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+48;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;mon;349;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+33;self-employed;married;basic.9y;no;yes;no;telephone;jun;mon;107;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+31;blue-collar;married;basic.9y;no;yes;yes;telephone;jun;mon;238;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+34;blue-collar;married;professional.course;no;yes;no;telephone;jun;mon;38;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+25;services;single;high.school;unknown;no;no;telephone;jun;mon;73;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+32;blue-collar;married;basic.9y;no;no;no;telephone;jun;mon;78;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+54;blue-collar;unknown;basic.6y;unknown;no;no;telephone;jun;mon;832;18;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+52;self-employed;married;university.degree;unknown;yes;yes;telephone;jun;mon;106;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+45;housemaid;single;basic.9y;no;yes;no;telephone;jun;mon;113;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+36;self-employed;married;university.degree;no;yes;no;telephone;jun;mon;529;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+38;admin.;divorced;university.degree;no;yes;no;telephone;jun;mon;464;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+34;blue-collar;married;basic.6y;unknown;no;no;telephone;jun;mon;61;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+38;blue-collar;single;basic.4y;no;yes;no;telephone;jun;mon;108;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+39;services;single;high.school;unknown;yes;no;telephone;jun;mon;332;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+51;services;married;high.school;unknown;yes;no;telephone;jun;mon;81;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+60;unknown;married;university.degree;no;yes;no;telephone;jun;mon;112;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+29;blue-collar;married;high.school;no;no;no;telephone;jun;mon;181;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+50;blue-collar;single;basic.9y;unknown;no;no;telephone;jun;mon;108;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+37;technician;married;basic.9y;no;no;no;telephone;jun;mon;226;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+51;entrepreneur;divorced;university.degree;unknown;no;no;telephone;jun;mon;60;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+48;technician;married;professional.course;no;yes;no;telephone;jun;mon;85;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+39;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;mon;202;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+37;admin.;single;university.degree;no;yes;no;telephone;jun;mon;540;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+36;technician;married;university.degree;no;yes;no;telephone;jun;mon;196;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+40;services;married;basic.6y;unknown;yes;no;telephone;jun;mon;52;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+47;management;married;basic.4y;no;no;yes;telephone;jun;mon;74;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+44;blue-collar;married;basic.4y;unknown;yes;no;telephone;jun;mon;299;4;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+36;blue-collar;single;high.school;no;unknown;unknown;telephone;jun;mon;311;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+26;technician;married;basic.6y;no;no;no;telephone;jun;mon;123;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+33;admin.;married;university.degree;no;no;yes;telephone;jun;mon;232;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+52;housemaid;married;basic.4y;unknown;yes;no;telephone;jun;mon;65;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+40;blue-collar;married;basic.9y;unknown;unknown;unknown;telephone;jun;mon;65;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+41;blue-collar;married;basic.9y;no;yes;no;telephone;jun;mon;157;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+45;admin.;married;university.degree;no;yes;no;telephone;jun;mon;216;5;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+30;blue-collar;divorced;basic.9y;no;no;no;telephone;jun;mon;79;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+33;technician;married;professional.course;no;no;no;telephone;jun;mon;220;4;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+39;admin.;single;unknown;no;no;yes;telephone;jun;mon;152;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+33;management;married;university.degree;no;no;no;telephone;jun;mon;140;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+31;blue-collar;single;unknown;no;yes;no;telephone;jun;mon;400;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+42;technician;divorced;basic.9y;no;yes;no;telephone;jun;mon;163;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+35;entrepreneur;divorced;high.school;no;yes;no;telephone;jun;mon;77;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+56;retired;married;basic.6y;no;unknown;unknown;telephone;jun;mon;356;5;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+52;blue-collar;married;basic.9y;unknown;unknown;unknown;telephone;jun;mon;117;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+29;admin.;single;university.degree;no;no;no;telephone;jun;mon;1055;10;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;yes
+56;retired;married;basic.4y;no;yes;no;telephone;jun;mon;772;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+38;admin.;married;basic.9y;unknown;yes;no;telephone;jun;mon;306;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+60;technician;married;professional.course;unknown;yes;no;telephone;jun;mon;64;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+56;services;married;basic.4y;unknown;yes;no;telephone;jun;mon;139;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+39;self-employed;married;university.degree;no;no;yes;telephone;jun;mon;72;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+40;services;married;basic.6y;unknown;no;no;telephone;jun;mon;49;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+56;services;married;basic.4y;unknown;yes;yes;telephone;jun;mon;287;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+30;blue-collar;single;basic.4y;unknown;no;yes;telephone;jun;mon;136;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+43;blue-collar;married;basic.4y;unknown;no;yes;telephone;jun;mon;119;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+39;admin.;married;high.school;no;no;yes;telephone;jun;mon;422;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+41;unknown;single;basic.6y;unknown;no;yes;telephone;jun;mon;125;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+27;admin.;single;high.school;unknown;yes;no;telephone;jun;mon;114;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+43;technician;divorced;professional.course;no;yes;no;telephone;jun;mon;99;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+37;technician;married;professional.course;unknown;yes;no;telephone;jun;mon;218;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+25;services;married;high.school;no;yes;no;telephone;jun;mon;174;9;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+37;technician;married;professional.course;unknown;no;yes;telephone;jun;mon;168;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+24;admin.;single;professional.course;no;yes;yes;telephone;jun;mon;233;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+59;retired;married;basic.4y;no;yes;yes;telephone;jun;mon;322;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+32;technician;single;university.degree;no;no;no;telephone;jun;mon;443;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+30;admin.;married;unknown;no;yes;yes;telephone;jun;mon;76;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+40;technician;married;professional.course;no;yes;no;telephone;jun;mon;217;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+27;services;married;high.school;no;no;no;telephone;jun;mon;257;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+30;blue-collar;single;basic.4y;unknown;no;no;telephone;jun;mon;882;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;yes
+48;blue-collar;married;basic.4y;no;no;no;telephone;jun;mon;254;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+37;admin.;divorced;university.degree;no;no;no;telephone;jun;mon;83;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+39;blue-collar;married;basic.6y;no;yes;no;telephone;jun;mon;213;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+34;admin.;married;basic.9y;no;yes;no;telephone;jun;mon;252;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+41;blue-collar;divorced;basic.6y;no;yes;no;telephone;jun;mon;36;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+34;admin.;married;high.school;no;no;no;telephone;jun;mon;540;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+36;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;mon;280;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+37;admin.;divorced;university.degree;no;yes;no;telephone;jun;mon;683;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+42;services;married;high.school;no;no;yes;telephone;jun;mon;230;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+39;technician;married;professional.course;no;yes;no;telephone;jun;mon;452;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+39;services;married;high.school;no;yes;yes;telephone;jun;mon;149;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+35;admin.;married;high.school;no;yes;yes;telephone;jun;mon;172;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+35;unemployed;divorced;high.school;unknown;yes;no;telephone;jun;mon;51;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+34;blue-collar;married;basic.6y;unknown;no;yes;telephone;jun;mon;35;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+42;technician;single;basic.9y;unknown;no;no;telephone;jun;mon;626;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+49;admin.;divorced;high.school;no;yes;no;telephone;jun;mon;122;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+53;admin.;single;basic.6y;no;yes;no;telephone;jun;mon;63;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+29;admin.;married;high.school;no;no;no;telephone;jun;mon;100;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+32;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;mon;70;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+29;admin.;married;high.school;no;no;no;telephone;jun;mon;255;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+46;self-employed;divorced;basic.9y;no;yes;no;telephone;jun;mon;217;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+58;management;married;unknown;unknown;yes;no;telephone;jun;mon;1098;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+32;admin.;single;university.degree;no;yes;yes;telephone;jun;mon;176;6;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+44;blue-collar;married;basic.6y;no;yes;no;telephone;jun;mon;331;6;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+26;student;single;high.school;no;no;no;telephone;jun;mon;901;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;yes
+56;technician;divorced;professional.course;unknown;yes;no;telephone;jun;mon;123;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+25;blue-collar;married;professional.course;unknown;yes;no;telephone;jun;mon;77;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+29;blue-collar;single;basic.9y;no;no;no;telephone;jun;mon;91;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+44;blue-collar;married;professional.course;no;no;no;telephone;jun;mon;63;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+44;technician;divorced;professional.course;no;yes;no;telephone;jun;mon;173;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+44;blue-collar;single;basic.4y;no;no;no;telephone;jun;mon;128;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+44;blue-collar;single;basic.4y;no;yes;no;telephone;jun;mon;76;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+29;blue-collar;single;basic.9y;no;no;no;telephone;jun;mon;411;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+37;blue-collar;married;professional.course;no;yes;no;telephone;jun;mon;179;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+34;self-employed;married;university.degree;no;no;no;telephone;jun;mon;139;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+54;blue-collar;married;basic.9y;unknown;yes;yes;telephone;jun;mon;75;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+58;retired;divorced;professional.course;unknown;no;no;telephone;jun;mon;210;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+24;services;single;high.school;no;no;no;telephone;jun;mon;700;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;yes
+35;technician;married;professional.course;no;yes;yes;telephone;jun;mon;329;4;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+30;admin.;divorced;high.school;no;yes;no;telephone;jun;mon;225;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+40;technician;married;professional.course;unknown;no;no;telephone;jun;mon;96;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+29;blue-collar;married;basic.4y;unknown;yes;no;telephone;jun;mon;166;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+54;technician;single;basic.9y;no;no;no;telephone;jun;mon;186;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+40;technician;married;professional.course;unknown;yes;no;telephone;jun;mon;92;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+52;management;divorced;university.degree;no;yes;no;telephone;jun;mon;80;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+44;blue-collar;single;basic.6y;unknown;yes;no;telephone;jun;mon;67;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+34;blue-collar;married;professional.course;no;yes;yes;telephone;jun;mon;190;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+31;admin.;single;university.degree;no;no;no;telephone;jun;mon;104;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+30;admin.;single;high.school;no;yes;no;telephone;jun;mon;174;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+36;technician;married;professional.course;no;yes;yes;telephone;jun;mon;37;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+26;student;single;high.school;no;no;no;telephone;jun;mon;589;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+36;technician;married;professional.course;no;no;no;telephone;jun;mon;183;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+36;technician;married;professional.course;no;no;no;telephone;jun;mon;151;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+40;housemaid;single;university.degree;no;yes;no;telephone;jun;mon;29;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+46;admin.;single;university.degree;unknown;yes;no;telephone;jun;mon;186;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+34;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;mon;73;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+46;entrepreneur;married;professional.course;unknown;no;no;telephone;jun;mon;88;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+27;technician;single;professional.course;no;yes;yes;telephone;jun;mon;522;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+36;entrepreneur;married;high.school;no;yes;no;telephone;jun;mon;112;4;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+50;management;married;high.school;unknown;no;no;telephone;jun;mon;65;17;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+28;blue-collar;married;basic.4y;no;no;no;telephone;jun;mon;149;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+34;admin.;married;university.degree;no;yes;no;telephone;jun;mon;206;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+41;blue-collar;single;basic.9y;no;no;no;telephone;jun;mon;123;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+41;technician;single;university.degree;unknown;yes;yes;telephone;jun;mon;378;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+40;housemaid;married;high.school;unknown;yes;no;telephone;jun;mon;100;7;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+25;blue-collar;single;basic.4y;no;yes;yes;telephone;jun;mon;81;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+43;admin.;married;university.degree;unknown;yes;no;telephone;jun;mon;175;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+35;admin.;married;high.school;no;no;no;telephone;jun;mon;250;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+38;self-employed;married;basic.9y;unknown;no;no;telephone;jun;mon;156;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+45;self-employed;divorced;university.degree;no;yes;yes;telephone;jun;mon;173;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+32;technician;married;professional.course;no;yes;no;telephone;jun;mon;127;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+51;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;mon;324;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+33;technician;single;high.school;no;no;no;telephone;jun;mon;198;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+39;self-employed;married;basic.4y;unknown;no;no;telephone;jun;mon;87;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+56;entrepreneur;divorced;university.degree;no;no;yes;telephone;jun;mon;311;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+35;blue-collar;married;basic.9y;unknown;yes;yes;telephone;jun;mon;313;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+57;retired;married;basic.4y;unknown;no;yes;telephone;jun;mon;302;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+54;unemployed;single;basic.6y;no;yes;yes;telephone;jun;mon;91;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+49;blue-collar;single;basic.4y;no;no;no;telephone;jun;mon;47;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+40;technician;married;professional.course;no;no;no;telephone;jun;mon;119;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+33;management;married;high.school;no;no;yes;telephone;jun;mon;117;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+33;unemployed;single;high.school;no;yes;no;telephone;jun;mon;142;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+24;services;single;high.school;no;yes;yes;telephone;jun;mon;183;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+25;technician;single;high.school;no;yes;yes;telephone;jun;mon;249;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+34;services;married;basic.9y;no;yes;no;telephone;jun;mon;274;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+37;unemployed;single;basic.9y;no;yes;no;telephone;jun;mon;144;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+39;management;married;university.degree;no;yes;no;telephone;jun;mon;23;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+32;technician;single;professional.course;no;no;no;telephone;jun;mon;128;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+34;admin.;married;high.school;no;yes;no;telephone;jun;mon;491;6;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;yes
+25;services;single;high.school;no;yes;no;telephone;jun;mon;162;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+32;admin.;single;professional.course;no;no;yes;telephone;jun;mon;213;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+29;blue-collar;married;basic.4y;no;no;yes;telephone;jun;mon;164;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+59;housemaid;married;basic.4y;no;no;yes;telephone;jun;mon;63;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+39;self-employed;married;basic.9y;unknown;no;no;telephone;jun;mon;79;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+35;technician;married;university.degree;no;no;no;telephone;jun;mon;114;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+33;technician;married;basic.9y;no;no;no;telephone;jun;mon;136;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+25;technician;single;professional.course;no;yes;no;telephone;jun;mon;97;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+60;management;married;unknown;unknown;no;no;telephone;jun;mon;100;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+44;technician;married;basic.6y;unknown;yes;no;telephone;jun;mon;160;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+31;blue-collar;married;basic.4y;no;yes;yes;telephone;jun;mon;240;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+36;technician;married;university.degree;no;yes;no;telephone;jun;mon;78;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+30;services;married;university.degree;unknown;no;yes;telephone;jun;mon;87;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+36;technician;married;high.school;no;no;no;telephone;jun;mon;940;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;yes
+53;blue-collar;married;basic.4y;no;no;yes;telephone;jun;mon;340;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+40;unemployed;married;high.school;no;yes;no;telephone;jun;mon;196;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+48;unemployed;married;basic.9y;no;yes;no;telephone;jun;mon;85;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+36;admin.;married;university.degree;no;no;no;telephone;jun;mon;199;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+47;blue-collar;married;basic.9y;no;yes;no;telephone;jun;mon;160;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+28;admin.;single;basic.9y;no;no;no;telephone;jun;mon;166;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+31;blue-collar;married;basic.6y;no;no;no;telephone;jun;mon;271;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+58;technician;married;basic.4y;no;no;no;telephone;jun;mon;317;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+36;admin.;single;high.school;no;no;no;telephone;jun;mon;98;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+34;admin.;single;high.school;no;yes;yes;telephone;jun;mon;123;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+34;technician;married;university.degree;no;no;no;telephone;jun;mon;321;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+44;admin.;married;university.degree;unknown;no;no;telephone;jun;mon;78;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+33;services;divorced;high.school;no;yes;no;telephone;jun;mon;73;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+29;blue-collar;married;basic.9y;no;no;no;telephone;jun;mon;327;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+36;blue-collar;single;basic.9y;unknown;no;no;telephone;jun;mon;411;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+43;admin.;single;high.school;no;no;no;telephone;jun;mon;198;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+32;services;married;unknown;no;no;no;telephone;jun;mon;98;4;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+46;admin.;single;university.degree;no;yes;no;telephone;jun;mon;24;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+50;technician;married;professional.course;no;no;yes;telephone;jun;mon;352;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+41;blue-collar;single;basic.9y;unknown;no;no;telephone;jun;mon;245;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+38;blue-collar;married;basic.6y;no;no;no;telephone;jun;mon;559;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+41;management;married;high.school;no;yes;no;telephone;jun;mon;440;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+49;blue-collar;married;basic.9y;no;unknown;unknown;telephone;jun;mon;242;4;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+38;technician;married;high.school;no;no;no;telephone;jun;mon;479;4;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+50;services;single;basic.4y;no;no;no;telephone;jun;mon;514;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+53;blue-collar;single;basic.9y;no;yes;no;telephone;jun;mon;91;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+39;admin.;married;university.degree;no;yes;no;telephone;jun;mon;78;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+43;management;married;basic.4y;no;yes;no;telephone;jun;mon;318;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+41;services;single;high.school;no;no;no;telephone;jun;mon;295;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+32;blue-collar;married;high.school;no;yes;no;telephone;jun;mon;83;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+31;admin.;married;high.school;no;no;no;telephone;jun;mon;346;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+29;self-employed;married;high.school;no;no;no;telephone;jun;mon;238;6;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+52;entrepreneur;married;basic.9y;unknown;no;no;telephone;jun;mon;291;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+58;unknown;married;basic.4y;no;yes;no;telephone;jun;mon;149;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+47;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;mon;200;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+45;admin.;married;high.school;no;no;no;telephone;jun;mon;290;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+45;technician;married;high.school;no;yes;no;telephone;jun;mon;222;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+37;blue-collar;married;high.school;no;yes;no;telephone;jun;mon;90;4;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+49;entrepreneur;married;university.degree;no;no;no;telephone;jun;mon;171;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+26;technician;married;professional.course;no;no;no;telephone;jun;mon;170;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+40;blue-collar;married;basic.6y;no;no;no;telephone;jun;mon;493;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+32;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;mon;188;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+30;blue-collar;single;basic.4y;no;no;no;telephone;jun;mon;17;5;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+60;management;married;university.degree;no;no;no;telephone;jun;mon;316;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+39;admin.;single;university.degree;unknown;yes;no;telephone;jun;mon;398;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+35;blue-collar;married;basic.9y;no;no;yes;telephone;jun;mon;782;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+32;admin.;single;high.school;no;no;no;telephone;jun;mon;137;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+28;entrepreneur;single;high.school;no;yes;no;telephone;jun;mon;419;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+48;admin.;married;high.school;unknown;yes;no;telephone;jun;mon;65;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+46;admin.;married;high.school;unknown;yes;no;telephone;jun;mon;96;6;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+26;admin.;single;high.school;no;yes;no;telephone;jun;mon;223;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+28;blue-collar;married;basic.6y;unknown;yes;no;telephone;jun;mon;70;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+52;unknown;married;basic.4y;no;no;yes;telephone;jun;mon;150;17;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+29;blue-collar;single;high.school;unknown;no;no;telephone;jun;mon;559;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+38;technician;married;professional.course;no;yes;no;telephone;jun;mon;952;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;yes
+42;services;divorced;basic.6y;no;no;no;telephone;jun;mon;71;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+36;admin.;married;university.degree;no;yes;no;telephone;jun;mon;152;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+27;entrepreneur;single;university.degree;no;yes;no;telephone;jun;mon;486;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;yes
+47;blue-collar;married;high.school;unknown;yes;no;telephone;jun;mon;224;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+54;housemaid;married;professional.course;no;yes;no;telephone;jun;mon;152;4;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+32;blue-collar;single;basic.9y;no;yes;no;telephone;jun;mon;22;17;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+42;blue-collar;married;basic.9y;no;no;no;telephone;jun;mon;130;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+39;self-employed;married;university.degree;no;no;no;telephone;jun;mon;135;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+37;blue-collar;unknown;basic.6y;unknown;no;no;telephone;jun;mon;199;4;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+25;blue-collar;divorced;basic.9y;no;unknown;unknown;telephone;jun;mon;185;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+34;management;single;high.school;no;yes;no;telephone;jun;mon;220;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+41;blue-collar;divorced;basic.9y;unknown;no;no;telephone;jun;mon;85;4;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+40;blue-collar;married;basic.4y;no;no;no;telephone;jun;mon;258;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+26;blue-collar;single;high.school;unknown;no;no;telephone;jun;mon;108;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+49;admin.;single;university.degree;unknown;yes;no;telephone;jun;mon;244;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+60;retired;divorced;basic.4y;unknown;yes;no;telephone;jun;mon;253;4;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+42;blue-collar;single;basic.9y;no;no;no;telephone;jun;mon;306;5;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+35;blue-collar;married;high.school;unknown;no;no;telephone;jun;mon;134;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+30;admin.;married;high.school;unknown;yes;no;telephone;jun;mon;69;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+42;blue-collar;married;basic.9y;unknown;yes;no;telephone;jun;mon;175;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+39;admin.;single;university.degree;no;yes;no;telephone;jun;mon;436;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+25;technician;single;university.degree;no;no;no;telephone;jun;mon;92;6;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+37;admin.;married;high.school;no;no;no;telephone;jun;mon;155;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+32;technician;single;professional.course;no;yes;no;telephone;jun;mon;371;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+35;blue-collar;married;basic.9y;no;yes;no;telephone;jun;mon;216;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+28;blue-collar;single;basic.9y;no;yes;no;telephone;jun;mon;243;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+32;admin.;married;university.degree;unknown;yes;no;telephone;jun;mon;718;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+42;technician;married;basic.9y;no;yes;no;telephone;jun;mon;442;8;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;yes
+35;blue-collar;married;basic.4y;unknown;yes;no;telephone;jun;mon;184;5;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+45;admin.;married;unknown;no;no;no;telephone;jun;mon;189;4;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+39;self-employed;married;basic.4y;unknown;yes;no;telephone;jun;mon;164;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+38;management;married;basic.6y;unknown;yes;no;telephone;jun;mon;166;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+52;entrepreneur;married;basic.9y;unknown;yes;no;telephone;jun;mon;699;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+41;self-employed;married;basic.9y;no;yes;no;telephone;jun;mon;178;4;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+45;blue-collar;married;basic.4y;unknown;yes;no;telephone;jun;mon;553;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+32;services;married;high.school;unknown;no;no;telephone;jun;mon;1137;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;yes
+38;housemaid;married;university.degree;no;no;no;telephone;jun;mon;100;5;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+53;blue-collar;married;basic.9y;no;no;no;telephone;jun;mon;445;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+37;blue-collar;divorced;basic.9y;no;yes;yes;telephone;jun;mon;332;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+48;blue-collar;married;basic.4y;unknown;yes;no;telephone;jun;mon;61;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+36;blue-collar;married;basic.4y;no;no;no;telephone;jun;mon;90;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+31;services;married;high.school;unknown;yes;no;telephone;jun;mon;174;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+31;services;single;high.school;no;yes;no;telephone;jun;mon;204;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+35;admin.;married;basic.9y;no;no;yes;telephone;jun;mon;271;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+54;management;married;university.degree;no;no;no;telephone;jun;mon;87;13;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+45;self-employed;married;professional.course;unknown;yes;yes;telephone;jun;mon;330;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+41;blue-collar;married;basic.9y;unknown;yes;no;telephone;jun;mon;259;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+34;admin.;married;university.degree;no;no;no;telephone;jun;mon;237;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+41;blue-collar;married;high.school;unknown;yes;yes;telephone;jun;mon;116;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+35;blue-collar;married;basic.9y;no;no;no;telephone;jun;mon;388;12;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+33;services;married;basic.4y;no;yes;yes;telephone;jun;mon;59;6;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+51;services;single;high.school;unknown;no;no;telephone;jun;mon;329;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+41;blue-collar;married;basic.4y;no;yes;no;telephone;jun;mon;753;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+40;services;married;unknown;unknown;yes;no;telephone;jun;mon;99;26;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+50;technician;married;high.school;no;no;no;telephone;jun;mon;42;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+33;blue-collar;married;basic.9y;no;no;yes;telephone;jun;mon;182;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+37;admin.;married;high.school;no;no;no;telephone;jun;mon;250;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+48;services;married;basic.6y;unknown;no;yes;telephone;jun;mon;511;5;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+54;retired;married;university.degree;unknown;no;no;telephone;jun;mon;26;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+34;technician;married;basic.6y;unknown;no;no;telephone;jun;mon;478;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+35;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;mon;579;4;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+38;self-employed;married;university.degree;unknown;no;no;telephone;jun;mon;96;10;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+37;blue-collar;single;high.school;no;yes;no;telephone;jun;mon;95;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+40;housemaid;single;university.degree;no;no;no;telephone;jun;mon;126;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+56;blue-collar;married;basic.4y;unknown;yes;no;telephone;jun;mon;52;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+35;blue-collar;divorced;basic.9y;no;no;no;telephone;jun;mon;138;4;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+35;technician;single;high.school;no;no;no;telephone;jun;mon;94;4;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+44;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;mon;299;5;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+59;blue-collar;married;basic.4y;unknown;yes;yes;telephone;jun;mon;69;6;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+39;housemaid;married;basic.4y;no;yes;no;telephone;jun;mon;44;4;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+39;admin.;married;university.degree;no;no;no;telephone;jun;mon;135;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+53;blue-collar;married;basic.9y;no;yes;no;telephone;jun;mon;154;10;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+41;unemployed;married;basic.9y;unknown;yes;no;telephone;jun;mon;80;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+30;blue-collar;married;basic.9y;no;yes;no;telephone;jun;mon;115;4;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+47;services;married;basic.6y;no;no;no;telephone;jun;wed;107;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+32;admin.;married;high.school;no;yes;no;telephone;jun;wed;308;7;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+54;housemaid;divorced;basic.4y;no;yes;no;telephone;jun;wed;129;6;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+56;blue-collar;married;basic.4y;no;yes;no;telephone;jun;wed;33;8;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+50;entrepreneur;married;basic.9y;no;yes;no;telephone;jun;wed;296;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+26;blue-collar;married;high.school;no;yes;no;telephone;jun;wed;126;12;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+26;admin.;married;high.school;unknown;yes;no;telephone;jun;wed;198;5;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+36;technician;married;high.school;no;yes;no;telephone;jun;wed;73;7;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+47;technician;single;unknown;no;yes;no;telephone;jun;wed;180;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+36;services;divorced;university.degree;no;no;no;telephone;jun;wed;69;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+37;management;single;university.degree;no;no;no;telephone;jun;wed;76;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+51;admin.;divorced;high.school;unknown;no;no;telephone;jun;wed;40;5;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+36;unknown;single;basic.6y;unknown;no;no;telephone;jun;wed;878;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;yes
+21;technician;single;professional.course;no;no;no;telephone;jun;wed;54;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+39;management;married;university.degree;no;no;no;telephone;jun;wed;129;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+39;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;wed;480;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+29;admin.;married;professional.course;no;yes;no;telephone;jun;wed;583;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;yes
+45;services;divorced;high.school;no;no;no;telephone;jun;wed;101;5;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+37;blue-collar;divorced;basic.9y;unknown;no;no;telephone;jun;wed;339;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+40;admin.;single;university.degree;no;yes;no;telephone;jun;wed;27;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+25;admin.;married;unknown;no;no;no;telephone;jun;wed;490;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+49;blue-collar;married;basic.6y;unknown;yes;no;telephone;jun;wed;81;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+44;services;married;basic.9y;unknown;no;no;telephone;jun;wed;399;8;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+34;blue-collar;married;high.school;no;yes;no;telephone;jun;wed;42;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+39;technician;divorced;professional.course;no;no;no;telephone;jun;wed;29;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+56;services;married;high.school;unknown;yes;no;telephone;jun;wed;75;14;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+41;technician;married;professional.course;no;yes;no;telephone;jun;wed;47;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+32;unknown;single;basic.6y;no;yes;no;telephone;jun;wed;62;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+30;housemaid;married;high.school;unknown;no;no;telephone;jun;wed;484;5;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+33;admin.;married;university.degree;no;yes;no;telephone;jun;wed;305;10;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+46;admin.;married;high.school;no;yes;no;telephone;jun;wed;95;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+34;management;married;university.degree;no;no;no;telephone;jun;wed;893;8;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;yes
+57;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;wed;62;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+29;admin.;married;professional.course;no;no;no;telephone;jun;wed;103;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+43;blue-collar;married;basic.4y;unknown;yes;yes;telephone;jun;wed;204;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+53;blue-collar;married;basic.4y;no;yes;no;telephone;jun;wed;453;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+53;blue-collar;married;basic.9y;no;no;no;telephone;jun;wed;71;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+50;services;divorced;basic.4y;unknown;yes;no;telephone;jun;wed;91;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+44;services;married;unknown;no;no;no;telephone;jun;wed;360;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+28;admin.;single;unknown;no;no;no;telephone;jun;wed;643;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+39;admin.;single;high.school;no;no;no;telephone;jun;wed;29;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+48;services;married;high.school;unknown;yes;no;telephone;jun;wed;327;9;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+55;unemployed;married;basic.4y;unknown;yes;no;telephone;jun;wed;175;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+43;blue-collar;married;basic.4y;no;yes;no;telephone;jun;wed;109;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+44;services;divorced;high.school;no;no;no;telephone;jun;wed;240;9;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+33;admin.;married;high.school;no;no;no;telephone;jun;wed;916;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+43;blue-collar;married;basic.4y;no;yes;no;telephone;jun;wed;363;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+39;unemployed;married;professional.course;no;yes;no;telephone;jun;wed;281;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+29;admin.;single;university.degree;no;no;no;telephone;jun;wed;442;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+46;blue-collar;married;basic.4y;unknown;yes;no;telephone;jun;wed;196;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+36;blue-collar;divorced;high.school;no;no;no;telephone;jun;wed;68;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+47;management;married;university.degree;no;yes;no;telephone;jun;wed;181;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+41;admin.;single;university.degree;no;yes;yes;telephone;jun;wed;88;5;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+47;blue-collar;divorced;basic.9y;unknown;no;no;telephone;jun;wed;305;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+42;management;married;university.degree;no;no;no;telephone;jun;wed;197;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+36;blue-collar;divorced;high.school;no;yes;no;telephone;jun;wed;133;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+42;blue-collar;married;basic.6y;unknown;no;no;telephone;jun;wed;138;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+39;entrepreneur;married;high.school;no;no;no;telephone;jun;wed;439;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+45;services;married;high.school;no;yes;no;telephone;jun;wed;232;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+48;blue-collar;married;basic.9y;no;no;no;telephone;jun;wed;63;5;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+37;admin.;married;university.degree;no;no;no;telephone;jun;wed;867;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;yes
+30;self-employed;single;university.degree;no;no;no;telephone;jun;wed;587;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;yes
+56;technician;married;basic.4y;unknown;no;no;telephone;jun;wed;458;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+28;admin.;married;university.degree;no;no;no;telephone;jun;wed;191;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+33;management;married;high.school;no;yes;yes;telephone;jun;wed;64;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+28;admin.;married;university.degree;no;no;no;telephone;jun;wed;354;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+29;admin.;married;university.degree;no;no;no;telephone;jun;wed;300;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+36;blue-collar;married;basic.6y;no;no;no;telephone;jun;wed;105;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+35;services;single;high.school;unknown;no;yes;telephone;jun;wed;328;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+49;self-employed;married;professional.course;no;no;yes;telephone;jun;wed;339;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+22;technician;married;basic.9y;unknown;no;no;telephone;jun;wed;561;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+48;blue-collar;married;basic.9y;unknown;no;yes;telephone;jun;wed;116;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+53;blue-collar;divorced;basic.4y;no;no;no;telephone;jun;wed;706;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;yes
+32;blue-collar;married;basic.9y;no;yes;no;telephone;jun;wed;261;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+48;admin.;divorced;high.school;no;no;no;telephone;jun;wed;314;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+52;admin.;divorced;basic.6y;no;yes;no;telephone;jun;wed;219;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+33;blue-collar;married;basic.9y;no;yes;no;telephone;jun;wed;139;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+30;blue-collar;married;basic.6y;no;yes;no;telephone;jun;wed;98;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+29;admin.;single;university.degree;no;yes;no;telephone;jun;wed;694;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+31;services;married;high.school;no;yes;no;telephone;jun;wed;68;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+38;blue-collar;single;basic.9y;no;no;no;telephone;jun;wed;165;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+45;entrepreneur;married;high.school;no;yes;no;telephone;jun;wed;275;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+36;blue-collar;married;basic.6y;unknown;yes;no;telephone;jun;wed;153;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+45;technician;single;professional.course;no;yes;no;telephone;jun;wed;83;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+31;admin.;single;university.degree;no;yes;no;telephone;jun;wed;76;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+47;management;married;basic.4y;unknown;no;no;telephone;jun;wed;79;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+27;admin.;married;basic.9y;no;no;no;telephone;jun;wed;145;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+37;blue-collar;married;basic.6y;unknown;yes;no;telephone;jun;wed;199;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+49;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;wed;158;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+37;blue-collar;married;basic.6y;unknown;no;no;telephone;jun;wed;316;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+42;blue-collar;married;basic.6y;unknown;yes;no;telephone;jun;wed;117;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+54;admin.;married;university.degree;no;no;no;telephone;jun;wed;288;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+52;technician;married;high.school;no;yes;no;telephone;jun;wed;78;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+43;technician;married;professional.course;no;yes;no;telephone;jun;wed;26;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+30;blue-collar;single;basic.6y;unknown;yes;no;telephone;jun;wed;100;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+43;admin.;married;high.school;no;yes;no;telephone;jun;wed;49;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+52;technician;married;high.school;no;no;no;telephone;jun;wed;241;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+38;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;wed;95;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+38;blue-collar;married;basic.6y;no;yes;no;telephone;jun;wed;362;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+32;blue-collar;married;basic.6y;no;no;no;telephone;jun;wed;125;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+47;unknown;married;unknown;unknown;yes;no;telephone;jun;wed;91;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+34;services;married;high.school;no;unknown;unknown;telephone;jun;wed;187;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+33;technician;married;university.degree;unknown;no;no;telephone;jun;wed;420;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+42;technician;married;professional.course;unknown;no;no;telephone;jun;wed;115;16;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+57;technician;single;professional.course;unknown;yes;no;telephone;jun;wed;64;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+24;self-employed;single;university.degree;no;yes;no;telephone;jun;wed;40;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+33;admin.;single;university.degree;no;yes;no;telephone;jun;wed;113;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+39;housemaid;married;university.degree;no;no;no;telephone;jun;wed;68;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+45;blue-collar;married;basic.6y;unknown;yes;no;telephone;jun;wed;55;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+31;blue-collar;married;basic.6y;no;no;no;telephone;jun;wed;62;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+31;services;married;basic.9y;no;yes;no;telephone;jun;wed;886;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+48;blue-collar;married;basic.9y;no;no;no;telephone;jun;wed;100;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+37;admin.;single;high.school;no;no;no;telephone;jun;wed;61;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+32;admin.;single;high.school;no;yes;no;telephone;jun;wed;1199;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;yes
+51;admin.;married;basic.6y;unknown;yes;no;telephone;jun;wed;140;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+33;admin.;married;university.degree;no;no;no;telephone;jun;wed;436;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+60;technician;divorced;professional.course;unknown;no;no;telephone;jun;wed;72;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+25;services;single;high.school;no;no;no;telephone;jun;wed;119;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+50;blue-collar;married;basic.6y;unknown;yes;yes;telephone;jun;wed;123;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+33;admin.;single;university.degree;no;yes;yes;telephone;jun;wed;553;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+44;admin.;married;university.degree;unknown;yes;no;telephone;jun;wed;320;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+43;entrepreneur;married;university.degree;unknown;no;no;telephone;jun;wed;935;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;yes
+57;retired;married;basic.4y;unknown;no;no;telephone;jun;wed;74;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+58;management;married;university.degree;no;yes;no;telephone;jun;wed;81;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+50;blue-collar;married;basic.6y;unknown;no;no;telephone;jun;wed;586;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;yes
+41;blue-collar;married;basic.6y;unknown;yes;no;telephone;jun;wed;950;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+34;blue-collar;single;basic.9y;unknown;no;no;telephone;jun;wed;159;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+31;blue-collar;married;basic.9y;no;yes;no;telephone;jun;wed;838;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;yes
+31;technician;single;unknown;no;no;no;telephone;jun;wed;46;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+55;technician;married;high.school;unknown;no;no;telephone;jun;wed;473;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+45;blue-collar;married;basic.9y;no;no;no;telephone;jun;wed;119;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+48;admin.;divorced;high.school;no;yes;yes;telephone;jun;wed;967;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;yes
+44;unemployed;single;basic.4y;no;no;no;telephone;jun;wed;33;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+30;admin.;single;university.degree;no;yes;no;telephone;jun;wed;148;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+57;blue-collar;married;unknown;unknown;no;no;telephone;jun;wed;651;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;yes
+39;blue-collar;married;professional.course;no;no;no;telephone;jun;wed;437;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+52;blue-collar;divorced;high.school;no;no;no;telephone;jun;wed;134;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+36;services;single;unknown;no;yes;yes;telephone;jun;wed;116;7;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+41;self-employed;married;high.school;no;unknown;unknown;telephone;jun;wed;143;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+43;unemployed;married;university.degree;unknown;yes;no;telephone;jun;wed;174;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+39;entrepreneur;married;university.degree;no;yes;no;telephone;jun;wed;63;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+44;blue-collar;divorced;high.school;no;yes;no;telephone;jun;wed;340;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+40;entrepreneur;married;basic.9y;no;yes;no;telephone;jun;wed;103;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+49;technician;divorced;unknown;no;no;no;telephone;jun;wed;41;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+42;admin.;divorced;high.school;no;yes;yes;telephone;jun;wed;247;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+56;blue-collar;married;basic.4y;unknown;yes;no;telephone;jun;wed;114;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+31;housemaid;married;basic.4y;unknown;no;no;telephone;jun;wed;327;10;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+52;unemployed;married;unknown;no;yes;no;telephone;jun;wed;110;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+33;management;single;university.degree;no;no;no;telephone;jun;wed;257;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+33;admin.;married;university.degree;no;yes;yes;telephone;jun;wed;59;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+45;unknown;married;unknown;unknown;no;no;telephone;jun;wed;113;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+51;entrepreneur;married;professional.course;no;no;no;telephone;jun;wed;127;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+36;technician;married;professional.course;no;no;no;telephone;jun;wed;183;9;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+45;technician;married;university.degree;no;no;no;telephone;jun;wed;142;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+42;services;married;high.school;no;no;no;telephone;jun;wed;678;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+43;services;single;unknown;unknown;yes;no;telephone;jun;wed;86;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+42;blue-collar;married;unknown;no;no;no;telephone;jun;wed;96;7;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+36;admin.;married;professional.course;no;no;no;telephone;jun;wed;211;17;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+42;blue-collar;divorced;basic.9y;no;yes;no;telephone;jun;wed;201;5;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+48;admin.;married;professional.course;no;no;no;telephone;jun;wed;105;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+35;admin.;married;university.degree;no;yes;no;telephone;jun;wed;100;5;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+30;blue-collar;single;basic.4y;unknown;no;no;telephone;jun;wed;952;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+31;admin.;married;university.degree;no;no;no;telephone;jun;wed;181;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+40;technician;married;basic.9y;no;no;no;telephone;jun;wed;389;6;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+26;admin.;single;high.school;no;no;no;telephone;jun;wed;203;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+47;blue-collar;divorced;basic.4y;no;no;yes;telephone;jun;wed;450;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+41;housemaid;married;basic.4y;unknown;no;no;telephone;jun;wed;105;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+40;services;married;high.school;no;yes;no;telephone;jun;wed;85;6;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+37;blue-collar;married;basic.9y;no;no;no;telephone;jun;wed;203;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+38;blue-collar;married;basic.6y;unknown;yes;no;telephone;jun;wed;74;13;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+49;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;wed;222;9;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+50;blue-collar;divorced;basic.4y;no;yes;no;telephone;jun;wed;30;22;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+37;admin.;married;basic.9y;no;no;no;telephone;jun;wed;268;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+55;admin.;divorced;high.school;no;no;no;telephone;jun;wed;148;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+50;blue-collar;divorced;basic.4y;no;no;no;telephone;jun;wed;427;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+38;admin.;single;university.degree;no;no;yes;telephone;jun;wed;90;9;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+33;entrepreneur;married;high.school;no;yes;no;telephone;jun;wed;177;8;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+41;admin.;single;high.school;no;no;no;telephone;jun;wed;328;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+56;blue-collar;married;basic.4y;no;no;no;telephone;jun;wed;133;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+52;services;married;university.degree;no;yes;yes;telephone;jun;wed;516;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+51;unemployed;married;high.school;unknown;yes;no;telephone;jun;wed;204;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+32;blue-collar;married;basic.9y;no;no;no;telephone;jun;wed;184;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+33;blue-collar;married;basic.6y;unknown;no;no;telephone;jun;wed;157;6;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+49;management;divorced;high.school;unknown;no;no;telephone;jun;wed;319;6;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+29;self-employed;married;university.degree;unknown;yes;no;telephone;jun;wed;199;6;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+35;blue-collar;married;basic.6y;unknown;no;no;telephone;jun;wed;147;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+25;self-employed;married;professional.course;no;yes;no;telephone;jun;wed;394;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+47;blue-collar;married;basic.4y;unknown;yes;yes;telephone;jun;wed;81;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+45;blue-collar;married;basic.4y;no;no;no;telephone;jun;wed;157;9;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+56;admin.;married;high.school;no;yes;no;telephone;jun;wed;375;11;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+43;technician;single;professional.course;no;yes;no;telephone;jun;wed;184;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+57;self-employed;married;basic.4y;no;no;no;telephone;jun;wed;162;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+47;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;wed;47;7;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+45;entrepreneur;married;basic.6y;no;no;no;telephone;jun;wed;215;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+45;blue-collar;married;basic.9y;no;no;no;telephone;jun;wed;230;13;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+40;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;wed;105;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+36;unemployed;single;university.degree;no;yes;no;telephone;jun;wed;150;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+41;blue-collar;married;basic.9y;no;yes;no;telephone;jun;wed;213;6;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+45;entrepreneur;married;high.school;no;yes;no;telephone;jun;wed;126;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+38;admin.;married;university.degree;no;yes;no;telephone;jun;wed;70;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+49;admin.;divorced;university.degree;no;no;no;telephone;jun;wed;141;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+53;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;wed;111;10;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+37;blue-collar;single;basic.9y;no;no;no;telephone;jun;wed;287;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+43;services;married;high.school;no;yes;no;telephone;jun;wed;83;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+29;admin.;single;university.degree;no;yes;yes;telephone;jun;wed;124;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+39;technician;married;professional.course;no;yes;no;telephone;jun;wed;67;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+34;admin.;single;high.school;no;unknown;unknown;telephone;jun;wed;104;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+57;retired;single;high.school;no;no;no;telephone;jun;wed;904;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+30;services;married;unknown;no;yes;no;telephone;jun;wed;597;10;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+28;services;married;high.school;no;no;no;telephone;jun;wed;274;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+35;blue-collar;single;unknown;no;no;no;telephone;jun;wed;124;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+28;technician;single;university.degree;unknown;no;no;telephone;jun;wed;354;17;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+46;blue-collar;married;basic.9y;no;no;no;telephone;jun;wed;152;10;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+31;housemaid;married;basic.4y;unknown;yes;no;telephone;jun;wed;328;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+59;retired;married;professional.course;unknown;yes;no;telephone;jun;wed;59;8;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+39;blue-collar;married;basic.4y;unknown;yes;no;telephone;jun;wed;125;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+36;technician;married;high.school;no;yes;no;telephone;jun;wed;158;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+33;services;single;basic.6y;no;unknown;unknown;telephone;jun;wed;179;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+41;technician;married;professional.course;unknown;yes;no;telephone;jun;wed;649;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;yes
+40;services;divorced;unknown;no;yes;yes;telephone;jun;wed;26;29;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+28;admin.;single;university.degree;no;no;no;telephone;jun;wed;203;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+30;services;married;high.school;no;yes;no;telephone;jun;wed;138;5;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+25;blue-collar;single;basic.4y;no;no;no;telephone;jun;wed;107;19;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+45;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;wed;409;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+40;admin.;single;university.degree;no;no;yes;telephone;jun;wed;48;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+37;admin.;married;university.degree;unknown;yes;no;telephone;jun;wed;83;10;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+45;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;wed;199;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+49;blue-collar;divorced;basic.4y;unknown;no;no;telephone;jun;wed;122;5;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+42;blue-collar;married;basic.6y;no;no;no;telephone;jun;wed;218;7;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+35;admin.;single;high.school;unknown;yes;no;telephone;jun;wed;93;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+50;blue-collar;divorced;basic.4y;no;no;no;telephone;jun;wed;222;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+56;blue-collar;divorced;basic.4y;no;yes;no;telephone;jun;wed;378;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+43;blue-collar;married;basic.9y;unknown;yes;no;telephone;jun;wed;93;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+35;management;single;unknown;no;unknown;unknown;telephone;jun;wed;514;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+53;unknown;married;high.school;unknown;no;no;telephone;jun;wed;89;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+30;self-employed;single;university.degree;no;no;no;telephone;jun;wed;58;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+32;entrepreneur;married;high.school;unknown;no;no;telephone;jun;wed;850;8;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+32;blue-collar;married;basic.9y;no;no;no;telephone;jun;thu;307;2;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+40;admin.;married;high.school;unknown;no;no;telephone;jun;thu;89;6;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+38;blue-collar;married;basic.6y;unknown;no;no;telephone;jun;thu;71;12;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+54;housemaid;divorced;unknown;no;yes;no;telephone;jun;thu;52;3;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+59;technician;married;university.degree;no;no;no;telephone;jun;thu;136;2;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+45;blue-collar;divorced;basic.9y;no;yes;no;telephone;jun;thu;542;3;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+40;admin.;married;university.degree;no;no;no;telephone;jun;thu;265;3;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+27;student;single;high.school;no;yes;no;telephone;jun;thu;84;3;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+55;retired;divorced;high.school;no;no;no;telephone;jun;thu;410;16;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+37;admin.;single;university.degree;no;yes;no;telephone;jun;thu;93;8;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+53;technician;married;unknown;no;yes;no;telephone;jun;thu;134;3;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+56;management;married;university.degree;no;no;no;telephone;jun;thu;403;5;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+39;admin.;married;university.degree;no;yes;no;telephone;jun;thu;36;3;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+29;services;married;high.school;no;yes;no;telephone;jun;thu;109;2;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+30;student;single;basic.9y;no;no;no;telephone;jun;thu;90;3;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+31;entrepreneur;married;high.school;no;yes;no;telephone;jun;thu;305;2;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+42;entrepreneur;married;university.degree;unknown;yes;no;telephone;jun;thu;135;3;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+36;blue-collar;married;basic.6y;no;yes;no;telephone;jun;thu;614;2;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;yes
+38;admin.;married;university.degree;no;no;no;telephone;jun;thu;781;2;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+43;technician;married;professional.course;no;no;no;telephone;jun;thu;112;2;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+41;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;thu;337;22;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+32;admin.;married;high.school;no;yes;no;telephone;jun;thu;423;2;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+44;technician;married;professional.course;no;no;no;telephone;jun;thu;171;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+39;admin.;single;high.school;no;no;no;telephone;jun;thu;110;4;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+39;admin.;married;university.degree;no;yes;no;telephone;jun;thu;138;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+40;technician;married;high.school;no;yes;no;telephone;jun;thu;126;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+27;student;single;university.degree;no;no;yes;telephone;jun;thu;137;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+56;retired;married;basic.4y;no;yes;no;telephone;jun;thu;125;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+51;admin.;single;basic.6y;no;no;no;telephone;jun;thu;202;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+43;technician;single;professional.course;no;no;no;telephone;jun;thu;123;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+48;admin.;married;professional.course;unknown;yes;no;telephone;jun;thu;49;2;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+39;admin.;divorced;professional.course;no;yes;yes;telephone;jun;thu;106;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+55;technician;divorced;professional.course;unknown;no;no;telephone;jun;thu;885;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;yes
+44;technician;divorced;professional.course;no;no;no;telephone;jun;thu;112;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+42;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;thu;236;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+46;blue-collar;married;professional.course;unknown;no;no;telephone;jun;thu;187;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+35;technician;married;professional.course;no;yes;no;telephone;jun;thu;108;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+48;blue-collar;divorced;basic.4y;unknown;unknown;unknown;telephone;jun;thu;583;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+56;entrepreneur;married;unknown;unknown;no;yes;telephone;jun;thu;192;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+36;blue-collar;married;basic.9y;no;no;no;telephone;jun;thu;149;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+28;admin.;single;university.degree;no;no;no;telephone;jun;thu;151;2;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+42;admin.;married;basic.6y;no;no;no;telephone;jun;thu;165;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+30;admin.;married;high.school;no;no;no;telephone;jun;thu;92;2;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+36;entrepreneur;married;high.school;no;no;yes;telephone;jun;thu;91;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+54;blue-collar;married;basic.6y;unknown;no;no;telephone;jun;thu;2025;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;yes
+53;technician;married;unknown;no;no;no;telephone;jun;thu;123;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+35;services;married;high.school;unknown;yes;no;telephone;jun;thu;107;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+38;admin.;single;basic.9y;no;no;no;telephone;jun;thu;406;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+32;management;single;university.degree;no;yes;no;telephone;jun;thu;12;3;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+45;self-employed;married;professional.course;no;no;yes;telephone;jun;thu;128;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+55;blue-collar;married;basic.4y;no;no;no;telephone;jun;thu;146;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+35;housemaid;single;unknown;no;yes;no;telephone;jun;thu;66;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+31;blue-collar;married;basic.9y;no;yes;no;telephone;jun;thu;278;2;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+41;services;divorced;basic.9y;no;no;no;telephone;jun;thu;753;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+39;admin.;married;high.school;unknown;no;no;telephone;jun;thu;120;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+49;technician;divorced;unknown;no;no;no;telephone;jun;thu;167;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+30;admin.;single;university.degree;no;no;no;telephone;jun;thu;48;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+41;services;married;basic.9y;no;yes;no;telephone;jun;thu;385;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+40;admin.;married;high.school;no;no;no;telephone;jun;thu;97;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+28;management;single;university.degree;no;no;no;telephone;jun;thu;651;5;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;yes
+47;technician;married;professional.course;no;no;no;telephone;jun;thu;223;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+59;services;married;high.school;no;no;no;telephone;jun;thu;309;5;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+33;blue-collar;divorced;basic.9y;no;yes;no;telephone;jun;thu;155;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+44;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;thu;98;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+38;technician;married;professional.course;no;yes;yes;telephone;jun;thu;46;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+38;services;married;high.school;no;no;no;telephone;jun;thu;252;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+45;services;divorced;high.school;unknown;no;no;telephone;jun;thu;691;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+39;admin.;married;university.degree;no;no;no;telephone;jun;thu;93;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+56;entrepreneur;married;university.degree;unknown;no;no;telephone;jun;thu;315;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+53;entrepreneur;divorced;unknown;no;yes;no;telephone;jun;thu;154;3;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+35;technician;married;basic.6y;no;yes;yes;telephone;jun;thu;344;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+38;technician;divorced;professional.course;no;no;no;telephone;jun;thu;128;2;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+55;self-employed;married;unknown;unknown;yes;yes;telephone;jun;thu;278;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+30;technician;married;high.school;no;yes;no;telephone;jun;thu;436;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+48;technician;married;unknown;no;no;no;telephone;jun;thu;189;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+32;admin.;single;university.degree;no;yes;no;telephone;jun;thu;186;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+50;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;thu;84;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+32;housemaid;married;high.school;no;no;no;telephone;jun;thu;264;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+43;blue-collar;married;basic.9y;no;yes;no;telephone;jun;thu;237;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+38;technician;single;university.degree;no;no;no;telephone;jun;thu;72;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+50;admin.;married;university.degree;no;no;no;telephone;jun;thu;77;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+49;services;married;high.school;unknown;no;no;telephone;jun;thu;128;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+58;entrepreneur;married;university.degree;unknown;yes;yes;telephone;jun;thu;43;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+35;blue-collar;married;basic.6y;no;yes;no;telephone;jun;thu;64;6;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+44;admin.;married;university.degree;no;yes;no;telephone;jun;thu;351;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+41;services;married;unknown;no;no;no;telephone;jun;thu;139;2;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+50;entrepreneur;married;basic.9y;no;yes;no;telephone;jun;thu;119;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+54;technician;married;university.degree;no;yes;no;telephone;jun;thu;394;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+42;blue-collar;married;basic.6y;no;yes;no;telephone;jun;thu;174;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+31;services;married;high.school;unknown;no;yes;telephone;jun;thu;62;6;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+43;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;thu;349;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+58;admin.;single;university.degree;no;no;no;telephone;jun;thu;100;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+35;housemaid;married;high.school;no;no;no;telephone;jun;thu;56;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+59;services;divorced;high.school;no;no;no;telephone;jun;thu;133;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+40;blue-collar;married;basic.4y;no;yes;no;telephone;jun;thu;134;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+48;admin.;married;basic.9y;unknown;no;no;telephone;jun;thu;113;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+49;admin.;married;university.degree;no;yes;yes;telephone;jun;thu;185;2;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+59;housemaid;married;high.school;unknown;no;no;telephone;jun;thu;331;12;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+24;blue-collar;married;basic.9y;no;no;yes;telephone;jun;thu;167;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+43;management;married;high.school;no;yes;no;telephone;jun;thu;30;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+36;services;married;high.school;no;yes;yes;telephone;jun;thu;77;6;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+56;blue-collar;married;basic.4y;no;no;no;telephone;jun;thu;136;2;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+34;technician;married;professional.course;no;no;no;telephone;jun;thu;320;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+27;admin.;divorced;high.school;no;no;no;telephone;jun;thu;138;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+34;technician;married;professional.course;unknown;no;no;telephone;jun;thu;10;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+58;services;married;basic.4y;no;no;no;telephone;jun;thu;75;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+39;unemployed;married;university.degree;no;yes;no;telephone;jun;thu;72;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+46;technician;married;university.degree;unknown;no;yes;telephone;jun;thu;993;6;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;yes
+40;blue-collar;single;basic.4y;no;yes;no;telephone;jun;thu;160;2;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+49;technician;married;professional.course;no;no;yes;telephone;jun;thu;138;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+42;admin.;single;university.degree;no;no;yes;telephone;jun;thu;122;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+42;blue-collar;married;basic.6y;no;no;no;telephone;jun;thu;919;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+32;technician;married;basic.9y;unknown;no;no;telephone;jun;thu;52;5;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+44;admin.;single;university.degree;unknown;no;no;telephone;jun;thu;80;2;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+52;blue-collar;single;basic.4y;no;yes;no;telephone;jun;thu;558;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+40;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;thu;124;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+43;admin.;single;high.school;no;no;no;telephone;jun;thu;73;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+35;blue-collar;married;high.school;no;no;no;telephone;jun;thu;992;2;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;yes
+54;housemaid;married;basic.4y;unknown;no;no;telephone;jun;thu;68;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+35;services;married;basic.9y;no;no;yes;telephone;jun;thu;98;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+34;services;married;high.school;no;no;no;telephone;jun;thu;54;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+22;services;single;basic.4y;no;no;yes;telephone;jun;thu;58;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+42;technician;married;professional.course;unknown;no;no;telephone;jun;thu;81;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+33;management;single;university.degree;no;yes;no;telephone;jun;thu;118;3;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+39;management;married;university.degree;no;no;yes;telephone;jun;thu;127;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+47;blue-collar;married;basic.4y;no;yes;no;telephone;jun;thu;309;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+56;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;thu;871;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+49;blue-collar;married;basic.4y;no;no;no;telephone;jun;thu;577;2;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;yes
+39;entrepreneur;married;high.school;no;yes;no;telephone;jun;thu;582;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+29;services;married;professional.course;unknown;no;no;telephone;jun;thu;46;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+55;blue-collar;divorced;basic.4y;unknown;no;no;telephone;jun;thu;270;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+34;technician;married;professional.course;no;no;no;telephone;jun;thu;317;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+32;technician;married;university.degree;no;no;no;telephone;jun;thu;281;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+46;entrepreneur;married;professional.course;no;yes;no;telephone;jun;thu;410;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+31;blue-collar;married;basic.9y;no;no;no;telephone;jun;thu;186;2;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+54;technician;married;university.degree;unknown;no;no;telephone;jun;thu;322;2;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+44;management;divorced;university.degree;no;yes;yes;telephone;jun;thu;37;3;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+52;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;thu;283;3;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+49;technician;married;professional.course;no;yes;yes;telephone;jun;thu;88;2;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+35;technician;divorced;professional.course;no;yes;no;telephone;jun;thu;312;2;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+43;entrepreneur;married;high.school;no;no;no;telephone;jun;thu;1141;6;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;yes
+59;entrepreneur;divorced;high.school;unknown;yes;no;telephone;jun;thu;1268;2;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;yes
+36;services;married;high.school;no;yes;yes;telephone;jun;thu;602;2;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+39;services;single;high.school;no;yes;no;telephone;jun;thu;1178;3;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+36;self-employed;divorced;university.degree;no;yes;no;telephone;jun;thu;130;2;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+44;admin.;single;university.degree;no;yes;no;telephone;jun;thu;541;17;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;yes
+44;management;married;high.school;no;yes;no;telephone;jun;thu;226;3;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+37;blue-collar;married;basic.4y;no;no;yes;telephone;jun;thu;640;3;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+41;blue-collar;married;basic.4y;no;no;no;telephone;jun;thu;340;2;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+41;management;married;university.degree;unknown;yes;no;telephone;jun;thu;230;7;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+52;blue-collar;married;basic.4y;unknown;yes;no;telephone;jun;thu;159;2;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+45;blue-collar;single;basic.6y;no;no;no;telephone;jun;thu;138;2;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+30;technician;single;professional.course;no;unknown;unknown;telephone;jun;thu;773;4;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+48;management;married;university.degree;no;yes;no;telephone;jun;thu;298;3;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+43;blue-collar;married;basic.4y;no;unknown;unknown;telephone;jun;thu;1618;2;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;yes
+48;blue-collar;married;basic.6y;unknown;no;no;telephone;jun;thu;361;2;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+40;blue-collar;married;unknown;no;no;no;telephone;jun;thu;100;4;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+29;blue-collar;married;high.school;unknown;no;no;telephone;jun;thu;124;2;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+50;admin.;married;university.degree;unknown;yes;no;telephone;jun;thu;153;6;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+49;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;thu;67;3;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+44;services;married;high.school;no;yes;no;telephone;jun;thu;462;3;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+49;technician;married;professional.course;no;yes;no;telephone;jun;thu;320;2;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+38;management;single;university.degree;no;yes;no;telephone;jun;thu;69;3;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+39;admin.;married;high.school;unknown;yes;no;telephone;jun;thu;71;6;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+43;blue-collar;divorced;basic.9y;no;no;no;telephone;jun;thu;190;2;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+30;entrepreneur;married;university.degree;unknown;yes;no;telephone;jun;thu;204;3;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+41;admin.;married;basic.9y;unknown;yes;no;telephone;jun;thu;85;2;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+25;admin.;single;high.school;no;yes;no;telephone;jun;thu;1243;7;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;yes
+47;blue-collar;married;basic.4y;no;yes;no;telephone;jun;thu;130;3;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+54;blue-collar;divorced;unknown;unknown;yes;no;telephone;jun;thu;339;3;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+36;services;married;high.school;no;no;no;telephone;jun;thu;316;2;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+33;entrepreneur;married;university.degree;no;no;yes;telephone;jun;thu;166;2;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+34;technician;married;professional.course;no;no;no;telephone;jun;thu;168;8;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+36;technician;married;professional.course;no;no;yes;telephone;jun;thu;247;2;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+57;technician;married;basic.4y;unknown;no;no;telephone;jun;thu;243;2;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+37;technician;single;high.school;unknown;unknown;unknown;telephone;jun;thu;227;2;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+38;admin.;married;university.degree;no;yes;no;telephone;jun;thu;153;6;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+41;admin.;married;professional.course;unknown;yes;no;telephone;jun;thu;122;2;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+53;blue-collar;married;basic.6y;unknown;yes;no;telephone;jun;thu;232;2;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+39;unemployed;single;basic.6y;no;no;no;telephone;jun;thu;238;2;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+47;blue-collar;married;basic.4y;no;yes;no;telephone;jun;thu;211;2;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+33;blue-collar;married;basic.9y;no;yes;no;telephone;jun;thu;111;8;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+34;admin.;single;high.school;no;yes;no;telephone;jun;thu;161;2;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+32;admin.;single;university.degree;unknown;no;no;telephone;jun;thu;188;4;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+33;technician;married;university.degree;unknown;no;no;telephone;jun;thu;67;4;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+38;admin.;married;university.degree;no;no;no;telephone;jun;thu;361;2;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+48;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;thu;454;4;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+48;blue-collar;married;high.school;no;yes;no;telephone;jun;thu;700;2;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+30;services;married;university.degree;no;yes;no;telephone;jun;mon;83;4;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+36;admin.;single;university.degree;no;yes;no;telephone;jun;mon;247;2;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+45;blue-collar;married;basic.6y;no;yes;no;telephone;jun;mon;252;2;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+60;admin.;married;university.degree;unknown;yes;no;telephone;jun;mon;62;2;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+32;self-employed;divorced;university.degree;no;no;no;telephone;jun;mon;559;3;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+33;admin.;married;university.degree;no;no;no;telephone;jun;mon;190;4;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+35;admin.;single;high.school;no;no;no;telephone;jun;mon;10;5;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+48;admin.;married;high.school;unknown;no;no;telephone;jun;mon;189;2;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+29;admin.;single;university.degree;no;no;no;telephone;jun;mon;109;2;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+46;admin.;married;high.school;unknown;unknown;unknown;telephone;jun;mon;148;2;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+45;blue-collar;married;basic.4y;unknown;yes;no;telephone;jun;mon;107;2;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+35;unemployed;married;university.degree;no;yes;no;telephone;jun;mon;82;4;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+30;technician;single;university.degree;unknown;yes;no;telephone;jun;mon;405;3;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+44;blue-collar;married;basic.9y;unknown;yes;no;telephone;jun;mon;103;2;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+32;unemployed;married;basic.9y;no;no;no;telephone;jun;mon;143;2;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+27;blue-collar;single;basic.9y;no;no;no;telephone;jun;mon;61;3;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+46;admin.;married;professional.course;no;no;no;telephone;jun;mon;424;2;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+29;blue-collar;married;high.school;no;no;no;telephone;jun;mon;140;2;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+39;management;married;university.degree;no;yes;no;telephone;jun;mon;157;2;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+34;blue-collar;married;basic.9y;no;no;no;telephone;jun;mon;157;29;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+34;blue-collar;married;basic.4y;no;no;no;telephone;jun;mon;110;4;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+39;admin.;married;university.degree;no;no;no;telephone;jun;mon;69;3;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+35;entrepreneur;married;university.degree;no;no;no;telephone;jun;mon;513;2;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;yes
+50;blue-collar;divorced;basic.4y;no;yes;no;telephone;jun;mon;241;3;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+38;admin.;married;university.degree;no;no;no;telephone;jun;mon;757;2;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+32;technician;single;high.school;no;no;no;telephone;jun;mon;68;3;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+32;technician;married;professional.course;no;no;no;telephone;jun;mon;171;2;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+38;blue-collar;married;professional.course;no;no;no;telephone;jun;mon;182;3;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+49;admin.;married;basic.9y;no;no;no;telephone;jun;mon;270;15;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+38;technician;married;basic.6y;unknown;no;yes;telephone;jun;mon;172;6;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+28;admin.;single;unknown;no;yes;no;telephone;jun;mon;177;5;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+33;technician;married;high.school;unknown;yes;no;telephone;jun;mon;119;2;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+37;technician;single;professional.course;unknown;no;yes;telephone;jun;mon;75;3;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+41;services;divorced;basic.9y;no;yes;no;telephone;jun;mon;192;4;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+41;admin.;divorced;high.school;no;no;no;telephone;jun;mon;686;11;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;yes
+40;blue-collar;married;basic.6y;no;yes;no;telephone;jun;mon;104;4;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+31;blue-collar;single;high.school;no;yes;yes;telephone;jun;mon;325;3;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+41;services;married;high.school;unknown;no;no;telephone;jun;mon;33;21;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+34;entrepreneur;single;professional.course;no;yes;no;telephone;jun;mon;144;4;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+48;services;married;high.school;no;yes;no;telephone;jun;mon;57;8;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+52;technician;divorced;university.degree;no;no;no;telephone;jun;mon;184;3;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+47;blue-collar;married;basic.9y;no;yes;no;telephone;jun;mon;109;3;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+50;housemaid;single;unknown;no;no;no;telephone;jun;mon;741;4;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;yes
+40;admin.;single;high.school;unknown;no;no;telephone;jun;mon;349;2;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+38;admin.;divorced;high.school;no;no;no;telephone;jun;mon;100;3;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+47;services;married;high.school;unknown;yes;no;telephone;jun;mon;87;3;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+34;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;mon;95;8;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+35;entrepreneur;married;basic.6y;no;no;no;telephone;jun;mon;114;5;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+33;blue-collar;single;basic.9y;no;no;no;telephone;jun;mon;109;2;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+37;management;married;university.degree;no;no;no;telephone;jun;mon;1323;9;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;yes
+52;blue-collar;married;basic.4y;no;yes;no;telephone;jun;mon;186;6;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+29;admin.;divorced;university.degree;no;no;no;telephone;jun;mon;187;3;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+47;entrepreneur;married;university.degree;no;yes;no;telephone;jun;mon;580;3;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+39;services;divorced;high.school;no;yes;no;telephone;jun;mon;81;5;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+52;unknown;married;basic.4y;no;no;no;telephone;jun;mon;253;2;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+41;blue-collar;married;basic.6y;unknown;yes;no;telephone;jun;mon;75;3;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+39;blue-collar;married;basic.6y;unknown;unknown;unknown;telephone;jun;mon;144;2;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+35;blue-collar;divorced;basic.9y;no;unknown;unknown;telephone;jun;mon;276;3;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+49;retired;married;basic.4y;no;no;no;telephone;jun;mon;93;2;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+32;admin.;divorced;university.degree;no;no;no;telephone;jun;mon;106;10;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+47;technician;single;professional.course;unknown;no;no;telephone;jun;mon;90;2;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+28;admin.;single;university.degree;no;no;no;telephone;jun;mon;78;5;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+40;blue-collar;single;basic.9y;no;no;no;telephone;jun;mon;55;2;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+59;admin.;married;high.school;no;no;no;telephone;jun;mon;204;4;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+50;technician;divorced;professional.course;no;no;no;telephone;jun;mon;408;2;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+32;blue-collar;married;basic.6y;no;no;no;telephone;jun;mon;147;2;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+38;admin.;single;high.school;unknown;yes;no;telephone;jun;mon;287;2;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+34;management;married;university.degree;unknown;no;no;telephone;jun;mon;84;3;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+41;blue-collar;married;basic.9y;no;yes;no;telephone;jun;mon;119;3;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+51;blue-collar;divorced;basic.4y;no;no;no;telephone;jun;mon;133;2;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+31;blue-collar;married;basic.9y;no;no;no;telephone;jun;mon;195;2;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+28;admin.;married;high.school;no;no;no;telephone;jun;mon;108;2;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+40;technician;married;professional.course;no;no;no;telephone;jun;mon;92;6;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+50;blue-collar;single;basic.9y;unknown;no;no;telephone;jun;mon;264;4;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+56;housemaid;divorced;basic.4y;unknown;no;no;telephone;jun;mon;123;2;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+45;admin.;married;basic.9y;unknown;no;no;telephone;jun;mon;73;4;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+34;admin.;married;university.degree;no;no;no;telephone;jun;mon;146;3;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+34;blue-collar;married;basic.9y;no;no;no;telephone;jun;mon;206;1;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+54;entrepreneur;married;university.degree;unknown;no;no;telephone;jun;mon;100;17;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+32;blue-collar;married;basic.9y;no;yes;yes;telephone;jun;mon;452;1;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+36;blue-collar;single;basic.6y;no;yes;yes;telephone;jun;mon;163;1;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+40;blue-collar;married;unknown;unknown;yes;no;telephone;jun;mon;69;2;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+25;technician;single;university.degree;no;yes;yes;telephone;jun;mon;35;6;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+52;blue-collar;married;unknown;unknown;no;no;telephone;jun;mon;215;3;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+44;management;divorced;university.degree;no;yes;no;telephone;jun;mon;96;8;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+52;services;married;university.degree;no;no;no;telephone;jun;mon;119;1;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+34;entrepreneur;married;university.degree;no;yes;yes;telephone;jun;mon;265;3;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+40;technician;married;professional.course;unknown;no;no;telephone;jun;mon;60;2;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+31;blue-collar;married;basic.9y;no;no;no;telephone;jun;mon;179;2;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+45;entrepreneur;single;university.degree;no;no;no;telephone;jun;mon;162;6;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+46;management;married;basic.4y;unknown;yes;no;telephone;jun;mon;227;1;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+33;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;mon;41;1;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+36;technician;married;university.degree;no;no;no;telephone;jun;mon;1093;1;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;yes
+40;admin.;single;university.degree;unknown;no;yes;telephone;jun;mon;270;1;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+43;blue-collar;married;basic.9y;unknown;yes;no;telephone;jun;mon;1395;2;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;yes
+35;student;single;university.degree;unknown;yes;no;telephone;jun;mon;178;4;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+32;services;single;high.school;no;no;no;telephone;jun;mon;223;2;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+56;blue-collar;single;basic.6y;unknown;no;no;telephone;jun;mon;35;3;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+28;blue-collar;married;basic.9y;no;yes;yes;telephone;jun;mon;210;2;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+43;admin.;married;high.school;no;no;no;telephone;jun;mon;193;2;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+38;entrepreneur;married;basic.4y;no;no;no;telephone;jun;mon;822;1;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+41;unemployed;divorced;high.school;no;no;no;telephone;jun;mon;163;4;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+53;entrepreneur;married;basic.4y;no;no;no;telephone;jun;mon;339;2;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+32;blue-collar;married;high.school;no;no;yes;telephone;jun;mon;140;1;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+30;technician;married;university.degree;no;unknown;unknown;telephone;jun;mon;71;1;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+40;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;mon;1238;2;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+47;services;married;unknown;unknown;no;no;telephone;jun;mon;32;2;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+52;blue-collar;married;basic.4y;unknown;yes;no;telephone;jun;mon;116;1;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+59;blue-collar;married;basic.4y;unknown;yes;no;telephone;jun;mon;64;1;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+33;admin.;married;university.degree;no;no;yes;telephone;jun;mon;77;1;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+29;admin.;single;university.degree;no;no;no;telephone;jun;mon;73;3;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+56;services;divorced;basic.4y;no;no;no;telephone;jun;mon;42;3;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+52;admin.;divorced;high.school;no;no;no;telephone;jun;mon;24;5;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+46;unknown;married;basic.4y;unknown;yes;no;telephone;jun;mon;25;1;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+37;admin.;divorced;university.degree;no;no;no;telephone;jun;mon;147;1;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+33;blue-collar;married;basic.9y;no;no;no;telephone;jun;mon;145;1;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+57;services;divorced;high.school;unknown;yes;no;telephone;jun;mon;80;4;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+60;management;married;unknown;unknown;yes;no;telephone;jun;mon;35;1;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+36;admin.;married;university.degree;no;yes;no;telephone;jun;mon;141;1;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+34;blue-collar;married;basic.9y;no;no;no;telephone;jun;mon;263;8;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+38;admin.;married;high.school;no;no;no;telephone;jun;mon;123;1;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+31;blue-collar;married;basic.9y;no;yes;no;telephone;jun;mon;208;1;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+25;student;single;high.school;no;yes;yes;telephone;jun;mon;100;1;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+42;technician;married;university.degree;unknown;yes;no;telephone;jun;mon;91;1;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+29;admin.;single;basic.9y;unknown;no;no;telephone;jun;mon;1298;2;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+41;blue-collar;married;basic.9y;no;no;no;telephone;jun;mon;644;1;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+44;technician;divorced;professional.course;no;yes;no;telephone;jun;mon;289;1;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+43;self-employed;married;basic.9y;no;no;no;telephone;jun;mon;1089;1;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;yes
+51;management;married;basic.4y;no;yes;no;telephone;jun;mon;124;2;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+29;admin.;single;university.degree;no;no;no;telephone;jun;mon;157;2;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+33;self-employed;single;university.degree;no;no;no;telephone;jun;mon;226;4;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+34;entrepreneur;single;professional.course;no;yes;no;telephone;jun;mon;136;8;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+53;admin.;married;university.degree;no;no;no;telephone;jun;mon;541;19;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+41;unknown;single;unknown;unknown;no;no;telephone;jun;mon;242;6;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+52;blue-collar;married;basic.4y;no;no;no;telephone;jun;mon;50;3;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+44;management;divorced;basic.9y;unknown;yes;no;telephone;jun;mon;73;2;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+38;technician;married;professional.course;no;no;no;telephone;jun;mon;250;2;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+26;technician;married;professional.course;no;yes;no;telephone;jun;mon;181;2;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+30;blue-collar;married;high.school;no;yes;no;telephone;jun;mon;32;3;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+41;technician;married;professional.course;no;no;no;telephone;jun;mon;235;2;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+40;blue-collar;single;basic.9y;no;no;no;telephone;jun;mon;121;5;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+57;technician;married;basic.9y;no;yes;no;telephone;jun;mon;215;3;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+35;admin.;single;university.degree;no;no;no;telephone;jun;mon;320;2;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+41;technician;single;university.degree;no;no;no;telephone;jun;mon;382;3;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+53;unknown;married;high.school;unknown;yes;no;telephone;jun;mon;244;1;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+40;housemaid;married;basic.4y;no;no;no;telephone;jun;mon;286;1;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+26;admin.;married;high.school;no;no;yes;telephone;jun;mon;1021;1;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+45;blue-collar;married;basic.9y;unknown;unknown;unknown;telephone;jun;mon;167;2;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+31;entrepreneur;single;basic.9y;no;no;no;telephone;jun;mon;1248;3;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;yes
+32;admin.;single;university.degree;unknown;no;no;telephone;jun;mon;179;25;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+29;blue-collar;single;high.school;no;no;no;telephone;jun;mon;203;2;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+28;blue-collar;married;basic.6y;unknown;yes;no;telephone;jun;mon;273;5;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+27;blue-collar;single;basic.9y;no;yes;no;telephone;jun;mon;209;12;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+32;blue-collar;married;basic.9y;no;yes;no;telephone;jun;mon;39;1;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+52;blue-collar;married;basic.4y;no;yes;no;telephone;jun;mon;162;1;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+46;admin.;single;high.school;no;no;no;telephone;jun;mon;418;1;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+37;entrepreneur;single;university.degree;no;yes;no;telephone;jun;mon;348;1;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+36;management;married;university.degree;no;yes;yes;telephone;jun;mon;135;1;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+28;student;single;high.school;unknown;yes;no;telephone;jun;mon;131;2;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+52;blue-collar;married;basic.9y;no;no;no;telephone;jun;mon;401;2;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+30;technician;divorced;professional.course;no;no;no;telephone;jun;mon;332;2;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+29;technician;single;university.degree;no;no;no;telephone;jun;mon;78;1;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+55;housemaid;married;professional.course;no;no;no;telephone;jun;mon;394;2;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+45;blue-collar;divorced;basic.9y;no;yes;no;telephone;jun;mon;287;1;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+24;unemployed;married;university.degree;no;yes;no;telephone;jun;mon;266;1;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+43;technician;single;high.school;no;no;no;telephone;jun;mon;153;1;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+46;technician;married;high.school;no;unknown;unknown;telephone;jun;mon;500;1;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+24;services;married;high.school;no;yes;no;telephone;jun;mon;298;6;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+38;blue-collar;single;basic.9y;unknown;yes;no;telephone;jun;mon;101;1;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+56;services;divorced;high.school;unknown;yes;no;telephone;jun;mon;13;1;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+41;blue-collar;divorced;basic.6y;no;no;no;telephone;jun;mon;66;1;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+35;admin.;married;professional.course;no;no;no;telephone;jun;mon;62;1;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+45;management;married;unknown;unknown;no;yes;telephone;jun;mon;73;1;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+26;admin.;divorced;high.school;no;yes;no;telephone;jun;mon;50;1;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+53;blue-collar;divorced;basic.4y;unknown;yes;no;telephone;jun;mon;57;1;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+53;blue-collar;divorced;basic.4y;unknown;no;no;telephone;jun;mon;193;1;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+37;admin.;married;high.school;no;yes;no;telephone;jun;mon;599;3;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+52;entrepreneur;married;university.degree;no;no;no;telephone;jun;mon;92;2;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+35;blue-collar;divorced;basic.9y;no;no;no;telephone;jun;mon;52;3;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+48;blue-collar;married;basic.4y;no;yes;no;telephone;jun;mon;92;3;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+41;blue-collar;divorced;basic.9y;unknown;no;no;telephone;jun;mon;294;3;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+36;admin.;single;university.degree;no;yes;no;telephone;jun;mon;99;1;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+44;unknown;single;basic.9y;unknown;yes;no;telephone;jun;mon;76;3;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+31;blue-collar;divorced;high.school;no;no;yes;telephone;jun;mon;27;3;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+26;blue-collar;single;basic.4y;no;yes;yes;telephone;jun;mon;41;1;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+34;technician;married;professional.course;no;yes;yes;telephone;jun;mon;191;1;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+45;admin.;married;high.school;no;yes;yes;telephone;jun;mon;523;1;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+39;admin.;single;high.school;no;yes;no;telephone;jun;mon;358;1;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+51;blue-collar;married;basic.9y;unknown;yes;no;telephone;jun;mon;254;1;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+50;blue-collar;divorced;basic.4y;no;yes;no;telephone;jun;mon;46;1;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+40;blue-collar;married;basic.9y;no;yes;no;telephone;jun;mon;112;4;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+43;blue-collar;married;basic.6y;unknown;yes;no;telephone;jun;mon;51;1;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+29;admin.;single;university.degree;no;yes;no;telephone;jun;mon;359;1;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+42;blue-collar;married;basic.9y;no;yes;no;telephone;jun;mon;88;1;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+30;technician;single;university.degree;no;yes;no;telephone;jun;mon;342;1;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+40;entrepreneur;married;high.school;no;no;no;telephone;jun;mon;78;1;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+34;services;married;high.school;no;yes;no;telephone;jun;mon;76;3;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+39;management;married;university.degree;no;no;no;telephone;jun;mon;721;3;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;yes
+60;management;divorced;university.degree;no;yes;no;telephone;jun;mon;420;4;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+30;services;single;unknown;no;no;no;telephone;jun;mon;163;1;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+35;services;single;high.school;no;no;no;telephone;jun;mon;41;3;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+34;technician;divorced;professional.course;no;no;no;telephone;jun;mon;442;3;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+35;admin.;divorced;university.degree;no;no;no;telephone;jun;mon;41;3;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+52;entrepreneur;married;basic.4y;unknown;yes;no;telephone;jun;mon;535;2;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+60;retired;married;basic.4y;unknown;no;no;telephone;jun;mon;155;4;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+25;self-employed;single;university.degree;no;no;no;telephone;jun;mon;178;7;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+35;admin.;single;high.school;no;no;no;telephone;jun;mon;36;1;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+40;services;single;high.school;no;yes;yes;telephone;jun;mon;20;21;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+35;admin.;divorced;high.school;no;no;yes;telephone;jun;mon;15;15;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+58;unemployed;single;basic.4y;unknown;no;no;telephone;jun;mon;170;6;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+37;technician;married;basic.6y;no;no;no;telephone;jun;mon;87;3;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+42;blue-collar;married;basic.6y;no;no;no;telephone;jun;mon;298;4;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+32;services;married;high.school;no;no;no;telephone;jun;mon;244;3;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+31;blue-collar;single;high.school;no;yes;no;telephone;jun;mon;750;2;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;yes
+30;technician;married;professional.course;no;no;yes;telephone;jun;mon;169;1;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+47;unknown;married;unknown;unknown;no;no;telephone;jun;mon;139;3;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+34;admin.;married;university.degree;no;yes;no;telephone;jun;mon;14;14;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+29;admin.;married;university.degree;no;no;no;telephone;jun;mon;81;4;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+28;services;married;unknown;no;no;no;telephone;jun;mon;220;1;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+50;services;single;high.school;no;no;no;telephone;jun;mon;162;3;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+25;unemployed;single;high.school;unknown;yes;no;telephone;jun;mon;53;1;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+35;technician;married;university.degree;unknown;no;no;telephone;jun;mon;131;1;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+34;blue-collar;married;basic.9y;no;no;yes;telephone;jun;mon;18;30;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+24;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;mon;607;2;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+52;retired;divorced;basic.4y;no;yes;no;telephone;jun;mon;111;3;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+59;retired;married;basic.4y;unknown;yes;no;telephone;jun;mon;216;3;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+26;blue-collar;married;basic.9y;no;yes;no;telephone;jun;mon;102;35;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+55;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;mon;431;1;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+31;blue-collar;married;basic.9y;no;no;no;telephone;jun;mon;19;21;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+37;technician;single;high.school;no;no;no;telephone;jun;mon;394;3;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+36;management;single;university.degree;no;no;no;telephone;jun;mon;301;6;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+54;technician;married;university.degree;unknown;no;no;telephone;jun;mon;71;4;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+24;services;single;high.school;no;yes;no;telephone;jun;mon;341;3;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+53;technician;married;professional.course;unknown;no;no;telephone;jun;mon;54;1;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+28;admin.;married;university.degree;no;yes;no;telephone;jun;mon;406;2;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+32;technician;married;professional.course;no;yes;no;telephone;jun;mon;226;2;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+57;services;divorced;high.school;no;no;no;telephone;jun;mon;168;1;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+48;technician;married;high.school;no;unknown;unknown;telephone;jun;mon;221;1;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+34;admin.;married;university.degree;no;no;no;telephone;jun;mon;703;1;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+48;unemployed;divorced;basic.4y;no;no;yes;telephone;jun;mon;119;2;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+39;services;single;high.school;unknown;no;yes;telephone;jun;mon;126;3;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+33;admin.;married;high.school;no;no;no;telephone;jun;mon;314;3;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+37;technician;single;university.degree;no;no;no;telephone;jun;mon;182;2;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+32;blue-collar;married;high.school;unknown;no;no;telephone;jun;mon;353;2;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+42;admin.;single;high.school;no;no;no;telephone;jun;mon;362;3;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+34;blue-collar;married;basic.6y;unknown;no;no;telephone;jun;mon;75;7;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+35;admin.;married;high.school;no;no;no;telephone;jun;mon;142;2;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+47;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;mon;146;3;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+42;housemaid;married;unknown;unknown;yes;no;telephone;jun;mon;345;4;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+57;management;married;university.degree;unknown;no;no;telephone;jun;mon;103;3;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+44;blue-collar;married;basic.4y;no;yes;no;telephone;jun;mon;17;25;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+47;blue-collar;married;basic.4y;no;yes;no;telephone;jun;mon;2769;4;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;yes
+49;management;married;high.school;no;yes;no;telephone;jun;mon;26;18;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+30;blue-collar;married;basic.9y;no;no;no;telephone;jun;mon;141;6;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+41;blue-collar;married;basic.9y;no;no;no;telephone;jun;mon;14;20;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+32;blue-collar;divorced;basic.9y;unknown;yes;no;telephone;jun;mon;1009;5;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+39;entrepreneur;married;high.school;no;unknown;unknown;telephone;jun;mon;440;3;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+36;blue-collar;single;university.degree;unknown;no;no;telephone;jun;mon;323;2;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+30;technician;divorced;professional.course;no;yes;no;telephone;jun;mon;80;3;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+40;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;mon;154;3;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+38;blue-collar;single;basic.6y;unknown;yes;no;telephone;jun;mon;97;6;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+51;admin.;married;high.school;no;no;no;telephone;jun;mon;368;12;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+55;management;married;university.degree;no;yes;no;telephone;jun;mon;303;5;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+36;admin.;married;university.degree;no;unknown;unknown;telephone;jun;mon;375;2;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+54;technician;married;high.school;no;no;no;telephone;jun;mon;77;5;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+32;student;single;university.degree;no;yes;no;telephone;jun;mon;295;2;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+29;blue-collar;single;high.school;unknown;no;no;telephone;jun;mon;335;3;999;0;nonexistent;1.4;94.465;-41.8;4.96;5228.1;no
+52;entrepreneur;divorced;basic.4y;no;no;no;telephone;jun;tue;69;4;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+55;admin.;divorced;university.degree;no;no;no;telephone;jun;tue;143;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+41;technician;married;university.degree;no;yes;no;telephone;jun;tue;153;4;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+39;technician;married;professional.course;no;no;no;telephone;jun;tue;83;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+36;blue-collar;single;basic.6y;no;yes;no;telephone;jun;tue;214;8;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+44;services;divorced;high.school;no;no;no;telephone;jun;tue;118;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+37;admin.;married;high.school;no;no;no;telephone;jun;tue;638;16;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+36;technician;married;professional.course;unknown;no;no;telephone;jun;tue;78;10;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+34;services;married;high.school;no;no;yes;telephone;jun;tue;222;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+50;technician;married;professional.course;no;yes;no;telephone;jun;tue;78;5;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+34;blue-collar;married;professional.course;no;no;no;telephone;jun;tue;260;4;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+34;admin.;married;university.degree;no;yes;no;telephone;jun;tue;150;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+36;services;married;high.school;unknown;no;no;telephone;jun;tue;49;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+52;management;divorced;high.school;no;no;no;telephone;jun;tue;62;4;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+45;blue-collar;divorced;basic.4y;no;yes;no;telephone;jun;tue;100;8;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+37;blue-collar;married;high.school;no;no;no;telephone;jun;tue;138;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+38;blue-collar;divorced;high.school;no;no;no;telephone;jun;tue;329;13;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+37;blue-collar;single;basic.9y;unknown;no;no;telephone;jun;tue;338;7;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+37;blue-collar;married;basic.9y;no;yes;no;telephone;jun;tue;331;4;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+30;technician;divorced;high.school;no;yes;yes;telephone;jun;tue;131;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+48;services;divorced;basic.6y;unknown;yes;no;telephone;jun;tue;319;8;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+43;technician;single;professional.course;no;no;no;telephone;jun;tue;315;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+31;services;married;high.school;no;no;no;telephone;jun;tue;37;6;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+32;technician;single;university.degree;no;yes;no;telephone;jun;tue;45;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+35;blue-collar;married;basic.9y;no;no;no;telephone;jun;tue;33;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+37;blue-collar;single;high.school;no;no;no;telephone;jun;tue;117;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+29;blue-collar;married;basic.9y;no;no;no;telephone;jun;tue;170;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+43;admin.;married;university.degree;unknown;unknown;unknown;telephone;jun;tue;104;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+31;admin.;divorced;high.school;no;yes;yes;telephone;jun;tue;287;4;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+37;technician;single;university.degree;no;yes;yes;telephone;jun;tue;43;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+54;services;married;unknown;no;no;no;telephone;jun;tue;345;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+47;blue-collar;married;basic.4y;unknown;yes;yes;telephone;jun;tue;168;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+39;blue-collar;married;basic.9y;no;no;yes;telephone;jun;tue;110;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+59;retired;single;high.school;no;no;no;telephone;jun;tue;193;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+57;technician;divorced;university.degree;no;no;yes;telephone;jun;tue;187;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+46;admin.;single;university.degree;no;yes;no;telephone;jun;tue;198;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+42;blue-collar;divorced;high.school;no;no;no;telephone;jun;tue;256;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+39;self-employed;married;basic.9y;unknown;yes;no;telephone;jun;tue;145;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+47;entrepreneur;married;professional.course;unknown;yes;no;telephone;jun;tue;78;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+50;admin.;married;high.school;no;yes;no;telephone;jun;tue;285;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+26;technician;single;professional.course;no;yes;no;telephone;jun;tue;160;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+50;admin.;married;high.school;no;no;no;telephone;jun;tue;442;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+54;management;divorced;university.degree;no;yes;no;telephone;jun;tue;183;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+46;housemaid;married;basic.4y;unknown;no;yes;telephone;jun;tue;166;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+34;admin.;married;high.school;no;no;no;telephone;jun;tue;83;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+43;blue-collar;married;basic.9y;no;yes;no;telephone;jun;tue;128;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+31;services;single;university.degree;no;yes;no;telephone;jun;tue;57;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+25;student;single;high.school;no;yes;no;telephone;jun;tue;173;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+36;blue-collar;single;basic.9y;no;no;no;telephone;jun;tue;145;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+53;admin.;married;basic.9y;no;no;no;telephone;jun;tue;116;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+55;technician;married;university.degree;no;no;no;telephone;jun;tue;126;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+51;blue-collar;married;basic.4y;no;yes;no;telephone;jun;tue;83;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+39;blue-collar;married;basic.6y;no;no;no;telephone;jun;tue;196;4;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+31;admin.;divorced;high.school;no;unknown;unknown;telephone;jun;tue;68;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+41;admin.;married;university.degree;no;yes;yes;telephone;jun;tue;75;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+38;blue-collar;single;basic.4y;no;no;no;telephone;jun;tue;123;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+28;blue-collar;single;basic.9y;no;no;no;telephone;jun;tue;138;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+44;technician;married;basic.6y;unknown;yes;no;telephone;jun;tue;98;4;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+50;services;single;basic.4y;no;yes;no;telephone;jun;tue;355;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+47;services;divorced;high.school;no;no;no;telephone;jun;tue;115;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+33;blue-collar;single;basic.4y;no;no;no;telephone;jun;tue;147;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+36;technician;married;professional.course;no;yes;no;telephone;jun;tue;133;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+30;blue-collar;divorced;basic.9y;no;no;yes;telephone;jun;tue;134;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+34;admin.;single;high.school;no;no;no;telephone;jun;tue;60;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+35;entrepreneur;married;basic.6y;no;yes;no;telephone;jun;tue;147;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+37;technician;married;professional.course;no;yes;no;telephone;jun;tue;296;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+31;blue-collar;married;professional.course;no;no;no;telephone;jun;tue;70;8;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+53;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;tue;527;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+49;blue-collar;married;basic.9y;no;no;yes;telephone;jun;tue;156;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+47;services;married;high.school;no;yes;no;telephone;jun;tue;187;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+55;admin.;married;high.school;no;yes;yes;telephone;jun;tue;269;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+48;admin.;married;high.school;unknown;yes;no;telephone;jun;tue;306;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+38;admin.;single;university.degree;unknown;no;no;telephone;jun;tue;556;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;yes
+29;admin.;single;university.degree;no;no;no;telephone;jun;tue;71;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+54;admin.;married;university.degree;no;no;no;telephone;jun;tue;483;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+53;services;unknown;unknown;no;yes;no;telephone;jun;tue;382;5;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+36;blue-collar;married;basic.4y;no;no;no;telephone;jun;tue;881;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+32;blue-collar;married;basic.6y;unknown;no;no;telephone;jun;tue;404;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+24;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;tue;218;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+27;blue-collar;married;basic.9y;no;no;no;telephone;jun;tue;121;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+28;admin.;married;high.school;no;no;no;telephone;jun;tue;98;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+37;self-employed;married;basic.9y;no;no;no;telephone;jun;tue;243;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+36;technician;married;university.degree;no;no;no;telephone;jun;tue;181;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+40;admin.;single;university.degree;unknown;no;no;telephone;jun;tue;99;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+27;self-employed;single;university.degree;no;no;no;telephone;jun;tue;139;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+25;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;tue;71;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+42;services;married;high.school;unknown;no;yes;telephone;jun;tue;214;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+36;services;divorced;university.degree;no;no;no;telephone;jun;tue;198;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+39;unemployed;married;university.degree;no;no;no;telephone;jun;tue;132;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+32;self-employed;married;professional.course;no;no;no;telephone;jun;tue;129;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+30;technician;married;high.school;unknown;no;no;telephone;jun;tue;491;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+32;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;tue;135;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+34;admin.;married;university.degree;no;yes;yes;telephone;jun;tue;72;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+30;blue-collar;single;basic.4y;no;no;no;telephone;jun;tue;285;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+50;management;single;university.degree;no;no;no;telephone;jun;tue;255;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+54;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;tue;72;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+47;housemaid;single;basic.4y;no;no;no;telephone;jun;tue;241;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+32;self-employed;married;professional.course;no;no;yes;telephone;jun;tue;705;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+56;technician;married;professional.course;unknown;no;no;telephone;jun;tue;134;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+30;admin.;single;high.school;unknown;yes;no;telephone;jun;tue;483;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+34;admin.;single;high.school;no;no;no;telephone;jun;tue;423;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+38;admin.;married;university.degree;no;yes;no;telephone;jun;tue;43;9;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+49;admin.;divorced;university.degree;no;unknown;unknown;telephone;jun;tue;23;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+35;technician;single;university.degree;no;no;no;telephone;jun;tue;48;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+45;blue-collar;single;basic.4y;unknown;no;no;telephone;jun;tue;254;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+32;unemployed;single;high.school;unknown;no;no;telephone;jun;tue;34;11;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+47;blue-collar;married;basic.6y;unknown;yes;no;telephone;jun;tue;388;9;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+36;technician;married;university.degree;no;no;no;telephone;jun;tue;107;4;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+50;management;married;high.school;unknown;yes;no;telephone;jun;tue;135;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+50;technician;married;professional.course;no;yes;yes;telephone;jun;tue;61;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+25;technician;married;high.school;no;no;no;telephone;jun;tue;157;5;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+37;blue-collar;single;basic.6y;unknown;unknown;unknown;telephone;jun;tue;82;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+31;blue-collar;married;basic.6y;no;yes;yes;telephone;jun;tue;105;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+38;admin.;single;basic.9y;no;no;no;telephone;jun;tue;98;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+45;technician;married;university.degree;no;yes;no;telephone;jun;tue;189;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+36;unemployed;married;high.school;no;yes;no;telephone;jun;tue;652;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+38;technician;single;university.degree;no;no;no;telephone;jun;tue;206;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+36;blue-collar;married;basic.9y;no;unknown;unknown;telephone;jun;tue;174;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+36;blue-collar;married;basic.9y;no;unknown;unknown;telephone;jun;tue;30;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+53;management;married;university.degree;unknown;no;no;telephone;jun;tue;68;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+45;admin.;married;high.school;no;yes;no;telephone;jun;tue;174;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+34;management;married;university.degree;no;yes;no;telephone;jun;tue;150;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+47;blue-collar;married;basic.9y;unknown;yes;no;telephone;jun;tue;123;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+49;blue-collar;married;basic.9y;unknown;no;yes;telephone;jun;tue;64;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+31;technician;single;university.degree;no;no;no;telephone;jun;tue;91;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+38;management;married;high.school;unknown;yes;no;telephone;jun;tue;77;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+57;retired;single;professional.course;no;no;yes;telephone;jun;tue;78;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+49;blue-collar;married;basic.9y;no;yes;no;telephone;jun;tue;79;31;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+51;blue-collar;married;basic.4y;unknown;yes;no;telephone;jun;tue;85;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+39;admin.;divorced;high.school;no;no;no;telephone;jun;tue;139;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+54;management;married;university.degree;no;yes;no;telephone;jun;tue;89;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+52;services;married;high.school;no;yes;no;telephone;jun;tue;168;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+46;blue-collar;married;university.degree;no;yes;yes;telephone;jun;tue;436;5;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+41;technician;married;university.degree;no;no;no;telephone;jun;tue;88;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+40;admin.;married;high.school;no;unknown;unknown;telephone;jun;tue;43;6;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+38;blue-collar;married;basic.9y;unknown;yes;no;telephone;jun;tue;156;4;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+37;blue-collar;married;high.school;no;yes;no;telephone;jun;tue;171;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+31;services;married;high.school;unknown;yes;no;telephone;jun;tue;157;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+48;blue-collar;married;basic.6y;no;yes;no;telephone;jun;tue;130;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+44;technician;divorced;professional.course;no;no;yes;telephone;jun;tue;50;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+36;technician;single;university.degree;no;yes;no;telephone;jun;tue;49;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+32;self-employed;married;basic.9y;no;unknown;unknown;telephone;jun;tue;120;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+27;entrepreneur;single;university.degree;no;no;no;telephone;jun;tue;259;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+35;blue-collar;married;basic.9y;no;yes;no;telephone;jun;tue;79;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+33;blue-collar;married;basic.9y;unknown;no;yes;telephone;jun;tue;321;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+37;technician;married;professional.course;unknown;yes;yes;telephone;jun;tue;192;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+36;technician;married;high.school;no;no;no;telephone;jun;tue;128;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+39;blue-collar;married;basic.6y;no;yes;no;telephone;jun;tue;108;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+33;entrepreneur;married;university.degree;no;yes;no;telephone;jun;tue;187;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+45;unknown;married;unknown;no;no;no;telephone;jun;tue;164;4;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+30;blue-collar;married;basic.6y;no;no;no;telephone;jun;tue;67;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+44;technician;single;unknown;no;yes;no;telephone;jun;tue;445;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+42;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;tue;41;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+32;management;single;university.degree;no;yes;no;telephone;jun;tue;344;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+37;admin.;married;high.school;no;yes;no;telephone;jun;tue;167;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+39;unemployed;married;basic.9y;unknown;yes;no;telephone;jun;tue;605;5;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+42;blue-collar;divorced;high.school;no;yes;no;telephone;jun;tue;226;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+30;technician;single;university.degree;no;no;no;telephone;jun;tue;179;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+33;unemployed;divorced;professional.course;no;yes;no;telephone;jun;tue;353;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+39;blue-collar;married;basic.9y;unknown;yes;no;telephone;jun;tue;34;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+43;technician;married;professional.course;no;no;no;telephone;jun;tue;161;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+56;housemaid;divorced;basic.4y;unknown;yes;no;telephone;jun;tue;77;5;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+38;admin.;married;university.degree;no;no;yes;telephone;jun;tue;346;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+51;blue-collar;married;basic.4y;unknown;no;yes;telephone;jun;tue;781;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;yes
+44;admin.;divorced;high.school;unknown;no;no;telephone;jun;tue;81;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+36;management;married;university.degree;no;yes;no;telephone;jun;tue;269;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+41;services;married;high.school;unknown;yes;yes;telephone;jun;tue;31;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+39;student;single;unknown;no;yes;no;telephone;jun;tue;367;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+32;technician;married;professional.course;no;yes;no;telephone;jun;tue;229;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+49;admin.;single;unknown;unknown;unknown;unknown;telephone;jun;tue;479;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+47;admin.;married;university.degree;no;no;yes;telephone;jun;tue;24;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+33;blue-collar;married;basic.9y;no;no;yes;telephone;jun;tue;16;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+47;technician;married;professional.course;no;no;no;telephone;jun;tue;88;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+37;blue-collar;married;basic.6y;unknown;no;no;telephone;jun;tue;714;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+45;admin.;divorced;university.degree;unknown;yes;no;telephone;jun;tue;205;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+38;blue-collar;married;professional.course;no;no;no;telephone;jun;tue;291;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+57;housemaid;married;basic.6y;unknown;no;no;telephone;jun;tue;986;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+57;self-employed;married;unknown;unknown;yes;no;telephone;jun;tue;279;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+31;admin.;married;high.school;no;yes;no;telephone;jun;tue;166;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+35;blue-collar;married;basic.6y;no;no;no;telephone;jun;tue;92;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+58;retired;married;basic.4y;no;yes;no;telephone;jun;tue;254;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+57;management;divorced;university.degree;unknown;yes;yes;telephone;jun;tue;236;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+30;technician;single;professional.course;no;no;no;telephone;jun;tue;19;4;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+50;admin.;married;university.degree;unknown;yes;no;telephone;jun;tue;93;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+43;unemployed;married;basic.9y;unknown;yes;no;telephone;jun;tue;200;4;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+33;technician;married;university.degree;no;no;no;telephone;jun;tue;176;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+32;admin.;single;university.degree;no;yes;no;telephone;jun;tue;1162;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+28;entrepreneur;married;basic.9y;no;yes;no;telephone;jun;tue;1848;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;yes
+30;self-employed;single;university.degree;no;no;yes;telephone;jun;tue;74;6;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+37;management;married;university.degree;no;no;no;telephone;jun;tue;490;4;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;yes
+50;services;divorced;high.school;no;no;no;telephone;jun;tue;291;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+31;blue-collar;married;basic.9y;unknown;yes;no;telephone;jun;tue;1051;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;yes
+27;housemaid;married;basic.9y;unknown;yes;no;telephone;jun;tue;614;4;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+35;services;single;high.school;unknown;yes;no;telephone;jun;tue;437;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+22;student;single;high.school;no;unknown;unknown;telephone;jun;tue;1199;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+50;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;tue;209;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+37;technician;married;high.school;unknown;yes;no;telephone;jun;tue;115;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+25;unemployed;single;high.school;unknown;yes;no;telephone;jun;tue;292;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+40;admin.;married;university.degree;no;yes;no;telephone;jun;tue;370;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+57;management;married;university.degree;unknown;yes;no;telephone;jun;tue;412;7;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+50;blue-collar;divorced;basic.9y;unknown;no;no;telephone;jun;tue;108;6;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+43;admin.;single;high.school;no;no;yes;telephone;jun;tue;495;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+60;self-employed;married;professional.course;unknown;no;no;telephone;jun;tue;247;5;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+44;technician;married;professional.course;no;yes;no;telephone;jun;tue;57;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+33;services;married;high.school;unknown;yes;no;telephone;jun;tue;1345;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;yes
+55;retired;married;professional.course;no;no;yes;telephone;jun;tue;107;4;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+45;blue-collar;married;basic.6y;unknown;no;no;telephone;jun;tue;171;4;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+33;technician;single;professional.course;no;yes;no;telephone;jun;tue;66;4;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+56;unemployed;divorced;university.degree;unknown;yes;no;telephone;jun;tue;447;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+54;technician;married;professional.course;no;yes;no;telephone;jun;tue;167;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+53;blue-collar;married;basic.9y;no;no;yes;telephone;jun;tue;668;8;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+41;admin.;divorced;high.school;no;yes;no;telephone;jun;tue;204;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+28;student;single;high.school;unknown;no;no;telephone;jun;tue;256;9;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+52;blue-collar;divorced;high.school;no;no;no;telephone;jun;tue;676;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;yes
+27;services;single;high.school;no;yes;no;telephone;jun;tue;170;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+28;technician;single;professional.course;no;no;yes;telephone;jun;tue;63;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+40;technician;married;basic.9y;unknown;yes;no;telephone;jun;tue;168;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+59;blue-collar;married;basic.6y;no;yes;no;telephone;jun;tue;133;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+41;services;married;high.school;no;yes;no;telephone;jun;tue;153;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+32;blue-collar;married;basic.9y;no;yes;yes;telephone;jun;tue;118;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+35;technician;married;professional.course;no;yes;no;telephone;jun;tue;117;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+52;technician;married;high.school;no;no;no;telephone;jun;tue;572;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+38;admin.;single;unknown;unknown;no;no;telephone;jun;tue;681;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+47;technician;married;professional.course;no;yes;no;telephone;jun;tue;59;6;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+37;services;divorced;high.school;no;yes;no;telephone;jun;tue;42;4;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+32;self-employed;married;basic.9y;no;yes;yes;telephone;jun;tue;408;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+48;blue-collar;married;unknown;unknown;yes;yes;telephone;jun;tue;127;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+39;blue-collar;married;high.school;no;yes;yes;telephone;jun;tue;314;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+33;admin.;married;university.degree;no;no;yes;telephone;jun;tue;277;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+36;entrepreneur;single;university.degree;no;no;no;telephone;jun;tue;140;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+50;entrepreneur;married;university.degree;no;no;no;telephone;jun;tue;424;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+37;admin.;single;high.school;no;yes;yes;telephone;jun;tue;159;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+30;entrepreneur;married;professional.course;no;yes;no;telephone;jun;tue;775;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;yes
+57;self-employed;married;university.degree;unknown;no;no;telephone;jun;tue;187;7;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+36;blue-collar;married;professional.course;unknown;yes;yes;telephone;jun;tue;102;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+30;self-employed;single;university.degree;no;yes;no;telephone;jun;tue;2621;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;yes
+33;admin.;married;high.school;no;no;no;telephone;jun;tue;96;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+50;admin.;married;high.school;no;yes;no;telephone;jun;tue;167;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+29;services;married;high.school;no;no;no;telephone;jun;tue;200;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+46;services;married;professional.course;no;no;no;telephone;jun;tue;75;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+22;services;single;basic.4y;no;yes;no;telephone;jun;tue;249;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+50;admin.;married;high.school;unknown;yes;no;telephone;jun;tue;85;5;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+45;management;married;university.degree;no;yes;no;telephone;jun;tue;134;7;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+47;admin.;married;university.degree;no;yes;no;telephone;jun;tue;50;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+37;technician;married;university.degree;no;yes;no;telephone;jun;tue;173;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+42;self-employed;married;unknown;no;yes;no;telephone;jun;tue;60;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+39;unemployed;married;professional.course;unknown;no;no;telephone;jun;tue;320;4;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+37;technician;married;professional.course;no;no;no;telephone;jun;tue;854;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+51;services;married;high.school;no;no;no;telephone;jun;tue;236;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+55;technician;married;basic.9y;no;yes;no;telephone;jun;tue;183;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+28;admin.;married;high.school;no;yes;no;telephone;jun;tue;185;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+43;technician;married;professional.course;no;yes;no;telephone;jun;tue;41;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+40;services;married;basic.6y;unknown;no;yes;telephone;jun;tue;39;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+32;services;married;basic.9y;no;no;no;telephone;jun;tue;138;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+43;admin.;married;university.degree;no;yes;no;telephone;jun;tue;411;6;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+56;retired;married;basic.4y;no;no;no;telephone;jun;tue;394;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+26;blue-collar;married;basic.9y;no;yes;no;telephone;jun;tue;209;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+26;admin.;married;high.school;no;yes;no;telephone;jun;tue;266;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+36;self-employed;married;university.degree;no;yes;no;telephone;jun;tue;134;7;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+38;admin.;married;university.degree;no;no;no;telephone;jun;tue;311;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+47;blue-collar;married;unknown;unknown;no;no;telephone;jun;tue;705;5;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+28;blue-collar;married;basic.6y;unknown;yes;no;telephone;jun;tue;89;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+39;admin.;married;high.school;no;no;no;telephone;jun;tue;93;6;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+50;management;married;basic.4y;unknown;no;no;telephone;jun;tue;847;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+40;admin.;married;high.school;unknown;no;no;telephone;jun;tue;675;5;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+50;housemaid;divorced;basic.4y;unknown;yes;yes;telephone;jun;tue;273;27;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+33;admin.;single;high.school;unknown;no;yes;telephone;jun;tue;162;7;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+54;admin.;divorced;university.degree;no;no;no;telephone;jun;tue;213;4;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+29;admin.;single;university.degree;no;no;no;telephone;jun;tue;641;6;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+33;admin.;single;university.degree;no;yes;no;telephone;jun;tue;61;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+29;student;married;high.school;no;no;yes;telephone;jun;tue;136;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+27;technician;single;high.school;no;no;no;telephone;jun;tue;187;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+57;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;tue;332;5;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+34;entrepreneur;single;professional.course;no;no;no;telephone;jun;tue;76;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+28;services;single;high.school;no;no;no;telephone;jun;tue;406;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+35;admin.;married;university.degree;no;no;yes;telephone;jun;tue;544;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+35;self-employed;married;basic.9y;no;yes;no;telephone;jun;tue;363;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+50;blue-collar;single;basic.9y;unknown;no;no;telephone;jun;tue;756;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+45;blue-collar;married;basic.6y;unknown;yes;no;telephone;jun;tue;117;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+40;entrepreneur;married;basic.4y;unknown;yes;no;telephone;jun;tue;76;6;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+41;management;married;basic.6y;no;no;yes;telephone;jun;tue;271;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+58;admin.;single;professional.course;unknown;no;no;telephone;jun;tue;203;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+36;blue-collar;married;university.degree;unknown;no;no;telephone;jun;tue;338;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+36;admin.;single;university.degree;no;no;no;telephone;jun;tue;70;10;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+37;admin.;married;university.degree;no;no;no;telephone;jun;tue;198;6;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+37;technician;married;high.school;no;yes;no;telephone;jun;tue;398;4;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+42;admin.;married;high.school;unknown;no;no;telephone;jun;tue;956;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+54;technician;married;professional.course;unknown;yes;yes;telephone;jun;tue;76;4;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+39;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;tue;264;16;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+39;admin.;married;university.degree;no;no;no;telephone;jun;tue;979;9;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+30;blue-collar;married;basic.4y;no;no;no;telephone;jun;tue;89;4;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+39;entrepreneur;married;high.school;no;no;no;telephone;jun;tue;135;6;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+40;services;single;high.school;no;no;no;telephone;jun;tue;420;4;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+37;technician;single;high.school;unknown;no;no;telephone;jun;tue;548;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+52;unemployed;married;high.school;no;yes;no;telephone;jun;tue;235;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+56;admin.;married;unknown;no;yes;no;telephone;jun;tue;87;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+43;blue-collar;married;basic.6y;no;yes;no;telephone;jun;tue;169;4;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+31;management;married;high.school;no;yes;yes;telephone;jun;tue;343;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+42;unemployed;married;professional.course;no;yes;no;telephone;jun;tue;88;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+26;admin.;single;basic.4y;no;yes;yes;telephone;jun;tue;68;6;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+39;services;married;high.school;no;no;no;telephone;jun;tue;77;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+42;management;married;basic.9y;no;yes;no;telephone;jun;tue;116;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+44;services;single;high.school;no;no;no;telephone;jun;tue;363;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+30;blue-collar;divorced;basic.9y;no;yes;no;telephone;jun;tue;116;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+42;blue-collar;married;basic.6y;unknown;no;no;telephone;jun;tue;311;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+45;unknown;married;unknown;unknown;yes;yes;telephone;jun;tue;138;5;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+44;entrepreneur;married;basic.4y;unknown;no;no;telephone;jun;tue;48;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+44;blue-collar;married;high.school;unknown;no;no;telephone;jun;tue;390;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+28;management;married;high.school;unknown;no;no;telephone;jun;tue;61;6;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+45;blue-collar;married;basic.4y;unknown;no;yes;telephone;jun;tue;65;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+35;unemployed;divorced;basic.4y;no;yes;yes;telephone;jun;tue;637;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+37;technician;single;university.degree;no;yes;no;telephone;jun;tue;117;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+24;admin.;single;university.degree;no;yes;no;telephone;jun;tue;128;21;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+30;technician;married;university.degree;unknown;no;no;telephone;jun;tue;130;6;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+43;blue-collar;married;basic.6y;unknown;yes;yes;telephone;jun;tue;193;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+32;technician;divorced;professional.course;no;yes;no;telephone;jun;tue;269;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+36;admin.;single;high.school;no;yes;no;telephone;jun;tue;150;7;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+44;admin.;divorced;high.school;no;no;no;telephone;jun;tue;132;4;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+46;blue-collar;divorced;basic.6y;no;yes;no;telephone;jun;tue;1208;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+45;management;married;university.degree;no;yes;no;telephone;jun;tue;228;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+29;technician;divorced;university.degree;no;no;yes;telephone;jun;tue;585;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+51;blue-collar;married;basic.4y;unknown;yes;no;telephone;jun;tue;334;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+37;blue-collar;single;university.degree;no;no;no;telephone;jun;tue;229;7;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+55;housemaid;married;university.degree;no;yes;no;telephone;jun;tue;441;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+38;blue-collar;divorced;basic.6y;no;yes;no;telephone;jun;wed;60;6;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+59;admin.;married;university.degree;no;yes;no;telephone;jun;wed;47;2;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+32;self-employed;divorced;professional.course;unknown;yes;no;telephone;jun;wed;235;3;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+58;blue-collar;married;high.school;no;no;no;telephone;jun;wed;270;3;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+32;blue-collar;married;basic.9y;unknown;yes;no;telephone;jun;wed;192;5;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+54;blue-collar;married;high.school;no;yes;yes;telephone;jun;wed;26;7;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+38;unemployed;married;basic.9y;unknown;yes;no;telephone;jun;wed;89;3;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+49;blue-collar;married;basic.4y;unknown;yes;no;telephone;jun;wed;61;7;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+43;services;married;high.school;no;no;no;telephone;jun;wed;386;5;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+36;admin.;divorced;high.school;no;yes;no;telephone;jun;wed;54;4;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+52;admin.;married;university.degree;unknown;yes;no;telephone;jun;wed;272;3;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+43;technician;single;professional.course;no;unknown;unknown;telephone;jun;wed;35;3;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+28;admin.;single;high.school;no;no;no;telephone;jun;wed;284;8;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+46;technician;divorced;professional.course;no;no;no;telephone;jun;wed;53;2;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+42;housemaid;married;unknown;unknown;yes;no;telephone;jun;wed;311;5;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+31;blue-collar;married;basic.9y;no;no;yes;telephone;jun;wed;245;2;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+38;blue-collar;married;basic.9y;no;no;yes;telephone;jun;wed;151;3;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+50;services;married;high.school;no;yes;yes;telephone;jun;wed;64;6;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+39;services;single;high.school;no;yes;no;telephone;jun;wed;205;3;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+34;technician;married;university.degree;no;yes;no;telephone;jun;wed;250;2;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+30;management;single;university.degree;no;yes;no;telephone;jun;wed;66;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+51;technician;married;high.school;no;no;yes;telephone;jun;wed;137;6;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+43;admin.;married;high.school;unknown;no;no;telephone;jun;wed;30;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+26;admin.;single;high.school;no;no;no;telephone;jun;wed;72;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+35;admin.;married;university.degree;no;yes;no;telephone;jun;wed;284;4;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+24;entrepreneur;married;university.degree;no;yes;yes;telephone;jun;wed;126;4;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+51;blue-collar;divorced;basic.4y;no;no;no;telephone;jun;wed;120;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+31;unemployed;divorced;basic.4y;no;yes;no;telephone;jun;wed;48;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+45;entrepreneur;married;university.degree;unknown;no;no;telephone;jun;wed;262;9;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+30;student;single;university.degree;no;yes;no;telephone;jun;wed;1062;4;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+46;unemployed;divorced;basic.9y;no;no;no;telephone;jun;wed;283;3;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+44;admin.;single;high.school;no;no;no;telephone;jun;wed;295;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+26;blue-collar;single;unknown;no;yes;yes;telephone;jun;wed;203;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+38;blue-collar;married;basic.6y;no;no;no;telephone;jun;wed;37;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+30;admin.;married;university.degree;no;no;yes;telephone;jun;wed;18;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+33;blue-collar;single;basic.9y;no;yes;no;telephone;jun;wed;18;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+31;blue-collar;single;basic.9y;no;no;no;telephone;jun;wed;350;7;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+47;blue-collar;single;basic.4y;unknown;no;no;telephone;jun;wed;190;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+57;retired;married;unknown;unknown;yes;no;telephone;jun;wed;54;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+36;blue-collar;single;high.school;no;yes;no;telephone;jun;wed;835;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;yes
+30;services;married;high.school;no;yes;no;telephone;jun;wed;421;2;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+40;blue-collar;divorced;basic.9y;unknown;unknown;unknown;telephone;jun;wed;104;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+32;services;married;professional.course;no;unknown;unknown;telephone;jun;wed;164;3;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+45;entrepreneur;married;unknown;no;no;no;telephone;jun;wed;89;5;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+29;technician;single;high.school;no;no;no;telephone;jun;wed;112;3;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+37;management;married;university.degree;no;yes;no;telephone;jun;wed;744;3;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+45;blue-collar;married;unknown;unknown;no;no;telephone;jun;wed;503;11;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+48;technician;married;professional.course;unknown;yes;no;telephone;jun;wed;321;2;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+35;admin.;divorced;basic.9y;unknown;yes;no;telephone;jun;wed;24;10;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+34;admin.;married;university.degree;no;yes;no;telephone;jun;wed;102;4;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+42;technician;married;basic.6y;no;yes;no;telephone;jun;wed;261;3;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+32;admin.;single;high.school;unknown;no;no;telephone;jun;wed;213;5;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+31;technician;married;professional.course;no;no;no;telephone;jun;wed;371;2;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;yes
+38;admin.;single;university.degree;no;yes;no;telephone;jun;wed;190;2;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+30;blue-collar;married;basic.6y;no;no;no;telephone;jun;wed;114;4;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+54;housemaid;married;basic.4y;unknown;no;no;telephone;jun;wed;221;5;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+38;admin.;single;basic.9y;unknown;yes;no;telephone;jun;wed;247;5;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+25;blue-collar;single;basic.9y;no;no;no;telephone;jun;wed;680;2;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+25;services;single;professional.course;no;no;no;telephone;jun;wed;185;4;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+51;unemployed;divorced;university.degree;unknown;yes;yes;telephone;jun;wed;110;2;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+35;blue-collar;single;basic.4y;unknown;no;no;telephone;jun;wed;172;2;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+28;admin.;single;university.degree;no;no;no;telephone;jun;wed;156;3;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+47;services;married;high.school;no;unknown;unknown;telephone;jun;wed;347;4;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+35;technician;single;professional.course;no;no;no;telephone;jun;wed;394;3;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+51;blue-collar;single;basic.9y;unknown;yes;no;telephone;jun;wed;573;2;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+28;technician;single;university.degree;unknown;no;no;telephone;jun;wed;262;2;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+34;services;married;basic.9y;no;no;no;telephone;jun;wed;37;3;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+27;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;wed;72;3;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+31;services;married;high.school;no;yes;no;telephone;jun;wed;417;3;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+35;technician;married;professional.course;no;no;no;telephone;jun;wed;1528;2;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;yes
+56;management;married;university.degree;no;no;no;telephone;jun;wed;154;4;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+31;services;single;basic.6y;no;no;no;telephone;jun;wed;533;3;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+41;blue-collar;divorced;basic.4y;no;yes;no;telephone;jun;wed;122;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+58;blue-collar;married;basic.4y;unknown;yes;no;telephone;jun;wed;23;3;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+38;blue-collar;married;basic.6y;unknown;no;yes;telephone;jun;wed;82;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+47;services;married;high.school;unknown;yes;yes;telephone;jun;wed;55;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+46;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;wed;67;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+56;retired;married;high.school;unknown;no;no;telephone;jun;wed;83;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+47;services;married;high.school;unknown;no;no;telephone;jun;wed;311;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+33;admin.;single;high.school;no;no;yes;telephone;jun;wed;113;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+55;technician;married;professional.course;unknown;yes;no;telephone;jun;wed;59;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+47;services;married;high.school;unknown;yes;no;telephone;jun;wed;551;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+56;retired;married;high.school;unknown;yes;no;telephone;jun;wed;367;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+32;blue-collar;married;high.school;no;no;no;telephone;jun;wed;220;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+41;blue-collar;married;basic.6y;no;no;no;telephone;jun;wed;15;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+52;self-employed;married;professional.course;unknown;no;yes;telephone;jun;wed;56;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+43;blue-collar;married;basic.4y;unknown;yes;no;telephone;jun;wed;173;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+29;admin.;married;high.school;no;no;yes;telephone;jun;wed;97;8;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+41;admin.;divorced;high.school;no;yes;no;telephone;jun;wed;199;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+23;blue-collar;married;professional.course;unknown;no;no;telephone;jun;wed;94;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+51;blue-collar;divorced;unknown;unknown;no;no;telephone;jun;wed;15;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+36;services;single;high.school;no;no;no;telephone;jun;wed;142;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+51;blue-collar;divorced;unknown;unknown;no;no;telephone;jun;wed;220;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+35;technician;married;professional.course;no;no;no;telephone;jun;wed;417;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+43;blue-collar;married;basic.6y;no;no;no;telephone;jun;wed;192;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+32;services;married;high.school;no;yes;no;telephone;jun;wed;443;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+41;services;married;basic.9y;no;yes;no;telephone;jun;wed;115;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+43;self-employed;married;university.degree;unknown;yes;yes;telephone;jun;wed;1487;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+54;retired;single;basic.4y;unknown;no;no;telephone;jun;wed;68;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+25;admin.;single;high.school;no;yes;no;telephone;jun;wed;54;3;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+36;admin.;married;high.school;no;yes;no;telephone;jun;wed;159;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+36;admin.;married;high.school;no;yes;no;telephone;jun;wed;335;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+42;admin.;divorced;university.degree;no;no;no;telephone;jun;wed;104;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+35;entrepreneur;single;professional.course;no;no;no;telephone;jun;wed;236;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+50;management;married;university.degree;no;yes;no;telephone;jun;wed;300;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+42;admin.;divorced;university.degree;no;yes;no;telephone;jun;wed;163;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+32;admin.;married;high.school;no;yes;no;telephone;jun;wed;156;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+32;admin.;married;high.school;no;no;no;telephone;jun;wed;103;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+51;services;married;high.school;unknown;no;yes;telephone;jun;wed;269;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+39;blue-collar;divorced;basic.9y;no;yes;no;telephone;jun;wed;187;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+38;blue-collar;married;basic.9y;unknown;yes;no;telephone;jun;wed;41;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+43;blue-collar;married;basic.6y;no;yes;no;telephone;jun;wed;1540;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;yes
+39;blue-collar;divorced;basic.9y;no;yes;no;telephone;jun;wed;310;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+41;services;married;basic.9y;no;yes;no;telephone;jun;wed;147;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+34;admin.;single;high.school;no;no;yes;telephone;jun;wed;129;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+36;admin.;married;high.school;no;yes;yes;telephone;jun;wed;208;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+28;services;single;high.school;no;no;no;telephone;jun;wed;124;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+49;housemaid;divorced;basic.4y;no;no;no;telephone;jun;wed;67;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+31;blue-collar;married;basic.9y;no;no;no;telephone;jun;wed;1218;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+25;housemaid;married;basic.4y;no;no;no;telephone;jun;wed;362;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+29;management;married;university.degree;no;no;no;telephone;jun;wed;973;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;yes
+56;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;wed;36;4;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+54;blue-collar;divorced;basic.4y;unknown;no;yes;telephone;jun;wed;138;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+31;admin.;married;high.school;no;yes;no;telephone;jun;wed;132;6;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+34;blue-collar;married;professional.course;unknown;no;no;telephone;jun;wed;1009;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+27;technician;married;university.degree;no;yes;yes;telephone;jun;wed;55;10;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+31;admin.;married;high.school;no;yes;no;telephone;jun;wed;105;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+51;blue-collar;divorced;unknown;unknown;unknown;unknown;telephone;jun;wed;339;2;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+28;admin.;single;university.degree;no;yes;no;telephone;jun;wed;355;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+28;management;single;basic.9y;no;no;no;telephone;jun;wed;466;2;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+26;blue-collar;married;basic.4y;no;no;no;telephone;jun;wed;94;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+25;services;married;high.school;no;yes;no;telephone;jun;wed;227;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+39;technician;married;professional.course;unknown;yes;yes;telephone;jun;wed;65;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+28;blue-collar;married;basic.9y;no;no;no;telephone;jun;wed;387;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+33;admin.;married;university.degree;no;yes;no;telephone;jun;wed;379;5;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+39;technician;married;professional.course;unknown;no;no;telephone;jun;wed;401;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+55;management;single;basic.4y;no;no;no;telephone;jun;wed;205;4;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+29;management;married;university.degree;no;no;no;telephone;jun;wed;332;2;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+51;management;married;university.degree;unknown;yes;yes;telephone;jun;wed;567;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+28;blue-collar;married;basic.9y;no;yes;no;telephone;jun;wed;200;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+24;blue-collar;single;basic.4y;no;no;no;telephone;jun;wed;537;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;yes
+24;blue-collar;single;basic.4y;no;no;no;telephone;jun;wed;476;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+45;blue-collar;divorced;unknown;unknown;yes;no;telephone;jun;wed;29;2;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+20;services;single;high.school;no;yes;no;telephone;jun;wed;290;2;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+34;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;wed;74;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+25;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;wed;76;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+29;self-employed;married;professional.course;no;no;no;telephone;jun;wed;26;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+29;blue-collar;married;basic.9y;no;unknown;unknown;telephone;jun;wed;27;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+29;self-employed;married;professional.course;no;no;no;telephone;jun;wed;632;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+32;blue-collar;married;basic.6y;no;no;no;telephone;jun;wed;316;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+32;blue-collar;married;basic.6y;no;yes;yes;telephone;jun;wed;440;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+32;admin.;single;university.degree;no;no;no;telephone;jun;wed;52;6;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+38;blue-collar;single;university.degree;unknown;yes;no;telephone;jun;wed;59;2;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+29;blue-collar;married;unknown;unknown;no;no;telephone;jun;wed;243;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+37;technician;single;university.degree;no;no;no;telephone;jun;wed;190;3;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+36;blue-collar;married;basic.9y;no;no;no;telephone;jun;wed;81;2;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+55;management;single;basic.4y;no;yes;no;telephone;jun;wed;58;3;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+29;admin.;single;high.school;no;yes;no;telephone;jun;wed;356;2;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+43;blue-collar;married;basic.4y;unknown;yes;yes;telephone;jun;wed;320;3;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+24;services;single;high.school;no;yes;no;telephone;jun;wed;221;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+24;services;single;high.school;no;yes;no;telephone;jun;wed;453;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+55;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;wed;345;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+38;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;wed;146;3;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+40;admin.;married;university.degree;no;no;no;telephone;jun;wed;248;29;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+41;services;married;basic.9y;no;yes;no;telephone;jun;wed;324;2;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+29;entrepreneur;single;professional.course;no;no;no;telephone;jun;wed;609;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+58;management;unknown;university.degree;no;no;no;telephone;jun;wed;16;9;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+28;admin.;married;university.degree;no;no;no;telephone;jun;wed;392;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+57;unemployed;married;basic.9y;no;yes;no;telephone;jun;wed;422;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+57;housemaid;married;basic.4y;no;no;no;telephone;jun;wed;101;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+33;services;married;basic.4y;no;unknown;unknown;telephone;jun;wed;577;4;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+43;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;wed;319;2;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+38;blue-collar;married;professional.course;no;no;no;telephone;jun;wed;112;3;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+56;technician;single;university.degree;no;yes;no;telephone;jun;wed;308;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+52;services;single;high.school;no;yes;no;telephone;jun;wed;43;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+25;technician;married;professional.course;no;yes;no;telephone;jun;wed;149;2;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+31;housemaid;married;professional.course;no;yes;no;telephone;jun;wed;36;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+52;services;single;high.school;no;yes;no;telephone;jun;wed;324;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+36;admin.;married;high.school;unknown;yes;no;telephone;jun;wed;100;4;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+32;student;single;university.degree;no;yes;no;telephone;jun;wed;209;12;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+26;technician;single;high.school;no;unknown;unknown;telephone;jun;wed;105;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+41;services;married;high.school;no;unknown;unknown;telephone;jun;wed;707;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;yes
+31;entrepreneur;divorced;high.school;no;yes;no;telephone;jun;wed;119;3;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+28;management;married;university.degree;no;yes;no;telephone;jun;wed;695;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;yes
+32;blue-collar;divorced;basic.9y;no;no;no;telephone;jun;wed;13;11;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+41;technician;single;professional.course;no;yes;no;telephone;jun;wed;1255;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;yes
+29;technician;divorced;professional.course;no;yes;no;telephone;jun;wed;11;19;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+39;management;married;basic.9y;no;no;no;telephone;jun;wed;255;2;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+42;management;married;university.degree;no;no;no;telephone;jun;wed;50;2;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+50;unemployed;married;high.school;no;no;no;telephone;jun;wed;373;2;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+34;blue-collar;married;high.school;no;no;no;telephone;jun;wed;18;6;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+32;blue-collar;single;high.school;no;yes;no;telephone;jun;wed;108;2;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+44;entrepreneur;married;professional.course;no;no;yes;telephone;jun;wed;307;14;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+42;retired;married;professional.course;unknown;yes;no;telephone;jun;wed;142;17;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+48;technician;divorced;university.degree;no;yes;no;telephone;jun;wed;78;3;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+41;self-employed;married;basic.9y;no;yes;no;telephone;jun;wed;376;7;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+27;management;single;high.school;no;unknown;unknown;telephone;jun;wed;155;2;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+32;technician;married;professional.course;no;no;no;telephone;jun;wed;188;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+55;blue-collar;married;basic.4y;unknown;yes;no;telephone;jun;wed;326;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+27;admin.;single;university.degree;no;no;no;telephone;jun;wed;443;7;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+41;admin.;married;university.degree;no;yes;yes;telephone;jun;wed;802;3;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+43;blue-collar;married;basic.4y;unknown;yes;no;telephone;jun;wed;64;2;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+54;unemployed;married;high.school;no;no;no;telephone;jun;wed;36;16;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+52;blue-collar;divorced;high.school;no;no;no;telephone;jun;wed;18;5;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+55;management;single;basic.4y;no;yes;no;telephone;jun;wed;89;4;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+38;blue-collar;married;basic.9y;no;no;no;telephone;jun;wed;359;2;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+42;blue-collar;married;high.school;unknown;no;no;telephone;jun;wed;257;2;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+56;retired;married;basic.4y;no;yes;no;telephone;jun;wed;19;30;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+41;services;married;basic.9y;no;yes;no;telephone;jun;wed;404;2;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+31;services;married;high.school;unknown;yes;yes;telephone;jun;wed;146;2;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+29;blue-collar;married;unknown;unknown;no;no;telephone;jun;wed;234;2;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+40;blue-collar;married;basic.9y;no;no;no;telephone;jun;wed;13;14;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+25;services;single;high.school;no;no;no;telephone;jun;wed;297;3;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+46;entrepreneur;married;university.degree;unknown;unknown;unknown;telephone;jun;wed;156;9;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+53;management;divorced;university.degree;no;unknown;unknown;telephone;jun;wed;636;12;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+42;admin.;married;basic.6y;no;yes;no;telephone;jun;wed;300;3;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+59;retired;married;basic.9y;no;yes;no;telephone;jun;wed;2093;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;yes
+24;technician;single;professional.course;no;yes;no;telephone;jun;wed;37;2;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+44;admin.;single;high.school;no;no;no;telephone;jun;wed;61;3;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+43;blue-collar;married;basic.9y;no;no;no;telephone;jun;wed;793;3;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+31;blue-collar;married;basic.9y;no;yes;no;telephone;jun;wed;704;4;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;yes
+28;technician;single;professional.course;no;yes;no;telephone;jun;wed;1195;2;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+33;blue-collar;married;basic.4y;no;yes;no;telephone;jun;wed;61;23;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+47;admin.;married;basic.9y;no;yes;no;telephone;jun;wed;96;3;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+38;management;married;unknown;unknown;no;no;telephone;jun;wed;1066;9;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;yes
+35;admin.;divorced;university.degree;no;yes;no;telephone;jun;wed;399;2;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+47;entrepreneur;married;professional.course;unknown;no;yes;telephone;jun;wed;140;3;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+25;blue-collar;married;basic.9y;no;yes;no;telephone;jun;wed;121;2;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+26;technician;single;professional.course;no;no;no;telephone;jun;wed;84;5;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+39;blue-collar;married;basic.4y;unknown;yes;no;telephone;jun;wed;87;4;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+42;entrepreneur;married;professional.course;no;no;no;telephone;jun;wed;108;2;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+43;management;married;high.school;no;no;no;telephone;jun;wed;48;10;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+29;technician;married;professional.course;no;no;no;telephone;jun;wed;129;10;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+50;management;married;university.degree;unknown;no;no;telephone;jun;wed;242;2;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+29;blue-collar;married;professional.course;no;no;no;telephone;jun;wed;230;3;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+45;technician;divorced;professional.course;no;yes;no;telephone;jun;wed;37;3;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+36;blue-collar;married;unknown;no;yes;yes;telephone;jun;wed;130;6;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+38;blue-collar;married;basic.4y;no;yes;no;telephone;jun;wed;25;41;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+36;services;married;high.school;unknown;yes;yes;telephone;jun;wed;57;2;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+33;housemaid;married;high.school;no;unknown;unknown;telephone;jun;wed;154;2;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+33;entrepreneur;married;university.degree;no;yes;yes;telephone;jun;wed;77;2;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+44;blue-collar;married;basic.4y;unknown;no;yes;telephone;jun;wed;127;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+33;blue-collar;married;basic.4y;no;yes;no;telephone;jun;wed;313;2;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+43;management;divorced;university.degree;no;no;no;telephone;jun;wed;114;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+39;blue-collar;divorced;basic.9y;no;yes;no;telephone;jun;wed;119;2;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+36;admin.;single;university.degree;no;no;no;telephone;jun;wed;305;6;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+31;services;single;high.school;no;no;no;telephone;jun;wed;49;2;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+49;technician;married;professional.course;unknown;yes;no;telephone;jun;wed;429;13;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+44;blue-collar;married;high.school;unknown;yes;no;telephone;jun;wed;51;4;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+51;management;married;high.school;no;no;no;telephone;jun;wed;99;3;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+28;management;married;university.degree;no;no;no;telephone;jun;wed;771;2;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;yes
+57;blue-collar;divorced;unknown;unknown;unknown;unknown;telephone;jun;wed;41;8;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+41;blue-collar;married;basic.9y;no;no;no;telephone;jun;wed;378;2;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+49;unknown;married;basic.6y;no;no;no;telephone;jun;wed;152;9;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+44;technician;married;high.school;no;yes;yes;telephone;jun;wed;491;3;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+57;retired;divorced;professional.course;no;no;no;telephone;jun;wed;203;1;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+36;services;married;high.school;unknown;no;no;telephone;jun;wed;90;3;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+49;admin.;married;high.school;no;yes;no;telephone;jun;wed;135;3;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+36;blue-collar;married;high.school;no;no;no;telephone;jun;wed;626;5;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+51;management;married;university.degree;no;no;no;telephone;jun;wed;16;17;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+45;admin.;married;high.school;no;no;no;telephone;jun;wed;125;8;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+30;entrepreneur;married;high.school;no;unknown;unknown;telephone;jun;wed;120;8;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+46;admin.;married;basic.9y;unknown;yes;no;telephone;jun;wed;16;14;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+43;blue-collar;single;basic.9y;no;yes;no;telephone;jun;wed;354;21;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+23;blue-collar;single;basic.9y;no;yes;no;telephone;jun;wed;507;2;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+50;technician;married;professional.course;unknown;yes;no;telephone;jun;wed;18;20;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+41;admin.;single;high.school;unknown;yes;no;telephone;jun;wed;90;4;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+26;admin.;single;high.school;no;no;no;telephone;jun;wed;140;2;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+47;blue-collar;married;basic.6y;unknown;unknown;unknown;telephone;jun;wed;15;8;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+52;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;wed;23;7;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+33;self-employed;married;university.degree;no;no;no;telephone;jun;wed;113;2;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+28;admin.;single;university.degree;no;yes;no;telephone;jun;wed;249;5;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+28;blue-collar;married;unknown;unknown;no;no;telephone;jun;wed;445;3;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+42;blue-collar;married;unknown;unknown;no;no;telephone;jun;wed;82;3;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+28;blue-collar;married;basic.6y;no;no;no;telephone;jun;wed;1060;5;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;yes
+54;management;married;basic.6y;no;no;no;telephone;jun;wed;255;3;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+35;admin.;married;high.school;no;yes;no;telephone;jun;wed;55;2;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+60;admin.;married;university.degree;unknown;no;no;telephone;jun;wed;521;11;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+47;services;married;high.school;unknown;yes;yes;telephone;jun;wed;161;2;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+60;retired;married;high.school;no;yes;no;telephone;jun;wed;340;3;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+29;management;single;university.degree;unknown;yes;no;telephone;jun;wed;40;3;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+49;technician;married;high.school;no;no;no;telephone;jun;wed;156;3;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+56;retired;married;basic.4y;no;no;no;telephone;jun;wed;375;2;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+33;admin.;married;high.school;no;no;no;telephone;jun;wed;43;4;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+28;student;single;high.school;no;yes;yes;telephone;jun;wed;604;6;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;no
+60;admin.;married;university.degree;no;no;no;telephone;jun;wed;1574;3;999;0;nonexistent;1.4;94.465;-41.8;4.962;5228.1;yes
+34;admin.;married;high.school;no;no;no;telephone;jun;thu;29;11;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+36;blue-collar;married;basic.9y;unknown;yes;no;telephone;jun;thu;102;13;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+39;management;single;university.degree;no;yes;no;telephone;jun;thu;160;6;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+40;admin.;single;university.degree;no;no;no;telephone;jun;thu;136;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+56;entrepreneur;married;university.degree;no;yes;yes;telephone;jun;thu;82;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+33;admin.;single;professional.course;no;no;no;telephone;jun;thu;122;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+40;admin.;married;basic.9y;no;no;no;telephone;jun;thu;185;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+58;entrepreneur;married;basic.4y;no;no;no;telephone;jun;thu;147;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+40;blue-collar;divorced;basic.9y;no;no;no;telephone;jun;thu;575;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+32;blue-collar;married;basic.6y;unknown;yes;no;telephone;jun;thu;39;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+37;technician;single;high.school;unknown;no;no;telephone;jun;thu;675;5;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+46;admin.;single;university.degree;no;yes;no;telephone;jun;thu;172;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+49;services;married;high.school;unknown;no;no;telephone;jun;thu;97;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+26;admin.;single;university.degree;no;no;no;telephone;jun;thu;394;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+31;technician;single;professional.course;unknown;no;yes;telephone;jun;thu;127;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+36;student;single;basic.9y;no;yes;no;telephone;jun;thu;176;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+32;technician;married;university.degree;no;no;no;telephone;jun;thu;37;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+34;blue-collar;married;basic.9y;unknown;yes;no;telephone;jun;thu;266;4;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+35;student;single;university.degree;unknown;no;no;telephone;jun;thu;618;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;yes
+59;retired;married;basic.9y;no;no;no;telephone;jun;thu;297;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+47;management;divorced;university.degree;no;no;no;telephone;jun;thu;593;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+46;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;thu;446;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+41;self-employed;married;high.school;no;no;no;telephone;jun;thu;340;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+42;blue-collar;married;basic.6y;unknown;yes;no;telephone;jun;thu;108;4;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+39;admin.;married;professional.course;no;unknown;unknown;telephone;jun;thu;638;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+46;blue-collar;divorced;basic.6y;no;unknown;unknown;telephone;jun;thu;45;9;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+27;admin.;married;university.degree;no;unknown;unknown;telephone;jun;thu;240;6;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+49;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;thu;70;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+50;technician;married;professional.course;unknown;no;no;telephone;jun;thu;64;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+49;services;married;high.school;unknown;no;no;telephone;jun;thu;139;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+39;technician;single;professional.course;unknown;no;no;telephone;jun;thu;820;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+47;admin.;divorced;high.school;no;no;no;telephone;jun;thu;149;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+30;blue-collar;married;basic.9y;no;no;no;telephone;jun;thu;348;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+35;blue-collar;married;unknown;no;no;no;telephone;jun;thu;71;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+40;admin.;married;professional.course;unknown;no;no;telephone;jun;thu;168;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+56;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;thu;573;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+40;management;divorced;university.degree;unknown;yes;no;telephone;jun;thu;209;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+30;admin.;married;university.degree;no;no;no;telephone;jun;thu;446;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+33;self-employed;single;university.degree;no;no;no;telephone;jun;thu;111;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+35;blue-collar;married;basic.6y;no;no;no;telephone;jun;thu;34;31;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+58;self-employed;divorced;professional.course;no;no;no;telephone;jun;thu;197;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+47;admin.;divorced;high.school;no;yes;no;telephone;jun;thu;1224;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;yes
+46;blue-collar;married;basic.6y;no;no;no;telephone;jun;thu;144;10;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+53;services;married;high.school;unknown;yes;no;telephone;jun;thu;75;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+58;self-employed;divorced;professional.course;no;yes;no;telephone;jun;thu;430;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+49;housemaid;single;high.school;unknown;no;no;telephone;jun;thu;32;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+43;services;married;high.school;no;yes;no;telephone;jun;thu;268;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+34;services;divorced;basic.9y;unknown;no;no;telephone;jun;thu;73;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+41;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;thu;203;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+47;admin.;married;professional.course;no;no;no;telephone;jun;thu;252;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+42;unemployed;married;high.school;unknown;yes;yes;telephone;jun;thu;188;5;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+49;services;married;high.school;no;no;no;telephone;jun;thu;395;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+54;retired;divorced;basic.4y;no;no;no;telephone;jun;thu;170;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+41;services;divorced;basic.9y;no;no;no;telephone;jun;thu;147;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+36;admin.;married;university.degree;no;yes;no;telephone;jun;thu;127;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+51;technician;married;professional.course;no;yes;no;telephone;jun;thu;22;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+41;unemployed;married;professional.course;no;yes;no;telephone;jun;thu;109;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+42;technician;married;high.school;no;no;no;telephone;jun;thu;677;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+52;management;divorced;university.degree;no;no;no;telephone;jun;thu;167;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+29;admin.;married;university.degree;no;no;yes;telephone;jun;thu;105;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+46;services;married;basic.9y;no;no;no;telephone;jun;thu;57;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+42;technician;single;high.school;no;no;no;telephone;jun;thu;220;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+35;self-employed;married;basic.4y;unknown;no;no;telephone;jun;thu;140;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+48;admin.;single;university.degree;no;yes;no;telephone;jun;thu;1082;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+27;technician;single;professional.course;no;no;no;telephone;jun;thu;248;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+32;self-employed;single;high.school;no;no;no;telephone;jun;thu;11;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+45;blue-collar;married;basic.9y;unknown;yes;yes;telephone;jun;thu;93;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+35;admin.;married;university.degree;no;no;no;telephone;jun;thu;161;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+32;services;married;high.school;no;no;no;telephone;jun;thu;653;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+35;admin.;married;high.school;no;no;no;telephone;jun;thu;193;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+47;management;married;basic.4y;no;no;yes;telephone;jun;thu;216;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+35;admin.;married;high.school;no;no;yes;telephone;jun;thu;291;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+53;admin.;single;high.school;no;no;no;telephone;jun;thu;223;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+37;technician;married;professional.course;no;no;no;telephone;jun;thu;96;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+42;admin.;married;basic.4y;no;no;no;telephone;jun;thu;477;7;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+58;retired;married;basic.4y;unknown;no;no;telephone;jun;thu;327;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+53;admin.;single;high.school;no;no;no;telephone;jun;thu;446;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+35;technician;married;professional.course;no;no;no;telephone;jun;thu;159;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+55;admin.;married;high.school;no;yes;no;telephone;jun;thu;178;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+51;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;thu;152;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+51;admin.;married;professional.course;unknown;no;no;telephone;jun;thu;169;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+37;technician;single;professional.course;no;no;no;telephone;jun;thu;635;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+48;services;divorced;basic.6y;unknown;yes;no;telephone;jun;thu;122;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+44;admin.;married;university.degree;no;no;no;telephone;jun;thu;136;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+34;admin.;married;high.school;no;no;no;telephone;jun;thu;69;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+45;admin.;married;basic.9y;no;no;no;telephone;jun;thu;521;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+33;technician;married;professional.course;no;yes;no;telephone;jun;thu;201;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+41;admin.;married;university.degree;no;yes;yes;telephone;jun;thu;142;4;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+42;blue-collar;single;basic.6y;no;unknown;unknown;telephone;jun;thu;59;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+30;admin.;married;high.school;no;no;no;telephone;jun;thu;66;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+41;blue-collar;married;basic.9y;unknown;yes;no;telephone;jun;thu;512;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;yes
+45;housemaid;married;professional.course;unknown;yes;no;telephone;jun;thu;810;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+45;services;married;basic.6y;no;yes;yes;telephone;jun;thu;138;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+38;technician;single;professional.course;no;no;no;telephone;jun;thu;574;4;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+40;services;married;unknown;unknown;no;no;telephone;jun;thu;44;6;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+43;admin.;married;university.degree;no;no;no;telephone;jun;thu;145;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+35;blue-collar;married;basic.9y;unknown;yes;no;telephone;jun;thu;196;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+37;blue-collar;single;basic.4y;unknown;yes;yes;telephone;jun;thu;270;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+47;admin.;married;university.degree;unknown;no;no;telephone;jun;thu;252;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+39;management;married;basic.4y;unknown;yes;no;telephone;jun;thu;26;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+34;blue-collar;married;basic.9y;no;yes;no;telephone;jun;thu;335;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+46;blue-collar;married;basic.4y;unknown;no;yes;telephone;jun;thu;89;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+44;blue-collar;married;basic.4y;no;no;no;telephone;jun;thu;330;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+40;entrepreneur;married;university.degree;unknown;unknown;unknown;telephone;jun;thu;91;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+54;admin.;married;high.school;no;no;no;telephone;jun;thu;361;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+46;entrepreneur;married;basic.9y;no;no;no;telephone;jun;thu;64;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+36;management;divorced;university.degree;no;no;no;telephone;jun;thu;221;12;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+41;blue-collar;married;basic.4y;unknown;yes;no;telephone;jun;thu;84;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+42;services;married;unknown;no;yes;no;telephone;jun;thu;53;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+34;technician;single;university.degree;no;no;no;telephone;jun;thu;90;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+45;unknown;married;unknown;no;no;no;telephone;jun;thu;141;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+33;services;married;university.degree;no;no;no;telephone;jun;thu;254;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+45;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;thu;263;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+40;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;thu;212;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+38;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;thu;149;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+49;technician;married;professional.course;no;no;no;telephone;jun;thu;77;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+49;services;married;high.school;no;no;yes;telephone;jun;thu;374;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+39;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;thu;207;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+41;blue-collar;married;basic.9y;unknown;yes;no;telephone;jun;thu;83;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+41;admin.;divorced;high.school;no;unknown;unknown;telephone;jun;thu;289;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+42;entrepreneur;married;basic.9y;unknown;no;no;telephone;jun;thu;143;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+49;unknown;married;unknown;no;no;yes;telephone;jun;thu;188;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+42;unemployed;married;high.school;unknown;yes;no;telephone;jun;thu;106;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+34;admin.;single;high.school;no;yes;no;telephone;jun;thu;191;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+49;admin.;divorced;high.school;no;no;no;telephone;jun;thu;370;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+43;technician;married;basic.9y;unknown;yes;no;telephone;jun;thu;487;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+42;services;married;high.school;unknown;no;no;telephone;jun;thu;84;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+52;blue-collar;married;unknown;unknown;yes;no;telephone;jun;thu;118;4;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+50;blue-collar;married;basic.4y;unknown;yes;no;telephone;jun;thu;56;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+57;admin.;married;university.degree;no;no;yes;telephone;jun;thu;253;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+47;blue-collar;married;basic.6y;no;yes;no;telephone;jun;thu;786;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+44;blue-collar;married;unknown;no;no;no;telephone;jun;thu;239;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+40;management;married;university.degree;no;no;no;telephone;jun;thu;136;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+30;admin.;married;high.school;no;no;no;telephone;jun;thu;162;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+33;management;married;university.degree;no;no;yes;telephone;jun;thu;219;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+37;unemployed;married;professional.course;unknown;yes;yes;telephone;jun;thu;135;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+36;admin.;married;high.school;no;no;no;telephone;jun;thu;177;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+38;technician;divorced;professional.course;no;no;no;telephone;jun;thu;252;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+55;retired;divorced;professional.course;no;no;no;telephone;jun;thu;416;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+43;unemployed;married;professional.course;no;yes;no;telephone;jun;thu;52;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+37;technician;single;high.school;no;no;no;telephone;jun;thu;32;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+31;blue-collar;married;basic.9y;no;no;no;telephone;jun;thu;217;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+29;student;married;high.school;unknown;no;no;telephone;jun;thu;145;4;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+24;technician;married;professional.course;no;no;no;telephone;jun;thu;93;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+57;services;married;high.school;unknown;yes;yes;telephone;jun;thu;61;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+30;blue-collar;single;unknown;no;no;yes;telephone;jun;thu;262;5;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+58;technician;married;high.school;no;no;no;telephone;jun;thu;246;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+26;admin.;single;high.school;no;unknown;unknown;telephone;jun;thu;92;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+29;blue-collar;single;high.school;no;yes;no;telephone;jun;thu;1318;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;yes
+23;services;single;high.school;no;no;no;telephone;jun;thu;197;10;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+47;management;married;basic.9y;unknown;unknown;unknown;telephone;jun;thu;282;4;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+38;blue-collar;married;basic.6y;unknown;no;no;telephone;jun;thu;922;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;yes
+45;technician;divorced;university.degree;no;yes;yes;telephone;jun;thu;163;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+52;retired;divorced;basic.4y;unknown;yes;yes;telephone;jun;thu;26;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+29;admin.;single;high.school;no;yes;no;telephone;jun;thu;63;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+43;technician;married;basic.9y;unknown;yes;no;telephone;jun;thu;176;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+36;blue-collar;married;basic.9y;no;yes;no;telephone;jun;thu;67;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+38;admin.;married;high.school;no;no;no;telephone;jun;thu;605;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+27;blue-collar;married;basic.6y;unknown;yes;no;telephone;jun;thu;75;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+38;admin.;married;high.school;no;yes;no;telephone;jun;thu;1411;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+52;services;divorced;high.school;no;yes;no;telephone;jun;thu;83;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+52;services;divorced;high.school;no;unknown;unknown;telephone;jun;thu;297;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+38;admin.;married;high.school;no;yes;yes;telephone;jun;thu;2028;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;yes
+54;blue-collar;married;basic.6y;unknown;no;no;telephone;jun;thu;211;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+39;blue-collar;married;basic.6y;unknown;yes;no;telephone;jun;thu;453;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+28;blue-collar;married;high.school;no;no;no;telephone;jun;thu;419;4;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+53;technician;married;university.degree;no;no;no;telephone;jun;thu;498;7;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+40;admin.;married;university.degree;no;no;no;telephone;jun;thu;202;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+49;management;married;university.degree;no;no;no;telephone;jun;thu;21;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+40;services;married;high.school;no;yes;yes;telephone;jun;thu;40;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+23;technician;single;professional.course;no;unknown;unknown;telephone;jun;thu;148;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+36;management;single;high.school;no;unknown;unknown;telephone;jun;thu;184;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+38;unemployed;married;basic.4y;unknown;no;no;telephone;jun;thu;55;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+31;admin.;married;high.school;no;no;no;telephone;jun;thu;952;4;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;yes
+36;blue-collar;single;basic.9y;no;no;yes;telephone;jun;thu;207;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+34;admin.;married;basic.9y;no;no;no;telephone;jun;thu;238;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+35;admin.;divorced;university.degree;no;yes;no;telephone;jun;thu;318;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+37;blue-collar;divorced;basic.9y;no;no;no;telephone;jun;thu;232;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+57;retired;married;basic.4y;unknown;no;no;telephone;jun;thu;76;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+35;blue-collar;married;high.school;no;no;no;telephone;jun;thu;153;14;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+58;technician;married;high.school;unknown;no;no;telephone;jun;thu;525;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+36;blue-collar;married;basic.4y;no;no;no;telephone;jun;thu;97;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+49;management;married;university.degree;no;no;no;telephone;jun;thu;216;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+38;admin.;married;university.degree;no;no;no;telephone;jun;thu;142;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+39;admin.;single;high.school;no;no;no;telephone;jun;thu;290;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+34;blue-collar;married;professional.course;unknown;yes;no;telephone;jun;thu;280;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+36;blue-collar;married;basic.4y;no;yes;no;telephone;jun;thu;559;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+33;blue-collar;single;basic.9y;no;no;no;telephone;jun;thu;67;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+59;retired;married;unknown;unknown;yes;no;telephone;jun;thu;235;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+57;retired;single;basic.4y;no;yes;no;telephone;jun;thu;107;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+55;management;married;professional.course;unknown;yes;yes;telephone;jun;thu;368;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+25;blue-collar;single;basic.9y;no;yes;no;telephone;jun;thu;74;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+55;blue-collar;married;basic.4y;unknown;yes;no;telephone;jun;thu;1136;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;yes
+23;blue-collar;single;basic.9y;no;no;no;telephone;jun;thu;359;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+56;self-employed;single;basic.9y;unknown;no;no;telephone;jun;thu;64;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+31;technician;single;university.degree;no;no;no;telephone;jun;thu;73;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+51;blue-collar;married;basic.4y;no;no;no;telephone;jun;thu;16;9;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+43;blue-collar;divorced;basic.9y;unknown;no;no;telephone;jun;thu;409;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+45;technician;married;university.degree;no;no;no;telephone;jun;thu;65;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+57;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;thu;69;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+34;services;married;basic.6y;no;no;no;telephone;jun;thu;722;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+31;entrepreneur;married;high.school;no;yes;no;telephone;jun;thu;133;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+37;management;married;university.degree;no;no;no;telephone;jun;thu;288;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+29;admin.;married;basic.9y;no;yes;no;telephone;jun;thu;120;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+60;entrepreneur;married;basic.4y;no;no;no;telephone;jun;thu;43;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+40;blue-collar;single;basic.4y;unknown;yes;no;telephone;jun;thu;78;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+55;technician;married;professional.course;unknown;no;no;telephone;jun;thu;166;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+43;admin.;married;university.degree;no;no;no;telephone;jun;thu;30;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+45;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;thu;10;16;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+40;retired;married;professional.course;no;yes;no;telephone;jun;thu;219;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+37;blue-collar;married;basic.9y;no;yes;no;telephone;jun;thu;164;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+47;admin.;married;university.degree;no;no;no;telephone;jun;thu;148;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+37;blue-collar;married;professional.course;no;no;no;telephone;jun;thu;11;7;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+28;blue-collar;married;basic.9y;no;yes;no;telephone;jun;thu;130;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+52;technician;married;unknown;unknown;no;no;telephone;jun;thu;208;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+28;blue-collar;married;basic.9y;no;no;no;telephone;jun;thu;140;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+25;blue-collar;single;professional.course;no;no;no;telephone;jun;thu;559;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+38;services;married;high.school;no;no;no;telephone;jun;thu;224;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+55;housemaid;married;basic.4y;unknown;yes;no;telephone;jun;thu;93;4;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+53;self-employed;divorced;basic.9y;no;yes;no;telephone;jun;thu;177;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+35;management;married;high.school;no;yes;no;telephone;jun;thu;405;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+45;management;single;basic.9y;no;yes;no;telephone;jun;thu;69;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+28;blue-collar;single;high.school;no;no;no;telephone;jun;thu;1017;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+36;technician;single;professional.course;no;no;yes;telephone;jun;thu;385;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+26;unknown;single;high.school;unknown;no;no;telephone;jun;thu;237;5;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+45;management;single;basic.9y;no;yes;no;telephone;jun;thu;237;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+38;admin.;married;university.degree;no;no;no;telephone;jun;thu;202;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+46;services;married;high.school;no;no;yes;telephone;jun;thu;153;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+49;management;divorced;university.degree;no;no;no;telephone;jun;thu;163;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+53;technician;married;professional.course;no;no;no;telephone;jun;thu;97;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+49;admin.;married;high.school;unknown;yes;no;telephone;jun;thu;216;4;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+42;technician;married;basic.6y;no;no;no;telephone;jun;thu;399;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+48;blue-collar;married;high.school;unknown;yes;no;telephone;jun;thu;234;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+26;blue-collar;single;basic.9y;no;yes;no;telephone;jun;thu;184;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+35;blue-collar;single;basic.4y;no;yes;no;telephone;jun;thu;155;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+42;housemaid;married;basic.4y;no;no;no;telephone;jun;thu;500;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;yes
+50;housemaid;married;unknown;no;yes;no;telephone;jun;thu;167;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+60;management;married;university.degree;no;yes;no;telephone;jun;thu;89;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+56;retired;married;basic.4y;no;no;no;telephone;jun;thu;92;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+31;blue-collar;married;basic.9y;no;no;no;telephone;jun;thu;296;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+46;entrepreneur;married;university.degree;unknown;yes;no;telephone;jun;thu;563;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+40;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;thu;146;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+42;management;married;university.degree;no;no;no;telephone;jun;thu;92;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+33;blue-collar;divorced;basic.9y;no;no;no;telephone;jun;thu;149;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+60;blue-collar;married;basic.9y;unknown;yes;no;telephone;jun;thu;80;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+40;blue-collar;married;basic.4y;no;no;no;telephone;jun;thu;354;7;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+52;blue-collar;married;basic.4y;no;yes;no;telephone;jun;thu;106;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+42;services;divorced;high.school;unknown;no;no;telephone;jun;thu;111;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+48;services;married;high.school;unknown;no;no;telephone;jun;thu;136;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+34;blue-collar;married;basic.6y;no;yes;yes;telephone;jun;thu;549;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+34;housemaid;single;university.degree;no;no;no;telephone;jun;thu;267;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+48;self-employed;married;basic.9y;unknown;yes;no;telephone;jun;thu;461;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+26;blue-collar;single;basic.9y;unknown;no;no;telephone;jun;thu;60;4;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+38;admin.;married;high.school;no;yes;no;telephone;jun;thu;117;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+39;unemployed;married;university.degree;unknown;no;no;telephone;jun;thu;21;8;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+43;technician;single;professional.course;no;unknown;unknown;telephone;jun;thu;104;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+29;admin.;single;high.school;no;yes;yes;telephone;jun;thu;15;10;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+37;blue-collar;married;basic.6y;no;yes;no;telephone;jun;thu;216;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+28;blue-collar;married;basic.9y;unknown;unknown;unknown;telephone;jun;thu;211;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+52;self-employed;married;basic.4y;unknown;no;yes;telephone;jun;thu;71;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+25;admin.;married;high.school;unknown;no;no;telephone;jun;thu;18;18;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+28;technician;married;basic.9y;no;yes;no;telephone;jun;thu;225;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+36;admin.;married;high.school;unknown;no;yes;telephone;jun;thu;59;8;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+47;services;single;basic.9y;no;unknown;unknown;telephone;jun;thu;835;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;yes
+37;technician;married;professional.course;no;yes;no;telephone;jun;thu;683;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;yes
+57;blue-collar;married;basic.9y;unknown;yes;yes;telephone;jun;thu;258;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+55;retired;married;university.degree;unknown;yes;no;telephone;jun;thu;1012;1;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;yes
+39;technician;married;professional.course;no;yes;no;telephone;jun;thu;233;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+38;technician;married;basic.9y;no;no;no;telephone;jun;thu;129;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+56;admin.;divorced;unknown;unknown;no;no;telephone;jun;thu;91;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+52;services;divorced;high.school;no;no;no;telephone;jun;thu;339;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+52;unemployed;married;high.school;no;unknown;unknown;telephone;jun;thu;90;5;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+39;blue-collar;married;basic.9y;no;unknown;unknown;telephone;jun;thu;112;4;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+32;unknown;unknown;university.degree;no;no;no;telephone;jun;thu;36;7;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+25;blue-collar;single;basic.9y;no;yes;yes;telephone;jun;thu;112;4;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+31;technician;married;high.school;no;no;no;telephone;jun;thu;9;28;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+33;technician;divorced;professional.course;no;no;no;telephone;jun;thu;26;5;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+36;admin.;single;university.degree;no;yes;no;telephone;jun;thu;55;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+26;technician;single;university.degree;no;no;no;telephone;jun;thu;2635;3;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+46;admin.;divorced;university.degree;no;yes;no;telephone;jun;thu;138;9;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+30;technician;married;university.degree;unknown;yes;no;telephone;jun;thu;49;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+36;blue-collar;divorced;basic.9y;unknown;no;no;telephone;jun;thu;318;2;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+33;services;single;high.school;no;yes;no;telephone;jun;thu;326;5;999;0;nonexistent;1.4;94.465;-41.8;4.961;5228.1;no
+57;services;divorced;high.school;unknown;no;no;telephone;jun;fri;53;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+40;technician;married;professional.course;no;no;no;telephone;jun;fri;179;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+41;blue-collar;married;basic.4y;no;yes;no;telephone;jun;fri;262;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+41;housemaid;married;high.school;no;yes;yes;telephone;jun;fri;168;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+30;blue-collar;married;basic.9y;no;no;no;telephone;jun;fri;193;11;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+39;admin.;divorced;university.degree;unknown;no;no;telephone;jun;fri;333;15;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+52;blue-collar;married;basic.9y;no;yes;yes;telephone;jun;fri;241;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+35;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;fri;76;12;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+40;technician;married;professional.course;no;no;no;telephone;jun;fri;37;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+44;technician;married;professional.course;no;yes;no;telephone;jun;fri;189;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+35;management;married;basic.9y;no;yes;no;telephone;jun;fri;89;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+36;admin.;divorced;university.degree;no;yes;no;telephone;jun;fri;112;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+56;admin.;married;high.school;no;no;no;telephone;jun;fri;489;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+59;retired;divorced;basic.9y;unknown;yes;no;telephone;jun;fri;141;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+36;services;married;high.school;no;yes;no;telephone;jun;fri;241;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+47;services;divorced;basic.4y;no;yes;no;telephone;jun;fri;60;6;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+50;technician;married;basic.6y;no;yes;no;telephone;jun;fri;61;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+29;self-employed;married;basic.6y;unknown;no;no;telephone;jun;fri;24;11;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+45;housemaid;divorced;basic.4y;no;yes;yes;telephone;jun;fri;62;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+39;entrepreneur;married;professional.course;no;yes;no;telephone;jun;fri;43;8;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+48;retired;married;basic.4y;unknown;no;no;telephone;jun;fri;75;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+47;services;married;high.school;unknown;yes;no;telephone;jun;fri;177;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+38;admin.;single;university.degree;no;yes;no;telephone;jun;fri;170;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+38;blue-collar;married;unknown;no;yes;no;telephone;jun;fri;42;5;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+51;admin.;married;high.school;no;no;no;telephone;jun;fri;22;12;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+31;services;single;high.school;no;no;yes;telephone;jun;fri;99;5;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+43;services;married;high.school;unknown;yes;no;telephone;jun;fri;139;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+37;unemployed;single;professional.course;no;no;no;telephone;jun;fri;394;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+33;management;married;university.degree;no;no;yes;telephone;jun;fri;42;7;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+51;services;married;high.school;unknown;yes;no;telephone;jun;fri;41;28;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+37;services;married;high.school;no;yes;yes;telephone;jun;fri;98;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+26;blue-collar;single;basic.9y;no;no;no;telephone;jun;fri;114;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+31;blue-collar;married;basic.9y;unknown;yes;no;telephone;jun;fri;191;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+38;blue-collar;married;basic.6y;no;yes;no;telephone;jun;fri;167;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+54;housemaid;divorced;basic.4y;unknown;yes;no;telephone;jun;fri;238;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+27;services;married;high.school;unknown;no;no;telephone;jun;fri;73;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+36;technician;married;professional.course;no;no;no;telephone;jun;fri;206;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+34;services;married;high.school;no;no;no;telephone;jun;fri;160;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+40;entrepreneur;married;basic.9y;no;yes;no;telephone;jun;fri;156;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+39;services;divorced;basic.6y;no;no;no;telephone;jun;fri;512;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+36;blue-collar;married;high.school;unknown;no;no;telephone;jun;fri;50;5;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+43;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;fri;23;23;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+33;services;married;high.school;unknown;yes;no;telephone;jun;fri;106;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+43;unemployed;married;basic.4y;unknown;no;no;telephone;jun;fri;744;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+31;admin.;single;university.degree;no;no;no;telephone;jun;fri;109;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+47;management;divorced;university.degree;no;yes;no;telephone;jun;fri;99;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+44;entrepreneur;married;basic.9y;no;no;no;telephone;jun;fri;241;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+43;admin.;married;unknown;no;yes;no;telephone;jun;fri;246;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+30;blue-collar;single;basic.4y;no;yes;no;telephone;jun;fri;59;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+40;blue-collar;married;high.school;no;yes;yes;telephone;jun;fri;63;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+40;entrepreneur;divorced;university.degree;no;yes;yes;telephone;jun;fri;54;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+41;management;married;university.degree;no;yes;yes;telephone;jun;fri;87;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+45;admin.;married;basic.9y;unknown;no;no;telephone;jun;fri;973;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;yes
+36;management;married;university.degree;no;yes;no;telephone;jun;fri;122;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+34;blue-collar;married;basic.4y;no;yes;no;telephone;jun;fri;375;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+50;technician;married;high.school;unknown;yes;yes;telephone;jun;fri;111;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+38;admin.;divorced;university.degree;no;no;no;telephone;jun;fri;50;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+56;technician;married;professional.course;unknown;no;no;telephone;jun;fri;35;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+38;services;married;high.school;no;no;no;telephone;jun;fri;124;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+32;services;married;high.school;no;yes;no;telephone;jun;fri;157;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+29;admin.;married;university.degree;no;no;no;telephone;jun;fri;45;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+47;technician;married;professional.course;no;yes;yes;telephone;jun;fri;577;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+47;admin.;married;university.degree;no;no;no;telephone;jun;fri;134;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+28;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;fri;325;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+35;blue-collar;married;basic.6y;no;no;no;telephone;jun;fri;170;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+45;blue-collar;married;basic.9y;no;no;yes;telephone;jun;fri;124;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+46;blue-collar;married;basic.6y;no;no;no;telephone;jun;fri;111;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+40;management;married;unknown;no;yes;no;telephone;jun;fri;170;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+31;housemaid;married;basic.4y;unknown;unknown;unknown;telephone;jun;fri;40;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+39;blue-collar;married;high.school;no;yes;no;telephone;jun;fri;368;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+31;admin.;single;university.degree;no;no;no;telephone;jun;fri;25;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+45;blue-collar;married;basic.9y;unknown;yes;no;telephone;jun;fri;528;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+49;management;married;university.degree;no;yes;no;telephone;jun;fri;41;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+33;blue-collar;divorced;basic.6y;unknown;no;no;telephone;jun;fri;398;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+38;admin.;single;basic.9y;no;no;no;telephone;jun;fri;361;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+48;blue-collar;married;basic.4y;no;yes;no;telephone;jun;fri;493;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+48;blue-collar;married;basic.4y;no;no;no;telephone;jun;fri;470;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+31;admin.;single;university.degree;no;yes;yes;telephone;jun;fri;282;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+47;blue-collar;divorced;basic.4y;no;yes;no;telephone;jun;fri;48;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+46;admin.;married;basic.9y;unknown;yes;no;telephone;jun;fri;856;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;yes
+49;admin.;divorced;university.degree;no;yes;no;telephone;jun;fri;606;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+51;management;married;university.degree;no;yes;no;telephone;jun;fri;74;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+36;self-employed;divorced;basic.4y;no;no;no;telephone;jun;fri;79;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+29;blue-collar;single;basic.9y;no;no;no;telephone;jun;fri;153;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+45;blue-collar;married;basic.9y;unknown;no;yes;telephone;jun;fri;1210;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;yes
+40;self-employed;married;professional.course;no;yes;yes;telephone;jun;fri;716;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;yes
+39;entrepreneur;married;university.degree;no;yes;no;telephone;jun;fri;513;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+49;technician;divorced;unknown;no;unknown;unknown;telephone;jun;fri;158;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+29;blue-collar;single;basic.9y;no;unknown;unknown;telephone;jun;fri;158;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+29;blue-collar;single;basic.9y;no;no;no;telephone;jun;fri;139;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+52;entrepreneur;married;high.school;no;yes;no;telephone;jun;fri;273;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+29;blue-collar;single;basic.9y;no;unknown;unknown;telephone;jun;fri;364;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+58;entrepreneur;married;university.degree;unknown;no;no;telephone;jun;fri;218;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+37;services;married;high.school;no;no;no;telephone;jun;fri;115;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+34;management;married;university.degree;no;yes;no;telephone;jun;fri;280;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+35;entrepreneur;married;university.degree;no;no;no;telephone;jun;fri;109;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+49;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;fri;115;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+49;blue-collar;married;basic.4y;unknown;unknown;unknown;telephone;jun;fri;25;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+56;retired;divorced;basic.4y;unknown;no;no;telephone;jun;fri;75;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+34;admin.;married;university.degree;no;no;no;telephone;jun;fri;64;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+40;technician;married;basic.9y;no;yes;no;telephone;jun;fri;235;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+29;admin.;married;university.degree;no;yes;yes;telephone;jun;fri;95;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+40;blue-collar;married;basic.9y;no;no;no;telephone;jun;fri;231;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+59;retired;divorced;basic.4y;unknown;yes;no;telephone;jun;fri;39;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+37;admin.;married;high.school;unknown;yes;no;telephone;jun;fri;21;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+37;housemaid;married;high.school;no;no;yes;telephone;jun;fri;31;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+49;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;fri;838;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;yes
+40;management;married;university.degree;no;no;no;telephone;jun;fri;64;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+57;management;married;university.degree;no;no;no;telephone;jun;fri;1276;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+37;technician;married;basic.6y;no;yes;no;telephone;jun;fri;27;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+40;blue-collar;divorced;basic.9y;unknown;yes;no;telephone;jun;fri;100;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+40;technician;divorced;university.degree;no;yes;yes;telephone;jun;fri;188;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+47;unknown;married;unknown;unknown;yes;no;telephone;jun;fri;141;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+40;blue-collar;married;unknown;unknown;no;no;telephone;jun;fri;144;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+50;services;divorced;professional.course;no;yes;no;telephone;jun;fri;329;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+34;admin.;divorced;basic.9y;no;yes;no;telephone;jun;fri;45;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+46;blue-collar;married;basic.6y;no;no;no;telephone;jun;fri;98;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+48;blue-collar;married;basic.9y;no;no;no;telephone;jun;fri;75;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+36;blue-collar;married;basic.4y;unknown;yes;no;telephone;jun;fri;41;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+53;unknown;married;unknown;no;no;no;telephone;jun;fri;258;18;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+30;blue-collar;single;basic.4y;unknown;no;no;telephone;jun;fri;402;22;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+53;self-employed;divorced;basic.9y;no;no;no;telephone;jun;fri;60;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+30;technician;married;professional.course;no;no;no;telephone;jun;fri;269;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+32;services;single;basic.6y;no;yes;no;telephone;jun;fri;307;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+46;entrepreneur;divorced;high.school;no;no;no;telephone;jun;fri;485;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+32;services;married;high.school;unknown;no;no;telephone;jun;fri;174;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+37;services;married;high.school;no;unknown;unknown;telephone;jun;fri;283;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+42;blue-collar;married;basic.6y;unknown;no;no;telephone;jun;fri;1098;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;yes
+49;admin.;divorced;high.school;no;yes;no;telephone;jun;fri;115;20;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+37;entrepreneur;married;university.degree;no;no;no;telephone;jun;fri;351;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+42;unemployed;married;high.school;unknown;no;no;telephone;jun;fri;89;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+24;entrepreneur;single;high.school;no;yes;no;telephone;jun;fri;113;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+57;retired;married;high.school;no;yes;yes;telephone;jun;fri;471;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+47;services;married;high.school;no;yes;no;telephone;jun;fri;256;8;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+47;services;married;basic.6y;no;no;no;telephone;jun;fri;108;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+38;services;married;basic.9y;no;unknown;unknown;telephone;jun;fri;48;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+33;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;fri;76;12;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+43;blue-collar;married;basic.4y;unknown;no;yes;telephone;jun;fri;35;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+51;unemployed;married;basic.9y;unknown;no;no;telephone;jun;fri;375;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+48;blue-collar;married;basic.4y;no;no;no;telephone;jun;fri;63;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+36;services;married;high.school;no;no;no;telephone;jun;fri;166;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+32;blue-collar;married;basic.9y;no;yes;no;telephone;jun;fri;123;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+26;management;single;university.degree;no;no;no;telephone;jun;fri;633;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+37;services;single;university.degree;no;no;no;telephone;jun;fri;160;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+45;entrepreneur;married;basic.9y;unknown;no;no;telephone;jun;fri;326;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+52;admin.;divorced;university.degree;no;yes;no;telephone;jun;fri;245;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+60;retired;divorced;university.degree;no;yes;no;telephone;jun;fri;98;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+45;management;married;basic.9y;no;yes;no;telephone;jun;fri;37;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+49;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;fri;95;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+59;entrepreneur;married;university.degree;unknown;no;no;telephone;jun;fri;19;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+40;admin.;married;high.school;no;no;no;telephone;jun;fri;374;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+36;admin.;married;university.degree;no;yes;yes;telephone;jun;fri;172;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+35;technician;married;professional.course;no;yes;no;telephone;jun;fri;74;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+38;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;fri;174;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+38;admin.;single;basic.9y;no;no;yes;telephone;jun;fri;111;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+41;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;fri;256;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+43;unemployed;married;professional.course;no;no;no;telephone;jun;fri;38;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+52;blue-collar;married;basic.9y;no;no;no;telephone;jun;fri;205;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+56;technician;married;unknown;no;yes;no;telephone;jun;fri;471;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+28;student;single;professional.course;no;no;no;telephone;jun;fri;168;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+36;housemaid;married;high.school;no;yes;no;telephone;jun;fri;19;11;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+53;retired;married;high.school;unknown;yes;no;telephone;jun;fri;211;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+25;admin.;married;high.school;no;yes;no;telephone;jun;fri;534;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+50;services;divorced;unknown;no;no;no;telephone;jun;fri;250;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+29;technician;single;university.degree;no;yes;yes;telephone;jun;fri;1149;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;yes
+50;blue-collar;married;basic.9y;unknown;yes;no;telephone;jun;fri;343;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+52;retired;married;high.school;unknown;yes;yes;telephone;jun;fri;141;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+31;blue-collar;married;basic.6y;no;no;no;telephone;jun;fri;1573;5;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;yes
+52;retired;married;high.school;unknown;no;no;telephone;jun;fri;181;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+34;blue-collar;married;basic.9y;no;yes;no;telephone;jun;fri;232;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+50;technician;married;professional.course;unknown;yes;yes;telephone;jun;fri;705;7;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;yes
+45;management;married;university.degree;no;no;no;telephone;jun;fri;126;5;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+36;self-employed;single;university.degree;no;no;no;telephone;jun;fri;237;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+41;blue-collar;married;basic.4y;unknown;yes;no;telephone;jun;fri;174;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+42;admin.;married;basic.6y;no;no;no;telephone;jun;fri;26;17;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+41;blue-collar;married;basic.9y;no;yes;yes;telephone;jun;fri;109;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+35;blue-collar;married;basic.9y;unknown;yes;no;telephone;jun;fri;288;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+52;admin.;married;high.school;no;yes;no;telephone;jun;fri;84;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+46;management;married;basic.6y;unknown;no;yes;telephone;jun;fri;73;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+38;blue-collar;married;basic.4y;no;yes;yes;telephone;jun;fri;11;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+34;management;married;university.degree;no;yes;no;telephone;jun;fri;415;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+35;blue-collar;married;basic.6y;no;yes;no;telephone;jun;fri;44;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+55;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;fri;23;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+32;blue-collar;married;professional.course;no;yes;no;telephone;jun;fri;446;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+37;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;fri;1663;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;yes
+32;blue-collar;married;professional.course;no;no;yes;telephone;jun;fri;459;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+45;management;married;university.degree;no;yes;no;telephone;jun;fri;398;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+36;blue-collar;married;basic.9y;no;yes;no;telephone;jun;fri;560;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;yes
+41;management;married;university.degree;no;yes;no;telephone;jun;fri;248;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+54;blue-collar;divorced;basic.4y;unknown;no;no;telephone;jun;fri;124;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+55;unemployed;married;high.school;no;no;no;telephone;jun;fri;154;8;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+29;technician;married;professional.course;no;yes;no;telephone;jun;fri;1617;1;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;yes
+39;technician;single;professional.course;no;yes;no;telephone;jun;fri;127;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+53;technician;married;professional.course;unknown;no;no;telephone;jun;fri;421;6;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+41;blue-collar;married;professional.course;no;yes;no;telephone;jun;fri;591;6;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+58;blue-collar;married;basic.4y;no;yes;no;telephone;jun;fri;165;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+36;admin.;married;university.degree;no;yes;yes;telephone;jun;fri;170;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+44;services;married;high.school;no;yes;no;telephone;jun;fri;618;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+31;blue-collar;single;basic.9y;unknown;no;yes;telephone;jun;fri;70;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+38;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;fri;1478;5;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+33;admin.;married;professional.course;no;no;no;telephone;jun;fri;110;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+58;management;married;basic.6y;no;no;no;telephone;jun;fri;40;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+58;blue-collar;married;basic.4y;unknown;yes;no;telephone;jun;fri;570;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;yes
+50;admin.;divorced;high.school;no;no;no;telephone;jun;fri;519;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+44;admin.;divorced;university.degree;no;no;no;telephone;jun;fri;39;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+39;unemployed;married;basic.9y;unknown;yes;no;telephone;jun;fri;14;6;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+33;admin.;married;high.school;no;yes;no;telephone;jun;fri;36;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+43;technician;married;basic.9y;no;no;no;telephone;jun;fri;67;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+36;self-employed;divorced;basic.4y;no;no;no;telephone;jun;fri;825;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+44;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;fri;263;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+43;admin.;married;high.school;no;no;no;telephone;jun;fri;1422;10;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;yes
+31;blue-collar;married;basic.6y;no;yes;no;telephone;jun;fri;55;12;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+27;services;married;high.school;no;yes;no;telephone;jun;fri;172;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+49;blue-collar;married;basic.4y;unknown;yes;no;telephone;jun;fri;553;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+35;blue-collar;married;basic.9y;no;no;no;telephone;jun;fri;15;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+48;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;fri;81;10;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+47;services;married;basic.6y;no;yes;yes;telephone;jun;fri;150;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+36;blue-collar;married;professional.course;unknown;yes;no;telephone;jun;fri;324;5;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+42;blue-collar;married;basic.9y;unknown;yes;no;telephone;jun;fri;93;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+59;retired;married;basic.4y;unknown;no;yes;telephone;jun;fri;62;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+57;blue-collar;married;basic.4y;no;no;no;telephone;jun;fri;19;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+54;technician;married;high.school;no;yes;no;telephone;jun;fri;47;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+53;blue-collar;married;basic.9y;unknown;yes;yes;telephone;jun;fri;16;20;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+27;admin.;single;university.degree;no;no;no;telephone;jun;fri;134;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+44;unemployed;married;basic.9y;no;no;no;telephone;jun;fri;9;8;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+35;management;divorced;high.school;no;yes;no;telephone;jun;fri;176;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+26;blue-collar;married;basic.4y;no;no;no;telephone;jun;fri;25;5;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+34;blue-collar;married;basic.6y;no;no;no;telephone;jun;fri;238;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+43;technician;married;high.school;no;yes;no;telephone;jun;fri;17;37;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+33;services;single;high.school;no;no;no;telephone;jun;fri;9;18;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+36;blue-collar;single;basic.9y;unknown;unknown;unknown;telephone;jun;fri;25;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+35;admin.;married;high.school;no;yes;yes;telephone;jun;fri;14;9;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+46;technician;divorced;professional.course;unknown;yes;no;telephone;jun;fri;365;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+34;admin.;single;high.school;no;no;no;telephone;jun;fri;267;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+56;blue-collar;married;basic.4y;no;no;no;telephone;jun;fri;11;5;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+28;admin.;single;university.degree;no;yes;no;telephone;jun;fri;12;14;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+54;unemployed;married;basic.9y;no;no;no;telephone;jun;fri;8;10;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+35;blue-collar;single;basic.6y;unknown;yes;no;telephone;jun;fri;55;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+29;admin.;married;university.degree;no;no;yes;telephone;jun;fri;76;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+40;admin.;married;high.school;no;no;no;telephone;jun;fri;9;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+38;blue-collar;single;university.degree;unknown;no;no;telephone;jun;fri;13;5;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+40;entrepreneur;single;high.school;no;no;no;telephone;jun;fri;28;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+28;blue-collar;married;basic.9y;unknown;no;yes;telephone;jun;fri;17;5;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+46;admin.;married;high.school;no;no;no;telephone;jun;fri;47;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+36;blue-collar;married;basic.9y;no;yes;yes;telephone;jun;fri;31;14;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+43;services;married;basic.4y;unknown;no;no;telephone;jun;fri;8;12;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+42;management;married;basic.6y;unknown;no;no;telephone;jun;fri;8;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+36;admin.;married;university.degree;no;yes;no;telephone;jun;fri;11;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+58;admin.;married;unknown;unknown;yes;no;telephone;jun;fri;158;5;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+35;blue-collar;single;basic.6y;no;no;no;telephone;jun;fri;81;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+52;management;married;unknown;unknown;yes;no;telephone;jun;fri;14;13;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+27;services;single;high.school;unknown;yes;yes;telephone;jun;fri;25;26;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+28;services;married;unknown;no;no;no;telephone;jun;fri;9;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+56;self-employed;single;basic.9y;unknown;no;no;telephone;jun;fri;154;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+37;blue-collar;married;unknown;no;no;no;telephone;jun;fri;34;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+36;technician;single;unknown;no;no;no;telephone;jun;fri;264;6;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+48;management;married;university.degree;no;no;no;telephone;jun;fri;29;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+40;self-employed;married;professional.course;no;no;no;telephone;jun;fri;20;18;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+32;admin.;single;university.degree;unknown;no;yes;telephone;jun;fri;13;11;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+58;retired;divorced;university.degree;no;yes;no;telephone;jun;fri;152;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+43;technician;married;basic.9y;unknown;no;no;telephone;jun;fri;44;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+48;blue-collar;married;basic.4y;no;no;no;telephone;jun;fri;29;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+49;services;married;high.school;no;yes;no;telephone;jun;fri;25;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+36;blue-collar;married;basic.9y;no;yes;yes;telephone;jun;fri;34;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+43;admin.;single;professional.course;no;no;yes;telephone;jun;fri;10;14;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+31;admin.;single;university.degree;no;no;no;telephone;jun;fri;34;29;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+35;services;single;high.school;no;no;no;telephone;jun;fri;17;14;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+35;technician;single;professional.course;no;unknown;unknown;telephone;jun;fri;14;21;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+58;blue-collar;married;unknown;no;yes;no;telephone;jun;fri;29;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+46;housemaid;married;basic.4y;no;no;no;telephone;jun;fri;134;10;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+55;admin.;divorced;university.degree;no;yes;no;telephone;jun;fri;17;6;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+41;technician;married;professional.course;no;no;no;telephone;jun;fri;268;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+34;admin.;married;university.degree;no;yes;no;telephone;jun;fri;22;5;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+41;admin.;married;high.school;no;yes;no;telephone;jun;fri;82;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+50;unemployed;married;high.school;unknown;no;no;telephone;jun;fri;10;11;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+28;blue-collar;married;basic.6y;unknown;yes;no;telephone;jun;fri;652;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+33;blue-collar;single;basic.9y;no;no;no;telephone;jun;fri;16;18;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+46;blue-collar;divorced;basic.6y;no;yes;yes;telephone;jun;fri;9;13;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+59;retired;married;professional.course;unknown;yes;no;telephone;jun;fri;435;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+46;admin.;married;high.school;no;no;no;telephone;jun;fri;10;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+29;admin.;single;university.degree;no;no;no;telephone;jun;fri;123;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+39;entrepreneur;divorced;university.degree;no;no;no;telephone;jun;fri;8;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+53;blue-collar;married;basic.4y;no;no;yes;telephone;jun;fri;16;22;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+35;admin.;married;high.school;no;no;no;telephone;jun;fri;179;21;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+41;blue-collar;married;basic.9y;no;yes;no;telephone;jun;fri;13;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+57;retired;married;basic.4y;no;no;no;telephone;jun;fri;14;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+39;services;divorced;basic.9y;no;yes;no;telephone;jun;fri;524;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+58;retired;married;professional.course;unknown;no;no;telephone;jun;fri;74;5;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+53;management;divorced;university.degree;no;no;no;telephone;jun;fri;23;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+57;entrepreneur;married;basic.9y;unknown;yes;no;telephone;jun;fri;850;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+43;technician;married;basic.9y;unknown;yes;yes;telephone;jun;fri;818;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+37;admin.;married;basic.6y;no;no;no;telephone;jun;fri;126;14;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+33;services;single;high.school;no;no;no;telephone;jun;fri;15;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+54;services;married;high.school;no;no;no;telephone;jun;fri;7;20;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+45;entrepreneur;married;university.degree;unknown;no;no;telephone;jun;fri;49;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+44;services;married;high.school;no;yes;no;telephone;jun;fri;40;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+58;blue-collar;married;professional.course;no;no;no;telephone;jun;fri;15;12;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+42;technician;married;university.degree;no;no;no;telephone;jun;fri;4;20;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+39;services;married;high.school;unknown;no;no;telephone;jun;fri;32;9;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+44;technician;single;basic.6y;unknown;no;no;telephone;jun;fri;8;9;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+57;retired;married;university.degree;no;yes;no;telephone;jun;fri;12;5;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+39;admin.;married;high.school;no;yes;no;telephone;jun;fri;77;5;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+48;retired;married;unknown;unknown;yes;no;telephone;jun;fri;9;5;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+40;admin.;married;high.school;unknown;yes;no;telephone;jun;fri;17;10;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+45;admin.;divorced;university.degree;unknown;unknown;unknown;telephone;jun;fri;8;12;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+37;admin.;divorced;high.school;no;yes;no;telephone;jun;fri;7;12;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+26;admin.;single;basic.9y;no;no;no;telephone;jun;fri;11;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+57;management;married;university.degree;no;no;yes;telephone;jun;fri;20;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+31;student;single;unknown;unknown;yes;no;telephone;jun;fri;16;8;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+45;blue-collar;married;basic.6y;unknown;yes;no;telephone;jun;fri;26;11;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+29;admin.;single;university.degree;no;yes;no;telephone;jun;fri;10;27;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+36;blue-collar;married;high.school;no;no;no;telephone;jun;fri;285;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+56;technician;divorced;basic.9y;no;yes;no;telephone;jun;fri;39;8;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+36;admin.;single;high.school;unknown;yes;no;telephone;jun;fri;16;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+33;services;unknown;high.school;no;no;no;telephone;jun;fri;11;21;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+34;management;married;university.degree;no;yes;no;telephone;jun;fri;37;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+53;services;married;basic.9y;unknown;yes;no;telephone;jun;fri;9;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+55;admin.;married;high.school;no;yes;no;telephone;jun;fri;7;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+34;blue-collar;single;basic.6y;no;yes;yes;telephone;jun;fri;205;5;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+42;housemaid;married;basic.4y;unknown;yes;no;telephone;jun;fri;408;5;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+39;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;fri;27;16;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+53;management;married;basic.9y;unknown;yes;no;telephone;jun;fri;376;7;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+30;admin.;divorced;high.school;no;yes;no;telephone;jun;fri;9;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+31;management;single;university.degree;unknown;yes;no;telephone;jun;fri;15;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+35;services;married;basic.6y;no;yes;no;telephone;jun;fri;46;10;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+43;admin.;married;university.degree;no;no;no;telephone;jun;fri;1023;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;yes
+40;housemaid;single;university.degree;no;yes;no;telephone;jun;fri;253;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+49;technician;married;professional.course;no;yes;no;telephone;jun;fri;10;14;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+26;blue-collar;single;basic.9y;unknown;no;yes;telephone;jun;fri;175;14;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+55;blue-collar;divorced;basic.9y;no;yes;no;telephone;jun;fri;220;6;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+56;retired;married;basic.6y;no;yes;no;telephone;jun;fri;51;19;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+58;retired;married;basic.4y;no;no;no;telephone;jun;fri;407;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+52;technician;married;university.degree;unknown;no;no;telephone;jun;fri;10;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+30;services;single;high.school;no;yes;no;telephone;jun;fri;9;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+31;blue-collar;single;basic.4y;no;no;no;telephone;jun;fri;110;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+34;admin.;married;university.degree;no;no;no;telephone;jun;fri;11;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+36;self-employed;married;professional.course;no;no;no;telephone;jun;fri;161;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+55;admin.;married;university.degree;no;no;no;telephone;jun;fri;44;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+35;blue-collar;married;basic.9y;unknown;yes;no;telephone;jun;fri;13;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+43;management;married;university.degree;no;no;no;telephone;jun;fri;13;5;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+35;entrepreneur;married;university.degree;no;no;no;telephone;jun;fri;79;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+38;technician;divorced;professional.course;no;yes;no;telephone;jun;fri;212;8;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+35;admin.;married;high.school;no;no;yes;telephone;jun;fri;78;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+55;blue-collar;married;basic.4y;unknown;yes;no;telephone;jun;fri;585;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;yes
+31;entrepreneur;single;basic.6y;unknown;yes;yes;telephone;jun;fri;8;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+56;self-employed;married;university.degree;no;no;no;telephone;jun;fri;129;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+32;admin.;married;university.degree;no;yes;no;telephone;jun;fri;65;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+34;services;married;high.school;no;no;no;telephone;jun;fri;9;14;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+44;admin.;divorced;high.school;no;yes;yes;telephone;jun;fri;100;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+45;self-employed;divorced;professional.course;unknown;no;no;telephone;jun;fri;12;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+29;blue-collar;single;professional.course;no;no;no;telephone;jun;fri;86;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+31;technician;married;professional.course;no;no;yes;telephone;jun;fri;809;6;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;yes
+38;blue-collar;married;basic.9y;no;no;no;telephone;jun;fri;693;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;yes
+44;admin.;married;university.degree;no;no;no;telephone;jun;fri;8;10;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+39;housemaid;married;university.degree;no;yes;no;telephone;jun;fri;258;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+32;blue-collar;married;basic.6y;no;yes;no;telephone;jun;fri;16;6;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+57;admin.;married;university.degree;no;yes;no;telephone;jun;fri;27;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+30;blue-collar;married;basic.9y;no;yes;no;telephone;jun;fri;12;14;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+43;admin.;married;high.school;no;yes;no;telephone;jun;fri;11;15;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+40;services;divorced;high.school;no;no;no;telephone;jun;fri;155;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+33;admin.;married;professional.course;no;no;no;telephone;jun;fri;81;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+31;entrepreneur;single;university.degree;unknown;no;no;telephone;jun;fri;22;12;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+50;admin.;married;basic.9y;no;no;no;telephone;jun;fri;116;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+25;blue-collar;single;high.school;unknown;no;no;telephone;jun;fri;136;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+40;blue-collar;single;unknown;unknown;yes;no;telephone;jun;fri;8;7;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+44;self-employed;single;university.degree;no;no;no;telephone;jun;fri;10;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+48;unemployed;married;high.school;unknown;yes;no;telephone;jun;fri;157;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+30;blue-collar;single;basic.9y;unknown;no;no;telephone;jun;fri;10;8;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+60;self-employed;single;basic.9y;unknown;yes;no;telephone;jun;fri;11;5;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+43;services;married;high.school;no;no;no;telephone;jun;fri;16;7;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+57;blue-collar;divorced;basic.4y;no;yes;no;telephone;jun;fri;84;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+48;blue-collar;married;basic.6y;unknown;yes;no;telephone;jun;fri;10;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+35;admin.;married;basic.9y;no;no;yes;telephone;jun;fri;556;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;yes
+51;technician;married;unknown;no;yes;no;telephone;jun;fri;17;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+48;entrepreneur;married;professional.course;no;no;no;telephone;jun;fri;804;12;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+36;admin.;married;university.degree;no;unknown;unknown;telephone;jun;fri;71;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+42;housemaid;married;basic.4y;unknown;yes;no;telephone;jun;fri;38;8;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+33;technician;single;professional.course;no;no;yes;telephone;jun;fri;241;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+50;management;married;high.school;unknown;no;no;telephone;jun;fri;28;8;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+55;unknown;married;basic.4y;unknown;no;no;telephone;jun;fri;27;7;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+40;services;married;basic.6y;unknown;no;no;telephone;jun;fri;11;11;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+56;retired;divorced;basic.4y;no;yes;no;telephone;jun;fri;10;15;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+37;technician;married;university.degree;no;no;no;telephone;jun;fri;23;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+36;blue-collar;single;basic.9y;no;no;no;telephone;jun;fri;43;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+36;admin.;married;university.degree;no;yes;no;telephone;jun;fri;14;9;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+41;technician;married;high.school;no;no;no;telephone;jun;fri;8;12;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+42;blue-collar;married;basic.4y;unknown;yes;no;telephone;jun;fri;372;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+42;entrepreneur;married;professional.course;no;yes;no;telephone;jun;fri;291;5;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;yes
+49;management;married;high.school;no;no;no;telephone;jun;fri;9;13;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+42;blue-collar;married;basic.4y;unknown;yes;no;telephone;jun;fri;29;27;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+53;technician;married;university.degree;no;yes;no;telephone;jun;fri;73;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+41;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;fri;8;31;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+42;admin.;divorced;university.degree;no;yes;no;telephone;jun;fri;14;6;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+33;blue-collar;married;basic.4y;no;yes;no;telephone;jun;fri;78;7;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+40;admin.;married;high.school;no;no;no;telephone;jun;fri;590;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+31;management;single;university.degree;unknown;no;no;telephone;jun;fri;100;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+30;admin.;divorced;high.school;no;no;no;telephone;jun;fri;13;10;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+31;entrepreneur;married;professional.course;no;yes;no;telephone;jun;fri;40;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+44;admin.;single;university.degree;unknown;yes;no;telephone;jun;fri;18;6;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+44;management;married;university.degree;unknown;yes;no;telephone;jun;fri;16;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+56;technician;married;unknown;no;no;no;telephone;jun;fri;196;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+57;retired;single;high.school;no;no;no;telephone;jun;fri;74;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+34;services;divorced;basic.9y;unknown;yes;no;telephone;jun;fri;34;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+36;admin.;married;university.degree;no;yes;no;telephone;jun;fri;27;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+56;self-employed;married;professional.course;no;no;yes;telephone;jun;fri;13;40;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+27;management;single;high.school;no;yes;yes;telephone;jun;fri;23;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+44;retired;single;basic.4y;no;yes;yes;telephone;jun;fri;160;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+46;admin.;divorced;university.degree;no;yes;no;telephone;jun;fri;14;12;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+25;admin.;single;high.school;no;no;no;telephone;jun;fri;20;7;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+59;entrepreneur;married;university.degree;no;no;no;telephone;jun;fri;9;5;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+25;unemployed;single;high.school;unknown;no;no;telephone;jun;fri;287;9;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+37;technician;married;professional.course;no;no;no;telephone;jun;fri;26;6;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+31;entrepreneur;single;basic.6y;unknown;yes;no;telephone;jun;fri;12;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+59;retired;divorced;basic.4y;unknown;no;yes;telephone;jun;fri;13;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+39;services;single;high.school;no;no;no;telephone;jun;fri;48;10;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+32;services;single;high.school;no;no;no;telephone;jun;fri;13;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+55;unemployed;divorced;basic.9y;no;no;no;telephone;jun;fri;9;6;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+25;services;single;high.school;no;yes;no;telephone;jun;fri;13;14;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+42;services;married;high.school;no;no;no;telephone;jun;fri;55;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+40;admin.;single;high.school;no;yes;yes;telephone;jun;fri;10;13;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+52;retired;married;professional.course;no;no;no;telephone;jun;fri;41;7;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+59;services;married;high.school;unknown;yes;no;telephone;jun;fri;13;7;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+50;entrepreneur;married;basic.9y;no;yes;no;telephone;jun;fri;7;12;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+33;admin.;divorced;university.degree;no;no;no;telephone;jun;fri;92;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+58;blue-collar;unknown;basic.9y;unknown;no;no;telephone;jun;fri;180;6;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+56;retired;married;high.school;unknown;yes;no;telephone;jun;fri;1094;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;yes
+50;blue-collar;married;basic.4y;unknown;yes;yes;telephone;jun;fri;160;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+31;management;married;university.degree;no;no;no;telephone;jun;fri;101;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+36;admin.;married;basic.9y;no;no;yes;telephone;jun;fri;75;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+40;admin.;married;university.degree;no;no;no;telephone;jun;fri;17;21;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+22;technician;single;professional.course;no;no;no;telephone;jun;fri;184;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+27;unemployed;married;high.school;no;yes;no;telephone;jun;fri;23;13;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+30;blue-collar;married;basic.9y;no;no;yes;telephone;jun;fri;78;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+51;management;married;university.degree;unknown;no;no;telephone;jun;fri;13;10;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+39;management;married;university.degree;no;no;no;telephone;jun;fri;601;5;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+30;blue-collar;married;basic.4y;unknown;yes;no;telephone;jun;fri;83;5;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+58;retired;divorced;professional.course;unknown;yes;no;telephone;jun;fri;169;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+53;blue-collar;married;basic.9y;no;yes;no;telephone;jun;fri;13;5;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+23;blue-collar;single;basic.4y;no;yes;no;telephone;jun;fri;31;10;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+45;management;single;basic.9y;no;yes;no;telephone;jun;fri;294;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+48;admin.;divorced;high.school;no;no;yes;telephone;jun;fri;36;5;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+29;blue-collar;married;unknown;unknown;no;yes;telephone;jun;fri;55;5;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+37;blue-collar;married;basic.9y;no;no;no;telephone;jun;fri;15;7;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+40;technician;single;professional.course;no;yes;no;telephone;jun;fri;87;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+40;management;married;unknown;no;no;yes;telephone;jun;fri;17;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+40;housemaid;married;basic.4y;unknown;yes;no;telephone;jun;fri;30;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+38;blue-collar;single;basic.9y;no;yes;no;telephone;jun;fri;38;6;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+41;self-employed;divorced;university.degree;unknown;yes;no;telephone;jun;fri;39;5;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+33;admin.;married;high.school;no;yes;no;telephone;jun;fri;61;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+58;blue-collar;married;basic.9y;unknown;yes;no;telephone;jun;fri;63;15;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+42;technician;divorced;basic.9y;no;no;no;telephone;jun;fri;45;22;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+59;retired;married;basic.9y;unknown;no;no;telephone;jun;fri;25;8;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+30;admin.;married;university.degree;no;yes;yes;telephone;jun;fri;42;7;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+32;services;single;high.school;no;yes;no;telephone;jun;fri;23;11;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+40;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;fri;252;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+21;student;single;high.school;no;no;no;telephone;jun;fri;24;7;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+37;services;married;high.school;no;no;no;telephone;jun;fri;152;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+47;services;married;high.school;unknown;no;no;telephone;jun;fri;33;6;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+34;admin.;married;university.degree;no;yes;no;telephone;jun;fri;31;6;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+51;management;married;university.degree;no;yes;no;telephone;jun;fri;236;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+50;entrepreneur;married;basic.4y;no;no;no;telephone;jun;fri;20;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+36;blue-collar;single;high.school;no;yes;yes;telephone;jun;fri;14;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+53;blue-collar;married;basic.4y;unknown;yes;no;telephone;jun;fri;21;18;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+31;admin.;single;basic.9y;unknown;yes;yes;telephone;jun;fri;13;15;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+47;entrepreneur;single;university.degree;unknown;yes;no;telephone;jun;fri;39;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+51;services;divorced;unknown;unknown;yes;no;telephone;jun;fri;16;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+56;retired;married;basic.6y;no;yes;yes;telephone;jun;fri;37;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+44;self-employed;married;professional.course;no;yes;yes;telephone;jun;fri;47;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+56;admin.;married;university.degree;no;no;no;telephone;jun;fri;34;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+51;services;married;basic.9y;no;yes;no;telephone;jun;fri;250;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+58;entrepreneur;married;basic.4y;no;yes;no;telephone;jun;fri;221;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+41;entrepreneur;married;university.degree;unknown;yes;no;telephone;jun;fri;216;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+29;admin.;married;high.school;no;yes;no;telephone;jun;fri;21;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+48;admin.;single;university.degree;no;yes;no;telephone;jun;fri;14;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+37;blue-collar;married;basic.4y;no;yes;no;telephone;jun;fri;94;7;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+30;services;single;high.school;no;unknown;unknown;telephone;jun;fri;709;9;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+46;entrepreneur;married;university.degree;unknown;no;no;telephone;jun;fri;8;6;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+37;technician;single;professional.course;unknown;no;no;telephone;jun;fri;43;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+31;admin.;divorced;high.school;no;no;no;telephone;jun;fri;111;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+33;self-employed;single;university.degree;no;unknown;unknown;telephone;jun;fri;38;5;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+34;self-employed;single;university.degree;no;yes;no;telephone;jun;fri;19;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+39;technician;single;high.school;no;yes;no;telephone;jun;fri;274;9;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+28;admin.;married;university.degree;no;no;no;telephone;jun;fri;819;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+58;technician;married;professional.course;unknown;yes;no;telephone;jun;fri;16;8;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+45;blue-collar;married;basic.4y;unknown;yes;yes;telephone;jun;fri;19;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+47;services;married;high.school;unknown;yes;no;telephone;jun;fri;247;7;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+53;blue-collar;divorced;basic.4y;unknown;yes;no;telephone;jun;fri;27;5;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+41;admin.;married;high.school;unknown;no;no;telephone;jun;fri;23;7;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+33;blue-collar;married;basic.9y;no;no;no;telephone;jun;fri;12;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+38;self-employed;single;basic.9y;unknown;yes;yes;telephone;jun;fri;375;5;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+60;self-employed;married;professional.course;unknown;yes;no;telephone;jun;fri;10;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+36;admin.;married;high.school;no;yes;no;telephone;jun;fri;21;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+37;admin.;married;high.school;no;yes;no;telephone;jun;fri;14;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+52;retired;married;university.degree;no;yes;no;telephone;jun;fri;11;12;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+47;admin.;married;basic.9y;no;yes;no;telephone;jun;fri;9;7;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+44;blue-collar;married;basic.9y;no;no;no;telephone;jun;fri;109;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+38;technician;married;professional.course;no;yes;no;telephone;jun;fri;21;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+46;admin.;married;high.school;no;yes;no;telephone;jun;fri;7;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+33;management;married;university.degree;no;yes;no;telephone;jun;fri;18;5;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+45;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;fri;13;6;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+38;admin.;married;university.degree;no;no;no;telephone;jun;fri;24;5;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+55;technician;married;professional.course;no;yes;yes;telephone;jun;fri;61;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+29;unemployed;single;university.degree;no;no;no;telephone;jun;fri;6;17;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+34;blue-collar;married;basic.9y;no;no;no;telephone;jun;fri;114;10;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+25;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;fri;11;7;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+40;admin.;married;university.degree;no;no;no;telephone;jun;fri;44;5;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+46;admin.;married;basic.9y;unknown;no;yes;telephone;jun;fri;24;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+27;blue-collar;married;university.degree;no;no;no;telephone;jun;fri;10;19;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+51;blue-collar;divorced;unknown;unknown;no;no;telephone;jun;fri;197;6;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+42;admin.;divorced;university.degree;no;no;no;telephone;jun;fri;26;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+57;self-employed;married;basic.9y;unknown;yes;no;telephone;jun;fri;185;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+37;admin.;single;university.degree;no;no;no;telephone;jun;fri;18;11;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+45;unknown;married;unknown;no;no;no;telephone;jun;fri;61;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+28;blue-collar;married;unknown;unknown;no;no;telephone;jun;fri;20;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+47;management;divorced;university.degree;no;no;no;telephone;jun;fri;8;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+33;admin.;single;high.school;no;yes;yes;telephone;jun;fri;15;26;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+58;technician;single;professional.course;no;yes;yes;telephone;jun;fri;39;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+31;admin.;divorced;high.school;unknown;no;yes;telephone;jun;fri;28;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+52;services;unknown;professional.course;no;yes;no;telephone;jun;fri;7;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+27;entrepreneur;single;university.degree;no;no;no;telephone;jun;fri;48;5;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+32;admin.;married;university.degree;no;no;no;telephone;jun;fri;18;9;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+36;admin.;single;university.degree;no;no;no;telephone;jun;fri;35;7;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+35;admin.;married;university.degree;no;no;no;telephone;jun;fri;13;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+28;admin.;single;high.school;no;no;no;telephone;jun;fri;22;16;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+49;management;married;high.school;unknown;no;no;telephone;jun;fri;18;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+29;admin.;married;unknown;no;unknown;unknown;telephone;jun;fri;83;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+47;admin.;married;university.degree;no;yes;no;telephone;jun;fri;11;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+38;admin.;married;high.school;no;yes;no;telephone;jun;fri;447;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+58;technician;married;professional.course;unknown;no;no;telephone;jun;fri;18;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+38;services;married;basic.9y;no;unknown;unknown;telephone;jun;fri;17;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+46;admin.;married;high.school;no;no;yes;telephone;jun;fri;492;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+58;admin.;married;university.degree;no;unknown;unknown;telephone;jun;fri;36;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+27;blue-collar;married;basic.6y;unknown;yes;no;telephone;jun;fri;34;8;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+26;technician;married;basic.6y;no;yes;no;telephone;jun;fri;11;20;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+29;admin.;married;university.degree;no;yes;no;telephone;jun;fri;9;16;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+39;admin.;married;high.school;no;yes;yes;telephone;jun;fri;9;19;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+33;unemployed;married;basic.9y;no;no;no;telephone;jun;fri;11;6;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+48;blue-collar;married;professional.course;no;yes;yes;telephone;jun;fri;12;24;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+37;management;married;university.degree;unknown;no;no;telephone;jun;fri;10;23;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+38;housemaid;married;basic.9y;no;no;no;telephone;jun;fri;86;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+40;blue-collar;married;basic.9y;no;no;no;telephone;jun;fri;46;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+55;blue-collar;married;basic.4y;unknown;unknown;unknown;telephone;jun;fri;32;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+39;admin.;married;professional.course;no;no;no;telephone;jun;fri;32;5;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+40;admin.;single;professional.course;unknown;no;yes;telephone;jun;fri;36;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+37;blue-collar;married;basic.9y;no;no;no;telephone;jun;fri;124;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+39;blue-collar;single;basic.4y;unknown;no;no;telephone;jun;fri;15;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+36;blue-collar;married;professional.course;unknown;yes;no;telephone;jun;fri;9;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+35;student;single;university.degree;unknown;no;no;telephone;jun;fri;10;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+33;services;divorced;high.school;no;yes;no;telephone;jun;fri;52;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+41;technician;married;high.school;no;yes;no;telephone;jun;fri;145;24;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+33;blue-collar;married;basic.9y;no;no;no;telephone;jun;fri;8;13;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+24;services;single;high.school;no;no;no;telephone;jun;fri;12;8;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+53;technician;divorced;university.degree;no;yes;no;telephone;jun;fri;16;28;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+32;admin.;single;university.degree;unknown;no;no;telephone;jun;fri;44;15;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+40;blue-collar;married;unknown;unknown;no;no;telephone;jun;fri;22;8;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+51;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;fri;60;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+38;unknown;married;unknown;unknown;yes;no;telephone;jun;fri;13;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+53;technician;married;unknown;no;no;no;telephone;jun;fri;51;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+49;technician;married;professional.course;no;yes;no;telephone;jun;fri;41;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+42;management;married;high.school;no;no;no;telephone;jun;fri;20;5;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+37;blue-collar;single;unknown;unknown;no;yes;telephone;jun;fri;53;11;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+47;blue-collar;divorced;basic.4y;no;yes;yes;telephone;jun;fri;9;18;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+31;services;single;professional.course;no;yes;no;telephone;jun;fri;202;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+46;blue-collar;single;high.school;no;no;no;telephone;jun;fri;310;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+54;technician;married;high.school;no;no;no;telephone;jun;fri;204;2;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+39;unemployed;divorced;basic.9y;unknown;no;no;telephone;jun;fri;638;9;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+45;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;fri;924;3;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;yes
+32;services;married;high.school;no;no;no;telephone;jun;fri;298;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;no
+56;technician;married;unknown;no;no;yes;telephone;jun;fri;988;4;999;0;nonexistent;1.4;94.465;-41.8;4.959;5228.1;yes
+29;services;single;high.school;unknown;no;no;telephone;jun;mon;123;2;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+32;admin.;single;university.degree;no;yes;no;telephone;jun;mon;85;2;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+40;admin.;single;university.degree;no;no;no;telephone;jun;mon;498;2;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;yes
+39;management;single;university.degree;no;no;no;telephone;jun;mon;670;3;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;yes
+25;blue-collar;married;basic.9y;no;yes;no;telephone;jun;mon;82;5;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+26;blue-collar;married;basic.9y;no;no;no;telephone;jun;mon;72;3;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+46;management;married;basic.9y;no;no;no;telephone;jun;mon;53;4;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+26;blue-collar;married;basic.9y;no;yes;no;telephone;jun;mon;123;2;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+54;blue-collar;married;professional.course;no;no;no;telephone;jun;mon;364;2;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+47;blue-collar;married;basic.4y;no;yes;no;telephone;jun;mon;655;4;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+40;management;divorced;university.degree;unknown;unknown;unknown;telephone;jun;mon;88;2;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+41;self-employed;single;university.degree;no;yes;yes;telephone;jun;mon;640;3;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+36;technician;married;basic.9y;no;no;no;telephone;jun;mon;339;4;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+30;blue-collar;single;basic.9y;no;yes;no;telephone;jun;mon;662;2;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;yes
+58;management;married;university.degree;unknown;no;no;telephone;jun;mon;25;2;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+47;admin.;married;university.degree;no;no;no;telephone;jun;mon;216;3;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+52;management;married;basic.4y;no;no;no;telephone;jun;tue;165;5;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+34;blue-collar;single;high.school;no;yes;no;telephone;jun;tue;137;5;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+30;services;married;high.school;no;yes;no;telephone;jun;tue;62;5;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+26;admin.;single;high.school;no;no;no;telephone;jun;tue;56;3;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+58;services;married;high.school;no;yes;no;telephone;jun;tue;790;3;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+43;self-employed;divorced;university.degree;unknown;yes;no;telephone;jun;tue;363;4;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+31;blue-collar;married;basic.6y;no;no;no;telephone;jun;tue;481;6;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+46;blue-collar;married;basic.6y;no;no;no;telephone;jun;tue;32;3;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+39;admin.;single;high.school;no;no;no;telephone;jun;tue;183;3;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+42;self-employed;married;professional.course;no;yes;no;telephone;jun;tue;214;4;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+37;services;married;high.school;unknown;yes;no;telephone;jun;tue;146;3;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+51;admin.;divorced;unknown;no;yes;no;telephone;jun;tue;528;2;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;yes
+37;services;married;high.school;no;yes;yes;telephone;jun;tue;351;3;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+35;admin.;divorced;university.degree;no;no;no;telephone;jun;tue;51;8;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+55;blue-collar;married;basic.9y;unknown;yes;no;telephone;jun;tue;103;6;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+43;blue-collar;married;basic.9y;no;no;no;telephone;jun;wed;89;4;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+29;entrepreneur;single;university.degree;no;no;no;telephone;jun;wed;347;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+58;blue-collar;married;basic.9y;no;no;no;telephone;jun;wed;372;5;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+34;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;wed;411;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+44;blue-collar;married;unknown;no;yes;no;telephone;jun;wed;151;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+42;self-employed;married;university.degree;unknown;yes;no;telephone;jun;wed;157;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+44;blue-collar;married;professional.course;unknown;yes;no;telephone;jun;wed;43;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+32;blue-collar;single;basic.9y;no;yes;no;telephone;jun;wed;75;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+52;technician;married;basic.9y;no;no;yes;telephone;jun;wed;249;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+36;blue-collar;married;basic.9y;no;yes;no;telephone;jun;wed;268;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+38;blue-collar;married;basic.9y;no;no;no;telephone;jun;wed;333;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+39;technician;married;basic.9y;unknown;yes;no;telephone;jun;wed;155;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+33;unknown;married;unknown;unknown;yes;no;telephone;jun;wed;247;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+39;services;married;basic.6y;unknown;yes;no;telephone;jun;wed;100;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+36;admin.;married;university.degree;no;yes;no;telephone;jun;wed;67;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+44;services;married;basic.9y;no;yes;no;telephone;jun;wed;162;2;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+30;services;married;unknown;unknown;no;no;telephone;jun;wed;93;2;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+29;blue-collar;divorced;basic.4y;unknown;no;no;telephone;jun;wed;231;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+34;technician;married;professional.course;no;no;no;telephone;jun;wed;67;2;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+41;admin.;single;basic.6y;no;no;no;telephone;jun;wed;168;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+51;entrepreneur;married;university.degree;no;no;no;telephone;jun;wed;71;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+28;admin.;married;high.school;no;no;no;telephone;jun;wed;151;1;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+31;housemaid;married;basic.4y;no;no;no;telephone;jun;wed;91;2;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+46;services;divorced;professional.course;unknown;yes;no;telephone;jun;wed;292;2;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+29;admin.;married;university.degree;no;yes;yes;telephone;jun;wed;281;3;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+33;services;single;high.school;no;no;no;telephone;jun;wed;375;2;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+42;management;married;university.degree;no;no;no;telephone;jun;wed;168;8;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+36;blue-collar;married;unknown;unknown;no;no;telephone;jun;wed;456;3;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+44;blue-collar;married;basic.9y;unknown;yes;no;telephone;jun;wed;103;5;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+39;blue-collar;married;basic.4y;no;no;no;telephone;jun;wed;305;4;999;0;nonexistent;1.4;94.465;-41.8;4.958;5228.1;no
+44;admin.;married;university.degree;unknown;yes;yes;telephone;jun;thu;91;4;999;0;nonexistent;1.4;94.465;-41.8;4.955;5228.1;no
+45;admin.;married;high.school;no;yes;no;telephone;jun;thu;650;2;999;0;nonexistent;1.4;94.465;-41.8;4.955;5228.1;no
+28;services;single;basic.9y;no;no;no;telephone;jun;thu;178;2;999;0;nonexistent;1.4;94.465;-41.8;4.955;5228.1;no
+59;retired;married;basic.9y;no;no;yes;telephone;jun;thu;465;2;999;0;nonexistent;1.4;94.465;-41.8;4.955;5228.1;no
+42;services;single;unknown;no;yes;no;telephone;jun;thu;626;2;999;0;nonexistent;1.4;94.465;-41.8;4.955;5228.1;no
+58;services;married;basic.4y;no;no;no;telephone;jun;thu;322;2;999;0;nonexistent;1.4;94.465;-41.8;4.955;5228.1;no
+51;services;married;professional.course;unknown;no;no;telephone;jun;thu;177;1;999;0;nonexistent;1.4;94.465;-41.8;4.955;5228.1;no
+31;blue-collar;married;basic.4y;unknown;yes;yes;telephone;jun;thu;519;3;999;0;nonexistent;1.4;94.465;-41.8;4.955;5228.1;yes
+49;unemployed;married;basic.9y;no;yes;yes;telephone;jun;thu;271;1;999;0;nonexistent;1.4;94.465;-41.8;4.955;5228.1;no
+48;blue-collar;married;high.school;no;yes;yes;telephone;jun;thu;677;3;999;0;nonexistent;1.4;94.465;-41.8;4.955;5228.1;yes
+52;technician;married;basic.9y;no;yes;yes;telephone;jun;thu;138;3;999;0;nonexistent;1.4;94.465;-41.8;4.955;5228.1;no
+29;blue-collar;single;basic.6y;no;yes;no;telephone;jun;thu;215;3;999;0;nonexistent;1.4;94.465;-41.8;4.955;5228.1;no
+60;self-employed;married;professional.course;no;yes;no;telephone;jun;thu;318;2;999;0;nonexistent;1.4;94.465;-41.8;4.955;5228.1;no
+28;admin.;single;professional.course;no;no;yes;telephone;jun;thu;253;1;999;0;nonexistent;1.4;94.465;-41.8;4.955;5228.1;no
+30;admin.;married;high.school;no;unknown;unknown;telephone;jun;thu;344;1;999;0;nonexistent;1.4;94.465;-41.8;4.955;5228.1;no
+30;admin.;single;university.degree;no;no;no;telephone;jun;thu;301;4;999;0;nonexistent;1.4;94.465;-41.8;4.955;5228.1;no
+36;blue-collar;married;high.school;no;no;no;telephone;jun;thu;197;1;999;0;nonexistent;1.4;94.465;-41.8;4.955;5228.1;no
+56;admin.;divorced;high.school;no;yes;no;telephone;jun;thu;71;1;999;0;nonexistent;1.4;94.465;-41.8;4.955;5228.1;no
+29;blue-collar;married;basic.9y;no;no;yes;telephone;jun;thu;190;1;999;0;nonexistent;1.4;94.465;-41.8;4.955;5228.1;no
+45;technician;single;professional.course;unknown;yes;yes;telephone;jun;thu;116;1;999;0;nonexistent;1.4;94.465;-41.8;4.955;5228.1;no
+51;management;married;university.degree;unknown;no;yes;telephone;jun;thu;93;1;999;0;nonexistent;1.4;94.465;-41.8;4.955;5228.1;no
+35;self-employed;married;professional.course;unknown;yes;no;telephone;jun;thu;29;1;999;0;nonexistent;1.4;94.465;-41.8;4.955;5228.1;no
+30;services;divorced;high.school;unknown;yes;no;telephone;jun;thu;133;2;999;0;nonexistent;1.4;94.465;-41.8;4.955;5228.1;no
+39;blue-collar;married;basic.6y;no;yes;no;telephone;jun;thu;150;1;999;0;nonexistent;1.4;94.465;-41.8;4.955;5228.1;no
+25;technician;single;professional.course;no;no;yes;telephone;jun;thu;150;2;999;0;nonexistent;1.4;94.465;-41.8;4.955;5228.1;no
+36;blue-collar;single;basic.4y;no;yes;no;telephone;jun;thu;182;2;999;0;nonexistent;1.4;94.465;-41.8;4.955;5228.1;no
+38;blue-collar;single;high.school;unknown;no;no;telephone;jun;thu;277;1;999;0;nonexistent;1.4;94.465;-41.8;4.955;5228.1;no
+29;admin.;married;university.degree;no;no;no;telephone;jun;thu;176;7;999;0;nonexistent;1.4;94.465;-41.8;4.955;5228.1;no
+36;blue-collar;single;basic.9y;no;yes;yes;telephone;jun;thu;762;3;999;0;nonexistent;1.4;94.465;-41.8;4.955;5228.1;yes
+37;admin.;single;university.degree;unknown;yes;no;telephone;jun;thu;179;3;999;0;nonexistent;1.4;94.465;-41.8;4.955;5228.1;no
+42;admin.;divorced;high.school;unknown;no;no;telephone;jun;thu;105;3;999;0;nonexistent;1.4;94.465;-41.8;4.955;5228.1;no
+58;retired;single;professional.course;no;yes;no;telephone;jun;thu;565;3;999;0;nonexistent;1.4;94.465;-41.8;4.955;5228.1;no
+49;services;divorced;high.school;no;no;no;telephone;jun;thu;138;2;999;0;nonexistent;1.4;94.465;-41.8;4.955;5228.1;no
+55;technician;unknown;unknown;unknown;no;no;telephone;jun;thu;667;3;999;0;nonexistent;1.4;94.465;-41.8;4.955;5228.1;no
+58;retired;married;high.school;no;yes;no;telephone;jun;thu;3183;2;999;0;nonexistent;1.4;94.465;-41.8;4.955;5228.1;yes
+34;admin.;single;university.degree;no;no;no;telephone;jun;thu;406;2;999;0;nonexistent;1.4;94.465;-41.8;4.955;5228.1;no
+29;blue-collar;divorced;basic.4y;unknown;no;no;telephone;jun;thu;243;2;999;0;nonexistent;1.4;94.465;-41.8;4.955;5228.1;no
+46;unknown;married;basic.4y;unknown;yes;no;telephone;jun;thu;110;3;999;0;nonexistent;1.4;94.465;-41.8;4.955;5228.1;no
+38;blue-collar;married;high.school;unknown;no;no;telephone;jun;thu;113;5;999;0;nonexistent;1.4;94.465;-41.8;4.955;5228.1;no
+27;technician;single;unknown;no;yes;no;telephone;jun;thu;174;8;999;0;nonexistent;1.4;94.465;-41.8;4.955;5228.1;no
+39;self-employed;divorced;professional.course;no;yes;no;telephone;jun;thu;529;4;999;0;nonexistent;1.4;94.465;-41.8;4.955;5228.1;no
+60;retired;divorced;basic.4y;unknown;yes;no;telephone;jun;thu;45;2;999;0;nonexistent;1.4;94.465;-41.8;4.955;5228.1;no
+42;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;thu;75;5;999;0;nonexistent;1.4;94.465;-41.8;4.955;5228.1;no
+35;blue-collar;married;basic.9y;unknown;yes;yes;telephone;jun;thu;122;6;999;0;nonexistent;1.4;94.465;-41.8;4.955;5228.1;no
+31;services;single;high.school;no;no;no;telephone;jun;fri;422;6;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;yes
+34;blue-collar;married;basic.6y;no;no;no;telephone;jun;fri;381;3;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+38;blue-collar;single;high.school;unknown;yes;no;telephone;jun;fri;856;2;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;yes
+39;services;married;basic.9y;unknown;no;no;telephone;jun;fri;97;2;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+33;services;married;high.school;no;no;no;telephone;jun;fri;59;4;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+34;admin.;married;university.degree;no;no;no;telephone;jun;fri;198;2;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+32;management;married;university.degree;no;no;no;telephone;jun;fri;80;4;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+29;admin.;single;high.school;no;no;no;telephone;jun;fri;433;4;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+44;blue-collar;married;basic.6y;no;yes;no;telephone;jun;fri;159;2;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+50;admin.;married;high.school;no;no;no;telephone;jun;fri;513;3;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+59;housemaid;married;basic.6y;no;no;no;telephone;jun;fri;207;3;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+26;admin.;married;high.school;no;no;no;telephone;jun;fri;120;6;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+29;services;married;high.school;no;yes;yes;telephone;jun;fri;121;4;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+34;admin.;married;high.school;no;yes;no;telephone;jun;fri;95;1;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+39;self-employed;married;basic.6y;unknown;no;yes;telephone;jun;fri;213;1;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+24;technician;single;basic.9y;no;no;no;telephone;jun;fri;111;3;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+34;blue-collar;married;basic.9y;no;no;no;telephone;jun;fri;302;2;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+37;admin.;married;high.school;no;no;no;telephone;jun;fri;212;1;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+27;self-employed;single;university.degree;no;no;no;telephone;jun;fri;911;1;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;yes
+30;technician;married;high.school;no;no;no;telephone;jun;fri;154;6;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+58;services;married;high.school;no;no;no;telephone;jun;fri;181;1;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+58;services;married;high.school;no;yes;no;telephone;jun;fri;32;1;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+40;services;married;high.school;no;no;no;telephone;jun;fri;392;4;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+37;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;fri;124;2;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+40;management;married;basic.9y;no;yes;yes;telephone;jun;fri;162;1;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+33;technician;single;professional.course;no;no;no;telephone;jun;fri;634;2;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+32;services;single;high.school;no;no;no;telephone;jun;fri;79;1;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+34;admin.;single;basic.9y;no;yes;no;telephone;jun;fri;148;5;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+27;admin.;single;professional.course;no;yes;yes;telephone;jun;fri;103;1;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+27;admin.;single;professional.course;no;yes;yes;telephone;jun;fri;141;1;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+27;self-employed;single;university.degree;no;yes;no;telephone;jun;fri;244;2;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+36;blue-collar;single;basic.4y;no;yes;no;telephone;jun;fri;250;8;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+42;admin.;single;high.school;no;no;no;telephone;jun;fri;140;2;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+51;services;married;high.school;no;unknown;unknown;telephone;jun;fri;133;5;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+30;blue-collar;married;basic.9y;unknown;no;no;telephone;jun;fri;191;28;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+28;blue-collar;married;high.school;no;no;no;telephone;jun;fri;216;1;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+58;technician;married;basic.4y;unknown;yes;yes;telephone;jun;fri;269;1;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+29;blue-collar;married;unknown;unknown;no;no;telephone;jun;fri;139;2;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+35;technician;single;professional.course;no;no;no;telephone;jun;fri;397;1;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+29;blue-collar;single;basic.9y;no;yes;no;telephone;jun;fri;76;1;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+41;blue-collar;married;professional.course;unknown;no;yes;telephone;jun;fri;244;1;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+59;technician;divorced;basic.4y;no;yes;no;telephone;jun;fri;135;2;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+35;admin.;married;high.school;no;yes;no;telephone;jun;fri;131;4;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+42;blue-collar;married;basic.9y;no;yes;yes;telephone;jun;fri;102;1;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+58;blue-collar;married;basic.4y;unknown;no;no;telephone;jun;fri;326;1;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+30;entrepreneur;married;basic.9y;no;no;no;telephone;jun;fri;153;2;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+42;blue-collar;married;basic.6y;unknown;yes;no;telephone;jun;fri;151;2;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+40;blue-collar;married;basic.9y;unknown;yes;no;telephone;jun;fri;349;5;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+54;admin.;married;university.degree;no;yes;no;telephone;jun;fri;291;2;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+47;blue-collar;married;basic.9y;no;yes;no;telephone;jun;fri;185;3;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+30;blue-collar;single;basic.6y;unknown;yes;no;telephone;jun;fri;169;2;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+35;blue-collar;married;basic.6y;no;no;no;telephone;jun;fri;281;3;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+49;housemaid;divorced;basic.4y;no;no;no;telephone;jun;fri;114;4;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+49;housemaid;married;basic.4y;no;no;yes;telephone;jun;fri;183;2;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+45;technician;single;professional.course;unknown;yes;no;telephone;jun;fri;293;3;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+36;admin.;married;high.school;no;yes;yes;telephone;jun;fri;111;4;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+29;services;divorced;high.school;no;yes;no;telephone;jun;fri;56;2;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+30;entrepreneur;divorced;university.degree;no;no;no;telephone;jun;fri;101;5;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+44;blue-collar;single;basic.6y;no;no;no;telephone;jun;fri;247;3;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+28;technician;single;university.degree;no;no;no;telephone;jun;mon;125;2;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+40;blue-collar;married;basic.4y;no;yes;yes;telephone;jun;mon;322;3;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+39;technician;single;professional.course;no;yes;no;telephone;jun;mon;182;4;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+49;blue-collar;married;basic.4y;no;yes;no;telephone;jun;mon;117;3;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+31;blue-collar;married;basic.9y;no;yes;no;telephone;jun;mon;198;2;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+37;blue-collar;married;basic.9y;no;no;no;telephone;jun;mon;123;2;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+52;self-employed;married;professional.course;no;no;no;telephone;jun;mon;45;2;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+23;services;single;high.school;no;no;no;telephone;jun;mon;85;5;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+40;entrepreneur;divorced;university.degree;no;no;no;telephone;jun;mon;146;3;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+40;blue-collar;married;basic.6y;unknown;no;no;telephone;jun;mon;93;3;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+28;admin.;single;university.degree;no;no;no;telephone;jun;mon;103;3;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+55;blue-collar;married;basic.4y;unknown;unknown;unknown;telephone;jun;mon;54;3;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+35;admin.;married;university.degree;no;no;no;telephone;jun;mon;27;3;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+38;admin.;married;high.school;no;no;no;telephone;jun;mon;117;2;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+42;admin.;married;university.degree;no;no;no;telephone;jun;mon;124;2;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+44;blue-collar;married;basic.4y;unknown;yes;yes;telephone;jun;mon;165;4;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+33;self-employed;married;professional.course;no;yes;no;telephone;jun;mon;141;4;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+28;management;married;university.degree;no;no;no;telephone;jun;mon;138;4;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+41;blue-collar;married;basic.6y;unknown;no;no;telephone;jun;mon;385;1;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+23;admin.;married;professional.course;no;no;yes;telephone;jun;mon;266;3;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+58;retired;married;basic.4y;unknown;yes;no;telephone;jun;mon;50;1;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+39;unemployed;married;basic.4y;no;no;no;telephone;jun;mon;203;1;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+32;self-employed;divorced;professional.course;no;yes;no;telephone;jun;mon;118;1;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+41;blue-collar;single;unknown;unknown;no;no;telephone;jun;mon;780;3;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+39;admin.;single;high.school;no;yes;yes;telephone;jun;mon;98;1;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+39;admin.;single;high.school;no;no;no;telephone;jun;mon;202;1;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+39;admin.;single;high.school;no;no;yes;telephone;jun;mon;158;1;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+27;technician;single;university.degree;no;yes;no;telephone;jun;mon;224;2;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+28;self-employed;single;university.degree;no;yes;no;telephone;jun;mon;73;2;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+54;technician;divorced;basic.9y;no;yes;no;telephone;jun;mon;111;2;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+29;admin.;single;high.school;no;unknown;unknown;telephone;jun;mon;444;3;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+29;blue-collar;married;basic.6y;no;no;no;telephone;jun;mon;69;3;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+37;self-employed;single;university.degree;unknown;no;yes;telephone;jun;mon;88;4;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+38;technician;single;university.degree;no;yes;no;telephone;jun;mon;104;2;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+44;technician;married;university.degree;no;no;no;telephone;jun;mon;252;4;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+53;technician;married;basic.9y;no;no;no;telephone;jun;mon;1049;6;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;yes
+39;blue-collar;married;basic.6y;unknown;yes;no;telephone;jun;mon;132;4;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+31;housemaid;married;basic.4y;no;no;no;telephone;jun;mon;260;3;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+41;blue-collar;married;basic.4y;no;yes;yes;telephone;jun;mon;450;2;999;0;nonexistent;1.4;94.465;-41.8;4.947;5228.1;no
+41;entrepreneur;married;university.degree;no;yes;yes;telephone;jul;tue;381;4;999;0;nonexistent;1.4;93.918;-42.7;4.955;5228.1;no
+49;blue-collar;married;basic.9y;unknown;yes;no;telephone;jul;tue;158;2;999;0;nonexistent;1.4;93.918;-42.7;4.955;5228.1;no
+25;services;married;high.school;no;yes;no;telephone;jul;tue;479;9;999;0;nonexistent;1.4;93.918;-42.7;4.955;5228.1;yes
+41;blue-collar;married;basic.4y;no;yes;no;telephone;jul;tue;281;3;999;0;nonexistent;1.4;93.918;-42.7;4.955;5228.1;no
+53;management;married;university.degree;no;no;yes;telephone;jul;tue;128;3;999;0;nonexistent;1.4;93.918;-42.7;4.955;5228.1;no
+41;blue-collar;married;basic.4y;unknown;yes;no;telephone;jul;tue;471;3;999;0;nonexistent;1.4;93.918;-42.7;4.955;5228.1;no
+56;retired;married;basic.4y;no;yes;no;telephone;jul;tue;58;1;999;0;nonexistent;1.4;93.918;-42.7;4.955;5228.1;no
+41;services;single;high.school;no;yes;no;telephone;jul;tue;108;1;999;0;nonexistent;1.4;93.918;-42.7;4.955;5228.1;no
+35;blue-collar;married;unknown;no;yes;no;telephone;jul;tue;140;1;999;0;nonexistent;1.4;93.918;-42.7;4.955;5228.1;no
+28;admin.;married;high.school;no;yes;no;telephone;jul;tue;54;1;999;0;nonexistent;1.4;93.918;-42.7;4.955;5228.1;no
+28;admin.;married;high.school;no;no;no;telephone;jul;tue;249;1;999;0;nonexistent;1.4;93.918;-42.7;4.955;5228.1;no
+33;blue-collar;married;basic.4y;no;yes;no;telephone;jul;tue;102;1;999;0;nonexistent;1.4;93.918;-42.7;4.955;5228.1;no
+29;self-employed;married;university.degree;no;no;no;telephone;jul;tue;215;3;999;0;nonexistent;1.4;93.918;-42.7;4.955;5228.1;no
+54;blue-collar;married;basic.6y;unknown;yes;no;telephone;jul;tue;34;1;999;0;nonexistent;1.4;93.918;-42.7;4.955;5228.1;no
+31;blue-collar;married;basic.4y;unknown;no;no;telephone;jul;tue;161;1;999;0;nonexistent;1.4;93.918;-42.7;4.955;5228.1;no
+40;blue-collar;married;basic.9y;no;yes;no;telephone;jul;tue;428;2;999;0;nonexistent;1.4;93.918;-42.7;4.955;5228.1;no
+34;technician;single;professional.course;no;yes;no;telephone;jul;tue;157;1;999;0;nonexistent;1.4;93.918;-42.7;4.955;5228.1;no
+37;technician;married;professional.course;no;yes;no;telephone;jul;tue;242;6;999;0;nonexistent;1.4;93.918;-42.7;4.955;5228.1;no
+28;blue-collar;single;basic.6y;no;no;no;telephone;jul;tue;117;1;999;0;nonexistent;1.4;93.918;-42.7;4.955;5228.1;no
+45;blue-collar;married;basic.9y;no;yes;no;telephone;jul;tue;80;1;999;0;nonexistent;1.4;93.918;-42.7;4.955;5228.1;no
+28;blue-collar;married;basic.6y;no;no;no;telephone;jul;tue;36;1;999;0;nonexistent;1.4;93.918;-42.7;4.955;5228.1;no
+36;blue-collar;married;basic.9y;no;no;no;telephone;jul;tue;89;7;999;0;nonexistent;1.4;93.918;-42.7;4.955;5228.1;no
+26;unemployed;single;high.school;no;no;no;telephone;jul;tue;173;1;999;0;nonexistent;1.4;93.918;-42.7;4.955;5228.1;no
+38;blue-collar;married;basic.4y;no;no;no;telephone;jul;tue;150;1;999;0;nonexistent;1.4;93.918;-42.7;4.955;5228.1;no
+38;blue-collar;married;basic.4y;no;no;no;telephone;jul;tue;292;1;999;0;nonexistent;1.4;93.918;-42.7;4.955;5228.1;no
+44;admin.;divorced;unknown;no;no;no;telephone;jul;tue;183;2;999;0;nonexistent;1.4;93.918;-42.7;4.955;5228.1;no
+27;unemployed;married;basic.9y;unknown;no;no;telephone;jul;tue;200;1;999;0;nonexistent;1.4;93.918;-42.7;4.955;5228.1;no
+56;services;divorced;high.school;no;no;yes;telephone;jul;tue;150;1;999;0;nonexistent;1.4;93.918;-42.7;4.955;5228.1;no
+52;technician;married;professional.course;unknown;no;no;telephone;jul;tue;304;2;999;0;nonexistent;1.4;93.918;-42.7;4.955;5228.1;no
+42;unemployed;married;basic.9y;unknown;yes;no;telephone;jul;tue;163;1;999;0;nonexistent;1.4;93.918;-42.7;4.955;5228.1;no
+49;blue-collar;married;basic.4y;unknown;no;no;telephone;jul;tue;122;1;999;0;nonexistent;1.4;93.918;-42.7;4.955;5228.1;no
+36;technician;married;high.school;no;no;no;telephone;jul;tue;426;1;999;0;nonexistent;1.4;93.918;-42.7;4.955;5228.1;no
+58;management;married;university.degree;no;no;no;telephone;jul;tue;55;1;999;0;nonexistent;1.4;93.918;-42.7;4.955;5228.1;no
+41;housemaid;married;high.school;no;no;yes;telephone;jul;tue;86;1;999;0;nonexistent;1.4;93.918;-42.7;4.955;5228.1;no
+43;technician;single;professional.course;no;yes;yes;telephone;jul;tue;359;1;999;0;nonexistent;1.4;93.918;-42.7;4.955;5228.1;no
+37;admin.;married;high.school;no;no;no;telephone;jul;tue;305;1;999;0;nonexistent;1.4;93.918;-42.7;4.955;5228.1;no
+38;blue-collar;married;basic.9y;no;unknown;unknown;telephone;jul;tue;110;2;999;0;nonexistent;1.4;93.918;-42.7;4.955;5228.1;no
+55;blue-collar;married;basic.4y;no;yes;no;telephone;jul;tue;92;1;999;0;nonexistent;1.4;93.918;-42.7;4.955;5228.1;no
+55;blue-collar;married;basic.4y;no;yes;no;telephone;jul;tue;86;1;999;0;nonexistent;1.4;93.918;-42.7;4.955;5228.1;no
+33;services;married;high.school;unknown;yes;no;telephone;jul;tue;102;1;999;0;nonexistent;1.4;93.918;-42.7;4.955;5228.1;no
+53;blue-collar;married;basic.9y;unknown;no;no;telephone;jul;tue;39;1;999;0;nonexistent;1.4;93.918;-42.7;4.955;5228.1;no
+42;admin.;married;basic.6y;no;no;no;telephone;jul;tue;340;1;999;0;nonexistent;1.4;93.918;-42.7;4.955;5228.1;no
+37;services;divorced;high.school;no;no;no;telephone;jul;tue;125;3;999;0;nonexistent;1.4;93.918;-42.7;4.955;5228.1;no
+41;blue-collar;married;unknown;no;no;no;telephone;jul;tue;529;1;999;0;nonexistent;1.4;93.918;-42.7;4.955;5228.1;no
+35;blue-collar;married;basic.6y;no;no;no;telephone;jul;tue;196;4;999;0;nonexistent;1.4;93.918;-42.7;4.955;5228.1;no
+47;retired;married;basic.4y;no;no;no;telephone;jul;tue;484;1;999;0;nonexistent;1.4;93.918;-42.7;4.955;5228.1;no
+32;admin.;married;university.degree;no;no;no;telephone;jul;tue;56;1;999;0;nonexistent;1.4;93.918;-42.7;4.955;5228.1;no
+47;blue-collar;divorced;basic.9y;no;no;no;telephone;jul;tue;245;1;999;0;nonexistent;1.4;93.918;-42.7;4.955;5228.1;no
+57;retired;divorced;university.degree;no;no;no;telephone;jul;tue;156;2;999;0;nonexistent;1.4;93.918;-42.7;4.955;5228.1;no
+57;self-employed;married;professional.course;no;yes;yes;telephone;jul;tue;221;1;999;0;nonexistent;1.4;93.918;-42.7;4.955;5228.1;no
+54;retired;married;high.school;no;yes;yes;telephone;jul;tue;1992;2;999;0;nonexistent;1.4;93.918;-42.7;4.955;5228.1;no
+41;services;single;professional.course;no;yes;no;telephone;jul;tue;143;1;999;0;nonexistent;1.4;93.918;-42.7;4.955;5228.1;no
+35;admin.;married;high.school;no;yes;yes;telephone;jul;tue;157;1;999;0;nonexistent;1.4;93.918;-42.7;4.955;5228.1;no
+27;entrepreneur;single;university.degree;no;yes;no;telephone;jul;tue;420;2;999;0;nonexistent;1.4;93.918;-42.7;4.955;5228.1;no
+40;blue-collar;married;basic.9y;no;no;yes;telephone;jul;tue;1135;2;999;0;nonexistent;1.4;93.918;-42.7;4.955;5228.1;yes
+40;admin.;married;high.school;no;no;yes;telephone;jul;tue;289;2;999;0;nonexistent;1.4;93.918;-42.7;4.955;5228.1;no
+53;technician;married;professional.course;no;yes;no;telephone;jul;tue;307;2;999;0;nonexistent;1.4;93.918;-42.7;4.955;5228.1;no
+53;services;married;basic.9y;no;yes;no;telephone;jul;tue;723;2;999;0;nonexistent;1.4;93.918;-42.7;4.955;5228.1;no
+42;management;married;university.degree;no;no;yes;telephone;jul;tue;650;2;999;0;nonexistent;1.4;93.918;-42.7;4.955;5228.1;yes
+43;blue-collar;single;basic.4y;no;no;no;telephone;jul;wed;660;3;999;0;nonexistent;1.4;93.918;-42.7;4.956;5228.1;no
+26;blue-collar;married;university.degree;no;no;no;telephone;jul;wed;63;4;999;0;nonexistent;1.4;93.918;-42.7;4.956;5228.1;no
+40;admin.;divorced;high.school;no;no;no;telephone;jul;wed;96;7;999;0;nonexistent;1.4;93.918;-42.7;4.956;5228.1;no
+39;blue-collar;married;unknown;unknown;no;no;telephone;jul;wed;218;2;999;0;nonexistent;1.4;93.918;-42.7;4.956;5228.1;no
+46;housemaid;married;basic.4y;no;yes;no;telephone;jul;wed;220;2;999;0;nonexistent;1.4;93.918;-42.7;4.956;5228.1;no
+41;blue-collar;married;basic.6y;no;no;no;telephone;jul;wed;144;5;999;0;nonexistent;1.4;93.918;-42.7;4.956;5228.1;no
+36;technician;single;high.school;no;no;no;telephone;jul;wed;97;4;999;0;nonexistent;1.4;93.918;-42.7;4.956;5228.1;no
+38;blue-collar;married;basic.9y;unknown;no;no;telephone;jul;wed;32;3;999;0;nonexistent;1.4;93.918;-42.7;4.956;5228.1;no
+43;technician;single;professional.course;no;no;no;telephone;jul;wed;44;2;999;0;nonexistent;1.4;93.918;-42.7;4.956;5228.1;no
+50;blue-collar;divorced;basic.9y;no;no;no;telephone;jul;wed;79;3;999;0;nonexistent;1.4;93.918;-42.7;4.956;5228.1;no
+39;blue-collar;married;basic.9y;unknown;yes;no;telephone;jul;wed;306;2;999;0;nonexistent;1.4;93.918;-42.7;4.956;5228.1;no
+30;blue-collar;single;high.school;no;no;no;telephone;jul;wed;71;1;999;0;nonexistent;1.4;93.918;-42.7;4.956;5228.1;no
+47;technician;married;professional.course;no;no;no;telephone;jul;wed;348;3;999;0;nonexistent;1.4;93.918;-42.7;4.956;5228.1;no
+49;technician;single;high.school;no;yes;no;telephone;jul;wed;144;1;999;0;nonexistent;1.4;93.918;-42.7;4.956;5228.1;no
+28;unemployed;single;high.school;no;yes;no;telephone;jul;wed;203;1;999;0;nonexistent;1.4;93.918;-42.7;4.956;5228.1;no
+31;services;single;high.school;no;no;no;telephone;jul;wed;106;1;999;0;nonexistent;1.4;93.918;-42.7;4.956;5228.1;no
+51;services;married;high.school;unknown;no;no;telephone;jul;wed;372;1;999;0;nonexistent;1.4;93.918;-42.7;4.956;5228.1;no
+28;services;married;high.school;no;no;no;telephone;jul;wed;60;2;999;0;nonexistent;1.4;93.918;-42.7;4.956;5228.1;no
+28;management;married;university.degree;no;yes;no;telephone;jul;wed;134;2;999;0;nonexistent;1.4;93.918;-42.7;4.956;5228.1;no
+28;admin.;single;university.degree;no;yes;yes;telephone;jul;wed;108;3;999;0;nonexistent;1.4;93.918;-42.7;4.956;5228.1;no
+38;services;divorced;basic.9y;no;yes;no;telephone;jul;wed;33;2;999;0;nonexistent;1.4;93.918;-42.7;4.956;5228.1;no
+30;self-employed;married;university.degree;no;yes;yes;telephone;jul;wed;957;3;999;0;nonexistent;1.4;93.918;-42.7;4.956;5228.1;no
+46;services;married;high.school;no;no;no;telephone;jul;wed;83;3;999;0;nonexistent;1.4;93.918;-42.7;4.956;5228.1;no
+40;admin.;divorced;professional.course;unknown;no;no;telephone;jul;thu;343;2;999;0;nonexistent;1.4;93.918;-42.7;4.966;5228.1;no
+51;services;married;high.school;no;yes;no;telephone;jul;thu;158;3;999;0;nonexistent;1.4;93.918;-42.7;4.966;5228.1;no
+45;management;single;university.degree;no;no;yes;telephone;jul;thu;269;3;999;0;nonexistent;1.4;93.918;-42.7;4.966;5228.1;no
+36;retired;married;unknown;no;no;no;telephone;jul;thu;269;2;999;0;nonexistent;1.4;93.918;-42.7;4.966;5228.1;no
+46;admin.;married;high.school;unknown;no;no;telephone;jul;thu;375;3;999;0;nonexistent;1.4;93.918;-42.7;4.966;5228.1;no
+48;entrepreneur;married;basic.6y;no;yes;no;telephone;jul;thu;202;1;999;0;nonexistent;1.4;93.918;-42.7;4.966;5228.1;no
+32;housemaid;married;basic.9y;no;no;no;telephone;jul;thu;149;1;999;0;nonexistent;1.4;93.918;-42.7;4.966;5228.1;no
+30;blue-collar;divorced;basic.4y;no;yes;yes;telephone;jul;thu;111;1;999;0;nonexistent;1.4;93.918;-42.7;4.966;5228.1;no
+56;management;married;university.degree;no;yes;no;telephone;jul;thu;188;1;999;0;nonexistent;1.4;93.918;-42.7;4.966;5228.1;no
+29;admin.;single;university.degree;no;yes;no;telephone;jul;thu;211;1;999;0;nonexistent;1.4;93.918;-42.7;4.966;5228.1;no
+43;blue-collar;married;basic.9y;no;yes;no;telephone;jul;thu;24;1;999;0;nonexistent;1.4;93.918;-42.7;4.966;5228.1;no
+29;technician;single;university.degree;no;yes;no;telephone;jul;thu;109;1;999;0;nonexistent;1.4;93.918;-42.7;4.966;5228.1;no
+42;blue-collar;married;basic.4y;unknown;yes;yes;telephone;jul;thu;472;1;999;0;nonexistent;1.4;93.918;-42.7;4.966;5228.1;no
+39;technician;single;professional.course;no;yes;no;telephone;jul;thu;452;1;999;0;nonexistent;1.4;93.918;-42.7;4.966;5228.1;no
+52;retired;divorced;professional.course;no;no;no;telephone;jul;thu;269;2;999;0;nonexistent;1.4;93.918;-42.7;4.966;5228.1;no
+39;technician;single;professional.course;no;no;no;telephone;jul;thu;206;1;999;0;nonexistent;1.4;93.918;-42.7;4.966;5228.1;no
+40;blue-collar;married;basic.9y;no;yes;no;telephone;jul;thu;228;2;999;0;nonexistent;1.4;93.918;-42.7;4.966;5228.1;no
+53;blue-collar;married;basic.9y;no;no;no;telephone;jul;thu;183;2;999;0;nonexistent;1.4;93.918;-42.7;4.966;5228.1;no
+30;blue-collar;single;basic.4y;no;no;no;telephone;jul;thu;267;1;999;0;nonexistent;1.4;93.918;-42.7;4.966;5228.1;no
+36;blue-collar;married;basic.9y;no;no;no;telephone;jul;thu;414;1;999;0;nonexistent;1.4;93.918;-42.7;4.966;5228.1;no
+28;blue-collar;married;high.school;no;yes;no;telephone;jul;thu;60;1;999;0;nonexistent;1.4;93.918;-42.7;4.966;5228.1;no
+37;blue-collar;married;basic.6y;unknown;yes;no;telephone;jul;thu;95;1;999;0;nonexistent;1.4;93.918;-42.7;4.966;5228.1;no
+38;blue-collar;married;basic.6y;unknown;no;no;telephone;jul;thu;85;1;999;0;nonexistent;1.4;93.918;-42.7;4.966;5228.1;no
+38;blue-collar;married;high.school;no;yes;no;telephone;jul;thu;125;1;999;0;nonexistent;1.4;93.918;-42.7;4.966;5228.1;no
+48;blue-collar;married;basic.6y;unknown;no;no;telephone;jul;thu;256;3;999;0;nonexistent;1.4;93.918;-42.7;4.966;5228.1;no
+45;admin.;married;high.school;no;no;no;telephone;jul;thu;172;10;999;0;nonexistent;1.4;93.918;-42.7;4.966;5228.1;no
+58;technician;married;university.degree;no;no;no;telephone;jul;thu;84;1;999;0;nonexistent;1.4;93.918;-42.7;4.966;5228.1;no
+41;admin.;married;high.school;no;no;no;telephone;jul;thu;412;1;999;0;nonexistent;1.4;93.918;-42.7;4.966;5228.1;no
+35;unemployed;married;basic.9y;unknown;no;no;telephone;jul;thu;88;1;999;0;nonexistent;1.4;93.918;-42.7;4.966;5228.1;no
+42;blue-collar;married;basic.9y;no;no;no;telephone;jul;thu;130;1;999;0;nonexistent;1.4;93.918;-42.7;4.966;5228.1;no
+53;technician;divorced;professional.course;no;no;no;telephone;jul;thu;115;4;999;0;nonexistent;1.4;93.918;-42.7;4.966;5228.1;no
+38;technician;single;university.degree;unknown;yes;yes;telephone;jul;thu;168;1;999;0;nonexistent;1.4;93.918;-42.7;4.966;5228.1;no
+55;admin.;married;basic.9y;unknown;yes;no;telephone;jul;thu;197;1;999;0;nonexistent;1.4;93.918;-42.7;4.966;5228.1;no
+54;admin.;divorced;unknown;unknown;no;no;telephone;jul;thu;154;1;999;0;nonexistent;1.4;93.918;-42.7;4.966;5228.1;no
+50;blue-collar;married;basic.9y;unknown;unknown;unknown;telephone;jul;thu;90;1;999;0;nonexistent;1.4;93.918;-42.7;4.966;5228.1;no
+57;housemaid;divorced;basic.6y;no;yes;no;telephone;jul;thu;51;1;999;0;nonexistent;1.4;93.918;-42.7;4.966;5228.1;no
+39;admin.;single;high.school;no;no;no;telephone;jul;thu;89;1;999;0;nonexistent;1.4;93.918;-42.7;4.966;5228.1;no
+39;admin.;single;high.school;no;no;no;telephone;jul;thu;108;1;999;0;nonexistent;1.4;93.918;-42.7;4.966;5228.1;no
+39;admin.;single;high.school;no;no;no;telephone;jul;thu;97;1;999;0;nonexistent;1.4;93.918;-42.7;4.966;5228.1;no
+43;management;married;university.degree;no;no;yes;telephone;jul;thu;203;1;999;0;nonexistent;1.4;93.918;-42.7;4.966;5228.1;no
+35;admin.;divorced;university.degree;unknown;no;no;telephone;jul;thu;203;1;999;0;nonexistent;1.4;93.918;-42.7;4.966;5228.1;no
+36;retired;married;unknown;no;no;no;telephone;jul;thu;88;1;999;0;nonexistent;1.4;93.918;-42.7;4.966;5228.1;no
+36;retired;married;unknown;no;no;no;telephone;jul;thu;88;1;999;0;nonexistent;1.4;93.918;-42.7;4.966;5228.1;no
+29;admin.;single;university.degree;no;no;no;telephone;jul;thu;42;1;999;0;nonexistent;1.4;93.918;-42.7;4.966;5228.1;no
+37;technician;married;basic.9y;no;yes;no;telephone;jul;thu;991;1;999;0;nonexistent;1.4;93.918;-42.7;4.966;5228.1;no
+34;admin.;divorced;university.degree;no;no;no;telephone;jul;thu;676;1;999;0;nonexistent;1.4;93.918;-42.7;4.966;5228.1;yes
+34;management;married;university.degree;no;yes;no;telephone;jul;thu;652;1;999;0;nonexistent;1.4;93.918;-42.7;4.966;5228.1;no
+29;blue-collar;divorced;high.school;no;yes;no;telephone;jul;thu;178;1;999;0;nonexistent;1.4;93.918;-42.7;4.966;5228.1;no
+52;housemaid;single;basic.4y;no;yes;no;telephone;jul;thu;306;4;999;0;nonexistent;1.4;93.918;-42.7;4.966;5228.1;no
+24;admin.;single;high.school;no;yes;yes;telephone;jul;thu;354;1;999;0;nonexistent;1.4;93.918;-42.7;4.966;5228.1;no
+27;services;married;basic.9y;no;no;no;telephone;jul;thu;100;3;999;0;nonexistent;1.4;93.918;-42.7;4.966;5228.1;no
+30;technician;married;professional.course;no;yes;no;telephone;jul;thu;501;2;999;0;nonexistent;1.4;93.918;-42.7;4.966;5228.1;no
+34;blue-collar;married;basic.6y;no;yes;no;telephone;jul;thu;93;1;999;0;nonexistent;1.4;93.918;-42.7;4.966;5228.1;no
+41;services;single;high.school;unknown;no;yes;telephone;jul;thu;504;1;999;0;nonexistent;1.4;93.918;-42.7;4.966;5228.1;no
+57;housemaid;married;basic.4y;no;yes;no;telephone;jul;thu;381;3;999;0;nonexistent;1.4;93.918;-42.7;4.966;5228.1;no
+32;services;married;high.school;no;yes;no;telephone;jul;thu;251;2;999;0;nonexistent;1.4;93.918;-42.7;4.966;5228.1;no
+37;technician;married;basic.9y;no;no;no;telephone;jul;thu;515;2;999;0;nonexistent;1.4;93.918;-42.7;4.966;5228.1;no
+38;blue-collar;married;basic.6y;no;yes;no;telephone;jul;thu;389;2;999;0;nonexistent;1.4;93.918;-42.7;4.966;5228.1;no
+50;entrepreneur;married;professional.course;no;yes;no;telephone;jul;thu;155;2;999;0;nonexistent;1.4;93.918;-42.7;4.966;5228.1;no
+28;management;single;unknown;no;no;no;telephone;jul;thu;135;2;999;0;nonexistent;1.4;93.918;-42.7;4.966;5228.1;no
+39;blue-collar;married;basic.9y;unknown;no;yes;telephone;jul;thu;74;5;999;0;nonexistent;1.4;93.918;-42.7;4.966;5228.1;no
+34;blue-collar;married;basic.9y;no;yes;no;telephone;jul;thu;225;2;999;0;nonexistent;1.4;93.918;-42.7;4.966;5228.1;no
+30;services;married;basic.9y;no;no;yes;telephone;jul;thu;172;2;999;0;nonexistent;1.4;93.918;-42.7;4.966;5228.1;no
+25;services;single;high.school;no;yes;no;telephone;jul;thu;202;2;999;0;nonexistent;1.4;93.918;-42.7;4.966;5228.1;no
+43;blue-collar;married;basic.4y;no;yes;no;telephone;jul;thu;155;3;999;0;nonexistent;1.4;93.918;-42.7;4.966;5228.1;no
+26;technician;married;professional.course;no;yes;no;telephone;jul;thu;277;2;999;0;nonexistent;1.4;93.918;-42.7;4.966;5228.1;no
+46;blue-collar;married;basic.9y;unknown;no;no;telephone;jul;thu;746;4;999;0;nonexistent;1.4;93.918;-42.7;4.966;5228.1;no
+29;entrepreneur;single;university.degree;no;yes;no;telephone;jul;thu;167;11;999;0;nonexistent;1.4;93.918;-42.7;4.966;5228.1;no
+23;technician;single;professional.course;no;yes;no;telephone;jul;thu;194;2;999;0;nonexistent;1.4;93.918;-42.7;4.966;5228.1;no
+55;blue-collar;married;basic.4y;unknown;no;no;telephone;jul;thu;385;6;999;0;nonexistent;1.4;93.918;-42.7;4.966;5228.1;no
+36;management;married;basic.6y;unknown;yes;no;telephone;jul;fri;124;2;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+46;self-employed;married;high.school;unknown;yes;no;telephone;jul;fri;121;1;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+32;technician;single;professional.course;no;no;no;telephone;jul;fri;566;3;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+46;blue-collar;married;unknown;no;yes;no;telephone;jul;fri;257;1;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+31;technician;married;high.school;no;yes;no;telephone;jul;fri;111;1;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+24;blue-collar;single;basic.9y;unknown;no;no;telephone;jul;fri;270;1;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+37;admin.;single;university.degree;no;no;no;telephone;jul;fri;43;11;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+27;services;single;high.school;no;yes;no;telephone;jul;fri;433;1;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+56;self-employed;married;basic.9y;unknown;no;no;telephone;jul;fri;523;1;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+55;technician;married;university.degree;no;yes;no;telephone;jul;fri;49;1;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+32;blue-collar;married;basic.6y;unknown;no;yes;telephone;jul;fri;191;2;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+26;admin.;single;high.school;no;no;yes;telephone;jul;fri;634;1;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+45;management;married;university.degree;unknown;no;yes;telephone;jul;fri;355;1;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+45;management;married;university.degree;unknown;no;yes;telephone;jul;fri;31;1;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+29;blue-collar;single;high.school;no;yes;no;telephone;jul;fri;52;4;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+46;services;married;high.school;no;yes;no;telephone;jul;fri;64;1;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+32;technician;divorced;professional.course;no;yes;yes;telephone;jul;fri;99;1;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+32;blue-collar;married;basic.6y;no;yes;no;telephone;jul;fri;133;1;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+43;management;married;high.school;no;no;yes;telephone;jul;fri;169;1;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+32;housemaid;married;basic.6y;no;no;no;telephone;jul;fri;68;1;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+30;admin.;single;high.school;no;no;no;telephone;jul;fri;30;2;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+39;admin.;married;high.school;no;no;no;telephone;jul;fri;246;1;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+39;admin.;married;high.school;no;yes;no;telephone;jul;fri;219;1;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+32;blue-collar;single;high.school;no;no;no;telephone;jul;fri;165;2;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+43;technician;married;university.degree;no;yes;no;telephone;jul;fri;105;3;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+40;blue-collar;single;high.school;no;no;no;telephone;jul;fri;217;1;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+31;unemployed;single;professional.course;no;no;no;telephone;jul;fri;538;1;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+36;entrepreneur;married;university.degree;no;no;no;telephone;jul;fri;164;2;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+50;blue-collar;married;basic.4y;unknown;no;yes;telephone;jul;fri;5;1;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+28;admin.;single;university.degree;no;no;no;telephone;jul;fri;46;3;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+31;admin.;single;university.degree;no;yes;no;telephone;jul;fri;64;1;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+30;admin.;single;high.school;no;yes;no;telephone;jul;fri;105;1;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+30;admin.;single;high.school;no;yes;no;telephone;jul;fri;253;1;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+27;services;married;high.school;unknown;no;no;telephone;jul;fri;584;1;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;yes
+35;blue-collar;married;high.school;no;no;no;telephone;jul;fri;260;3;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+34;admin.;married;university.degree;no;yes;no;telephone;jul;fri;126;4;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+30;admin.;single;university.degree;no;yes;no;telephone;jul;fri;121;1;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+41;entrepreneur;married;basic.4y;no;no;no;telephone;jul;fri;101;1;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+43;blue-collar;divorced;basic.4y;unknown;no;no;telephone;jul;fri;195;1;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+31;admin.;single;university.degree;no;yes;no;telephone;jul;fri;400;1;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+35;blue-collar;married;basic.4y;no;yes;no;telephone;jul;fri;178;1;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+53;blue-collar;married;basic.4y;no;yes;no;telephone;jul;fri;134;1;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+57;admin.;single;university.degree;unknown;no;no;telephone;jul;fri;80;1;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+39;admin.;married;university.degree;no;no;no;telephone;jul;fri;104;1;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+41;blue-collar;married;basic.4y;unknown;yes;no;telephone;jul;fri;742;1;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+31;admin.;divorced;university.degree;no;yes;no;telephone;jul;fri;692;1;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+37;unemployed;married;university.degree;no;no;yes;telephone;jul;fri;85;3;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+26;admin.;single;high.school;no;yes;no;telephone;jul;fri;678;2;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+38;services;single;high.school;no;no;no;telephone;jul;fri;96;2;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+34;technician;single;high.school;no;yes;no;telephone;jul;fri;106;2;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+32;admin.;divorced;university.degree;no;no;yes;telephone;jul;fri;137;2;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+53;housemaid;married;basic.4y;no;no;no;telephone;jul;fri;53;2;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+41;entrepreneur;married;basic.4y;no;yes;no;telephone;jul;fri;89;2;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+45;admin.;married;university.degree;no;no;no;telephone;jul;fri;45;1;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+33;technician;married;university.degree;no;unknown;unknown;telephone;jul;fri;203;1;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+45;blue-collar;married;basic.4y;no;no;no;telephone;jul;fri;407;1;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+34;technician;single;professional.course;unknown;yes;no;telephone;jul;fri;225;2;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+42;admin.;divorced;university.degree;no;yes;no;telephone;jul;fri;426;3;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+42;blue-collar;married;basic.9y;unknown;no;no;telephone;jul;fri;61;4;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+29;entrepreneur;married;basic.6y;no;yes;yes;telephone;jul;fri;286;3;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+30;services;single;high.school;no;yes;no;telephone;jul;fri;1576;3;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+43;technician;single;professional.course;no;yes;no;telephone;jul;fri;468;6;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+59;retired;married;basic.4y;unknown;no;no;telephone;jul;fri;150;2;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+27;admin.;married;university.degree;no;yes;yes;telephone;jul;fri;178;2;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+28;blue-collar;divorced;basic.4y;no;no;no;telephone;jul;fri;327;1;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+29;admin.;single;university.degree;no;unknown;unknown;telephone;jul;fri;212;1;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+49;blue-collar;married;basic.9y;no;no;no;telephone;jul;fri;235;1;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+49;blue-collar;married;basic.9y;no;yes;no;telephone;jul;fri;333;1;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+45;blue-collar;married;basic.9y;no;yes;no;cellular;jul;fri;297;1;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+29;entrepreneur;married;high.school;no;yes;no;cellular;jul;fri;668;2;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+46;services;married;high.school;no;yes;no;telephone;jul;fri;65;2;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+33;technician;married;basic.9y;unknown;yes;no;cellular;jul;fri;436;4;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+41;management;married;university.degree;no;yes;no;cellular;jul;fri;1044;3;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+31;technician;single;professional.course;no;no;no;telephone;jul;fri;141;2;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+30;services;divorced;high.school;no;yes;yes;cellular;jul;fri;39;2;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+58;retired;married;professional.course;unknown;yes;no;cellular;jul;fri;165;2;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+31;blue-collar;married;basic.9y;no;unknown;unknown;cellular;jul;fri;135;3;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+30;admin.;married;high.school;no;yes;no;cellular;jul;fri;53;6;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+40;blue-collar;divorced;basic.6y;unknown;unknown;unknown;cellular;jul;fri;138;3;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+33;services;married;high.school;no;yes;no;cellular;jul;fri;548;2;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+38;blue-collar;married;basic.9y;no;no;no;cellular;jul;fri;95;2;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+29;admin.;married;basic.9y;no;yes;no;cellular;jul;fri;273;3;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+40;blue-collar;married;basic.9y;no;no;no;telephone;jul;fri;304;3;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+48;blue-collar;married;basic.4y;no;no;yes;cellular;jul;fri;425;2;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+51;retired;married;basic.9y;unknown;no;no;cellular;jul;fri;64;1;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+51;retired;married;basic.9y;unknown;yes;no;cellular;jul;fri;276;1;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+34;technician;married;high.school;unknown;yes;no;cellular;jul;fri;92;1;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+46;blue-collar;married;basic.9y;unknown;no;no;cellular;jul;fri;407;1;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+34;unemployed;married;high.school;no;no;no;cellular;jul;fri;339;1;999;0;nonexistent;1.4;93.918;-42.7;4.959;5228.1;no
+55;admin.;married;high.school;no;yes;no;cellular;jul;mon;92;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+47;admin.;married;university.degree;unknown;unknown;unknown;cellular;jul;mon;135;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+41;blue-collar;married;basic.4y;no;yes;no;cellular;jul;mon;107;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+49;admin.;divorced;high.school;no;no;no;cellular;jul;mon;148;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+38;admin.;divorced;high.school;no;no;yes;cellular;jul;mon;125;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+51;admin.;married;illiterate;unknown;no;no;cellular;jul;mon;151;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+52;management;married;professional.course;no;yes;no;cellular;jul;mon;491;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;yes
+59;retired;married;professional.course;unknown;yes;yes;cellular;jul;mon;494;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;yes
+33;self-employed;married;basic.9y;no;yes;no;cellular;jul;mon;181;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+40;admin.;married;high.school;no;yes;yes;cellular;jul;mon;615;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;yes
+48;admin.;married;university.degree;no;yes;no;cellular;jul;mon;99;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+57;admin.;divorced;basic.9y;no;yes;yes;cellular;jul;mon;518;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+34;technician;single;university.degree;no;no;yes;cellular;jul;mon;164;5;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+53;self-employed;divorced;university.degree;no;no;no;cellular;jul;mon;397;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+56;technician;married;university.degree;unknown;no;no;cellular;jul;mon;17;19;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+29;unemployed;divorced;university.degree;no;yes;no;cellular;jul;mon;148;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+52;blue-collar;married;basic.9y;unknown;no;no;cellular;jul;mon;128;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+31;services;married;high.school;unknown;no;no;cellular;jul;mon;160;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+30;blue-collar;single;basic.9y;no;yes;no;cellular;jul;mon;89;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+45;admin.;married;basic.9y;no;yes;yes;cellular;jul;mon;181;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+30;technician;single;professional.course;no;yes;yes;cellular;jul;mon;111;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+27;blue-collar;married;basic.9y;unknown;yes;yes;cellular;jul;mon;119;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+42;blue-collar;married;basic.4y;no;yes;no;cellular;jul;mon;227;6;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+35;admin.;single;university.degree;no;no;no;cellular;jul;mon;107;5;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+43;unemployed;married;high.school;unknown;yes;no;cellular;jul;mon;149;5;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+35;services;married;professional.course;unknown;no;no;cellular;jul;mon;134;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+52;blue-collar;married;basic.9y;no;no;no;cellular;jul;mon;1434;5;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+32;blue-collar;married;basic.6y;no;no;no;telephone;jul;mon;176;6;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+48;admin.;married;university.degree;no;yes;yes;cellular;jul;mon;179;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+40;blue-collar;married;basic.6y;no;no;no;telephone;jul;mon;63;6;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+43;management;married;unknown;no;no;yes;cellular;jul;mon;86;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+34;blue-collar;married;basic.9y;unknown;yes;no;cellular;jul;mon;113;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+42;self-employed;married;unknown;no;yes;no;cellular;jul;mon;685;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+52;management;divorced;university.degree;no;no;no;cellular;jul;mon;200;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+31;blue-collar;married;basic.6y;unknown;no;no;cellular;jul;mon;196;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+44;technician;divorced;professional.course;no;no;no;cellular;jul;mon;250;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+40;technician;married;university.degree;unknown;no;no;cellular;jul;mon;185;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+42;technician;married;professional.course;unknown;no;no;cellular;jul;mon;75;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+42;services;married;high.school;unknown;yes;no;cellular;jul;mon;136;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+31;admin.;married;basic.9y;unknown;yes;no;telephone;jul;mon;229;5;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+57;management;divorced;university.degree;unknown;no;yes;cellular;jul;mon;200;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+44;blue-collar;married;basic.9y;unknown;yes;no;cellular;jul;mon;139;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+52;services;married;basic.6y;no;no;yes;cellular;jul;mon;161;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+40;technician;married;basic.9y;unknown;no;no;cellular;jul;mon;141;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+47;self-employed;married;university.degree;no;yes;no;cellular;jul;mon;39;9;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+42;blue-collar;single;basic.4y;unknown;no;no;cellular;jul;mon;49;6;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+47;technician;married;professional.course;no;no;no;cellular;jul;mon;66;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+31;entrepreneur;married;basic.6y;no;yes;yes;cellular;jul;mon;782;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;yes
+45;management;married;unknown;unknown;no;no;cellular;jul;mon;321;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+26;admin.;single;university.degree;no;yes;yes;cellular;jul;mon;118;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+52;blue-collar;married;basic.9y;no;no;no;cellular;jul;mon;116;6;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+30;admin.;single;university.degree;no;no;no;cellular;jul;mon;128;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+51;management;married;basic.4y;no;no;no;cellular;jul;mon;104;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+41;blue-collar;married;basic.9y;unknown;no;no;cellular;jul;mon;126;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+46;admin.;married;basic.9y;unknown;no;no;cellular;jul;mon;87;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+31;management;married;high.school;no;no;no;cellular;jul;mon;1272;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;yes
+45;admin.;divorced;university.degree;no;no;no;cellular;jul;mon;107;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+42;admin.;single;university.degree;no;no;no;cellular;jul;mon;401;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+47;services;single;basic.9y;no;no;no;cellular;jul;mon;64;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+56;blue-collar;single;basic.4y;no;yes;no;cellular;jul;mon;758;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+37;self-employed;single;basic.4y;no;unknown;unknown;cellular;jul;mon;277;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+41;blue-collar;single;basic.4y;no;unknown;unknown;cellular;jul;mon;107;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+42;blue-collar;divorced;basic.9y;no;no;no;cellular;jul;mon;111;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+23;blue-collar;single;basic.9y;no;no;no;cellular;jul;mon;360;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+42;housemaid;divorced;basic.4y;unknown;no;no;cellular;jul;mon;461;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+56;admin.;divorced;basic.6y;no;yes;no;cellular;jul;mon;239;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+39;housemaid;married;basic.4y;no;no;no;cellular;jul;mon;240;5;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+31;housemaid;divorced;high.school;no;yes;no;cellular;jul;mon;127;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+37;blue-collar;married;basic.9y;no;no;no;cellular;jul;mon;412;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+40;technician;married;high.school;no;yes;no;cellular;jul;mon;244;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+43;management;married;university.degree;unknown;no;no;cellular;jul;mon;240;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+39;technician;married;basic.9y;no;no;no;cellular;jul;mon;62;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+40;self-employed;married;high.school;unknown;yes;no;telephone;jul;mon;46;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+47;blue-collar;single;basic.9y;no;yes;yes;telephone;jul;mon;41;9;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+50;blue-collar;married;basic.4y;unknown;yes;no;cellular;jul;mon;122;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+30;services;married;high.school;no;yes;no;cellular;jul;mon;559;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+40;unemployed;single;high.school;no;yes;no;cellular;jul;mon;300;5;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+32;services;single;high.school;no;no;no;cellular;jul;mon;722;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;yes
+25;admin.;married;high.school;no;no;yes;cellular;jul;mon;64;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+29;technician;married;professional.course;no;no;no;cellular;jul;mon;328;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+56;retired;married;basic.4y;no;yes;no;cellular;jul;mon;621;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;yes
+31;services;single;high.school;no;yes;yes;cellular;jul;mon;232;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+42;blue-collar;divorced;basic.9y;no;no;no;telephone;jul;mon;259;8;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+50;blue-collar;divorced;high.school;no;yes;yes;cellular;jul;mon;629;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;yes
+41;blue-collar;married;basic.4y;no;yes;no;cellular;jul;mon;1103;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+38;blue-collar;married;basic.9y;unknown;yes;no;cellular;jul;mon;317;6;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+46;entrepreneur;married;university.degree;unknown;no;yes;telephone;jul;mon;126;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+32;management;single;university.degree;no;no;no;telephone;jul;mon;66;8;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+31;technician;married;university.degree;no;yes;yes;cellular;jul;mon;385;5;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;yes
+35;blue-collar;married;basic.9y;no;no;no;telephone;jul;mon;1356;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;yes
+44;services;married;high.school;no;no;no;cellular;jul;mon;190;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+39;services;married;high.school;unknown;yes;no;telephone;jul;mon;173;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+36;admin.;married;university.degree;no;no;no;cellular;jul;mon;61;6;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+39;unemployed;married;high.school;no;no;no;cellular;jul;mon;74;7;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+56;blue-collar;married;basic.9y;unknown;no;no;telephone;jul;mon;86;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+28;housemaid;single;basic.6y;no;no;no;cellular;jul;mon;94;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+40;blue-collar;married;basic.9y;unknown;no;no;cellular;jul;mon;56;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+23;admin.;single;university.degree;no;yes;yes;telephone;jul;mon;69;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+49;unemployed;divorced;basic.9y;unknown;no;no;cellular;jul;mon;326;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+28;blue-collar;married;basic.9y;no;yes;no;cellular;jul;mon;497;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+49;admin.;divorced;high.school;no;no;no;cellular;jul;mon;21;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+39;housemaid;married;basic.4y;no;yes;no;cellular;jul;mon;223;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+36;blue-collar;married;basic.6y;unknown;no;no;cellular;jul;mon;179;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+45;services;single;basic.9y;unknown;no;yes;cellular;jul;mon;236;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+51;blue-collar;married;basic.4y;unknown;no;yes;cellular;jul;mon;87;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+33;services;divorced;unknown;no;no;no;cellular;jul;mon;66;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+47;services;married;basic.6y;no;yes;no;cellular;jul;mon;207;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+33;unemployed;divorced;basic.9y;no;unknown;unknown;cellular;jul;mon;385;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+36;housemaid;married;university.degree;no;yes;no;cellular;jul;mon;137;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+41;admin.;single;high.school;no;no;no;cellular;jul;mon;459;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+42;entrepreneur;married;high.school;no;no;no;cellular;jul;mon;217;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+42;entrepreneur;married;high.school;no;yes;no;cellular;jul;mon;247;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+28;technician;married;university.degree;no;no;no;cellular;jul;mon;289;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+39;blue-collar;married;high.school;no;yes;yes;cellular;jul;mon;173;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+27;admin.;single;university.degree;no;no;no;cellular;jul;mon;130;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+30;blue-collar;married;basic.9y;no;yes;no;cellular;jul;mon;332;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+37;services;divorced;high.school;no;unknown;unknown;cellular;jul;mon;114;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+40;technician;married;basic.9y;unknown;no;no;cellular;jul;mon;166;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+37;entrepreneur;married;university.degree;no;yes;no;cellular;jul;mon;183;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+29;services;married;high.school;no;yes;no;cellular;jul;mon;94;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+48;blue-collar;divorced;basic.4y;unknown;yes;yes;cellular;jul;mon;169;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+43;services;single;high.school;no;no;no;cellular;jul;mon;385;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+28;admin.;single;university.degree;unknown;yes;no;cellular;jul;mon;248;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+36;blue-collar;married;high.school;no;no;no;cellular;jul;mon;889;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;yes
+43;admin.;married;high.school;no;yes;no;cellular;jul;mon;118;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+33;blue-collar;married;basic.9y;no;no;no;cellular;jul;mon;199;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+43;admin.;married;high.school;no;no;no;cellular;jul;mon;240;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+38;admin.;divorced;high.school;no;yes;no;cellular;jul;mon;128;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+29;services;married;high.school;no;yes;no;cellular;jul;mon;556;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;yes
+55;blue-collar;married;basic.4y;no;no;no;cellular;jul;mon;199;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+34;blue-collar;married;basic.9y;no;yes;no;telephone;jul;mon;199;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+59;technician;divorced;university.degree;no;no;no;cellular;jul;mon;39;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+49;blue-collar;married;basic.4y;no;no;yes;telephone;jul;mon;256;15;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+43;entrepreneur;married;basic.9y;unknown;yes;no;cellular;jul;mon;174;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+52;management;married;university.degree;no;yes;yes;cellular;jul;mon;161;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+47;admin.;married;basic.9y;no;yes;no;cellular;jul;mon;461;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+35;self-employed;married;high.school;no;no;no;cellular;jul;mon;187;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+39;admin.;married;high.school;no;yes;no;cellular;jul;mon;201;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+34;services;married;high.school;no;yes;no;cellular;jul;mon;206;6;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+39;technician;married;basic.9y;unknown;unknown;unknown;cellular;jul;mon;139;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+42;self-employed;divorced;university.degree;unknown;yes;no;cellular;jul;mon;643;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+48;blue-collar;married;basic.4y;no;no;no;cellular;jul;mon;297;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+36;entrepreneur;married;unknown;unknown;yes;no;cellular;jul;mon;44;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+56;retired;married;basic.4y;unknown;no;no;cellular;jul;mon;121;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+51;technician;married;professional.course;no;no;yes;cellular;jul;mon;130;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+41;technician;married;high.school;no;unknown;unknown;cellular;jul;mon;106;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+47;admin.;divorced;high.school;no;no;no;cellular;jul;mon;480;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+39;blue-collar;married;basic.9y;unknown;no;yes;cellular;jul;mon;51;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+47;admin.;divorced;high.school;no;no;no;cellular;jul;mon;532;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;yes
+60;blue-collar;married;basic.9y;unknown;unknown;unknown;cellular;jul;mon;575;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+52;retired;married;basic.4y;no;no;no;cellular;jul;mon;445;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+33;technician;single;professional.course;no;yes;yes;cellular;jul;mon;554;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+47;admin.;divorced;high.school;unknown;no;no;cellular;jul;mon;129;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+42;admin.;married;university.degree;no;yes;no;cellular;jul;mon;46;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+37;entrepreneur;married;basic.6y;no;yes;no;cellular;jul;mon;254;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+41;blue-collar;married;unknown;no;no;no;cellular;jul;mon;226;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+54;management;married;university.degree;no;yes;no;cellular;jul;mon;224;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+31;admin.;married;university.degree;no;yes;no;telephone;jul;mon;118;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+44;housemaid;married;high.school;unknown;yes;no;cellular;jul;mon;1200;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+45;services;divorced;high.school;no;no;no;cellular;jul;mon;295;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+57;entrepreneur;married;university.degree;unknown;unknown;unknown;cellular;jul;mon;268;9;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+36;technician;married;university.degree;no;yes;no;cellular;jul;mon;174;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+49;admin.;married;unknown;unknown;no;no;cellular;jul;mon;630;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+40;services;married;basic.6y;unknown;no;no;cellular;jul;mon;209;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+46;blue-collar;married;basic.9y;no;yes;no;cellular;jul;mon;243;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+29;technician;married;professional.course;no;yes;no;cellular;jul;mon;111;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+43;services;married;professional.course;no;yes;no;cellular;jul;mon;451;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+40;admin.;single;university.degree;unknown;no;no;cellular;jul;mon;192;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+28;admin.;single;high.school;no;no;no;cellular;jul;mon;154;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+40;services;married;high.school;no;no;yes;cellular;jul;mon;162;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+53;entrepreneur;single;basic.9y;no;no;no;cellular;jul;mon;933;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+51;blue-collar;married;high.school;no;no;no;cellular;jul;mon;110;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+58;blue-collar;married;basic.4y;unknown;yes;no;cellular;jul;mon;86;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+35;technician;married;basic.9y;no;yes;no;cellular;jul;mon;448;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+27;admin.;single;high.school;unknown;no;no;cellular;jul;mon;261;12;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+41;entrepreneur;married;basic.4y;no;yes;no;cellular;jul;mon;120;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+48;blue-collar;married;basic.4y;no;no;no;cellular;jul;mon;151;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+33;management;married;university.degree;no;yes;no;cellular;jul;mon;199;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+40;blue-collar;married;basic.9y;unknown;yes;no;telephone;jul;mon;94;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+52;entrepreneur;married;university.degree;no;yes;no;cellular;jul;mon;97;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+41;entrepreneur;married;basic.4y;no;no;no;cellular;jul;mon;531;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+34;services;married;basic.9y;unknown;no;no;cellular;jul;mon;112;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+34;services;married;basic.9y;unknown;yes;no;cellular;jul;mon;80;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+46;admin.;married;university.degree;no;no;no;telephone;jul;mon;41;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+35;blue-collar;single;basic.6y;unknown;yes;no;cellular;jul;mon;153;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+55;retired;divorced;high.school;unknown;no;no;cellular;jul;mon;210;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+30;technician;single;high.school;no;yes;no;telephone;jul;mon;130;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+37;management;married;high.school;no;yes;no;cellular;jul;mon;599;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;yes
+50;management;married;university.degree;no;yes;no;cellular;jul;mon;236;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+33;blue-collar;married;basic.9y;no;no;no;cellular;jul;mon;532;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+55;admin.;divorced;university.degree;unknown;yes;no;cellular;jul;mon;849;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;yes
+34;blue-collar;married;basic.9y;no;no;no;cellular;jul;mon;136;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+37;technician;single;high.school;unknown;no;no;cellular;jul;mon;500;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+48;blue-collar;married;basic.9y;unknown;no;no;cellular;jul;mon;212;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+24;services;married;high.school;no;yes;no;cellular;jul;mon;337;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+31;admin.;married;university.degree;no;yes;no;cellular;jul;mon;1467;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+34;blue-collar;divorced;basic.4y;unknown;yes;no;cellular;jul;mon;246;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+43;entrepreneur;married;university.degree;no;yes;no;cellular;jul;mon;117;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+29;services;single;university.degree;no;no;no;cellular;jul;mon;234;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+33;blue-collar;married;basic.9y;no;no;yes;cellular;jul;mon;387;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+39;admin.;married;high.school;unknown;yes;no;cellular;jul;mon;353;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+36;entrepreneur;married;high.school;no;no;no;cellular;jul;mon;500;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+36;admin.;married;university.degree;no;no;no;telephone;jul;mon;267;7;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+52;entrepreneur;married;basic.9y;unknown;yes;no;cellular;jul;mon;387;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+42;admin.;married;university.degree;no;yes;yes;cellular;jul;mon;313;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+52;blue-collar;married;basic.9y;no;no;no;cellular;jul;mon;535;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+45;technician;married;unknown;unknown;yes;no;cellular;jul;mon;326;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+39;self-employed;married;university.degree;no;no;no;cellular;jul;mon;175;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+44;entrepreneur;married;basic.6y;unknown;no;no;cellular;jul;mon;973;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;yes
+60;retired;married;high.school;no;no;no;telephone;jul;mon;188;7;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+41;admin.;divorced;basic.6y;no;no;no;telephone;jul;mon;141;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+36;technician;married;basic.6y;no;yes;no;cellular;jul;mon;422;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+31;services;married;high.school;no;yes;no;cellular;jul;mon;354;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+39;self-employed;single;basic.9y;unknown;yes;no;cellular;jul;mon;835;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+50;unknown;married;basic.4y;unknown;yes;no;cellular;jul;mon;511;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+33;admin.;married;professional.course;no;no;no;cellular;jul;mon;209;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+36;admin.;married;high.school;no;yes;no;telephone;jul;mon;194;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+34;technician;married;professional.course;no;no;no;cellular;jul;mon;166;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+50;entrepreneur;married;university.degree;no;yes;no;cellular;jul;mon;1165;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+29;services;single;high.school;no;yes;no;cellular;jul;mon;113;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+28;services;single;high.school;no;yes;no;cellular;jul;mon;98;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+46;blue-collar;married;basic.9y;no;yes;no;cellular;jul;mon;190;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+23;services;single;high.school;no;no;no;cellular;jul;mon;104;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+31;admin.;single;high.school;no;no;no;cellular;jul;mon;88;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+23;services;single;high.school;no;no;no;cellular;jul;mon;316;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+31;admin.;married;university.degree;no;no;no;telephone;jul;mon;211;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+36;services;married;high.school;unknown;no;no;cellular;jul;mon;455;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+50;technician;married;professional.course;no;no;no;cellular;jul;mon;830;5;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;yes
+47;technician;married;professional.course;no;no;no;cellular;jul;mon;208;10;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+59;retired;married;university.degree;unknown;no;no;telephone;jul;mon;95;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+32;technician;married;professional.course;no;no;no;cellular;jul;mon;167;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+42;admin.;married;university.degree;no;yes;no;cellular;jul;mon;108;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+49;blue-collar;married;unknown;unknown;unknown;unknown;cellular;jul;mon;375;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+38;housemaid;single;basic.4y;unknown;no;no;cellular;jul;mon;457;5;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+36;self-employed;married;professional.course;unknown;no;yes;cellular;jul;mon;216;5;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+42;technician;divorced;basic.9y;no;yes;no;cellular;jul;mon;299;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+44;unknown;single;basic.9y;unknown;no;no;cellular;jul;mon;366;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+27;admin.;married;high.school;no;yes;no;cellular;jul;mon;238;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+40;admin.;single;university.degree;no;yes;no;cellular;jul;mon;281;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+25;admin.;single;high.school;no;no;no;cellular;jul;mon;270;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+25;blue-collar;single;high.school;no;no;no;cellular;jul;mon;234;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+25;admin.;married;high.school;no;no;no;cellular;jul;mon;68;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+43;blue-collar;married;basic.9y;no;yes;no;cellular;jul;mon;107;6;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+37;management;married;university.degree;unknown;no;no;cellular;jul;mon;92;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+25;admin.;divorced;professional.course;no;no;no;cellular;jul;mon;159;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+28;technician;divorced;university.degree;no;yes;no;cellular;jul;mon;247;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+32;admin.;single;university.degree;no;no;no;cellular;jul;mon;97;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+52;blue-collar;married;basic.9y;no;yes;no;cellular;jul;mon;228;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+51;blue-collar;divorced;basic.9y;no;no;no;cellular;jul;mon;293;7;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+41;services;married;basic.9y;no;no;no;cellular;jul;mon;88;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+33;entrepreneur;single;professional.course;no;no;no;telephone;jul;mon;143;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+38;unemployed;married;high.school;no;no;no;cellular;jul;mon;273;5;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+30;blue-collar;single;basic.9y;no;no;no;cellular;jul;mon;152;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+31;admin.;married;high.school;no;no;no;cellular;jul;mon;87;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+42;admin.;divorced;university.degree;no;yes;no;telephone;jul;mon;339;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+24;services;single;high.school;no;no;no;cellular;jul;mon;98;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+49;technician;married;professional.course;no;yes;yes;telephone;jul;mon;70;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+59;blue-collar;married;basic.9y;unknown;yes;no;cellular;jul;mon;244;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+34;management;single;high.school;no;no;no;cellular;jul;mon;264;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+39;blue-collar;married;professional.course;no;no;no;cellular;jul;mon;280;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+31;admin.;single;university.degree;no;unknown;unknown;cellular;jul;mon;116;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+35;technician;married;professional.course;no;no;no;cellular;jul;mon;164;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+43;entrepreneur;married;basic.4y;no;no;no;cellular;jul;mon;25;30;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+31;admin.;married;basic.9y;no;yes;no;cellular;jul;mon;196;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+54;services;married;high.school;unknown;yes;no;cellular;jul;mon;36;33;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+36;blue-collar;married;basic.6y;unknown;yes;no;cellular;jul;mon;214;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+33;services;divorced;unknown;no;no;yes;cellular;jul;mon;277;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+47;blue-collar;married;basic.4y;no;no;no;cellular;jul;mon;95;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+56;housemaid;married;basic.4y;no;no;yes;cellular;jul;mon;116;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+37;blue-collar;single;basic.6y;no;yes;yes;cellular;jul;mon;305;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+35;blue-collar;single;unknown;no;yes;no;cellular;jul;mon;15;11;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+37;technician;married;professional.course;unknown;no;no;telephone;jul;mon;237;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+33;admin.;married;university.degree;no;yes;no;cellular;jul;mon;263;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+38;technician;married;professional.course;unknown;no;no;cellular;jul;mon;224;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+28;blue-collar;married;high.school;no;yes;no;cellular;jul;mon;210;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+36;blue-collar;married;professional.course;no;yes;no;cellular;jul;mon;333;5;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+39;admin.;married;high.school;no;yes;no;cellular;jul;mon;627;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+42;blue-collar;married;basic.4y;no;no;no;cellular;jul;mon;100;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+31;technician;married;high.school;no;no;no;cellular;jul;mon;75;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+37;blue-collar;single;high.school;no;yes;no;telephone;jul;mon;416;8;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+46;unemployed;divorced;professional.course;unknown;yes;no;cellular;jul;mon;221;8;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+39;services;married;basic.9y;no;no;yes;cellular;jul;mon;51;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+52;unemployed;married;unknown;no;yes;no;cellular;jul;mon;199;7;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+28;blue-collar;married;basic.9y;no;yes;yes;cellular;jul;mon;576;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+38;blue-collar;married;unknown;unknown;no;no;cellular;jul;mon;340;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+51;blue-collar;married;unknown;unknown;yes;no;cellular;jul;mon;377;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+43;blue-collar;married;basic.4y;unknown;yes;no;telephone;jul;mon;260;13;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+42;management;divorced;university.degree;unknown;no;no;cellular;jul;mon;255;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+31;admin.;married;high.school;no;no;no;cellular;jul;mon;160;5;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+43;admin.;divorced;high.school;no;no;no;cellular;jul;mon;96;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+39;services;married;basic.9y;no;yes;no;telephone;jul;mon;543;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+38;admin.;married;professional.course;no;no;no;cellular;jul;mon;182;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+26;unemployed;single;basic.9y;no;yes;yes;cellular;jul;mon;104;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+35;management;divorced;university.degree;no;no;no;cellular;jul;mon;13;20;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+35;admin.;single;university.degree;no;yes;no;cellular;jul;mon;167;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+34;technician;single;professional.course;unknown;yes;no;cellular;jul;mon;224;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+31;blue-collar;married;high.school;no;yes;no;cellular;jul;mon;317;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+29;admin.;single;unknown;no;yes;no;cellular;jul;mon;179;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+36;admin.;married;high.school;no;no;no;cellular;jul;mon;74;7;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+32;admin.;divorced;high.school;no;yes;no;cellular;jul;mon;422;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+35;admin.;single;university.degree;no;yes;no;cellular;jul;mon;447;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+33;blue-collar;single;basic.6y;no;no;yes;cellular;jul;mon;380;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+50;admin.;divorced;university.degree;no;no;no;cellular;jul;mon;371;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+48;blue-collar;married;basic.6y;no;yes;no;cellular;jul;mon;122;5;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+26;blue-collar;married;basic.9y;no;yes;no;cellular;jul;mon;159;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+39;admin.;divorced;basic.9y;no;yes;no;cellular;jul;mon;79;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+35;blue-collar;married;professional.course;no;yes;no;cellular;jul;mon;261;5;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+47;blue-collar;married;basic.4y;unknown;yes;yes;cellular;jul;mon;140;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+48;blue-collar;married;basic.4y;no;unknown;unknown;telephone;jul;mon;360;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+46;blue-collar;married;basic.6y;unknown;no;no;cellular;jul;mon;500;5;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+44;blue-collar;single;high.school;no;yes;yes;cellular;jul;mon;234;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+34;blue-collar;married;basic.9y;no;no;yes;telephone;jul;mon;146;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+36;services;divorced;university.degree;no;no;no;cellular;jul;mon;407;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+34;admin.;married;university.degree;no;no;no;cellular;jul;mon;416;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+37;technician;single;university.degree;no;no;no;cellular;jul;mon;756;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+44;blue-collar;divorced;basic.6y;unknown;no;yes;telephone;jul;mon;122;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+50;admin.;married;high.school;unknown;yes;no;cellular;jul;mon;339;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+31;services;single;high.school;no;no;no;cellular;jul;mon;500;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+48;admin.;divorced;high.school;no;no;no;telephone;jul;mon;352;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+40;management;married;university.degree;unknown;yes;no;cellular;jul;mon;16;34;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+42;admin.;married;high.school;unknown;yes;no;cellular;jul;mon;288;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+37;technician;single;university.degree;no;yes;no;cellular;jul;mon;164;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+42;entrepreneur;married;high.school;no;yes;no;cellular;jul;mon;100;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+24;unemployed;single;high.school;no;yes;no;telephone;jul;mon;245;5;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+36;technician;married;university.degree;no;no;no;cellular;jul;mon;95;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+41;blue-collar;married;unknown;unknown;yes;no;cellular;jul;mon;285;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+52;housemaid;married;basic.4y;no;yes;no;cellular;jul;mon;88;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+50;housemaid;divorced;high.school;no;yes;no;cellular;jul;mon;78;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+25;services;single;high.school;no;no;no;cellular;jul;mon;422;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+42;admin.;single;university.degree;unknown;yes;no;cellular;jul;mon;719;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;yes
+40;services;married;high.school;no;yes;no;telephone;jul;mon;167;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+53;services;married;high.school;no;no;no;telephone;jul;mon;336;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+55;technician;married;professional.course;unknown;no;no;telephone;jul;mon;89;13;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+30;blue-collar;single;basic.4y;no;no;no;cellular;jul;mon;112;10;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+45;management;married;university.degree;unknown;no;no;cellular;jul;mon;208;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+37;services;married;high.school;no;no;no;cellular;jul;mon;221;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+31;services;married;high.school;no;no;no;cellular;jul;mon;624;5;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+25;admin.;single;high.school;unknown;no;no;cellular;jul;mon;252;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+60;management;married;unknown;unknown;no;no;cellular;jul;mon;230;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+28;entrepreneur;married;basic.4y;unknown;no;no;cellular;jul;mon;482;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+35;blue-collar;single;unknown;no;yes;no;telephone;jul;mon;564;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+44;admin.;married;high.school;no;yes;no;cellular;jul;mon;53;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+30;technician;married;professional.course;no;yes;no;cellular;jul;mon;279;11;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+44;admin.;married;high.school;no;yes;no;cellular;jul;mon;136;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+44;admin.;married;high.school;no;yes;no;cellular;jul;mon;242;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+38;technician;married;professional.course;no;yes;no;cellular;jul;mon;185;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+33;technician;married;professional.course;no;yes;no;telephone;jul;mon;9;17;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+41;admin.;married;high.school;no;no;yes;cellular;jul;mon;205;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+31;entrepreneur;single;basic.9y;no;no;no;cellular;jul;mon;131;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+31;admin.;married;university.degree;no;no;yes;cellular;jul;mon;15;11;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+26;technician;married;professional.course;no;no;no;cellular;jul;mon;192;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+44;housemaid;married;high.school;no;yes;yes;cellular;jul;mon;118;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+33;blue-collar;married;basic.4y;no;no;no;cellular;jul;mon;219;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+48;technician;married;unknown;unknown;yes;no;cellular;jul;mon;214;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+52;admin.;divorced;university.degree;unknown;no;no;cellular;jul;tue;188;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+52;admin.;divorced;university.degree;unknown;no;no;cellular;jul;tue;262;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+49;housemaid;married;basic.4y;unknown;yes;no;cellular;jul;tue;226;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+57;admin.;married;basic.4y;unknown;yes;no;cellular;jul;tue;290;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+31;blue-collar;single;basic.9y;no;yes;no;cellular;jul;tue;342;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+25;services;married;high.school;no;yes;no;cellular;jul;tue;140;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+25;services;married;high.school;no;no;no;cellular;jul;tue;161;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+25;services;married;high.school;no;no;no;cellular;jul;tue;259;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+55;services;divorced;high.school;unknown;yes;yes;cellular;jul;tue;47;7;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+50;entrepreneur;married;unknown;unknown;yes;yes;cellular;jul;tue;163;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+32;services;married;basic.9y;no;no;no;cellular;jul;tue;491;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+32;services;married;high.school;no;no;no;cellular;jul;tue;220;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+52;admin.;divorced;university.degree;unknown;yes;no;cellular;jul;tue;104;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+46;blue-collar;married;basic.6y;unknown;yes;no;telephone;jul;tue;54;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+56;unemployed;divorced;professional.course;no;no;no;telephone;jul;tue;141;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+26;blue-collar;single;basic.9y;no;yes;no;cellular;jul;tue;109;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+29;admin.;single;high.school;no;yes;no;cellular;jul;tue;259;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+34;admin.;married;university.degree;no;yes;no;cellular;jul;tue;183;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+30;services;married;high.school;no;yes;no;cellular;jul;tue;24;26;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+34;admin.;married;university.degree;no;yes;no;cellular;jul;tue;216;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+30;admin.;divorced;high.school;no;yes;no;telephone;jul;tue;58;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+31;services;divorced;high.school;no;no;no;cellular;jul;tue;123;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+49;services;divorced;high.school;no;yes;no;cellular;jul;tue;146;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+33;technician;married;professional.course;unknown;yes;no;cellular;jul;tue;362;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+31;admin.;single;basic.9y;unknown;yes;no;cellular;jul;tue;124;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+48;services;divorced;high.school;no;yes;yes;cellular;jul;tue;191;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;services;single;high.school;unknown;no;no;cellular;jul;tue;509;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+42;unemployed;married;university.degree;unknown;yes;no;cellular;jul;tue;431;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+56;services;married;basic.4y;unknown;no;no;cellular;jul;tue;160;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+38;admin.;divorced;university.degree;no;yes;no;cellular;jul;tue;175;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+48;blue-collar;married;basic.6y;unknown;yes;no;cellular;jul;tue;178;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+33;blue-collar;married;basic.6y;unknown;yes;no;cellular;jul;tue;186;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+38;admin.;divorced;university.degree;no;yes;no;cellular;jul;tue;395;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+60;admin.;married;high.school;unknown;yes;no;cellular;jul;tue;143;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+35;technician;married;high.school;unknown;yes;no;cellular;jul;tue;740;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+56;services;married;basic.4y;unknown;no;no;cellular;jul;tue;534;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+60;admin.;married;high.school;unknown;no;no;cellular;jul;tue;201;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+60;admin.;married;high.school;unknown;no;no;cellular;jul;tue;320;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+40;services;divorced;high.school;no;yes;no;cellular;jul;tue;144;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+57;admin.;married;professional.course;no;yes;no;cellular;jul;tue;425;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+32;admin.;single;university.degree;no;yes;no;cellular;jul;tue;59;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+29;entrepreneur;married;university.degree;no;no;no;telephone;jul;tue;208;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+31;admin.;single;high.school;no;yes;no;cellular;jul;tue;85;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+36;technician;single;unknown;no;no;no;cellular;jul;tue;290;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+55;services;married;basic.6y;unknown;no;no;cellular;jul;tue;31;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+36;technician;single;unknown;no;no;no;cellular;jul;tue;393;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+34;admin.;married;professional.course;no;no;yes;cellular;jul;tue;82;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+32;blue-collar;single;high.school;no;yes;no;cellular;jul;tue;523;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+32;blue-collar;single;basic.4y;unknown;no;no;cellular;jul;tue;136;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+38;admin.;married;high.school;unknown;no;no;cellular;jul;tue;203;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+26;admin.;married;high.school;no;yes;yes;cellular;jul;tue;144;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;admin.;married;university.degree;no;yes;yes;cellular;jul;tue;152;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+34;admin.;married;university.degree;no;no;yes;cellular;jul;tue;119;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+39;management;divorced;university.degree;no;yes;no;cellular;jul;tue;732;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+43;admin.;married;university.degree;no;no;no;cellular;jul;tue;136;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+38;admin.;married;high.school;unknown;no;no;cellular;jul;tue;733;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+33;self-employed;single;professional.course;no;yes;no;cellular;jul;tue;85;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;admin.;married;university.degree;no;no;no;cellular;jul;tue;524;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;admin.;married;university.degree;no;yes;yes;telephone;jul;tue;377;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+33;services;single;high.school;no;yes;no;cellular;jul;tue;286;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+42;management;married;basic.6y;unknown;yes;no;cellular;jul;tue;304;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+26;blue-collar;married;basic.9y;unknown;no;no;cellular;jul;tue;106;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+24;admin.;married;high.school;no;no;no;cellular;jul;tue;42;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+32;technician;married;professional.course;no;no;no;cellular;jul;tue;711;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+48;technician;married;high.school;unknown;yes;no;cellular;jul;tue;97;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+34;management;single;unknown;no;yes;no;cellular;jul;tue;288;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+26;blue-collar;married;basic.9y;unknown;no;no;cellular;jul;tue;99;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+40;admin.;single;university.degree;no;yes;no;cellular;jul;tue;238;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+35;admin.;single;high.school;no;no;no;cellular;jul;tue;136;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+33;blue-collar;single;basic.9y;no;yes;yes;cellular;jul;tue;367;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+39;blue-collar;married;basic.6y;unknown;yes;no;cellular;jul;tue;188;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+33;blue-collar;single;basic.9y;no;yes;no;cellular;jul;tue;531;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+43;management;married;basic.9y;no;no;no;cellular;jul;tue;217;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+53;retired;divorced;high.school;unknown;yes;no;cellular;jul;tue;256;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+39;blue-collar;married;basic.6y;unknown;no;no;cellular;jul;tue;634;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+26;blue-collar;married;basic.9y;unknown;yes;no;cellular;jul;tue;124;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+26;admin.;married;high.school;no;no;no;cellular;jul;tue;260;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+25;technician;single;university.degree;no;no;no;cellular;jul;tue;460;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+38;entrepreneur;married;basic.9y;unknown;no;yes;cellular;jul;tue;133;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+38;services;single;high.school;unknown;no;no;cellular;jul;tue;166;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+36;technician;single;unknown;no;yes;no;cellular;jul;tue;1046;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+48;technician;married;high.school;unknown;no;no;cellular;jul;tue;143;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+48;management;married;high.school;no;no;no;cellular;jul;tue;116;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;technician;single;professional.course;unknown;yes;no;cellular;jul;tue;265;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+33;technician;married;high.school;no;no;no;telephone;jul;tue;176;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+33;services;married;high.school;no;yes;yes;cellular;jul;tue;130;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+33;services;married;high.school;no;no;no;cellular;jul;tue;130;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+35;services;divorced;high.school;no;unknown;unknown;cellular;jul;tue;96;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+33;services;married;high.school;no;no;no;cellular;jul;tue;272;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+26;blue-collar;married;basic.9y;unknown;no;no;cellular;jul;tue;90;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+49;management;married;university.degree;no;yes;no;cellular;jul;tue;71;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+48;management;married;high.school;no;no;no;cellular;jul;tue;705;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+47;technician;married;professional.course;unknown;no;yes;cellular;jul;tue;106;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+28;technician;single;professional.course;no;yes;no;cellular;jul;tue;185;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+35;admin.;married;high.school;no;yes;no;cellular;jul;tue;992;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+47;technician;married;professional.course;unknown;no;no;cellular;jul;tue;455;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+41;admin.;single;university.degree;no;no;no;cellular;jul;tue;253;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+52;admin.;divorced;university.degree;unknown;yes;no;cellular;jul;tue;187;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+48;management;married;high.school;no;no;no;cellular;jul;tue;154;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+26;blue-collar;married;basic.9y;unknown;yes;no;cellular;jul;tue;114;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+26;management;single;university.degree;no;yes;no;cellular;jul;tue;154;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+26;management;single;university.degree;no;yes;no;cellular;jul;tue;201;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+28;admin.;single;unknown;no;no;no;cellular;jul;tue;574;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+59;housemaid;married;basic.4y;unknown;unknown;unknown;cellular;jul;tue;202;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;admin.;single;professional.course;no;no;no;cellular;jul;tue;46;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+52;admin.;divorced;university.degree;unknown;yes;yes;cellular;jul;tue;401;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+24;student;single;high.school;unknown;no;no;cellular;jul;tue;86;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+28;services;married;high.school;no;yes;no;cellular;jul;tue;191;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+41;admin.;single;university.degree;no;no;no;cellular;jul;tue;362;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;admin.;single;high.school;no;yes;no;telephone;jul;tue;287;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;management;single;university.degree;unknown;yes;yes;cellular;jul;tue;92;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+29;admin.;single;high.school;no;no;no;cellular;jul;tue;574;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+43;blue-collar;married;basic.6y;no;yes;no;cellular;jul;tue;220;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+29;blue-collar;married;basic.9y;no;no;no;cellular;jul;tue;249;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;admin.;single;high.school;no;no;no;cellular;jul;tue;120;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+26;entrepreneur;married;professional.course;no;yes;no;cellular;jul;tue;113;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+26;entrepreneur;married;professional.course;no;yes;no;cellular;jul;tue;359;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+30;admin.;single;high.school;no;yes;no;cellular;jul;tue;443;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+30;technician;single;university.degree;no;no;no;cellular;jul;tue;402;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+38;blue-collar;married;high.school;no;no;no;cellular;jul;tue;165;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+42;blue-collar;married;basic.6y;unknown;no;no;cellular;jul;tue;71;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+42;blue-collar;married;basic.6y;unknown;no;no;telephone;jul;tue;190;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+56;technician;divorced;professional.course;no;no;no;cellular;jul;tue;143;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+30;services;married;basic.9y;no;no;no;telephone;jul;tue;186;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+57;admin.;married;basic.4y;unknown;yes;no;cellular;jul;tue;325;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+25;services;married;high.school;no;no;no;cellular;jul;tue;1767;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+34;admin.;married;university.degree;no;no;no;cellular;jul;tue;145;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+30;technician;single;professional.course;no;no;no;cellular;jul;tue;125;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+30;technician;single;professional.course;no;no;no;cellular;jul;tue;156;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+46;services;married;basic.9y;no;no;no;cellular;jul;tue;630;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+30;technician;single;high.school;no;no;no;cellular;jul;tue;116;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+48;technician;divorced;professional.course;no;yes;no;cellular;jul;tue;188;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+47;blue-collar;divorced;basic.9y;no;yes;no;cellular;jul;tue;199;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+35;blue-collar;married;basic.4y;no;no;no;cellular;jul;tue;545;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+29;admin.;married;high.school;no;yes;no;cellular;jul;tue;681;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+30;unemployed;single;basic.4y;unknown;no;yes;cellular;jul;tue;489;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+42;admin.;married;university.degree;no;yes;yes;cellular;jul;tue;156;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;admin.;single;professional.course;no;yes;no;cellular;jul;tue;483;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+37;services;married;basic.6y;no;yes;no;cellular;jul;tue;165;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+37;admin.;married;university.degree;no;no;no;cellular;jul;tue;197;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+28;blue-collar;married;basic.9y;no;no;no;cellular;jul;tue;245;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+34;technician;single;university.degree;no;yes;yes;cellular;jul;tue;113;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+34;technician;single;university.degree;no;no;no;cellular;jul;tue;173;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+28;services;married;high.school;no;no;no;cellular;jul;tue;214;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+34;technician;single;university.degree;no;no;yes;cellular;jul;tue;1082;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+30;technician;single;professional.course;no;yes;no;cellular;jul;tue;206;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+42;blue-collar;married;basic.9y;no;no;no;cellular;jul;tue;730;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+33;services;single;high.school;no;yes;no;cellular;jul;tue;143;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+29;self-employed;married;unknown;no;no;no;cellular;jul;tue;125;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+30;technician;single;professional.course;no;no;no;cellular;jul;tue;259;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+30;technician;single;professional.course;no;yes;no;cellular;jul;tue;154;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+44;blue-collar;single;university.degree;unknown;yes;yes;cellular;jul;tue;70;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+42;blue-collar;married;basic.6y;unknown;no;no;cellular;jul;tue;211;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+30;technician;single;professional.course;no;no;no;cellular;jul;tue;163;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+31;management;single;basic.9y;no;yes;no;cellular;jul;tue;123;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+36;admin.;married;university.degree;no;yes;no;cellular;jul;tue;716;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+39;services;married;high.school;no;no;no;cellular;jul;tue;297;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+40;technician;divorced;professional.course;no;yes;no;cellular;jul;tue;86;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+40;technician;divorced;professional.course;no;no;no;cellular;jul;tue;122;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+34;technician;single;university.degree;no;no;no;cellular;jul;tue;116;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+26;blue-collar;married;basic.9y;unknown;no;no;cellular;jul;tue;250;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+37;blue-collar;single;basic.6y;no;no;no;cellular;jul;tue;338;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+32;blue-collar;married;university.degree;no;no;no;cellular;jul;tue;212;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+25;admin.;single;high.school;no;no;yes;cellular;jul;tue;586;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+26;blue-collar;married;basic.9y;unknown;no;no;telephone;jul;tue;77;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+28;services;married;high.school;no;no;no;cellular;jul;tue;413;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;technician;single;professional.course;unknown;no;no;cellular;jul;tue;97;6;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+31;services;married;high.school;no;unknown;unknown;cellular;jul;tue;135;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+34;self-employed;divorced;professional.course;unknown;no;no;cellular;jul;tue;361;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+29;technician;single;university.degree;no;no;yes;cellular;jul;tue;293;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+34;blue-collar;married;basic.4y;no;yes;yes;cellular;jul;tue;528;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+23;admin.;single;high.school;no;no;no;cellular;jul;tue;220;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;admin.;single;professional.course;no;no;no;cellular;jul;tue;803;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+54;retired;divorced;basic.4y;unknown;yes;no;cellular;jul;tue;141;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+54;retired;divorced;basic.4y;unknown;yes;no;cellular;jul;tue;188;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+49;management;married;university.degree;no;yes;no;cellular;jul;tue;604;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+34;technician;single;university.degree;no;no;no;cellular;jul;tue;159;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+54;retired;divorced;basic.4y;unknown;yes;no;cellular;jul;tue;498;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+40;admin.;single;university.degree;no;yes;no;cellular;jul;tue;220;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+20;blue-collar;married;basic.4y;no;no;yes;cellular;jul;tue;285;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+30;technician;married;university.degree;unknown;yes;no;cellular;jul;tue;231;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+30;technician;married;university.degree;unknown;no;no;cellular;jul;tue;305;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+24;student;single;high.school;unknown;yes;no;cellular;jul;tue;154;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+37;blue-collar;single;professional.course;no;no;no;cellular;jul;tue;96;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+36;blue-collar;married;basic.4y;unknown;yes;no;cellular;jul;tue;221;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+33;admin.;married;university.degree;unknown;yes;no;cellular;jul;tue;83;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+32;services;divorced;high.school;unknown;yes;no;cellular;jul;tue;454;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+36;blue-collar;married;basic.4y;unknown;yes;yes;cellular;jul;tue;353;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+34;blue-collar;married;basic.9y;no;no;yes;cellular;jul;tue;215;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+33;services;married;basic.9y;no;yes;no;cellular;jul;tue;163;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;admin.;single;high.school;no;yes;no;cellular;jul;tue;121;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;admin.;single;high.school;no;no;no;cellular;jul;tue;185;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;admin.;single;high.school;no;no;no;cellular;jul;tue;297;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+47;blue-collar;divorced;basic.9y;no;yes;no;cellular;jul;tue;266;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;admin.;single;high.school;no;no;no;cellular;jul;tue;491;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+29;admin.;single;high.school;no;yes;no;cellular;jul;tue;303;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+34;services;single;high.school;no;yes;no;telephone;jul;tue;112;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+55;retired;married;basic.6y;unknown;no;no;cellular;jul;tue;61;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+29;entrepreneur;married;university.degree;no;yes;no;cellular;jul;tue;306;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+32;admin.;single;university.degree;no;no;no;cellular;jul;tue;1027;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;entrepreneur;married;high.school;no;no;no;cellular;jul;tue;831;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+26;entrepreneur;married;basic.4y;unknown;no;no;cellular;jul;tue;510;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;admin.;single;professional.course;no;no;no;cellular;jul;tue;338;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+45;management;married;university.degree;unknown;unknown;unknown;cellular;jul;tue;107;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+25;blue-collar;single;basic.9y;no;yes;yes;cellular;jul;tue;138;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+37;services;divorced;basic.6y;no;yes;yes;cellular;jul;tue;210;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+23;entrepreneur;married;professional.course;no;no;no;cellular;jul;tue;58;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+31;admin.;married;high.school;no;yes;no;cellular;jul;tue;305;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+37;entrepreneur;single;basic.9y;unknown;yes;no;cellular;jul;tue;349;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;management;single;university.degree;unknown;no;no;cellular;jul;tue;312;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+23;entrepreneur;married;professional.course;no;yes;no;cellular;jul;tue;283;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+28;blue-collar;married;basic.9y;unknown;no;no;cellular;jul;tue;55;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+48;technician;divorced;professional.course;no;yes;no;cellular;jul;tue;360;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;admin.;single;high.school;no;no;no;cellular;jul;tue;216;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+33;blue-collar;married;basic.9y;no;yes;no;cellular;jul;tue;327;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;admin.;single;high.school;no;no;no;cellular;jul;tue;317;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;management;single;university.degree;no;yes;yes;cellular;jul;tue;76;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+29;admin.;single;high.school;no;yes;no;cellular;jul;tue;202;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;blue-collar;divorced;basic.9y;no;no;no;cellular;jul;tue;108;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+41;blue-collar;married;unknown;no;yes;yes;cellular;jul;tue;301;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+41;blue-collar;married;unknown;no;yes;no;telephone;jul;tue;460;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+47;admin.;married;university.degree;no;yes;no;cellular;jul;tue;194;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+29;admin.;married;high.school;no;no;yes;cellular;jul;tue;165;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;technician;single;professional.course;no;yes;no;cellular;jul;tue;64;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+33;blue-collar;single;basic.9y;no;no;yes;cellular;jul;tue;141;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;blue-collar;divorced;basic.9y;no;yes;no;cellular;jul;tue;82;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+53;retired;divorced;high.school;unknown;yes;no;cellular;jul;tue;84;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+41;blue-collar;married;unknown;no;no;no;cellular;jul;tue;89;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+26;technician;married;professional.course;no;yes;no;cellular;jul;tue;136;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+41;blue-collar;married;unknown;no;yes;no;cellular;jul;tue;158;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+41;blue-collar;married;unknown;no;no;yes;cellular;jul;tue;161;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+52;retired;married;basic.6y;no;no;no;cellular;jul;tue;203;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;admin.;single;high.school;no;yes;yes;cellular;jul;tue;54;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+55;retired;married;basic.6y;unknown;yes;yes;cellular;jul;tue;632;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;admin.;single;high.school;no;no;no;cellular;jul;tue;158;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;admin.;single;high.school;no;no;no;cellular;jul;tue;192;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;admin.;single;high.school;no;yes;yes;cellular;jul;tue;144;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+28;blue-collar;divorced;high.school;no;yes;no;cellular;jul;tue;251;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+38;blue-collar;married;basic.9y;unknown;unknown;unknown;cellular;jul;tue;319;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+50;admin.;married;professional.course;no;yes;yes;cellular;jul;tue;635;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+35;blue-collar;married;professional.course;no;no;no;cellular;jul;tue;584;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+35;technician;married;professional.course;no;yes;no;cellular;jul;tue;157;8;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+49;management;married;university.degree;unknown;no;yes;cellular;jul;tue;606;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+29;services;married;high.school;no;yes;no;cellular;jul;tue;78;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+42;blue-collar;married;basic.9y;no;no;no;cellular;jul;tue;119;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+40;blue-collar;married;basic.4y;unknown;unknown;unknown;cellular;jul;tue;192;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+28;blue-collar;divorced;high.school;no;yes;yes;cellular;jul;tue;214;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+57;retired;married;professional.course;unknown;no;yes;cellular;jul;tue;1720;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+30;blue-collar;married;basic.6y;no;yes;no;cellular;jul;tue;355;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+38;admin.;married;university.degree;no;yes;yes;cellular;jul;tue;452;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+34;admin.;single;university.degree;no;yes;no;cellular;jul;tue;819;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+30;blue-collar;married;basic.9y;no;no;no;cellular;jul;tue;623;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+29;technician;married;professional.course;no;no;no;cellular;jul;tue;294;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+33;blue-collar;single;basic.9y;no;yes;yes;telephone;jul;tue;63;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+28;technician;married;professional.course;no;yes;no;cellular;jul;tue;280;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;admin.;single;professional.course;no;no;yes;cellular;jul;tue;518;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+49;management;married;university.degree;no;yes;no;telephone;jul;tue;336;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+38;blue-collar;married;basic.9y;unknown;no;no;cellular;jul;tue;171;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+55;services;married;basic.6y;unknown;yes;no;cellular;jul;tue;326;6;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+41;services;divorced;high.school;unknown;yes;no;cellular;jul;tue;55;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+32;services;married;high.school;no;no;yes;cellular;jul;tue;302;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+52;admin.;divorced;university.degree;unknown;no;no;cellular;jul;tue;323;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+33;blue-collar;single;basic.9y;no;no;no;telephone;jul;tue;346;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+35;entrepreneur;married;basic.9y;no;no;no;cellular;jul;tue;291;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+25;blue-collar;single;basic.4y;no;yes;yes;cellular;jul;tue;426;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+31;blue-collar;married;basic.6y;no;no;no;telephone;jul;tue;107;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+59;housemaid;married;basic.4y;unknown;no;no;cellular;jul;tue;483;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+28;services;married;high.school;no;no;no;cellular;jul;tue;289;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+28;services;married;high.school;no;no;no;cellular;jul;tue;262;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+32;technician;single;professional.course;no;no;no;cellular;jul;tue;52;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+26;management;single;university.degree;no;no;no;cellular;jul;tue;517;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+28;services;married;high.school;no;yes;no;telephone;jul;tue;71;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+28;services;married;high.school;no;no;no;cellular;jul;tue;554;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+28;services;married;high.school;no;no;no;cellular;jul;tue;96;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+28;services;married;high.school;no;yes;no;cellular;jul;tue;59;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+44;admin.;married;university.degree;no;yes;no;cellular;jul;tue;228;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+31;self-employed;married;university.degree;no;yes;no;cellular;jul;tue;242;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+57;admin.;married;basic.4y;unknown;yes;no;cellular;jul;tue;150;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+33;blue-collar;single;basic.9y;no;yes;no;cellular;jul;tue;154;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;blue-collar;divorced;high.school;no;yes;no;cellular;jul;tue;658;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+34;technician;single;university.degree;no;no;no;cellular;jul;tue;117;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+47;technician;married;professional.course;unknown;yes;no;cellular;jul;tue;362;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+28;services;married;high.school;no;yes;no;cellular;jul;tue;124;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+32;blue-collar;single;basic.4y;no;yes;no;cellular;jul;tue;145;12;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;admin.;single;professional.course;no;yes;no;cellular;jul;tue;1061;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+37;entrepreneur;married;basic.9y;no;unknown;unknown;cellular;jul;tue;268;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+38;blue-collar;single;basic.9y;no;yes;no;cellular;jul;tue;237;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+28;services;married;high.school;no;no;yes;cellular;jul;tue;378;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+28;services;married;high.school;no;no;no;cellular;jul;tue;171;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+28;services;married;high.school;no;yes;no;cellular;jul;tue;286;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+26;blue-collar;single;professional.course;unknown;unknown;unknown;cellular;jul;tue;392;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+36;admin.;married;university.degree;no;yes;no;cellular;jul;tue;218;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+31;admin.;single;high.school;no;no;no;cellular;jul;tue;21;35;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+33;blue-collar;single;basic.9y;no;no;no;telephone;jul;tue;116;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+52;admin.;divorced;university.degree;unknown;yes;yes;cellular;jul;tue;201;9;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+30;services;married;high.school;no;yes;no;cellular;jul;tue;1344;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+27;admin.;single;professional.course;no;yes;yes;cellular;jul;tue;520;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+28;blue-collar;married;basic.9y;unknown;yes;no;cellular;jul;tue;137;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+28;services;single;high.school;no;no;no;cellular;jul;tue;82;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+26;admin.;single;basic.9y;no;yes;yes;cellular;jul;tue;687;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+30;admin.;married;university.degree;no;yes;yes;telephone;jul;tue;212;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+48;technician;divorced;professional.course;no;yes;no;telephone;jul;tue;243;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+25;services;married;high.school;no;unknown;unknown;cellular;jul;tue;160;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+32;blue-collar;single;basic.4y;no;yes;no;telephone;jul;tue;49;7;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+29;admin.;married;high.school;no;no;yes;telephone;jul;tue;65;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+28;services;married;high.school;no;yes;no;cellular;jul;tue;376;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+28;admin.;single;university.degree;no;yes;no;cellular;jul;tue;476;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+45;entrepreneur;married;university.degree;unknown;yes;yes;telephone;jul;tue;379;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;blue-collar;divorced;basic.9y;unknown;no;no;cellular;jul;tue;141;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+49;services;divorced;high.school;no;yes;no;cellular;jul;tue;155;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+33;services;married;high.school;no;yes;no;cellular;jul;tue;90;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+30;technician;single;high.school;no;no;no;telephone;jul;tue;17;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+31;admin.;single;high.school;no;no;no;cellular;jul;tue;140;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;admin.;married;university.degree;no;no;no;cellular;jul;tue;187;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+30;technician;single;professional.course;no;no;no;cellular;jul;tue;136;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+34;management;single;unknown;no;no;no;cellular;jul;tue;416;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+34;technician;married;professional.course;no;yes;no;telephone;jul;tue;389;7;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+38;blue-collar;married;basic.9y;unknown;no;no;cellular;jul;tue;283;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+55;retired;married;basic.6y;unknown;yes;no;telephone;jul;tue;554;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+33;blue-collar;married;basic.6y;unknown;yes;no;cellular;jul;tue;17;11;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+48;management;married;high.school;no;yes;no;cellular;jul;tue;22;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+34;entrepreneur;single;basic.9y;no;yes;no;cellular;jul;tue;38;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+42;blue-collar;married;basic.6y;unknown;no;no;cellular;jul;tue;109;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+35;admin.;married;university.degree;no;no;no;cellular;jul;tue;480;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;blue-collar;divorced;basic.9y;no;yes;no;cellular;jul;tue;141;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;admin.;single;high.school;no;yes;no;cellular;jul;tue;212;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+28;technician;married;professional.course;no;yes;no;cellular;jul;tue;249;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+34;blue-collar;married;basic.9y;unknown;yes;no;cellular;jul;tue;227;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+40;services;divorced;high.school;no;yes;no;cellular;jul;tue;256;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+23;admin.;single;high.school;no;yes;no;cellular;jul;tue;141;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+28;services;married;high.school;no;yes;yes;telephone;jul;tue;153;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+34;technician;single;university.degree;no;no;no;cellular;jul;tue;120;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+28;services;married;high.school;no;yes;no;cellular;jul;tue;333;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;self-employed;single;professional.course;no;yes;no;cellular;jul;tue;279;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+30;blue-collar;married;basic.6y;no;yes;yes;cellular;jul;tue;241;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+28;services;married;high.school;no;no;no;telephone;jul;tue;103;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+28;technician;single;professional.course;no;yes;no;cellular;jul;tue;861;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+24;technician;married;unknown;no;yes;no;telephone;jul;tue;114;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+24;student;single;high.school;unknown;no;no;cellular;jul;tue;284;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+33;admin.;single;high.school;no;no;yes;telephone;jul;tue;127;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+48;technician;married;professional.course;no;yes;no;cellular;jul;tue;136;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+26;blue-collar;married;basic.9y;unknown;yes;no;cellular;jul;tue;250;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+26;technician;single;professional.course;no;no;no;cellular;jul;tue;529;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+50;entrepreneur;married;unknown;unknown;yes;no;cellular;jul;tue;244;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+24;student;single;high.school;unknown;no;no;cellular;jul;tue;199;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+25;blue-collar;single;basic.4y;no;no;no;telephone;jul;tue;104;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+35;services;single;high.school;no;no;no;cellular;jul;tue;191;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+54;admin.;married;high.school;no;yes;no;cellular;jul;tue;369;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+35;services;single;high.school;no;no;no;cellular;jul;tue;161;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+35;services;single;high.school;no;no;no;cellular;jul;tue;89;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+42;technician;divorced;basic.9y;no;yes;no;cellular;jul;tue;195;6;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+56;unemployed;divorced;professional.course;no;yes;no;cellular;jul;tue;214;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+24;student;single;high.school;unknown;no;no;cellular;jul;tue;1111;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+55;technician;divorced;professional.course;no;no;no;cellular;jul;tue;71;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+33;admin.;married;university.degree;no;yes;no;cellular;jul;tue;183;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+32;entrepreneur;married;basic.9y;unknown;yes;no;telephone;jul;tue;258;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+31;admin.;single;professional.course;no;no;no;cellular;jul;tue;173;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+25;services;married;high.school;no;no;no;cellular;jul;tue;329;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+29;technician;single;university.degree;no;no;no;cellular;jul;tue;225;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+52;admin.;divorced;university.degree;unknown;no;no;cellular;jul;tue;210;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+32;admin.;married;basic.9y;no;no;no;telephone;jul;tue;320;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+32;management;married;university.degree;unknown;yes;yes;cellular;jul;tue;1011;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+32;blue-collar;single;basic.4y;unknown;no;no;cellular;jul;tue;142;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+29;admin.;single;basic.9y;no;no;no;telephone;jul;tue;280;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+39;admin.;married;university.degree;no;yes;yes;cellular;jul;wed;184;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+30;technician;single;professional.course;no;yes;no;cellular;jul;wed;75;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+37;admin.;married;university.degree;no;yes;no;cellular;jul;wed;353;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+29;admin.;single;high.school;no;yes;no;cellular;jul;wed;126;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+29;admin.;single;high.school;no;unknown;unknown;cellular;jul;wed;183;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+45;technician;married;professional.course;no;yes;no;cellular;jul;wed;95;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+34;blue-collar;married;basic.9y;no;yes;no;cellular;jul;wed;477;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+38;blue-collar;married;unknown;no;yes;no;cellular;jul;wed;131;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+33;admin.;married;high.school;no;yes;no;cellular;jul;wed;134;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+34;blue-collar;married;basic.9y;no;yes;no;cellular;jul;wed;85;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+35;self-employed;single;university.degree;no;no;no;cellular;jul;wed;157;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+33;admin.;married;high.school;no;no;no;cellular;jul;wed;254;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+45;technician;married;professional.course;no;no;no;cellular;jul;wed;394;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+59;retired;divorced;university.degree;unknown;unknown;unknown;cellular;jul;wed;139;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+45;technician;divorced;basic.9y;unknown;no;no;cellular;jul;wed;80;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+52;retired;married;professional.course;no;yes;no;cellular;jul;wed;53;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+38;blue-collar;married;unknown;no;no;no;cellular;jul;wed;618;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+42;entrepreneur;married;basic.9y;no;yes;no;cellular;jul;wed;129;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+28;technician;divorced;university.degree;no;yes;no;cellular;jul;wed;136;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+28;technician;divorced;university.degree;no;no;no;cellular;jul;wed;154;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+28;technician;divorced;university.degree;no;no;no;cellular;jul;wed;265;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+54;services;married;high.school;no;no;no;telephone;jul;wed;250;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+54;services;married;high.school;no;no;no;cellular;jul;wed;82;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+37;management;single;university.degree;no;yes;no;cellular;jul;wed;158;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+29;admin.;single;high.school;no;yes;no;cellular;jul;wed;1272;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+35;management;married;university.degree;no;no;no;cellular;jul;wed;182;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+40;blue-collar;divorced;basic.9y;no;yes;no;cellular;jul;wed;207;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+25;admin.;married;high.school;no;no;no;cellular;jul;wed;95;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+57;retired;married;basic.4y;unknown;yes;yes;cellular;jul;wed;253;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+32;services;single;high.school;unknown;yes;no;cellular;jul;wed;72;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+34;admin.;single;university.degree;unknown;yes;no;cellular;jul;wed;132;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+25;technician;single;university.degree;no;yes;no;cellular;jul;wed;259;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+25;blue-collar;married;basic.9y;no;yes;no;cellular;jul;wed;261;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+53;admin.;married;university.degree;unknown;no;no;cellular;jul;wed;815;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+53;admin.;married;university.degree;no;yes;yes;cellular;jul;wed;205;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+31;services;married;basic.9y;no;yes;no;cellular;jul;wed;537;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+40;technician;married;professional.course;no;yes;yes;cellular;jul;wed;323;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+57;blue-collar;married;basic.6y;no;yes;no;cellular;jul;wed;64;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+31;services;married;basic.9y;no;no;no;cellular;jul;wed;679;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+29;blue-collar;married;high.school;no;yes;no;telephone;jul;wed;42;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+30;technician;single;university.degree;no;yes;yes;cellular;jul;wed;63;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+35;self-employed;single;university.degree;no;yes;no;cellular;jul;wed;2122;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+53;admin.;married;university.degree;no;yes;no;cellular;jul;wed;618;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;housemaid;married;basic.4y;no;yes;no;cellular;jul;wed;183;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+51;blue-collar;married;basic.4y;unknown;yes;no;cellular;jul;wed;199;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;housemaid;married;basic.4y;no;yes;no;cellular;jul;wed;296;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;housemaid;married;basic.4y;no;no;no;cellular;jul;wed;206;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+33;services;married;basic.9y;unknown;yes;no;cellular;jul;wed;133;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;housemaid;married;basic.4y;no;yes;no;cellular;jul;wed;317;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;housemaid;married;basic.4y;no;yes;no;cellular;jul;wed;107;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;housemaid;married;basic.4y;no;yes;no;cellular;jul;wed;97;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+44;blue-collar;married;basic.4y;unknown;yes;no;cellular;jul;wed;128;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+31;admin.;single;high.school;no;no;no;cellular;jul;wed;75;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;housemaid;married;basic.4y;no;no;no;cellular;jul;wed;296;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+48;blue-collar;married;basic.4y;no;yes;no;cellular;jul;wed;74;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;housemaid;married;basic.4y;no;yes;no;cellular;jul;wed;402;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+48;blue-collar;married;basic.4y;no;yes;no;cellular;jul;wed;126;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+51;management;married;university.degree;no;yes;no;cellular;jul;wed;65;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+36;admin.;divorced;high.school;no;yes;no;cellular;jul;wed;389;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+33;self-employed;married;university.degree;no;yes;no;cellular;jul;wed;99;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+36;admin.;married;university.degree;no;yes;no;cellular;jul;wed;99;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+51;management;married;university.degree;no;yes;no;cellular;jul;wed;194;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+51;management;married;university.degree;no;yes;no;cellular;jul;wed;420;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+35;management;married;university.degree;no;no;no;cellular;jul;wed;191;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;housemaid;married;basic.4y;no;no;yes;cellular;jul;wed;697;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+51;management;married;university.degree;no;yes;no;cellular;jul;wed;96;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+52;blue-collar;divorced;basic.9y;no;yes;no;telephone;jul;wed;138;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+51;management;married;university.degree;no;no;yes;cellular;jul;wed;110;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+24;services;single;professional.course;no;yes;no;cellular;jul;wed;55;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+34;blue-collar;married;basic.9y;no;no;yes;cellular;jul;wed;45;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+51;management;married;university.degree;no;no;no;cellular;jul;wed;175;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+24;services;single;professional.course;no;yes;no;cellular;jul;wed;139;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+36;admin.;married;university.degree;no;no;yes;cellular;jul;wed;153;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+24;services;single;professional.course;no;yes;no;cellular;jul;wed;80;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+24;services;single;professional.course;no;yes;no;cellular;jul;wed;185;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+48;blue-collar;married;basic.4y;no;no;no;cellular;jul;wed;128;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+24;services;single;professional.course;no;yes;no;cellular;jul;wed;349;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;unemployed;married;basic.6y;unknown;yes;no;cellular;jul;wed;62;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;unemployed;married;basic.6y;unknown;no;no;cellular;jul;wed;72;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+28;services;single;high.school;no;yes;no;cellular;jul;wed;51;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+36;admin.;married;university.degree;no;yes;no;cellular;jul;wed;570;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+34;technician;married;professional.course;no;yes;no;cellular;jul;wed;99;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+34;blue-collar;married;basic.9y;no;yes;no;cellular;jul;wed;173;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+41;technician;single;university.degree;no;yes;yes;cellular;jul;wed;184;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;blue-collar;married;basic.6y;no;no;no;cellular;jul;wed;272;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+30;admin.;married;high.school;no;yes;no;cellular;jul;wed;166;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+34;admin.;single;high.school;no;yes;no;cellular;jul;wed;42;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+34;admin.;single;high.school;no;no;no;cellular;jul;wed;127;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+34;admin.;single;high.school;no;yes;no;cellular;jul;wed;85;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+31;technician;married;professional.course;no;yes;no;cellular;jul;wed;225;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+42;technician;married;high.school;no;yes;no;cellular;jul;wed;761;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+48;entrepreneur;married;university.degree;no;yes;no;telephone;jul;wed;42;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+34;blue-collar;married;basic.9y;no;yes;no;cellular;jul;wed;206;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+24;blue-collar;married;basic.9y;no;unknown;unknown;cellular;jul;wed;781;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+26;services;single;high.school;no;unknown;unknown;cellular;jul;wed;125;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+54;management;married;university.degree;no;yes;no;cellular;jul;wed;113;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+59;blue-collar;divorced;basic.9y;no;no;no;cellular;jul;wed;92;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+36;blue-collar;married;basic.6y;no;yes;no;telephone;jul;wed;16;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;admin.;single;university.degree;no;no;no;cellular;jul;wed;51;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+51;technician;married;university.degree;unknown;yes;yes;cellular;jul;wed;89;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+36;blue-collar;married;basic.6y;no;no;no;cellular;jul;wed;205;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+40;blue-collar;divorced;basic.9y;no;yes;no;cellular;jul;wed;125;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+51;technician;married;university.degree;unknown;yes;yes;cellular;jul;wed;128;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;admin.;single;university.degree;no;yes;yes;cellular;jul;wed;91;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+51;technician;married;university.degree;unknown;yes;no;cellular;jul;wed;65;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;admin.;single;university.degree;no;no;no;cellular;jul;wed;194;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+32;blue-collar;married;basic.4y;unknown;yes;no;cellular;jul;wed;147;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+32;blue-collar;married;basic.4y;unknown;no;yes;cellular;jul;wed;112;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+32;blue-collar;married;basic.4y;unknown;yes;no;cellular;jul;wed;82;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+33;services;married;basic.9y;unknown;yes;no;telephone;jul;wed;25;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+28;services;single;high.school;no;yes;no;cellular;jul;wed;85;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+32;blue-collar;married;basic.4y;unknown;no;no;cellular;jul;wed;285;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+31;management;single;university.degree;no;yes;yes;cellular;jul;wed;61;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+39;entrepreneur;divorced;basic.4y;no;no;no;cellular;jul;wed;174;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+49;blue-collar;married;basic.4y;unknown;yes;no;cellular;jul;wed;42;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+44;unemployed;married;basic.9y;unknown;no;no;cellular;jul;wed;92;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+40;admin.;married;professional.course;no;no;no;cellular;jul;wed;130;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+30;blue-collar;married;high.school;unknown;yes;no;cellular;jul;wed;44;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+30;blue-collar;married;high.school;unknown;no;no;cellular;jul;wed;145;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+31;admin.;married;university.degree;no;no;no;telephone;jul;wed;238;8;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+36;admin.;married;university.degree;no;yes;yes;cellular;jul;wed;160;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+31;management;single;university.degree;no;no;no;cellular;jul;wed;645;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+32;blue-collar;married;basic.4y;unknown;no;yes;telephone;jul;wed;990;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+31;technician;divorced;professional.course;no;unknown;unknown;cellular;jul;wed;254;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+31;technician;divorced;professional.course;no;no;no;cellular;jul;wed;64;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+24;blue-collar;single;basic.4y;no;no;no;cellular;jul;wed;115;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+44;unemployed;married;basic.9y;unknown;no;yes;cellular;jul;wed;113;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+31;technician;divorced;professional.course;no;yes;no;cellular;jul;wed;662;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+31;technician;divorced;professional.course;no;yes;no;cellular;jul;wed;625;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+28;technician;married;university.degree;no;yes;no;cellular;jul;wed;126;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+44;unemployed;married;basic.9y;unknown;yes;no;cellular;jul;wed;189;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+31;blue-collar;married;basic.9y;no;yes;no;cellular;jul;wed;124;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+28;technician;married;university.degree;no;yes;no;cellular;jul;wed;321;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+37;technician;single;professional.course;unknown;no;no;cellular;jul;wed;482;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+26;blue-collar;single;basic.4y;no;yes;yes;cellular;jul;wed;215;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+34;blue-collar;married;basic.6y;unknown;no;no;cellular;jul;wed;727;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+55;admin.;divorced;high.school;no;no;no;cellular;jul;wed;189;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+55;admin.;divorced;high.school;no;yes;no;cellular;jul;wed;127;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+32;technician;married;university.degree;no;yes;no;telephone;jul;wed;196;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+45;blue-collar;divorced;basic.4y;no;no;no;cellular;jul;wed;87;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+45;blue-collar;divorced;basic.4y;no;yes;no;cellular;jul;wed;112;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;admin.;married;university.degree;unknown;yes;no;cellular;jul;wed;290;13;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+33;admin.;married;high.school;no;yes;no;cellular;jul;wed;310;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+52;retired;married;professional.course;no;yes;no;cellular;jul;wed;389;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+45;blue-collar;divorced;basic.4y;no;yes;no;cellular;jul;wed;294;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+28;blue-collar;single;professional.course;no;yes;no;cellular;jul;wed;611;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+23;blue-collar;married;basic.9y;unknown;yes;no;cellular;jul;wed;259;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+37;blue-collar;single;basic.4y;no;yes;yes;cellular;jul;wed;156;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+52;blue-collar;divorced;basic.9y;no;yes;no;cellular;jul;wed;275;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+33;admin.;single;university.degree;no;yes;yes;cellular;jul;wed;143;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+44;technician;married;high.school;no;no;no;cellular;jul;wed;92;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+44;technician;married;high.school;no;yes;no;cellular;jul;wed;82;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+52;management;married;professional.course;no;no;no;cellular;jul;wed;222;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+26;technician;married;university.degree;no;yes;no;cellular;jul;wed;175;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+36;admin.;divorced;high.school;no;yes;yes;cellular;jul;wed;148;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+26;blue-collar;married;basic.9y;no;no;no;cellular;jul;wed;366;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+34;admin.;single;university.degree;no;yes;no;cellular;jul;wed;138;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+49;blue-collar;single;basic.4y;unknown;no;no;cellular;jul;wed;121;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+34;admin.;single;university.degree;no;yes;no;cellular;jul;wed;337;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+46;housemaid;married;basic.4y;no;no;no;cellular;jul;wed;236;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+41;blue-collar;married;basic.4y;no;yes;no;telephone;jul;wed;52;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+42;blue-collar;married;basic.9y;unknown;yes;no;cellular;jul;wed;90;10;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+51;admin.;married;university.degree;no;yes;no;cellular;jul;wed;426;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+29;technician;married;professional.course;no;yes;no;cellular;jul;wed;332;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+40;blue-collar;married;basic.4y;unknown;unknown;unknown;telephone;jul;wed;135;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+47;blue-collar;married;basic.4y;no;no;no;cellular;jul;wed;127;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+31;blue-collar;married;basic.9y;no;yes;no;cellular;jul;wed;72;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+31;blue-collar;married;basic.9y;no;no;no;cellular;jul;wed;186;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+31;housemaid;married;basic.9y;no;yes;no;cellular;jul;wed;219;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+50;admin.;single;high.school;no;yes;no;cellular;jul;wed;180;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+25;blue-collar;single;basic.9y;unknown;yes;no;cellular;jul;wed;111;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+26;admin.;married;high.school;no;yes;yes;cellular;jul;wed;273;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+22;student;single;high.school;no;no;yes;cellular;jul;wed;349;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+31;blue-collar;married;basic.9y;no;yes;no;cellular;jul;wed;590;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+32;technician;single;university.degree;no;no;yes;cellular;jul;wed;90;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+31;admin.;single;high.school;no;no;no;cellular;jul;wed;96;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;admin.;married;university.degree;no;yes;no;cellular;jul;wed;899;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+41;blue-collar;single;basic.4y;unknown;unknown;unknown;cellular;jul;wed;72;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+40;unemployed;married;university.degree;unknown;yes;no;cellular;jul;wed;113;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+40;unemployed;married;university.degree;unknown;yes;no;telephone;jul;wed;54;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+31;blue-collar;married;basic.9y;no;yes;no;cellular;jul;wed;1121;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+36;admin.;divorced;university.degree;no;yes;no;cellular;jul;wed;81;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+55;retired;married;basic.9y;unknown;unknown;unknown;cellular;jul;wed;628;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+44;admin.;married;high.school;no;yes;no;cellular;jul;wed;118;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+23;unemployed;single;university.degree;no;yes;no;cellular;jul;wed;119;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+26;blue-collar;single;basic.9y;no;no;no;cellular;jul;wed;1139;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+44;admin.;married;high.school;no;yes;no;cellular;jul;wed;97;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+29;services;divorced;high.school;no;yes;no;cellular;jul;wed;171;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+25;housemaid;single;high.school;no;no;no;cellular;jul;wed;1156;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+54;management;married;university.degree;no;no;no;cellular;jul;wed;71;6;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+26;admin.;single;high.school;no;yes;yes;cellular;jul;wed;668;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+52;services;married;high.school;no;no;no;cellular;jul;wed;183;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+29;technician;married;professional.course;no;yes;no;cellular;jul;wed;128;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+50;admin.;single;high.school;no;yes;no;cellular;jul;wed;171;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+32;admin.;single;university.degree;no;no;no;cellular;jul;wed;76;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+32;admin.;divorced;high.school;no;no;no;cellular;jul;wed;89;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+29;services;divorced;high.school;no;yes;no;cellular;jul;wed;188;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+44;admin.;married;high.school;no;no;no;cellular;jul;wed;869;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+24;services;single;high.school;no;yes;no;cellular;jul;wed;242;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+28;entrepreneur;married;university.degree;no;no;no;cellular;jul;wed;98;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+28;entrepreneur;married;university.degree;no;no;no;cellular;jul;wed;175;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+39;technician;married;professional.course;no;yes;no;telephone;jul;wed;87;8;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+39;services;married;basic.9y;no;no;no;cellular;jul;wed;100;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+32;technician;single;university.degree;no;yes;no;cellular;jul;wed;89;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+40;admin.;married;high.school;no;no;yes;telephone;jul;wed;31;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;blue-collar;married;basic.4y;no;yes;no;cellular;jul;wed;205;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+36;technician;married;professional.course;no;yes;no;cellular;jul;wed;167;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+31;admin.;single;high.school;no;no;no;cellular;jul;wed;108;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+51;management;married;university.degree;unknown;yes;no;cellular;jul;wed;180;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+29;admin.;married;university.degree;no;yes;no;cellular;jul;wed;31;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+33;admin.;single;university.degree;no;yes;no;cellular;jul;wed;494;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+28;technician;single;university.degree;no;no;no;cellular;jul;wed;96;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+41;self-employed;married;basic.4y;unknown;no;no;cellular;jul;wed;133;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+29;admin.;married;university.degree;no;yes;no;cellular;jul;wed;161;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+35;management;married;university.degree;no;no;no;cellular;jul;wed;130;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+26;services;married;high.school;no;unknown;unknown;cellular;jul;wed;136;6;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+51;housemaid;married;basic.4y;no;no;no;cellular;jul;wed;145;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+30;blue-collar;married;basic.9y;no;no;no;cellular;jul;wed;80;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+25;blue-collar;married;basic.9y;no;no;no;cellular;jul;wed;108;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+30;blue-collar;married;basic.9y;no;yes;no;cellular;jul;wed;532;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+28;services;married;high.school;no;yes;no;telephone;jul;wed;145;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+37;blue-collar;married;basic.6y;unknown;no;no;cellular;jul;wed;91;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+55;management;divorced;basic.6y;unknown;yes;yes;cellular;jul;wed;124;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+37;blue-collar;married;basic.6y;unknown;yes;no;cellular;jul;wed;279;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+37;blue-collar;married;basic.6y;unknown;no;yes;cellular;jul;wed;143;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+28;blue-collar;married;basic.4y;unknown;no;yes;cellular;jul;wed;98;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+39;technician;married;professional.course;no;yes;no;cellular;jul;wed;178;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+44;housemaid;married;basic.4y;unknown;yes;no;cellular;jul;wed;103;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+45;self-employed;married;basic.9y;no;yes;no;cellular;jul;wed;71;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+28;services;single;university.degree;no;yes;no;cellular;jul;wed;90;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+34;technician;married;professional.course;no;yes;no;cellular;jul;wed;144;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+45;self-employed;married;basic.9y;no;yes;yes;cellular;jul;wed;332;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+30;admin.;married;university.degree;no;yes;no;telephone;jul;wed;693;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+39;technician;married;professional.course;no;yes;no;cellular;jul;wed;225;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+56;blue-collar;married;professional.course;no;yes;no;cellular;jul;wed;289;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+26;blue-collar;single;basic.9y;no;yes;yes;telephone;jul;wed;224;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+37;entrepreneur;divorced;university.degree;no;yes;no;cellular;jul;wed;224;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+34;blue-collar;single;high.school;no;no;no;cellular;jul;wed;118;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+37;entrepreneur;divorced;university.degree;no;no;yes;cellular;jul;wed;362;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+29;management;single;high.school;no;yes;no;cellular;jul;wed;125;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;admin.;married;university.degree;no;no;no;telephone;jul;wed;672;6;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+26;management;single;university.degree;unknown;yes;no;cellular;jul;wed;124;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+30;blue-collar;married;basic.9y;no;yes;no;cellular;jul;wed;219;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+32;admin.;single;high.school;no;yes;no;cellular;jul;wed;192;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+45;technician;married;professional.course;no;yes;no;cellular;jul;wed;160;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+39;admin.;divorced;high.school;unknown;yes;no;cellular;jul;wed;77;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+29;admin.;single;high.school;no;yes;no;cellular;jul;wed;360;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+30;blue-collar;married;basic.9y;no;no;yes;cellular;jul;wed;173;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+39;housemaid;married;basic.4y;no;no;no;cellular;jul;wed;94;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+39;housemaid;married;basic.4y;no;no;no;cellular;jul;wed;102;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+33;services;married;high.school;unknown;yes;yes;cellular;jul;wed;172;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+45;blue-collar;divorced;professional.course;unknown;no;no;cellular;jul;wed;176;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+45;blue-collar;divorced;professional.course;unknown;yes;no;cellular;jul;wed;74;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+34;self-employed;single;university.degree;no;yes;no;cellular;jul;wed;378;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+26;services;single;university.degree;no;yes;no;cellular;jul;wed;70;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+35;technician;single;high.school;no;yes;no;cellular;jul;wed;294;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+39;services;married;basic.6y;unknown;yes;no;telephone;jul;wed;183;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+52;housemaid;married;basic.4y;no;no;no;cellular;jul;wed;728;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+25;services;single;high.school;no;no;no;cellular;jul;wed;643;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+36;admin.;divorced;high.school;no;yes;no;cellular;jul;wed;111;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+39;admin.;married;basic.9y;unknown;no;no;cellular;jul;wed;131;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+36;admin.;married;university.degree;no;yes;no;cellular;jul;wed;203;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+39;admin.;married;basic.9y;unknown;no;no;cellular;jul;wed;108;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+39;entrepreneur;divorced;basic.4y;no;yes;yes;cellular;jul;wed;1317;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+49;services;married;high.school;no;no;no;cellular;jul;wed;313;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+41;admin.;divorced;high.school;no;no;no;cellular;jul;wed;364;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+24;technician;single;professional.course;no;yes;no;cellular;jul;wed;171;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+29;technician;married;professional.course;no;no;no;cellular;jul;wed;290;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+60;unknown;married;basic.4y;unknown;yes;no;cellular;jul;wed;659;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+42;blue-collar;married;basic.6y;no;yes;no;cellular;jul;wed;77;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+42;unemployed;married;high.school;no;no;no;cellular;jul;wed;140;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+40;services;married;high.school;no;no;no;cellular;jul;wed;83;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+34;blue-collar;married;basic.4y;no;yes;no;cellular;jul;wed;87;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+38;blue-collar;single;university.degree;no;no;no;cellular;jul;wed;176;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+29;entrepreneur;married;professional.course;no;no;no;cellular;jul;wed;736;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+38;blue-collar;single;university.degree;no;yes;no;cellular;jul;wed;458;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+34;blue-collar;married;basic.4y;no;no;no;cellular;jul;wed;384;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+28;technician;single;university.degree;no;yes;no;cellular;jul;wed;174;7;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+33;admin.;single;university.degree;no;yes;no;telephone;jul;wed;161;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+36;blue-collar;married;high.school;no;yes;no;cellular;jul;wed;295;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+32;self-employed;single;university.degree;no;no;no;cellular;jul;wed;312;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+34;management;married;university.degree;unknown;no;no;cellular;jul;wed;90;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+29;services;single;high.school;no;yes;no;telephone;jul;wed;206;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+38;services;married;high.school;unknown;no;no;telephone;jul;wed;304;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+57;blue-collar;married;basic.9y;no;no;no;telephone;jul;wed;49;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;blue-collar;single;basic.9y;no;yes;no;cellular;jul;wed;181;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+57;blue-collar;married;basic.9y;no;yes;no;telephone;jul;wed;106;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+57;blue-collar;married;basic.9y;no;yes;no;cellular;jul;wed;601;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+57;housemaid;married;university.degree;no;yes;no;cellular;jul;wed;113;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+21;blue-collar;single;basic.9y;no;no;no;cellular;jul;wed;219;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+21;blue-collar;single;basic.9y;no;unknown;unknown;cellular;jul;wed;208;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+21;blue-collar;single;basic.9y;no;unknown;unknown;cellular;jul;wed;359;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+57;housemaid;married;university.degree;no;no;no;cellular;jul;wed;388;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+30;admin.;married;university.degree;no;no;no;cellular;jul;wed;397;6;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+34;blue-collar;married;basic.4y;no;yes;no;cellular;jul;wed;431;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;technician;single;university.degree;no;yes;no;cellular;jul;wed;71;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+40;blue-collar;married;basic.6y;no;yes;no;cellular;jul;wed;480;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+34;blue-collar;single;basic.9y;no;no;no;cellular;jul;wed;218;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;blue-collar;single;basic.4y;no;yes;no;cellular;jul;wed;676;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+30;technician;single;university.degree;no;no;no;telephone;jul;wed;74;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+53;admin.;divorced;university.degree;no;yes;no;cellular;jul;wed;240;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+33;blue-collar;married;basic.6y;no;no;no;telephone;jul;wed;292;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+60;blue-collar;married;basic.4y;unknown;no;no;telephone;jul;wed;83;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+33;blue-collar;married;basic.6y;no;no;no;cellular;jul;wed;391;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+60;blue-collar;married;basic.4y;unknown;no;yes;telephone;jul;wed;271;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+40;blue-collar;married;basic.4y;unknown;yes;no;cellular;jul;wed;131;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+39;technician;single;high.school;no;yes;no;telephone;jul;wed;233;7;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+34;admin.;married;high.school;no;yes;no;cellular;jul;wed;293;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+34;admin.;married;high.school;no;no;no;cellular;jul;wed;391;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+34;admin.;married;high.school;no;no;yes;cellular;jul;wed;432;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+34;admin.;married;high.school;no;yes;yes;cellular;jul;wed;411;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+20;admin.;single;high.school;no;no;no;cellular;jul;wed;208;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+57;blue-collar;married;basic.4y;unknown;yes;no;cellular;jul;wed;61;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+34;admin.;married;high.school;no;no;no;cellular;jul;wed;359;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+41;unemployed;single;high.school;no;no;no;cellular;jul;wed;197;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+24;management;married;university.degree;no;unknown;unknown;cellular;jul;wed;530;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+41;unemployed;single;high.school;no;yes;no;cellular;jul;wed;156;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;unemployed;married;basic.6y;unknown;no;yes;telephone;jul;wed;399;8;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+28;admin.;single;university.degree;unknown;yes;yes;cellular;jul;wed;328;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+25;technician;married;university.degree;no;unknown;unknown;telephone;jul;wed;446;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+34;admin.;married;university.degree;no;no;no;cellular;jul;wed;266;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;blue-collar;single;basic.4y;no;yes;no;cellular;jul;wed;211;11;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+29;technician;married;professional.course;no;no;no;cellular;jul;wed;263;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+32;admin.;married;university.degree;no;no;no;cellular;jul;wed;226;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+46;technician;married;university.degree;no;unknown;unknown;cellular;jul;wed;364;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+39;technician;married;professional.course;no;yes;no;cellular;jul;wed;231;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+46;technician;married;university.degree;no;no;no;telephone;jul;wed;60;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+52;retired;married;basic.9y;no;no;no;cellular;jul;wed;171;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;technician;divorced;professional.course;no;yes;no;cellular;jul;wed;243;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+28;blue-collar;single;basic.9y;no;no;no;telephone;jul;wed;137;16;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;technician;single;university.degree;no;yes;no;cellular;jul;wed;593;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+33;admin.;married;high.school;no;no;no;cellular;jul;wed;156;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+40;blue-collar;divorced;basic.9y;no;no;no;telephone;jul;wed;246;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;technician;single;high.school;no;no;no;cellular;jul;wed;445;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+57;entrepreneur;married;university.degree;no;no;no;telephone;jul;wed;337;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+58;retired;married;basic.4y;no;no;no;cellular;jul;wed;1014;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+36;services;single;high.school;no;no;no;cellular;jul;wed;399;17;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+32;admin.;single;university.degree;no;no;no;telephone;jul;wed;85;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+33;technician;married;university.degree;no;no;no;telephone;jul;wed;19;8;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+51;blue-collar;divorced;basic.4y;no;yes;no;cellular;jul;wed;173;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+57;blue-collar;married;basic.4y;unknown;yes;yes;telephone;jul;wed;10;19;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+48;technician;single;professional.course;no;yes;yes;telephone;jul;wed;17;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+28;blue-collar;single;professional.course;no;no;no;cellular;jul;wed;1290;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+55;management;divorced;basic.6y;unknown;no;no;telephone;jul;wed;297;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+54;management;married;university.degree;no;yes;no;cellular;jul;wed;281;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+31;admin.;married;university.degree;no;yes;no;telephone;jul;wed;193;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+47;admin.;married;university.degree;no;no;no;telephone;jul;wed;76;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+35;technician;single;university.degree;no;no;no;cellular;jul;wed;128;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+44;unemployed;married;basic.9y;unknown;yes;no;telephone;jul;wed;73;10;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+56;blue-collar;married;basic.4y;unknown;no;no;telephone;jul;wed;39;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+56;blue-collar;married;basic.4y;unknown;yes;no;telephone;jul;wed;300;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+32;technician;single;university.degree;no;yes;yes;telephone;jul;wed;16;43;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+45;technician;married;professional.course;no;no;no;telephone;jul;wed;20;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+28;technician;single;university.degree;no;yes;no;cellular;jul;wed;115;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+31;admin.;single;high.school;unknown;no;no;cellular;jul;wed;90;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;admin.;married;university.degree;no;no;no;cellular;jul;wed;607;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+25;blue-collar;single;basic.9y;unknown;yes;no;telephone;jul;wed;236;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+31;admin.;single;high.school;unknown;unknown;unknown;cellular;jul;wed;150;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+38;technician;married;professional.course;no;no;no;telephone;jul;wed;56;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+42;admin.;married;university.degree;no;no;no;cellular;jul;wed;799;6;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+36;technician;divorced;basic.9y;no;no;no;telephone;jul;wed;372;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+39;blue-collar;married;basic.6y;unknown;yes;no;cellular;jul;wed;1439;6;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+41;admin.;married;basic.9y;no;yes;no;telephone;jul;wed;120;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+36;technician;divorced;basic.9y;no;no;no;telephone;jul;wed;119;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;admin.;single;university.degree;no;no;no;cellular;jul;wed;919;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+45;technician;married;professional.course;unknown;no;no;telephone;jul;wed;130;6;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+51;blue-collar;married;basic.4y;unknown;no;no;cellular;jul;wed;227;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+36;technician;divorced;basic.9y;no;yes;no;cellular;jul;wed;497;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+25;services;single;university.degree;no;yes;no;cellular;jul;wed;170;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+53;services;divorced;basic.4y;unknown;yes;no;cellular;jul;wed;89;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+53;services;divorced;basic.4y;unknown;yes;no;cellular;jul;wed;185;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+52;blue-collar;divorced;basic.9y;no;no;no;cellular;jul;wed;630;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+51;blue-collar;married;basic.4y;unknown;yes;no;telephone;jul;wed;139;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+54;housemaid;married;basic.4y;no;no;no;cellular;jul;wed;196;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+26;services;married;high.school;no;yes;yes;cellular;jul;wed;134;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+30;services;single;high.school;no;no;no;cellular;jul;wed;1426;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+27;retired;single;basic.9y;no;no;no;cellular;jul;thu;121;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;blue-collar;married;basic.4y;unknown;yes;no;cellular;jul;thu;307;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;admin.;divorced;university.degree;no;no;no;cellular;jul;thu;75;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;admin.;divorced;university.degree;no;yes;no;cellular;jul;thu;151;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+33;blue-collar;married;basic.4y;no;no;no;cellular;jul;thu;143;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;blue-collar;married;basic.4y;no;no;no;telephone;jul;thu;317;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;admin.;divorced;university.degree;no;yes;no;cellular;jul;thu;668;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+44;blue-collar;married;basic.6y;unknown;no;no;cellular;jul;thu;168;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+48;blue-collar;married;basic.9y;unknown;yes;no;cellular;jul;thu;122;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+40;blue-collar;married;basic.4y;unknown;yes;no;cellular;jul;thu;67;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+57;retired;married;basic.4y;no;yes;no;cellular;jul;thu;496;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;blue-collar;divorced;basic.9y;no;yes;no;cellular;jul;thu;315;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+40;blue-collar;married;basic.4y;unknown;no;yes;telephone;jul;thu;29;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+40;blue-collar;married;basic.4y;unknown;yes;no;cellular;jul;thu;123;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+40;blue-collar;married;basic.4y;unknown;yes;no;cellular;jul;thu;214;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+40;blue-collar;married;basic.4y;unknown;yes;yes;cellular;jul;thu;181;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+40;blue-collar;married;basic.4y;unknown;yes;no;cellular;jul;thu;347;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+27;admin.;married;high.school;no;no;no;cellular;jul;thu;88;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+27;admin.;married;high.school;no;yes;no;cellular;jul;thu;141;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;technician;single;university.degree;no;no;no;cellular;jul;thu;305;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;services;married;high.school;no;no;no;cellular;jul;thu;111;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+26;admin.;single;high.school;no;no;no;cellular;jul;thu;241;4;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+51;unemployed;married;professional.course;unknown;yes;yes;cellular;jul;thu;901;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+55;housemaid;married;basic.4y;no;no;no;cellular;jul;thu;185;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+57;technician;divorced;professional.course;no;yes;yes;cellular;jul;thu;235;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+50;management;married;university.degree;no;no;no;cellular;jul;thu;144;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+39;blue-collar;married;basic.9y;no;yes;no;cellular;jul;thu;75;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+39;blue-collar;married;basic.9y;no;yes;no;cellular;jul;thu;266;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+27;technician;single;professional.course;no;yes;no;cellular;jul;thu;121;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+57;retired;divorced;high.school;no;yes;no;cellular;jul;thu;162;6;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+34;technician;single;university.degree;no;yes;no;cellular;jul;thu;192;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+34;technician;single;university.degree;no;yes;no;cellular;jul;thu;124;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+34;technician;single;university.degree;no;yes;no;cellular;jul;thu;560;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+48;technician;divorced;professional.course;no;yes;no;cellular;jul;thu;108;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+28;admin.;single;university.degree;no;no;yes;cellular;jul;thu;93;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+34;blue-collar;married;basic.9y;no;yes;yes;cellular;jul;thu;196;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+50;management;married;university.degree;no;yes;no;cellular;jul;thu;1019;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+36;admin.;single;high.school;no;no;no;cellular;jul;thu;165;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+36;admin.;single;high.school;no;yes;no;telephone;jul;thu;140;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+46;admin.;divorced;university.degree;unknown;yes;yes;telephone;jul;thu;73;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+36;services;married;high.school;no;no;no;cellular;jul;thu;211;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+36;services;married;high.school;no;unknown;unknown;cellular;jul;thu;156;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+48;technician;married;basic.9y;no;no;no;cellular;jul;thu;119;5;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+25;blue-collar;married;basic.9y;no;no;no;telephone;jul;thu;30;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+27;blue-collar;single;basic.9y;no;yes;no;cellular;jul;thu;402;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+37;technician;divorced;university.degree;no;no;no;cellular;jul;thu;132;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+34;technician;single;university.degree;no;yes;yes;cellular;jul;thu;1065;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+55;services;married;high.school;no;no;yes;cellular;jul;thu;371;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+33;technician;married;professional.course;no;yes;no;cellular;jul;thu;226;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+49;admin.;divorced;university.degree;no;no;no;cellular;jul;thu;105;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+36;blue-collar;married;basic.9y;unknown;yes;no;cellular;jul;thu;194;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+36;blue-collar;married;basic.9y;unknown;no;no;cellular;jul;thu;218;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+36;blue-collar;married;basic.9y;unknown;no;yes;cellular;jul;thu;158;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+36;blue-collar;married;basic.9y;unknown;yes;no;cellular;jul;thu;209;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+23;blue-collar;single;basic.9y;no;no;no;cellular;jul;thu;168;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+36;blue-collar;married;basic.9y;unknown;yes;no;cellular;jul;thu;387;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+36;blue-collar;married;basic.9y;unknown;yes;no;cellular;jul;thu;68;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+36;blue-collar;married;basic.9y;unknown;yes;no;cellular;jul;thu;217;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+36;blue-collar;married;basic.9y;unknown;no;no;cellular;jul;thu;183;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+33;blue-collar;single;basic.6y;no;no;no;cellular;jul;thu;854;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+31;services;married;high.school;no;yes;no;cellular;jul;thu;129;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+42;blue-collar;married;basic.6y;unknown;no;no;cellular;jul;thu;121;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+40;blue-collar;divorced;basic.9y;unknown;yes;no;cellular;jul;thu;41;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+40;blue-collar;divorced;basic.9y;unknown;no;no;cellular;jul;thu;160;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+46;admin.;divorced;university.degree;unknown;yes;no;cellular;jul;thu;89;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+56;admin.;married;basic.4y;unknown;yes;no;cellular;jul;thu;105;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+34;technician;married;university.degree;no;no;no;cellular;jul;thu;76;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;blue-collar;married;basic.9y;no;yes;no;cellular;jul;thu;192;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+36;blue-collar;married;basic.9y;no;yes;no;cellular;jul;thu;272;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;blue-collar;married;basic.9y;no;yes;no;telephone;jul;thu;364;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;technician;married;professional.course;no;yes;no;cellular;jul;thu;255;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+32;blue-collar;divorced;basic.9y;no;no;no;cellular;jul;thu;624;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;admin.;divorced;high.school;no;no;no;cellular;jul;thu;128;6;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+35;admin.;single;university.degree;unknown;no;no;cellular;jul;thu;250;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+46;admin.;divorced;university.degree;unknown;yes;no;cellular;jul;thu;51;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+49;blue-collar;married;basic.9y;no;no;no;telephone;jul;thu;75;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+25;services;single;professional.course;no;yes;no;cellular;jul;thu;384;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+49;blue-collar;married;basic.9y;no;yes;no;cellular;jul;thu;268;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;services;single;basic.9y;no;yes;no;cellular;jul;thu;165;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+35;admin.;single;university.degree;unknown;no;no;cellular;jul;thu;863;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+33;technician;married;university.degree;no;yes;no;cellular;jul;thu;42;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+34;blue-collar;divorced;basic.9y;no;yes;no;cellular;jul;thu;181;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+25;technician;single;professional.course;no;yes;no;cellular;jul;thu;234;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+38;housemaid;married;high.school;no;no;no;telephone;jul;thu;121;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+46;admin.;divorced;university.degree;unknown;yes;no;cellular;jul;thu;190;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+39;blue-collar;married;basic.6y;no;no;no;cellular;jul;thu;298;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+38;housemaid;married;high.school;no;no;no;cellular;jul;thu;356;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+25;technician;single;professional.course;no;yes;no;cellular;jul;thu;783;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;admin.;married;high.school;unknown;no;no;cellular;jul;thu;165;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+23;blue-collar;single;high.school;no;no;no;cellular;jul;thu;228;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+29;student;single;university.degree;no;no;no;cellular;jul;thu;104;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+36;blue-collar;married;basic.4y;no;no;no;cellular;jul;thu;1102;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+29;admin.;single;university.degree;no;no;no;cellular;jul;thu;441;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+29;student;single;university.degree;no;yes;no;cellular;jul;thu;370;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+29;student;single;university.degree;no;yes;no;cellular;jul;thu;489;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+25;admin.;single;high.school;no;yes;no;cellular;jul;thu;103;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+25;admin.;single;high.school;no;no;no;cellular;jul;thu;67;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+25;admin.;single;high.school;no;no;yes;cellular;jul;thu;277;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+54;retired;married;high.school;no;yes;no;cellular;jul;thu;154;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+59;management;married;university.degree;unknown;no;no;cellular;jul;thu;144;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+39;blue-collar;single;basic.4y;unknown;no;no;cellular;jul;thu;633;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+42;blue-collar;married;basic.4y;no;no;no;cellular;jul;thu;214;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;blue-collar;married;basic.9y;no;no;no;cellular;jul;thu;176;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+54;unemployed;married;university.degree;unknown;no;no;telephone;jul;thu;106;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+29;admin.;married;university.degree;no;no;no;cellular;jul;thu;37;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+37;technician;married;university.degree;unknown;no;no;cellular;jul;thu;793;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+41;blue-collar;married;basic.9y;no;yes;no;cellular;jul;thu;473;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;self-employed;married;university.degree;no;yes;no;cellular;jul;thu;140;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+28;admin.;married;high.school;no;no;no;cellular;jul;thu;964;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+38;services;divorced;high.school;no;no;no;cellular;jul;thu;503;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+26;technician;married;professional.course;no;no;no;cellular;jul;thu;439;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+25;technician;married;professional.course;no;no;no;cellular;jul;thu;71;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;services;married;high.school;no;no;no;cellular;jul;thu;174;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+26;technician;married;professional.course;no;yes;no;cellular;jul;thu;804;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+27;technician;married;professional.course;no;yes;no;cellular;jul;thu;347;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+46;admin.;divorced;university.degree;unknown;no;no;cellular;jul;thu;642;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+46;management;married;high.school;unknown;no;no;cellular;jul;thu;103;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+46;management;married;high.school;unknown;yes;no;cellular;jul;thu;58;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+25;technician;single;professional.course;no;yes;no;cellular;jul;thu;660;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;management;single;university.degree;no;yes;yes;cellular;jul;thu;221;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+46;management;married;high.school;unknown;yes;no;cellular;jul;thu;329;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+36;admin.;divorced;university.degree;unknown;yes;no;cellular;jul;thu;187;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+36;admin.;divorced;university.degree;unknown;no;no;telephone;jul;thu;39;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+43;blue-collar;single;basic.9y;no;yes;no;cellular;jul;thu;982;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+42;admin.;single;university.degree;no;yes;no;cellular;jul;thu;324;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+27;technician;single;professional.course;no;no;no;cellular;jul;thu;171;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;student;married;high.school;no;no;no;cellular;jul;thu;149;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+51;admin.;married;university.degree;no;yes;no;cellular;jul;thu;147;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;blue-collar;single;basic.9y;no;yes;no;cellular;jul;thu;45;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+58;services;married;high.school;unknown;no;no;cellular;jul;thu;224;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+33;technician;single;professional.course;no;no;no;cellular;jul;thu;165;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;admin.;single;university.degree;no;yes;no;cellular;jul;thu;150;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;admin.;single;university.degree;no;yes;no;cellular;jul;thu;117;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+38;blue-collar;single;basic.6y;no;yes;yes;cellular;jul;thu;95;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;admin.;single;university.degree;no;no;no;cellular;jul;thu;349;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;blue-collar;married;basic.4y;no;yes;no;cellular;jul;thu;96;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+29;technician;single;university.degree;no;no;no;cellular;jul;thu;292;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;admin.;single;university.degree;no;no;no;cellular;jul;thu;792;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;technician;single;university.degree;no;yes;no;cellular;jul;thu;100;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;technician;single;professional.course;no;yes;no;cellular;jul;thu;369;6;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;technician;single;university.degree;no;yes;no;cellular;jul;thu;184;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;technician;single;university.degree;no;yes;no;cellular;jul;thu;285;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+25;admin.;single;high.school;no;yes;no;cellular;jul;thu;418;4;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+25;admin.;single;high.school;no;yes;no;telephone;jul;thu;532;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+34;student;divorced;basic.6y;no;yes;no;cellular;jul;thu;467;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+51;blue-collar;married;basic.4y;unknown;yes;no;telephone;jul;thu;38;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+54;blue-collar;married;basic.9y;unknown;yes;no;cellular;jul;thu;220;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+46;admin.;divorced;university.degree;unknown;yes;no;cellular;jul;thu;330;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+57;management;married;basic.4y;unknown;no;yes;cellular;jul;thu;584;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+34;technician;married;high.school;no;no;yes;cellular;jul;thu;185;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+29;blue-collar;married;basic.9y;no;no;no;cellular;jul;thu;613;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;admin.;single;university.degree;no;no;no;cellular;jul;thu;152;6;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+45;management;married;university.degree;no;no;yes;cellular;jul;thu;542;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+34;technician;married;high.school;no;yes;no;cellular;jul;thu;210;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+39;unemployed;married;basic.4y;unknown;no;no;cellular;jul;thu;120;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+42;blue-collar;married;basic.9y;no;no;yes;cellular;jul;thu;880;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+39;blue-collar;married;basic.6y;unknown;no;yes;cellular;jul;thu;122;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+51;admin.;married;professional.course;no;yes;no;cellular;jul;thu;132;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+51;admin.;married;professional.course;no;no;no;cellular;jul;thu;108;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+34;technician;married;high.school;no;no;no;cellular;jul;thu;481;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+34;technician;married;high.school;no;yes;yes;cellular;jul;thu;815;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+54;blue-collar;divorced;basic.4y;unknown;yes;yes;cellular;jul;thu;80;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+27;blue-collar;married;high.school;no;yes;no;cellular;jul;thu;212;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+54;blue-collar;divorced;basic.4y;unknown;no;no;cellular;jul;thu;143;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+29;admin.;married;university.degree;unknown;no;yes;cellular;jul;thu;160;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+54;blue-collar;divorced;basic.4y;unknown;no;no;cellular;jul;thu;279;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+40;technician;married;basic.9y;no;yes;no;cellular;jul;thu;154;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+25;technician;married;university.degree;no;no;no;cellular;jul;thu;68;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+26;admin.;married;university.degree;no;yes;no;cellular;jul;thu;182;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+28;admin.;single;high.school;no;yes;no;telephone;jul;thu;123;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+27;technician;married;professional.course;no;yes;no;telephone;jul;thu;185;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;blue-collar;single;basic.4y;no;yes;no;cellular;jul;thu;136;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+29;blue-collar;single;basic.6y;no;no;no;cellular;jul;thu;173;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;self-employed;married;basic.9y;no;no;no;cellular;jul;thu;259;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+25;blue-collar;married;basic.9y;no;no;no;cellular;jul;thu;157;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+41;admin.;married;unknown;no;no;no;cellular;jul;thu;277;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+25;blue-collar;single;basic.9y;no;no;no;cellular;jul;thu;506;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;blue-collar;married;professional.course;no;no;no;cellular;jul;thu;66;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;services;single;high.school;no;no;no;cellular;jul;thu;421;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+39;admin.;married;high.school;no;yes;no;cellular;jul;thu;301;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+39;self-employed;married;basic.9y;no;no;no;cellular;jul;thu;742;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+39;blue-collar;married;university.degree;no;no;no;cellular;jul;thu;188;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+40;retired;divorced;basic.4y;no;no;no;cellular;jul;thu;123;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+29;blue-collar;single;basic.9y;no;yes;no;cellular;jul;thu;633;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+39;blue-collar;married;university.degree;no;yes;no;cellular;jul;thu;288;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+34;services;single;high.school;no;no;no;cellular;jul;thu;111;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;blue-collar;single;basic.4y;no;yes;no;cellular;jul;thu;133;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+38;technician;single;professional.course;no;yes;no;cellular;jul;thu;268;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;blue-collar;single;basic.9y;no;yes;no;cellular;jul;thu;262;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;blue-collar;single;basic.9y;no;yes;no;cellular;jul;thu;307;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;blue-collar;married;basic.9y;no;yes;no;cellular;jul;thu;58;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;blue-collar;single;basic.9y;no;yes;yes;cellular;jul;thu;446;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+27;admin.;single;university.degree;no;yes;no;cellular;jul;thu;252;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+33;self-employed;married;basic.9y;unknown;no;no;cellular;jul;thu;356;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+27;technician;married;professional.course;no;no;no;cellular;jul;thu;102;9;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+33;self-employed;married;basic.9y;unknown;yes;no;cellular;jul;thu;151;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;blue-collar;single;basic.4y;no;yes;no;cellular;jul;thu;143;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;technician;married;basic.6y;unknown;yes;no;cellular;jul;thu;133;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+33;self-employed;married;basic.9y;unknown;no;no;cellular;jul;thu;466;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+33;self-employed;married;basic.9y;unknown;yes;no;cellular;jul;thu;226;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;blue-collar;single;basic.4y;no;yes;yes;cellular;jul;thu;380;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+33;self-employed;married;basic.9y;unknown;no;no;cellular;jul;thu;358;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+33;self-employed;married;basic.9y;unknown;yes;no;cellular;jul;thu;209;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+27;technician;single;university.degree;no;no;no;cellular;jul;thu;114;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;services;divorced;high.school;no;yes;no;cellular;jul;thu;207;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+24;services;married;high.school;no;no;no;telephone;jul;thu;139;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+41;blue-collar;single;basic.4y;no;yes;no;cellular;jul;thu;421;6;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+45;blue-collar;divorced;high.school;unknown;yes;yes;cellular;jul;thu;112;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+24;admin.;single;high.school;no;yes;no;cellular;jul;thu;165;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+45;blue-collar;divorced;high.school;unknown;no;no;cellular;jul;thu;323;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;blue-collar;married;basic.9y;unknown;yes;no;cellular;jul;thu;400;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;blue-collar;married;basic.9y;unknown;no;no;cellular;jul;thu;428;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+54;blue-collar;married;high.school;no;no;yes;cellular;jul;thu;313;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+28;admin.;single;high.school;no;no;no;cellular;jul;thu;720;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+31;technician;single;university.degree;no;yes;yes;cellular;jul;thu;328;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;entrepreneur;single;university.degree;no;no;no;cellular;jul;thu;361;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;admin.;single;basic.9y;no;yes;no;telephone;jul;thu;45;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;admin.;single;high.school;no;no;no;cellular;jul;thu;85;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+49;housemaid;married;professional.course;no;yes;no;telephone;jul;thu;645;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;unknown;single;professional.course;no;yes;no;telephone;jul;thu;73;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;blue-collar;single;basic.9y;no;yes;no;cellular;jul;thu;486;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+33;admin.;single;high.school;no;yes;no;telephone;jul;thu;180;6;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+22;technician;single;basic.9y;no;no;no;telephone;jul;thu;83;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+29;admin.;married;university.degree;unknown;yes;no;telephone;jul;thu;123;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+29;blue-collar;single;basic.9y;no;no;no;cellular;jul;thu;190;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+29;admin.;married;university.degree;unknown;yes;yes;telephone;jul;thu;82;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+54;blue-collar;married;high.school;no;yes;no;telephone;jul;thu;445;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+48;technician;married;basic.9y;no;no;no;cellular;jul;thu;81;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+54;blue-collar;married;high.school;no;no;no;cellular;jul;thu;771;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+49;management;divorced;university.degree;no;no;no;cellular;jul;thu;161;5;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+23;technician;single;professional.course;no;no;no;telephone;jul;thu;245;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+26;blue-collar;married;basic.9y;unknown;no;no;telephone;jul;thu;45;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;admin.;single;university.degree;no;yes;no;cellular;jul;thu;228;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;admin.;married;high.school;no;yes;no;cellular;jul;thu;627;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+31;admin.;married;high.school;no;no;no;cellular;jul;thu;293;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+48;technician;divorced;professional.course;no;yes;no;telephone;jul;thu;92;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;admin.;married;high.school;no;yes;no;cellular;jul;thu;244;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+55;management;married;university.degree;no;yes;no;cellular;jul;thu;1341;7;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+31;admin.;married;high.school;no;no;no;cellular;jul;thu;634;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+31;admin.;married;high.school;no;no;no;cellular;jul;thu;363;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;admin.;married;university.degree;no;yes;no;cellular;jul;thu;144;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;admin.;married;university.degree;no;unknown;unknown;cellular;jul;thu;148;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;admin.;married;high.school;no;yes;no;cellular;jul;thu;197;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+25;blue-collar;married;basic.4y;no;no;no;cellular;jul;thu;604;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+46;blue-collar;single;basic.9y;unknown;no;no;cellular;jul;thu;270;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+46;blue-collar;single;basic.9y;unknown;no;no;cellular;jul;thu;210;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+26;admin.;married;high.school;no;no;no;cellular;jul;thu;269;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+46;blue-collar;single;basic.9y;unknown;yes;no;cellular;jul;thu;446;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+26;self-employed;single;professional.course;no;yes;no;cellular;jul;thu;71;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+46;blue-collar;single;basic.9y;unknown;no;no;cellular;jul;thu;121;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+28;admin.;single;university.degree;no;yes;no;telephone;jul;thu;310;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+46;blue-collar;single;basic.9y;unknown;yes;no;cellular;jul;thu;155;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+25;admin.;single;high.school;no;yes;no;cellular;jul;thu;189;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;self-employed;married;university.degree;no;no;no;cellular;jul;thu;573;6;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+25;admin.;single;high.school;no;yes;no;cellular;jul;thu;476;4;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+42;blue-collar;married;basic.9y;no;yes;no;cellular;jul;thu;829;5;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+32;admin.;married;university.degree;no;no;no;telephone;jul;thu;136;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;blue-collar;married;basic.4y;unknown;no;no;cellular;jul;thu;360;17;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;unknown;single;professional.course;no;no;no;telephone;jul;thu;96;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+22;blue-collar;single;basic.9y;no;yes;no;telephone;jul;thu;227;7;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+40;blue-collar;married;basic.4y;unknown;no;no;cellular;jul;thu;724;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+29;technician;married;university.degree;no;no;yes;cellular;jul;thu;525;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+38;blue-collar;married;basic.6y;unknown;no;no;cellular;jul;thu;500;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+26;blue-collar;single;basic.9y;no;no;no;cellular;jul;thu;559;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+38;blue-collar;married;basic.6y;unknown;yes;no;cellular;jul;thu;353;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;unknown;single;professional.course;no;no;no;cellular;jul;thu;2029;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+42;blue-collar;married;basic.9y;no;yes;no;cellular;jul;thu;57;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+49;housemaid;married;professional.course;no;yes;no;cellular;jul;thu;351;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+38;blue-collar;married;basic.6y;unknown;yes;no;cellular;jul;thu;129;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+38;blue-collar;married;basic.6y;unknown;no;no;cellular;jul;thu;60;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+28;admin.;single;high.school;no;yes;no;cellular;jul;thu;270;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+38;blue-collar;married;basic.6y;unknown;yes;no;cellular;jul;thu;396;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+38;blue-collar;married;basic.6y;unknown;no;no;cellular;jul;thu;456;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+35;technician;married;unknown;no;yes;no;cellular;jul;thu;502;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+29;entrepreneur;married;professional.course;no;no;no;cellular;jul;thu;227;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+29;entrepreneur;married;professional.course;no;yes;no;cellular;jul;thu;125;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+44;blue-collar;married;basic.9y;no;yes;no;cellular;jul;thu;121;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+48;technician;married;basic.9y;no;no;yes;cellular;jul;thu;1499;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+44;blue-collar;married;basic.9y;no;yes;no;cellular;jul;thu;186;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;admin.;single;university.degree;no;yes;yes;cellular;jul;thu;107;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+41;entrepreneur;divorced;professional.course;no;no;no;cellular;jul;thu;82;5;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+50;retired;divorced;basic.4y;unknown;yes;no;cellular;jul;thu;108;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+28;services;single;basic.6y;no;yes;no;cellular;jul;thu;229;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+44;blue-collar;married;basic.9y;no;yes;no;cellular;jul;thu;839;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;blue-collar;married;basic.9y;unknown;no;no;cellular;jul;thu;240;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+29;technician;married;university.degree;no;yes;no;cellular;jul;thu;189;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+41;entrepreneur;divorced;professional.course;no;yes;no;cellular;jul;thu;72;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+27;blue-collar;single;basic.4y;unknown;yes;no;telephone;jul;thu;160;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+41;entrepreneur;divorced;professional.course;no;yes;no;cellular;jul;thu;99;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+27;admin.;single;high.school;no;yes;no;cellular;jul;thu;340;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+51;blue-collar;married;basic.9y;no;yes;yes;cellular;jul;thu;151;4;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+33;blue-collar;married;basic.9y;no;yes;no;cellular;jul;thu;90;9;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+28;services;single;university.degree;no;no;no;cellular;jul;thu;363;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+47;management;married;unknown;no;no;no;cellular;jul;thu;114;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+50;management;single;university.degree;no;no;no;cellular;jul;thu;192;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+23;blue-collar;single;basic.9y;no;yes;no;cellular;jul;thu;119;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;blue-collar;married;basic.9y;no;yes;yes;cellular;jul;thu;359;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+42;admin.;single;high.school;no;yes;no;cellular;jul;thu;154;4;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+37;self-employed;married;basic.9y;no;yes;yes;cellular;jul;thu;171;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+50;housemaid;married;basic.4y;unknown;no;no;cellular;jul;thu;223;8;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+35;technician;single;university.degree;no;no;no;cellular;jul;thu;480;4;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;technician;single;professional.course;no;no;yes;telephone;jul;thu;156;7;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+41;entrepreneur;divorced;professional.course;no;yes;no;cellular;jul;thu;194;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+22;blue-collar;single;basic.9y;no;yes;yes;telephone;jul;thu;834;10;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+34;blue-collar;single;basic.9y;unknown;yes;no;cellular;jul;thu;412;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+28;blue-collar;single;professional.course;no;yes;no;cellular;jul;thu;164;5;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+34;blue-collar;single;basic.9y;unknown;yes;no;cellular;jul;thu;562;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+25;blue-collar;married;basic.9y;no;no;no;cellular;jul;thu;326;5;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+26;housemaid;single;high.school;unknown;yes;yes;telephone;jul;thu;127;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+26;technician;married;university.degree;no;yes;no;cellular;jul;thu;290;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+26;housemaid;single;high.school;unknown;yes;no;cellular;jul;thu;185;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+46;blue-collar;married;basic.4y;unknown;yes;yes;cellular;jul;thu;118;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+27;services;single;high.school;no;no;no;cellular;jul;thu;377;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+33;management;married;high.school;no;no;no;telephone;jul;thu;524;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;self-employed;married;university.degree;no;yes;no;telephone;jul;thu;85;6;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+41;admin.;married;high.school;no;no;no;cellular;jul;thu;61;4;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;blue-collar;married;professional.course;no;no;no;telephone;jul;thu;180;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+35;blue-collar;married;basic.9y;unknown;no;no;cellular;jul;thu;1399;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+46;blue-collar;married;basic.4y;unknown;yes;no;cellular;jul;thu;107;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;blue-collar;married;basic.4y;no;yes;no;cellular;jul;thu;374;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+42;blue-collar;married;basic.9y;no;no;no;cellular;jul;thu;1187;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+51;housemaid;divorced;high.school;no;yes;yes;cellular;jul;thu;460;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+26;technician;married;university.degree;no;no;no;telephone;jul;thu;270;7;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+29;technician;married;professional.course;no;unknown;unknown;cellular;jul;thu;338;9;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+48;technician;married;basic.6y;no;no;no;cellular;jul;thu;171;5;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+28;admin.;single;university.degree;no;yes;no;cellular;jul;thu;721;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;technician;married;high.school;no;no;no;cellular;jul;thu;182;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;technician;married;professional.course;no;no;yes;cellular;jul;thu;487;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+42;admin.;single;high.school;no;no;no;telephone;jul;thu;229;4;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+41;entrepreneur;divorced;professional.course;no;no;yes;cellular;jul;thu;140;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+24;services;single;university.degree;no;no;no;cellular;jul;thu;113;6;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+41;entrepreneur;divorced;professional.course;no;yes;yes;cellular;jul;thu;109;5;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+27;services;married;high.school;no;no;no;cellular;jul;thu;184;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;self-employed;married;university.degree;no;yes;no;telephone;jul;thu;148;20;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+40;blue-collar;married;basic.4y;unknown;yes;no;cellular;jul;thu;91;15;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+23;services;single;high.school;no;no;no;cellular;jul;thu;1097;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+49;management;divorced;university.degree;no;no;no;cellular;jul;thu;144;5;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;self-employed;married;university.degree;no;yes;no;telephone;jul;thu;150;10;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+28;admin.;single;high.school;no;no;no;telephone;jul;thu;535;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+33;blue-collar;single;basic.9y;no;yes;no;telephone;jul;thu;465;7;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+33;admin.;single;high.school;no;yes;no;cellular;jul;thu;154;14;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;self-employed;married;university.degree;no;yes;no;telephone;jul;thu;311;27;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+23;blue-collar;single;basic.9y;no;yes;no;cellular;jul;thu;123;4;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+26;admin.;single;high.school;no;no;no;telephone;jul;thu;924;5;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+40;technician;married;university.degree;no;yes;no;cellular;jul;thu;296;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;technician;single;professional.course;no;no;no;cellular;jul;thu;200;5;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+60;management;married;university.degree;unknown;yes;no;cellular;jul;thu;212;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+60;management;married;university.degree;unknown;no;yes;cellular;jul;thu;258;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;technician;married;professional.course;no;no;no;cellular;jul;thu;3643;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+26;entrepreneur;single;university.degree;no;no;no;telephone;jul;fri;117;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+35;admin.;married;high.school;unknown;no;no;cellular;jul;fri;114;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;blue-collar;divorced;professional.course;no;yes;no;cellular;jul;fri;122;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;blue-collar;single;basic.9y;no;yes;yes;cellular;jul;fri;166;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+52;admin.;married;high.school;no;yes;no;cellular;jul;fri;89;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+35;admin.;married;high.school;unknown;no;no;telephone;jul;fri;189;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+41;blue-collar;divorced;basic.6y;no;no;no;cellular;jul;fri;159;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+35;admin.;married;high.school;unknown;yes;no;cellular;jul;fri;393;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+56;blue-collar;married;basic.4y;unknown;yes;no;cellular;jul;fri;508;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+56;blue-collar;married;basic.4y;unknown;yes;yes;cellular;jul;fri;522;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+29;technician;married;unknown;no;yes;no;cellular;jul;fri;166;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+24;blue-collar;single;basic.9y;no;yes;no;cellular;jul;fri;545;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+52;services;married;basic.4y;no;yes;no;cellular;jul;fri;264;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;services;married;high.school;no;yes;no;cellular;jul;fri;812;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+52;admin.;divorced;high.school;unknown;no;no;cellular;jul;fri;67;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+35;admin.;married;high.school;unknown;yes;no;cellular;jul;fri;794;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+29;technician;married;unknown;no;yes;no;cellular;jul;fri;404;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+33;admin.;divorced;high.school;no;yes;no;cellular;jul;fri;191;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+27;student;single;basic.9y;no;no;no;cellular;jul;fri;104;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+35;blue-collar;married;basic.9y;unknown;yes;no;cellular;jul;fri;157;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+35;blue-collar;married;basic.9y;unknown;yes;yes;cellular;jul;fri;170;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+35;blue-collar;married;basic.9y;unknown;no;no;cellular;jul;fri;90;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+42;blue-collar;married;basic.4y;no;no;no;cellular;jul;fri;504;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+35;blue-collar;married;basic.9y;unknown;yes;no;cellular;jul;fri;333;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;blue-collar;single;basic.6y;no;no;no;cellular;jul;fri;252;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+37;blue-collar;married;basic.9y;no;yes;no;cellular;jul;fri;23;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+51;services;single;basic.6y;no;yes;no;cellular;jul;fri;48;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+35;services;single;high.school;no;yes;no;cellular;jul;fri;116;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+24;student;single;basic.4y;no;no;no;cellular;jul;fri;67;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+42;blue-collar;married;basic.4y;no;unknown;unknown;cellular;jul;fri;467;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+24;student;single;basic.4y;no;no;no;cellular;jul;fri;159;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+24;student;single;basic.4y;no;yes;yes;telephone;jul;fri;57;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+51;services;single;basic.6y;no;no;no;cellular;jul;fri;484;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+24;student;single;basic.4y;no;no;no;cellular;jul;fri;378;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+35;management;married;university.degree;no;yes;yes;cellular;jul;fri;772;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+24;student;single;basic.4y;no;unknown;unknown;cellular;jul;fri;230;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+24;student;single;basic.4y;no;no;no;cellular;jul;fri;304;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+38;blue-collar;married;basic.6y;unknown;yes;no;cellular;jul;fri;136;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+35;admin.;married;high.school;unknown;no;no;cellular;jul;fri;451;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+35;admin.;married;high.school;unknown;yes;yes;cellular;jul;fri;283;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+51;blue-collar;married;basic.9y;unknown;no;no;cellular;jul;fri;78;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+51;blue-collar;married;basic.9y;unknown;yes;no;cellular;jul;fri;147;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+60;retired;divorced;high.school;no;yes;no;cellular;jul;fri;55;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+34;technician;married;professional.course;unknown;no;yes;cellular;jul;fri;431;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+51;blue-collar;married;basic.9y;unknown;yes;no;cellular;jul;fri;203;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+42;blue-collar;married;basic.9y;no;no;no;cellular;jul;fri;143;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+34;services;divorced;basic.9y;no;no;no;cellular;jul;fri;684;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+49;retired;single;basic.4y;unknown;no;no;cellular;jul;fri;802;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+35;blue-collar;married;basic.9y;unknown;no;no;cellular;jul;fri;117;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+44;entrepreneur;divorced;basic.4y;no;no;no;cellular;jul;fri;170;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+40;services;married;university.degree;no;yes;no;cellular;jul;fri;131;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+22;blue-collar;married;basic.9y;no;no;no;cellular;jul;fri;102;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+29;admin.;single;high.school;no;yes;no;cellular;jul;fri;151;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+48;blue-collar;married;basic.4y;unknown;yes;yes;cellular;jul;fri;269;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+22;services;single;high.school;no;yes;no;cellular;jul;fri;143;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+56;technician;married;professional.course;no;no;no;cellular;jul;fri;196;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+52;housemaid;married;basic.4y;no;no;no;cellular;jul;fri;479;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+41;services;married;professional.course;no;yes;no;cellular;jul;fri;211;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+52;housemaid;married;basic.4y;no;no;no;cellular;jul;fri;347;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;management;single;high.school;no;no;no;cellular;jul;fri;128;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+52;housemaid;married;basic.4y;no;no;yes;cellular;jul;fri;183;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+53;retired;married;basic.9y;unknown;yes;no;cellular;jul;fri;817;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+33;blue-collar;married;basic.9y;no;no;no;cellular;jul;fri;439;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+55;entrepreneur;married;professional.course;unknown;yes;no;cellular;jul;fri;168;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;blue-collar;single;professional.course;no;yes;no;cellular;jul;fri;165;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+55;retired;married;university.degree;no;yes;no;cellular;jul;fri;188;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+28;admin.;single;university.degree;no;yes;no;cellular;jul;fri;106;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;technician;married;basic.9y;no;yes;no;telephone;jul;fri;321;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+53;retired;married;basic.9y;unknown;no;no;cellular;jul;fri;891;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+33;admin.;married;high.school;no;yes;no;cellular;jul;fri;80;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+43;blue-collar;divorced;basic.4y;no;yes;no;cellular;jul;fri;1242;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+28;blue-collar;single;basic.4y;unknown;yes;no;telephone;jul;fri;76;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;blue-collar;married;high.school;no;yes;no;cellular;jul;fri;45;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+24;blue-collar;married;basic.9y;no;no;yes;cellular;jul;fri;138;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;admin.;single;university.degree;no;no;no;cellular;jul;fri;132;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+37;blue-collar;married;basic.9y;unknown;yes;no;cellular;jul;fri;216;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+27;student;single;high.school;no;yes;no;cellular;jul;fri;100;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+50;technician;divorced;professional.course;no;no;no;cellular;jul;fri;318;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+35;admin.;single;university.degree;no;yes;no;cellular;jul;fri;141;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+27;technician;married;basic.9y;no;yes;yes;cellular;jul;fri;906;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;admin.;single;high.school;no;yes;no;cellular;jul;fri;72;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+29;admin.;single;high.school;unknown;yes;no;cellular;jul;fri;139;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+50;technician;divorced;professional.course;no;yes;no;telephone;jul;fri;41;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+50;blue-collar;divorced;basic.9y;no;unknown;unknown;cellular;jul;fri;93;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+35;admin.;single;university.degree;no;yes;no;cellular;jul;fri;564;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+55;entrepreneur;married;professional.course;unknown;yes;no;cellular;jul;fri;243;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+37;blue-collar;married;basic.9y;unknown;yes;yes;telephone;jul;fri;31;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+26;student;single;university.degree;unknown;no;yes;cellular;jul;fri;226;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+33;admin.;married;high.school;no;no;no;cellular;jul;fri;16;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;admin.;single;university.degree;no;no;no;cellular;jul;fri;306;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;blue-collar;married;basic.9y;no;no;yes;telephone;jul;fri;518;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;admin.;single;university.degree;no;no;no;telephone;jul;fri;87;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+29;admin.;single;high.school;no;yes;no;cellular;jul;fri;130;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+33;admin.;married;high.school;no;no;no;cellular;jul;fri;98;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+40;housemaid;married;basic.4y;unknown;no;no;cellular;jul;fri;504;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;admin.;single;university.degree;no;no;no;cellular;jul;fri;98;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+35;admin.;married;high.school;unknown;no;yes;cellular;jul;fri;93;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+33;services;married;high.school;no;yes;no;cellular;jul;fri;82;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+38;entrepreneur;married;basic.9y;no;yes;no;cellular;jul;fri;188;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+54;blue-collar;divorced;high.school;unknown;no;no;cellular;jul;fri;223;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+39;services;married;high.school;unknown;yes;no;cellular;jul;fri;67;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+49;admin.;married;high.school;no;yes;no;cellular;jul;fri;59;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+54;blue-collar;divorced;high.school;unknown;no;no;cellular;jul;fri;86;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+27;blue-collar;married;basic.6y;no;yes;no;cellular;jul;fri;186;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+33;services;married;high.school;no;no;no;cellular;jul;fri;1060;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+36;services;single;high.school;no;yes;no;cellular;jul;fri;249;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+35;admin.;single;university.degree;no;no;no;cellular;jul;fri;60;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+37;services;married;basic.9y;no;no;no;cellular;jul;fri;126;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+55;retired;married;university.degree;no;no;no;cellular;jul;fri;659;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+33;admin.;married;university.degree;no;yes;no;telephone;jul;fri;52;4;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;entrepreneur;divorced;university.degree;no;no;no;cellular;jul;fri;222;7;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;blue-collar;married;professional.course;unknown;no;no;cellular;jul;fri;109;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;technician;single;university.degree;no;yes;no;cellular;jul;fri;112;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;blue-collar;married;basic.6y;no;no;yes;cellular;jul;fri;173;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;technician;single;university.degree;no;yes;no;cellular;jul;fri;42;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+56;management;married;high.school;no;yes;no;cellular;jul;fri;131;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;services;single;high.school;no;yes;no;cellular;jul;fri;455;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+35;admin.;single;basic.9y;no;yes;no;cellular;jul;fri;431;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+25;unemployed;married;high.school;unknown;unknown;unknown;cellular;jul;fri;147;10;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+34;services;single;high.school;unknown;no;no;cellular;jul;fri;717;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+33;blue-collar;married;basic.4y;no;yes;no;cellular;jul;fri;286;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+33;admin.;single;university.degree;no;yes;no;cellular;jul;fri;614;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+38;technician;married;professional.course;no;yes;yes;cellular;jul;fri;50;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+38;blue-collar;divorced;basic.9y;no;no;yes;cellular;jul;fri;83;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+29;services;single;high.school;unknown;yes;no;cellular;jul;fri;289;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;admin.;married;university.degree;no;no;yes;telephone;jul;fri;117;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;admin.;married;university.degree;no;yes;yes;cellular;jul;fri;85;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+29;admin.;single;high.school;unknown;no;no;cellular;jul;fri;487;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+29;blue-collar;single;basic.9y;no;no;no;cellular;jul;fri;256;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+33;blue-collar;single;basic.6y;unknown;yes;yes;cellular;jul;fri;103;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+53;retired;married;basic.9y;unknown;yes;no;cellular;jul;fri;181;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+41;services;married;professional.course;no;yes;yes;cellular;jul;fri;348;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+48;admin.;married;university.degree;no;yes;yes;cellular;jul;fri;154;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+34;blue-collar;married;basic.9y;unknown;no;yes;cellular;jul;fri;196;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;technician;divorced;professional.course;no;yes;yes;cellular;jul;fri;71;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+40;retired;married;basic.4y;unknown;yes;no;cellular;jul;fri;1689;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+32;unemployed;married;university.degree;no;yes;no;cellular;jul;fri;47;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;blue-collar;married;basic.9y;no;yes;no;cellular;jul;fri;1294;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+37;technician;married;professional.course;no;yes;no;cellular;jul;fri;314;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+44;technician;single;university.degree;no;no;yes;cellular;jul;fri;228;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+55;entrepreneur;married;professional.course;unknown;yes;no;cellular;jul;fri;965;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+42;services;married;high.school;no;yes;no;cellular;jul;fri;123;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+43;entrepreneur;divorced;professional.course;no;no;yes;cellular;jul;fri;94;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+29;admin.;single;high.school;no;no;no;cellular;jul;fri;144;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+35;admin.;single;university.degree;no;no;no;cellular;jul;fri;330;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+41;services;married;professional.course;no;no;yes;cellular;jul;fri;146;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;admin.;single;high.school;no;yes;no;cellular;jul;fri;712;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+49;admin.;married;high.school;no;no;no;cellular;jul;fri;366;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+50;blue-collar;divorced;basic.9y;no;yes;no;cellular;jul;fri;502;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+40;blue-collar;married;basic.9y;no;yes;no;cellular;jul;fri;106;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+35;blue-collar;single;basic.4y;unknown;no;no;cellular;jul;fri;260;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;services;single;high.school;no;yes;no;cellular;jul;fri;252;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;blue-collar;married;basic.6y;no;yes;no;cellular;jul;fri;251;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+38;blue-collar;divorced;basic.9y;no;no;no;cellular;jul;fri;128;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+27;services;single;high.school;no;no;no;cellular;jul;fri;239;8;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+51;entrepreneur;divorced;high.school;no;no;no;cellular;jul;fri;347;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+38;blue-collar;divorced;basic.9y;no;no;no;cellular;jul;fri;764;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+38;blue-collar;divorced;basic.9y;no;unknown;unknown;cellular;jul;fri;1120;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+57;retired;single;basic.9y;unknown;unknown;unknown;cellular;jul;fri;16;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;technician;married;unknown;no;yes;no;cellular;jul;fri;107;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+54;blue-collar;married;basic.4y;no;no;no;cellular;jul;fri;271;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+38;blue-collar;divorced;basic.9y;no;yes;no;cellular;jul;fri;970;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+35;admin.;single;university.degree;no;yes;no;cellular;jul;fri;963;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+55;entrepreneur;married;professional.course;unknown;no;no;cellular;jul;fri;149;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+28;services;married;high.school;no;no;no;cellular;jul;fri;64;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;technician;married;unknown;no;yes;yes;cellular;jul;fri;1973;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+32;technician;married;unknown;no;no;no;cellular;jul;fri;221;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+28;services;married;high.school;no;no;no;cellular;jul;fri;117;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+38;blue-collar;divorced;basic.9y;no;no;yes;cellular;jul;fri;706;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+42;technician;divorced;university.degree;no;no;yes;cellular;jul;fri;241;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+33;technician;single;university.degree;no;no;no;cellular;jul;fri;141;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+34;blue-collar;married;basic.9y;no;no;no;cellular;jul;fri;232;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+29;blue-collar;single;basic.9y;no;no;no;cellular;jul;fri;187;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+42;technician;divorced;university.degree;no;yes;no;cellular;jul;fri;249;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+25;student;single;university.degree;no;no;no;telephone;jul;fri;178;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+33;services;married;high.school;no;no;no;cellular;jul;fri;90;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;student;single;high.school;unknown;no;no;cellular;jul;fri;175;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+25;unemployed;married;university.degree;no;no;no;telephone;jul;fri;176;15;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;blue-collar;married;basic.6y;no;no;no;cellular;jul;fri;255;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+53;management;married;basic.9y;unknown;yes;yes;cellular;jul;fri;1041;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+35;blue-collar;single;basic.9y;no;yes;no;cellular;jul;fri;324;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+29;services;married;basic.9y;no;yes;no;cellular;jul;fri;1389;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;admin.;single;high.school;unknown;no;no;telephone;jul;fri;61;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+25;unemployed;married;high.school;unknown;no;no;cellular;jul;fri;120;10;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+35;admin.;married;high.school;no;no;no;cellular;jul;fri;213;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+45;management;married;unknown;no;yes;no;cellular;jul;fri;121;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+45;blue-collar;married;basic.6y;unknown;no;no;cellular;jul;fri;636;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;services;single;high.school;no;yes;no;cellular;jul;fri;80;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+28;blue-collar;married;basic.6y;unknown;yes;no;telephone;jul;fri;330;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+40;technician;single;professional.course;no;yes;yes;cellular;jul;fri;919;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+38;technician;single;university.degree;no;yes;no;cellular;jul;fri;210;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+46;admin.;married;university.degree;unknown;no;yes;cellular;jul;fri;71;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+50;admin.;divorced;basic.9y;no;no;no;cellular;jul;fri;452;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;blue-collar;married;professional.course;unknown;no;no;cellular;jul;fri;255;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+40;technician;single;professional.course;no;no;no;cellular;jul;fri;260;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+58;admin.;divorced;high.school;no;no;no;cellular;jul;fri;666;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+55;admin.;married;university.degree;no;no;yes;telephone;jul;fri;498;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;admin.;married;university.degree;no;no;no;cellular;jul;fri;344;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+42;technician;divorced;university.degree;no;no;no;cellular;jul;fri;221;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+27;housemaid;married;high.school;no;yes;no;cellular;jul;fri;189;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;blue-collar;single;basic.9y;no;yes;no;cellular;jul;fri;184;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+36;services;single;high.school;no;no;no;cellular;jul;fri;70;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;unemployed;married;basic.9y;no;no;no;cellular;jul;fri;154;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+28;housemaid;married;high.school;no;no;no;cellular;jul;fri;271;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;admin.;married;university.degree;no;no;no;cellular;jul;fri;159;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+41;self-employed;married;basic.9y;no;no;no;cellular;jul;fri;134;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+36;blue-collar;single;high.school;no;no;no;telephone;jul;fri;470;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+52;technician;married;professional.course;no;no;no;cellular;jul;fri;221;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;admin.;married;university.degree;no;no;no;cellular;jul;fri;1164;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;admin.;married;high.school;no;yes;no;cellular;jul;fri;595;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+37;blue-collar;single;basic.9y;unknown;no;no;cellular;jul;fri;1081;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+36;services;single;high.school;no;no;no;cellular;jul;fri;254;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+37;blue-collar;married;basic.9y;unknown;no;no;cellular;jul;fri;106;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+59;blue-collar;married;basic.4y;unknown;no;no;cellular;jul;fri;202;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+52;unemployed;married;university.degree;unknown;no;yes;cellular;jul;fri;118;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;blue-collar;married;basic.6y;no;yes;no;cellular;jul;fri;207;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+33;blue-collar;single;basic.6y;unknown;no;yes;cellular;jul;fri;184;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+53;management;married;basic.9y;unknown;no;yes;cellular;jul;fri;333;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+46;housemaid;married;basic.4y;unknown;no;no;cellular;jul;fri;550;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+22;blue-collar;married;professional.course;no;yes;no;cellular;jul;fri;143;5;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;blue-collar;married;basic.6y;no;yes;yes;cellular;jul;fri;69;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+28;admin.;single;university.degree;no;no;yes;cellular;jul;fri;94;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+37;admin.;single;university.degree;no;yes;no;cellular;jul;fri;271;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;blue-collar;married;basic.9y;no;yes;yes;cellular;jul;fri;396;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;admin.;married;university.degree;no;yes;no;cellular;jul;fri;71;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+35;blue-collar;married;basic.6y;no;yes;no;cellular;jul;fri;145;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+42;management;divorced;university.degree;no;yes;no;cellular;jul;fri;215;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;services;single;high.school;no;yes;no;cellular;jul;fri;94;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;technician;married;basic.9y;no;no;no;cellular;jul;fri;271;5;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+41;self-employed;divorced;professional.course;no;no;no;cellular;jul;fri;911;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+35;blue-collar;married;basic.6y;no;no;no;cellular;jul;fri;165;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+35;admin.;single;high.school;no;yes;no;cellular;jul;fri;196;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+29;blue-collar;married;basic.9y;no;yes;yes;telephone;jul;fri;437;7;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+41;admin.;single;university.degree;no;no;no;cellular;jul;fri;1180;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+36;admin.;married;university.degree;unknown;no;no;cellular;jul;fri;135;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;technician;married;unknown;no;yes;no;cellular;jul;fri;193;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;blue-collar;married;basic.6y;no;no;no;cellular;jul;fri;103;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;admin.;married;university.degree;no;no;no;cellular;jul;fri;128;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+25;unemployed;married;university.degree;no;no;no;telephone;jul;fri;328;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;blue-collar;divorced;professional.course;no;no;no;cellular;jul;fri;261;13;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;blue-collar;married;basic.9y;unknown;no;no;cellular;jul;fri;342;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;blue-collar;married;basic.6y;no;yes;no;cellular;jul;fri;119;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+36;blue-collar;single;high.school;no;no;no;cellular;jul;fri;425;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+26;blue-collar;single;basic.9y;unknown;yes;no;cellular;jul;fri;151;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+52;technician;married;professional.course;no;no;yes;cellular;jul;fri;163;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+25;blue-collar;single;basic.9y;no;yes;no;cellular;jul;fri;773;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+29;blue-collar;single;basic.9y;no;no;no;cellular;jul;fri;822;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+37;admin.;single;university.degree;no;no;no;cellular;jul;fri;188;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+43;technician;divorced;basic.9y;no;no;no;cellular;jul;fri;853;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+28;admin.;married;professional.course;no;no;no;cellular;jul;fri;549;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+36;blue-collar;single;high.school;no;no;no;cellular;jul;fri;172;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+22;blue-collar;married;professional.course;no;yes;no;cellular;jul;fri;161;4;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+41;blue-collar;single;unknown;unknown;no;no;cellular;jul;fri;96;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+46;housemaid;married;basic.4y;unknown;no;no;cellular;jul;fri;1649;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+26;admin.;single;high.school;no;no;no;cellular;jul;fri;1310;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+25;technician;single;professional.course;no;yes;no;cellular;jul;fri;1187;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+29;blue-collar;single;basic.9y;no;no;no;cellular;jul;mon;135;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+29;services;married;high.school;no;yes;yes;cellular;jul;mon;151;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;technician;married;professional.course;no;yes;yes;cellular;jul;mon;324;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+32;admin.;married;basic.9y;no;no;no;cellular;jul;mon;77;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+45;unemployed;married;university.degree;no;yes;no;cellular;jul;mon;122;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+54;blue-collar;single;unknown;no;yes;no;cellular;jul;mon;122;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+56;management;married;basic.6y;unknown;no;no;cellular;jul;mon;175;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+32;blue-collar;married;basic.4y;no;yes;no;cellular;jul;mon;51;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+31;blue-collar;married;basic.9y;no;no;no;cellular;jul;mon;246;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+35;blue-collar;married;basic.9y;no;yes;no;cellular;jul;mon;330;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+58;management;married;university.degree;unknown;no;no;cellular;jul;mon;607;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+29;blue-collar;married;basic.9y;no;yes;no;cellular;jul;mon;104;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+31;admin.;single;basic.9y;no;yes;no;cellular;jul;mon;114;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+58;management;married;university.degree;unknown;yes;no;cellular;jul;mon;332;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+33;entrepreneur;married;university.degree;no;yes;yes;cellular;jul;mon;125;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;blue-collar;single;basic.9y;no;yes;no;telephone;jul;mon;236;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+32;admin.;single;university.degree;no;no;no;cellular;jul;mon;79;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;blue-collar;single;basic.9y;no;yes;no;cellular;jul;mon;65;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+35;admin.;married;university.degree;no;yes;yes;telephone;jul;mon;216;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+26;technician;married;high.school;no;no;no;cellular;jul;mon;114;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+57;blue-collar;married;basic.4y;no;no;no;cellular;jul;mon;324;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+40;entrepreneur;married;university.degree;no;no;no;cellular;jul;mon;68;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+24;self-employed;single;professional.course;no;yes;no;cellular;jul;mon;61;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+39;technician;divorced;university.degree;no;no;no;cellular;jul;mon;179;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+30;admin.;single;university.degree;no;yes;no;cellular;jul;mon;243;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+31;technician;single;university.degree;no;yes;no;cellular;jul;mon;90;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+50;blue-collar;married;basic.4y;no;yes;no;cellular;jul;mon;611;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+30;admin.;single;university.degree;unknown;yes;no;telephone;jul;mon;256;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+56;unknown;single;basic.9y;no;no;no;cellular;jul;mon;102;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;admin.;married;high.school;no;no;no;cellular;jul;mon;41;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+31;admin.;single;basic.9y;no;no;no;cellular;jul;mon;221;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;admin.;divorced;high.school;no;yes;no;cellular;jul;mon;329;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+31;entrepreneur;married;university.degree;unknown;no;no;cellular;jul;mon;97;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+30;blue-collar;married;basic.9y;no;no;no;cellular;jul;mon;96;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+31;technician;single;basic.9y;no;yes;no;cellular;jul;mon;227;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+45;management;married;university.degree;unknown;yes;yes;cellular;jul;mon;56;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+32;blue-collar;married;basic.9y;no;no;yes;cellular;jul;mon;102;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;unemployed;single;university.degree;no;yes;no;telephone;jul;mon;158;7;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+45;blue-collar;divorced;basic.9y;no;no;yes;cellular;jul;mon;194;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+33;entrepreneur;married;university.degree;no;yes;yes;cellular;jul;mon;285;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;admin.;married;high.school;no;yes;no;cellular;jul;mon;231;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+56;unknown;single;basic.9y;no;no;yes;cellular;jul;mon;53;8;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+39;blue-collar;single;high.school;no;yes;yes;cellular;jul;mon;276;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;services;single;high.school;no;no;no;cellular;jul;mon;505;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+51;admin.;divorced;university.degree;unknown;unknown;unknown;cellular;jul;mon;178;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+31;technician;single;university.degree;no;no;no;telephone;jul;mon;211;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+33;entrepreneur;married;university.degree;no;yes;no;cellular;jul;mon;116;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+25;technician;single;university.degree;no;no;no;cellular;jul;mon;135;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+40;admin.;single;high.school;no;yes;no;cellular;jul;mon;172;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+50;admin.;divorced;basic.9y;no;no;no;cellular;jul;mon;47;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+53;self-employed;married;university.degree;no;no;no;cellular;jul;mon;84;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+39;admin.;married;high.school;unknown;no;no;cellular;jul;mon;367;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+25;blue-collar;single;basic.9y;no;yes;no;cellular;jul;mon;244;7;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+33;entrepreneur;married;university.degree;no;yes;yes;cellular;jul;mon;103;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+33;admin.;married;university.degree;no;no;no;cellular;jul;mon;158;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+33;entrepreneur;married;university.degree;no;no;no;cellular;jul;mon;611;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+53;self-employed;married;university.degree;no;yes;no;cellular;jul;mon;78;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;services;single;high.school;no;yes;no;cellular;jul;mon;306;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+26;blue-collar;divorced;high.school;no;no;no;telephone;jul;mon;79;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+26;blue-collar;single;high.school;no;yes;yes;cellular;jul;mon;110;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+39;services;married;professional.course;no;yes;no;cellular;jul;mon;751;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+35;blue-collar;married;high.school;no;yes;yes;cellular;jul;mon;289;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+31;housemaid;married;high.school;no;yes;no;cellular;jul;mon;126;6;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+29;management;single;university.degree;no;yes;no;cellular;jul;mon;84;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+48;blue-collar;single;basic.6y;unknown;yes;no;cellular;jul;mon;297;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+30;technician;single;professional.course;no;no;no;cellular;jul;mon;66;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+31;admin.;single;high.school;no;yes;no;telephone;jul;mon;120;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+33;technician;divorced;professional.course;no;yes;no;cellular;jul;mon;72;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+31;housemaid;married;high.school;no;yes;no;cellular;jul;mon;64;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+31;entrepreneur;married;university.degree;unknown;yes;no;cellular;jul;mon;151;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+22;housemaid;single;high.school;no;yes;yes;cellular;jul;mon;767;12;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+56;unknown;single;basic.9y;no;no;yes;cellular;jul;mon;329;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+35;admin.;married;high.school;unknown;no;yes;cellular;jul;mon;84;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+23;blue-collar;single;basic.9y;no;no;yes;cellular;jul;mon;105;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+44;blue-collar;married;basic.9y;no;no;no;telephone;jul;mon;214;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;blue-collar;single;basic.9y;no;yes;no;cellular;jul;mon;189;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+31;management;married;university.degree;no;yes;no;cellular;jul;mon;1397;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+40;entrepreneur;married;university.degree;no;no;no;cellular;jul;mon;550;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;technician;single;professional.course;no;no;no;cellular;jul;mon;331;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;admin.;married;high.school;no;no;no;cellular;jul;mon;155;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+40;services;married;basic.6y;no;yes;no;cellular;jul;mon;137;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+49;technician;married;university.degree;unknown;yes;no;cellular;jul;mon;333;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+35;blue-collar;married;high.school;unknown;no;no;telephone;jul;mon;44;14;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+32;management;single;university.degree;no;no;no;cellular;jul;mon;173;6;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+32;admin.;single;university.degree;no;unknown;unknown;cellular;jul;mon;209;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+25;blue-collar;single;high.school;no;no;no;cellular;jul;mon;122;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+40;entrepreneur;married;university.degree;no;yes;no;cellular;jul;mon;238;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+33;blue-collar;single;basic.4y;no;unknown;unknown;cellular;jul;mon;84;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+45;unemployed;married;university.degree;no;yes;no;telephone;jul;mon;363;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+30;admin.;single;university.degree;no;no;no;cellular;jul;mon;64;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+26;admin.;single;high.school;no;no;no;cellular;jul;mon;226;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+39;admin.;married;university.degree;no;no;no;cellular;jul;mon;97;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+56;services;divorced;high.school;unknown;yes;no;cellular;jul;mon;247;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;blue-collar;single;basic.9y;no;yes;yes;cellular;jul;mon;80;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+35;admin.;married;university.degree;no;no;no;cellular;jul;mon;141;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+28;admin.;married;university.degree;no;no;no;cellular;jul;mon;187;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+30;technician;married;professional.course;no;yes;no;cellular;jul;mon;467;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+49;management;married;university.degree;no;no;no;cellular;jul;mon;549;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+28;admin.;single;high.school;no;no;yes;cellular;jul;mon;254;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+26;blue-collar;single;high.school;no;yes;no;cellular;jul;mon;460;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+30;blue-collar;married;high.school;unknown;yes;no;cellular;jul;mon;1153;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+40;services;married;basic.6y;no;no;no;cellular;jul;mon;247;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+35;entrepreneur;married;high.school;no;no;no;cellular;jul;mon;121;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;admin.;single;high.school;no;yes;yes;cellular;jul;mon;138;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+38;blue-collar;married;high.school;unknown;no;no;cellular;jul;mon;90;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+56;services;divorced;high.school;unknown;yes;no;cellular;jul;mon;354;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+35;technician;single;professional.course;no;yes;no;cellular;jul;mon;154;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+30;admin.;single;university.degree;no;yes;yes;cellular;jul;mon;151;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+35;admin.;married;university.degree;no;yes;yes;cellular;jul;mon;228;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+35;blue-collar;married;high.school;unknown;yes;yes;telephone;jul;mon;281;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+35;admin.;single;university.degree;no;no;no;cellular;jul;mon;132;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+35;blue-collar;single;basic.9y;no;yes;no;cellular;jul;mon;126;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+50;admin.;divorced;basic.9y;no;yes;yes;cellular;jul;mon;68;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+54;blue-collar;single;unknown;no;yes;no;cellular;jul;mon;56;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+33;blue-collar;married;high.school;no;no;no;cellular;jul;mon;69;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+32;admin.;single;university.degree;no;unknown;unknown;cellular;jul;mon;55;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+31;services;married;high.school;no;no;no;cellular;jul;mon;650;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+26;blue-collar;single;high.school;no;no;yes;telephone;jul;mon;251;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+35;admin.;married;university.degree;no;yes;no;cellular;jul;mon;125;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;admin.;married;high.school;no;yes;yes;cellular;jul;mon;183;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+40;services;married;basic.6y;no;no;no;cellular;jul;mon;119;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+40;blue-collar;married;basic.6y;unknown;yes;no;cellular;jul;mon;127;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;admin.;married;high.school;no;no;no;cellular;jul;mon;74;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+29;management;single;university.degree;no;yes;no;cellular;jul;mon;138;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+26;blue-collar;single;professional.course;no;no;no;cellular;jul;mon;74;6;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+35;blue-collar;single;basic.9y;no;no;no;cellular;jul;mon;53;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;technician;married;professional.course;no;yes;no;cellular;jul;mon;634;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+51;blue-collar;married;basic.4y;unknown;yes;yes;cellular;jul;mon;297;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+54;blue-collar;single;unknown;no;yes;no;cellular;jul;mon;213;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+24;blue-collar;single;high.school;no;yes;no;cellular;jul;mon;51;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+50;blue-collar;married;unknown;unknown;yes;no;telephone;jul;mon;124;12;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+36;admin.;married;university.degree;no;no;no;cellular;jul;mon;58;11;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+28;admin.;single;university.degree;no;yes;no;cellular;jul;mon;219;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+35;blue-collar;married;basic.9y;no;yes;no;telephone;jul;mon;19;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+29;admin.;single;university.degree;no;yes;no;telephone;jul;mon;310;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+32;blue-collar;married;basic.9y;no;no;no;cellular;jul;mon;144;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;management;married;basic.9y;no;no;yes;cellular;jul;mon;174;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+30;technician;married;professional.course;no;yes;no;cellular;jul;mon;41;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+46;blue-collar;married;basic.4y;no;yes;no;cellular;jul;mon;397;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;admin.;married;high.school;no;yes;yes;cellular;jul;mon;101;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+29;management;single;university.degree;no;yes;no;telephone;jul;mon;305;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+35;blue-collar;married;high.school;no;yes;no;cellular;jul;mon;105;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+30;blue-collar;married;basic.9y;no;yes;no;cellular;jul;mon;111;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+23;admin.;married;basic.9y;no;yes;no;cellular;jul;mon;686;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+36;technician;divorced;professional.course;no;no;no;cellular;jul;mon;319;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+33;entrepreneur;married;university.degree;no;yes;no;cellular;jul;mon;766;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+45;management;married;basic.9y;unknown;yes;no;cellular;jul;mon;297;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+35;admin.;single;university.degree;no;yes;no;cellular;jul;mon;673;8;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+56;blue-collar;married;basic.9y;no;yes;no;cellular;jul;mon;86;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;services;divorced;high.school;no;no;no;cellular;jul;mon;388;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+31;services;married;basic.9y;no;yes;no;cellular;jul;mon;334;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+38;blue-collar;single;basic.9y;unknown;yes;no;cellular;jul;mon;191;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+29;admin.;married;high.school;unknown;no;no;cellular;jul;mon;35;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+35;admin.;single;university.degree;no;yes;no;cellular;jul;mon;77;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+30;services;married;basic.6y;no;yes;no;cellular;jul;mon;129;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+34;self-employed;divorced;university.degree;no;yes;no;telephone;jul;mon;162;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+35;blue-collar;single;basic.9y;no;yes;no;cellular;jul;mon;292;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;technician;single;professional.course;no;no;no;cellular;jul;mon;331;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+26;student;single;university.degree;no;yes;no;cellular;jul;mon;134;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+35;blue-collar;married;basic.9y;no;yes;no;cellular;jul;mon;788;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+32;blue-collar;married;basic.9y;no;yes;yes;cellular;jul;mon;64;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+30;admin.;single;university.degree;no;no;no;cellular;jul;mon;171;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+47;retired;single;basic.6y;unknown;yes;no;cellular;jul;mon;72;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;blue-collar;single;basic.9y;no;unknown;unknown;cellular;jul;mon;182;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+33;self-employed;married;university.degree;no;yes;no;telephone;jul;mon;105;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+31;management;married;university.degree;no;yes;no;cellular;jul;mon;106;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+44;entrepreneur;married;high.school;no;yes;no;cellular;jul;mon;64;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+47;blue-collar;married;basic.6y;no;no;no;cellular;jul;mon;126;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;services;divorced;high.school;no;no;no;cellular;jul;mon;122;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+26;technician;single;high.school;no;yes;no;cellular;jul;mon;124;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+51;admin.;married;university.degree;no;no;yes;telephone;jul;mon;464;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+24;self-employed;single;professional.course;no;yes;no;cellular;jul;mon;201;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+34;blue-collar;married;basic.6y;unknown;yes;no;cellular;jul;mon;616;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;housemaid;married;high.school;no;yes;no;cellular;jul;mon;194;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+45;blue-collar;divorced;basic.9y;no;yes;no;cellular;jul;mon;146;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+32;unemployed;married;high.school;unknown;yes;no;cellular;jul;mon;38;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;services;single;high.school;no;no;no;cellular;jul;mon;68;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+22;blue-collar;single;basic.9y;no;yes;no;cellular;jul;mon;245;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+22;blue-collar;single;basic.9y;no;yes;no;cellular;jul;mon;79;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+47;management;married;basic.4y;no;yes;no;cellular;jul;mon;130;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+37;admin.;married;high.school;unknown;yes;no;cellular;jul;mon;204;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+47;retired;single;basic.6y;unknown;yes;no;cellular;jul;mon;145;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+30;technician;married;professional.course;no;yes;yes;cellular;jul;mon;699;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;services;divorced;high.school;no;yes;no;cellular;jul;mon;140;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+48;management;married;university.degree;no;yes;no;cellular;jul;mon;768;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+50;blue-collar;married;basic.4y;no;no;no;cellular;jul;mon;1130;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+36;blue-collar;married;basic.9y;no;yes;no;cellular;jul;mon;80;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+28;admin.;single;high.school;no;no;no;cellular;jul;mon;259;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+46;blue-collar;single;basic.6y;unknown;yes;yes;cellular;jul;mon;341;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+35;self-employed;married;university.degree;no;yes;no;cellular;jul;mon;192;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+42;admin.;married;high.school;no;no;yes;cellular;jul;mon;417;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+25;admin.;married;high.school;no;no;no;cellular;jul;mon;154;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+51;admin.;married;university.degree;no;no;no;cellular;jul;mon;455;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+31;blue-collar;divorced;basic.6y;no;yes;no;cellular;jul;mon;85;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+42;blue-collar;married;basic.6y;unknown;no;no;cellular;jul;mon;243;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+31;housemaid;married;high.school;no;yes;no;cellular;jul;mon;225;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+35;blue-collar;married;high.school;no;yes;no;cellular;jul;mon;85;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+52;services;married;high.school;unknown;no;no;cellular;jul;mon;76;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+52;entrepreneur;married;basic.9y;unknown;yes;no;cellular;jul;mon;163;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+35;blue-collar;married;high.school;no;no;yes;cellular;jul;mon;149;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+28;technician;single;high.school;no;no;no;cellular;jul;mon;568;8;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+57;retired;married;university.degree;no;yes;yes;cellular;jul;mon;1062;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+29;blue-collar;married;basic.9y;no;no;no;cellular;jul;mon;334;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+36;admin.;single;high.school;unknown;yes;yes;cellular;jul;mon;393;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+50;admin.;divorced;basic.9y;no;no;no;cellular;jul;mon;250;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+49;blue-collar;divorced;basic.6y;unknown;yes;no;cellular;jul;mon;364;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+44;blue-collar;single;basic.6y;unknown;yes;no;cellular;jul;mon;229;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+35;technician;single;university.degree;no;yes;no;cellular;jul;mon;118;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+54;blue-collar;single;unknown;no;no;no;cellular;jul;mon;111;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+47;retired;single;basic.6y;unknown;yes;no;cellular;jul;mon;315;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+26;admin.;single;high.school;no;yes;no;cellular;jul;mon;115;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+42;admin.;married;university.degree;no;yes;no;cellular;jul;mon;144;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+25;admin.;single;university.degree;no;no;no;cellular;jul;mon;103;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+33;self-employed;married;university.degree;no;no;no;cellular;jul;mon;299;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+42;technician;married;professional.course;unknown;yes;no;cellular;jul;mon;77;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+41;housemaid;single;basic.4y;unknown;yes;no;cellular;jul;mon;385;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+45;unemployed;married;high.school;no;yes;no;cellular;jul;mon;99;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+30;blue-collar;married;basic.9y;no;yes;no;cellular;jul;mon;245;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+28;admin.;married;university.degree;no;no;no;cellular;jul;mon;140;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+26;blue-collar;single;high.school;no;no;no;cellular;jul;mon;124;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+46;services;married;high.school;no;no;no;cellular;jul;mon;93;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+34;blue-collar;married;basic.9y;no;yes;yes;cellular;jul;mon;465;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+47;blue-collar;married;basic.6y;unknown;no;no;cellular;jul;mon;197;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+48;management;married;university.degree;no;yes;no;cellular;jul;mon;216;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+31;admin.;single;basic.9y;no;yes;no;cellular;jul;mon;392;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+29;services;married;high.school;no;yes;no;cellular;jul;mon;407;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;technician;married;professional.course;no;no;no;telephone;jul;mon;81;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+25;blue-collar;single;high.school;no;yes;no;cellular;jul;mon;619;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;admin.;married;high.school;no;no;no;cellular;jul;mon;81;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+48;management;married;university.degree;no;yes;no;cellular;jul;mon;248;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+47;retired;single;basic.6y;unknown;no;no;cellular;jul;mon;157;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+30;blue-collar;married;basic.9y;no;yes;no;cellular;jul;mon;214;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+50;blue-collar;married;professional.course;unknown;yes;no;cellular;jul;mon;201;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+29;admin.;married;university.degree;no;yes;yes;cellular;jul;mon;425;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+36;admin.;married;university.degree;no;yes;yes;cellular;jul;mon;1669;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+37;blue-collar;married;basic.6y;no;yes;no;cellular;jul;mon;108;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+41;technician;married;high.school;no;yes;yes;cellular;jul;mon;460;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+36;blue-collar;married;basic.9y;no;yes;yes;cellular;jul;mon;256;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+46;blue-collar;single;basic.6y;unknown;no;yes;cellular;jul;mon;272;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;admin.;married;basic.9y;unknown;yes;yes;cellular;jul;mon;166;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+47;retired;single;basic.6y;unknown;yes;yes;cellular;jul;mon;431;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+26;technician;single;high.school;no;yes;no;cellular;jul;mon;377;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+30;technician;married;professional.course;no;yes;yes;cellular;jul;mon;184;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;housemaid;married;basic.4y;no;no;no;cellular;jul;mon;119;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+34;blue-collar;single;professional.course;no;no;yes;cellular;jul;mon;123;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+31;blue-collar;married;basic.9y;no;yes;no;cellular;jul;mon;250;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+31;housemaid;married;high.school;no;yes;no;cellular;jul;mon;109;8;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+51;blue-collar;married;basic.4y;unknown;yes;no;cellular;jul;mon;301;6;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+24;services;single;high.school;no;no;no;cellular;jul;mon;257;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+30;technician;single;professional.course;no;yes;no;cellular;jul;mon;136;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+37;blue-collar;married;professional.course;no;yes;no;cellular;jul;mon;340;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+28;admin.;single;basic.9y;no;yes;no;cellular;jul;mon;387;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+54;blue-collar;married;basic.4y;unknown;no;no;cellular;jul;mon;163;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+52;blue-collar;married;unknown;no;no;yes;cellular;jul;mon;326;11;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+34;blue-collar;married;basic.6y;unknown;yes;no;cellular;jul;mon;557;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+44;unemployed;married;high.school;no;yes;no;cellular;jul;mon;512;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+55;management;single;unknown;no;no;yes;cellular;jul;mon;342;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+36;admin.;married;university.degree;no;yes;no;telephone;jul;mon;197;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+50;admin.;divorced;basic.9y;no;yes;no;cellular;jul;mon;97;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;admin.;divorced;high.school;no;yes;no;telephone;jul;mon;109;6;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+46;blue-collar;married;basic.9y;unknown;yes;yes;cellular;jul;mon;194;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+47;blue-collar;married;basic.6y;no;yes;yes;cellular;jul;mon;298;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+31;technician;married;high.school;no;no;no;cellular;jul;mon;101;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+36;technician;divorced;professional.course;no;yes;no;cellular;jul;mon;643;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+32;services;married;high.school;no;no;no;cellular;jul;mon;1271;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+54;blue-collar;divorced;basic.4y;no;no;no;cellular;jul;mon;149;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+52;services;married;high.school;unknown;no;no;cellular;jul;mon;81;6;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+50;blue-collar;married;basic.4y;no;no;no;cellular;jul;mon;244;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+35;admin.;married;high.school;unknown;no;no;cellular;jul;mon;1336;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+27;blue-collar;single;basic.9y;no;yes;no;telephone;jul;mon;111;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+28;admin.;single;high.school;no;no;yes;cellular;jul;mon;157;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+34;services;married;high.school;no;unknown;unknown;cellular;jul;mon;455;13;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+31;blue-collar;married;high.school;no;no;yes;cellular;jul;mon;218;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+51;housemaid;married;basic.4y;no;yes;no;cellular;jul;mon;118;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+54;blue-collar;single;unknown;no;no;no;telephone;jul;mon;185;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+51;housemaid;married;university.degree;no;no;no;cellular;jul;mon;138;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+44;blue-collar;married;basic.9y;no;no;no;cellular;jul;mon;304;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+30;blue-collar;married;basic.9y;no;no;no;cellular;jul;mon;171;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+36;technician;divorced;professional.course;no;yes;yes;cellular;jul;mon;43;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;services;single;high.school;no;no;no;cellular;jul;mon;1071;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+27;admin.;single;high.school;no;yes;no;telephone;jul;mon;167;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+32;blue-collar;married;basic.9y;no;no;no;cellular;jul;mon;240;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+32;management;married;professional.course;unknown;no;no;cellular;jul;mon;565;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+48;blue-collar;divorced;high.school;unknown;no;yes;telephone;jul;mon;716;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+30;blue-collar;married;basic.9y;no;yes;no;cellular;jul;mon;149;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+23;blue-collar;single;high.school;unknown;yes;no;cellular;jul;mon;150;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+35;admin.;divorced;high.school;no;yes;yes;cellular;jul;mon;615;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+38;services;single;basic.9y;no;yes;no;cellular;jul;mon;149;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+42;housemaid;married;high.school;no;yes;no;cellular;jul;mon;424;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+57;blue-collar;married;basic.4y;no;yes;no;cellular;jul;mon;364;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+32;admin.;single;university.degree;no;no;no;telephone;jul;mon;179;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+35;management;single;university.degree;no;no;no;cellular;jul;mon;403;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;unemployed;married;high.school;no;yes;no;cellular;jul;mon;745;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;admin.;married;high.school;no;yes;no;cellular;jul;mon;164;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+30;blue-collar;single;basic.9y;no;yes;no;cellular;jul;mon;235;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+32;technician;married;professional.course;no;yes;yes;cellular;jul;mon;330;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+28;admin.;single;university.degree;no;yes;no;telephone;jul;mon;160;10;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+28;student;single;high.school;no;yes;no;telephone;jul;mon;12;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+44;entrepreneur;married;high.school;no;no;no;cellular;jul;mon;77;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+32;blue-collar;single;basic.9y;no;yes;no;cellular;jul;mon;552;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+33;entrepreneur;married;university.degree;no;yes;no;telephone;jul;mon;35;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+36;technician;divorced;professional.course;no;no;no;cellular;jul;mon;36;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+44;blue-collar;married;basic.9y;no;yes;no;cellular;jul;mon;46;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+23;services;single;high.school;no;no;no;telephone;jul;mon;821;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;admin.;single;high.school;no;yes;yes;telephone;jul;mon;198;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+26;technician;single;high.school;no;yes;yes;cellular;jul;mon;894;7;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+59;blue-collar;divorced;basic.4y;unknown;no;yes;cellular;jul;mon;84;6;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;services;married;high.school;no;yes;no;cellular;jul;mon;250;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+42;admin.;married;high.school;no;no;no;cellular;jul;mon;110;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+31;admin.;single;high.school;no;no;no;cellular;jul;mon;133;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+30;blue-collar;married;basic.9y;no;no;no;cellular;jul;mon;78;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+31;technician;single;university.degree;no;yes;no;cellular;jul;mon;227;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+57;blue-collar;married;basic.4y;no;yes;no;cellular;jul;mon;76;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+29;entrepreneur;single;basic.9y;no;no;no;cellular;jul;mon;223;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+34;blue-collar;married;basic.6y;unknown;no;yes;telephone;jul;mon;164;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+54;admin.;married;basic.9y;no;no;yes;cellular;jul;mon;131;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+35;admin.;married;high.school;unknown;no;no;cellular;jul;mon;356;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+47;self-employed;married;basic.9y;unknown;yes;no;telephone;jul;mon;135;10;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+44;blue-collar;married;basic.4y;unknown;no;no;cellular;jul;mon;358;6;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+51;admin.;married;university.degree;no;no;no;telephone;jul;mon;172;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+45;blue-collar;divorced;basic.9y;no;no;no;cellular;jul;mon;399;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+46;blue-collar;single;basic.6y;unknown;no;no;cellular;jul;mon;180;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+34;blue-collar;married;basic.4y;no;no;no;telephone;jul;mon;252;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+32;admin.;single;university.degree;no;yes;no;telephone;jul;mon;109;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+38;blue-collar;single;basic.9y;unknown;yes;no;cellular;jul;mon;72;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+36;blue-collar;married;basic.9y;no;unknown;unknown;telephone;jul;mon;102;14;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+33;blue-collar;married;high.school;no;yes;no;cellular;jul;mon;457;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+59;blue-collar;divorced;basic.4y;unknown;yes;no;cellular;jul;mon;254;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+33;management;single;university.degree;no;yes;no;cellular;jul;mon;400;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+39;admin.;married;university.degree;no;no;no;cellular;jul;mon;171;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+30;blue-collar;married;basic.9y;no;no;no;cellular;jul;mon;196;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+30;technician;married;professional.course;no;yes;yes;telephone;jul;mon;123;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+33;admin.;single;university.degree;no;no;no;cellular;jul;mon;546;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+54;management;married;university.degree;no;no;no;cellular;jul;mon;798;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+39;blue-collar;married;basic.9y;no;no;no;cellular;jul;tue;231;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+28;blue-collar;single;basic.4y;unknown;yes;no;telephone;jul;tue;321;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+49;blue-collar;married;basic.4y;unknown;yes;no;cellular;jul;tue;56;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+37;blue-collar;single;high.school;no;no;no;cellular;jul;tue;31;19;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+38;technician;single;professional.course;no;yes;no;cellular;jul;tue;170;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+57;blue-collar;married;basic.9y;unknown;yes;no;cellular;jul;tue;101;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+42;services;married;basic.6y;no;no;no;cellular;jul;tue;376;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+28;blue-collar;married;basic.9y;unknown;yes;yes;telephone;jul;tue;138;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+31;blue-collar;married;basic.9y;unknown;yes;yes;cellular;jul;tue;656;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+53;blue-collar;married;basic.9y;no;yes;no;cellular;jul;tue;122;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+56;blue-collar;married;basic.4y;unknown;yes;no;cellular;jul;tue;335;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+32;admin.;single;university.degree;no;unknown;unknown;cellular;jul;tue;136;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+28;blue-collar;single;basic.4y;unknown;no;no;cellular;jul;tue;528;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+44;services;divorced;basic.9y;no;no;no;cellular;jul;tue;805;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;yes
+35;blue-collar;single;basic.9y;unknown;yes;no;cellular;jul;tue;71;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+45;blue-collar;single;basic.4y;unknown;yes;yes;cellular;jul;tue;21;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+53;blue-collar;married;basic.9y;no;yes;no;cellular;jul;tue;56;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+38;retired;single;basic.6y;unknown;no;no;cellular;jul;tue;129;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+50;technician;single;university.degree;no;yes;no;cellular;jul;tue;129;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+25;management;single;university.degree;no;no;no;cellular;jul;tue;125;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+32;blue-collar;married;basic.6y;no;no;no;telephone;jul;tue;285;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+46;blue-collar;married;basic.4y;unknown;no;no;cellular;jul;tue;166;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+57;blue-collar;married;basic.9y;no;yes;no;cellular;jul;tue;106;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+30;admin.;single;university.degree;no;yes;no;cellular;jul;tue;101;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+27;blue-collar;single;basic.9y;no;no;no;cellular;jul;tue;169;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+33;admin.;single;university.degree;no;no;no;cellular;jul;tue;110;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+35;admin.;divorced;high.school;unknown;no;no;cellular;jul;tue;175;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+50;technician;single;university.degree;no;no;no;cellular;jul;tue;179;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+36;admin.;married;high.school;no;yes;no;cellular;jul;tue;649;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+46;technician;divorced;professional.course;no;no;no;cellular;jul;tue;231;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+56;management;married;university.degree;no;no;no;cellular;jul;tue;442;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+34;admin.;single;university.degree;no;yes;no;cellular;jul;tue;439;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+38;technician;single;professional.course;no;yes;no;cellular;jul;tue;249;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+31;blue-collar;married;basic.9y;unknown;yes;no;cellular;jul;tue;204;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+55;blue-collar;married;illiterate;no;yes;no;cellular;jul;tue;92;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+27;technician;single;professional.course;no;yes;no;cellular;jul;tue;131;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+26;services;single;basic.6y;no;no;no;cellular;jul;tue;184;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+23;blue-collar;single;basic.9y;no;no;no;cellular;jul;tue;126;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+51;retired;married;university.degree;unknown;no;no;cellular;jul;tue;94;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+37;housemaid;married;basic.4y;no;no;no;cellular;jul;tue;56;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+35;admin.;married;basic.9y;no;yes;no;cellular;jul;tue;274;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+25;blue-collar;married;basic.9y;unknown;no;no;cellular;jul;tue;42;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+48;blue-collar;married;basic.9y;no;unknown;unknown;cellular;jul;tue;112;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+32;blue-collar;single;basic.6y;unknown;unknown;unknown;cellular;jul;tue;199;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+32;management;divorced;university.degree;no;no;no;cellular;jul;tue;131;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+44;blue-collar;married;basic.4y;no;yes;no;cellular;jul;tue;75;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+31;blue-collar;single;high.school;no;yes;no;cellular;jul;tue;101;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+29;blue-collar;married;basic.9y;no;yes;no;cellular;jul;tue;138;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+42;self-employed;divorced;basic.6y;unknown;yes;no;cellular;jul;tue;94;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+35;blue-collar;single;basic.9y;no;no;yes;cellular;jul;tue;416;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+57;blue-collar;married;basic.9y;unknown;no;no;cellular;jul;tue;659;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+45;blue-collar;married;basic.4y;unknown;yes;no;cellular;jul;tue;202;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+42;services;married;basic.6y;no;no;no;cellular;jul;tue;92;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+31;admin.;single;university.degree;no;yes;yes;cellular;jul;tue;368;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+42;technician;married;basic.9y;no;no;no;cellular;jul;tue;723;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;yes
+48;admin.;single;university.degree;no;yes;yes;telephone;jul;tue;265;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+57;blue-collar;married;basic.9y;unknown;yes;no;cellular;jul;tue;579;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+50;blue-collar;married;basic.4y;unknown;yes;yes;cellular;jul;tue;195;6;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+38;technician;single;professional.course;no;no;yes;cellular;jul;tue;80;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+35;technician;married;professional.course;no;yes;no;cellular;jul;tue;401;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+34;services;divorced;high.school;no;no;yes;cellular;jul;tue;101;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+32;housemaid;single;university.degree;unknown;yes;no;cellular;jul;tue;71;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+25;technician;single;professional.course;no;yes;no;cellular;jul;tue;134;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+38;blue-collar;single;basic.4y;unknown;no;no;telephone;jul;tue;41;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+33;services;married;high.school;no;no;no;cellular;jul;tue;280;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+31;blue-collar;married;basic.9y;unknown;yes;no;telephone;jul;tue;289;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+45;blue-collar;married;basic.4y;unknown;no;no;cellular;jul;tue;791;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;yes
+55;blue-collar;married;basic.4y;no;yes;no;cellular;jul;tue;63;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+54;retired;married;basic.4y;no;yes;yes;telephone;jul;tue;533;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;yes
+30;entrepreneur;single;high.school;no;yes;no;telephone;jul;tue;501;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+30;blue-collar;divorced;basic.6y;no;no;no;cellular;jul;tue;76;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+57;self-employed;married;professional.course;no;yes;no;cellular;jul;tue;1056;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;yes
+36;blue-collar;married;basic.4y;unknown;no;no;cellular;jul;tue;753;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+48;admin.;single;university.degree;no;yes;yes;telephone;jul;tue;80;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+34;services;divorced;high.school;no;yes;no;cellular;jul;tue;317;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+55;blue-collar;married;illiterate;no;no;no;cellular;jul;tue;129;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+40;admin.;single;high.school;no;yes;no;cellular;jul;tue;237;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+36;self-employed;divorced;professional.course;unknown;yes;yes;cellular;jul;tue;110;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+30;entrepreneur;single;high.school;no;no;yes;cellular;jul;tue;295;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+34;admin.;single;university.degree;no;no;no;cellular;jul;tue;61;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+37;management;single;university.degree;no;yes;no;cellular;jul;tue;188;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+38;technician;single;professional.course;no;no;no;cellular;jul;tue;815;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;yes
+40;blue-collar;married;unknown;no;no;no;cellular;jul;tue;117;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+32;blue-collar;married;basic.9y;unknown;no;no;telephone;jul;tue;89;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+53;blue-collar;married;basic.6y;no;yes;yes;cellular;jul;tue;101;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+51;retired;married;basic.9y;no;yes;no;cellular;jul;tue;109;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+45;blue-collar;married;basic.4y;unknown;yes;no;cellular;jul;tue;315;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+37;blue-collar;married;basic.4y;no;yes;no;cellular;jul;tue;226;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+45;blue-collar;married;basic.4y;unknown;no;no;telephone;jul;tue;49;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+25;entrepreneur;single;university.degree;no;no;yes;cellular;jul;tue;280;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+26;admin.;single;university.degree;no;yes;no;cellular;jul;tue;83;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+46;technician;divorced;professional.course;no;no;no;cellular;jul;tue;121;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+43;blue-collar;married;basic.9y;no;no;no;telephone;jul;tue;778;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+31;technician;single;professional.course;no;yes;no;cellular;jul;tue;350;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+38;services;single;university.degree;no;no;no;cellular;jul;tue;368;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+29;entrepreneur;married;basic.4y;no;no;no;cellular;jul;tue;103;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+38;admin.;divorced;university.degree;no;no;no;cellular;jul;tue;232;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+28;admin.;married;high.school;unknown;no;no;cellular;jul;tue;60;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+33;admin.;married;high.school;unknown;no;no;cellular;jul;tue;87;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+33;admin.;single;university.degree;no;yes;no;cellular;jul;tue;156;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+34;entrepreneur;married;high.school;unknown;no;no;cellular;jul;tue;924;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+37;blue-collar;married;basic.6y;unknown;no;no;cellular;jul;tue;65;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+57;blue-collar;divorced;basic.6y;unknown;yes;no;cellular;jul;tue;256;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+45;admin.;married;university.degree;no;yes;no;cellular;jul;tue;132;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+27;services;single;high.school;no;unknown;unknown;telephone;jul;tue;207;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+45;services;married;basic.4y;no;no;no;telephone;jul;tue;152;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+39;blue-collar;married;unknown;unknown;yes;no;telephone;jul;tue;49;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+28;blue-collar;single;basic.4y;unknown;no;no;cellular;jul;tue;67;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+38;management;married;university.degree;no;yes;no;cellular;jul;tue;646;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+24;entrepreneur;single;university.degree;no;yes;no;cellular;jul;tue;808;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;yes
+37;admin.;divorced;high.school;no;no;no;cellular;jul;tue;81;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+33;admin.;married;high.school;unknown;yes;no;cellular;jul;tue;58;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+31;services;married;high.school;unknown;yes;no;cellular;jul;tue;178;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+32;blue-collar;single;basic.9y;no;yes;no;cellular;jul;tue;56;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+24;blue-collar;single;basic.9y;unknown;yes;no;cellular;jul;tue;88;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+31;admin.;married;high.school;unknown;yes;no;cellular;jul;tue;177;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+35;admin.;married;basic.6y;no;yes;no;cellular;jul;tue;364;10;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+39;blue-collar;married;unknown;unknown;yes;yes;cellular;jul;tue;156;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+43;services;single;high.school;no;no;no;cellular;jul;tue;1317;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;yes
+37;admin.;single;university.degree;unknown;yes;no;cellular;jul;tue;77;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+48;unemployed;married;university.degree;no;yes;yes;cellular;jul;tue;200;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+40;blue-collar;single;basic.4y;no;no;no;cellular;jul;tue;59;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+37;services;married;high.school;no;no;yes;cellular;jul;tue;126;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+31;technician;single;professional.course;no;no;no;telephone;jul;tue;174;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+31;blue-collar;married;basic.9y;unknown;no;no;cellular;jul;tue;243;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+37;admin.;single;university.degree;unknown;no;yes;cellular;jul;tue;133;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+34;management;divorced;university.degree;no;no;yes;cellular;jul;tue;321;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+53;technician;divorced;high.school;no;yes;no;cellular;jul;tue;201;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+38;admin.;divorced;university.degree;no;no;yes;telephone;jul;tue;571;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+57;blue-collar;married;unknown;no;no;no;cellular;jul;tue;137;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+26;admin.;married;university.degree;no;no;no;cellular;jul;tue;503;6;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+48;unemployed;married;university.degree;no;no;no;cellular;jul;tue;277;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+35;services;married;high.school;no;yes;no;cellular;jul;tue;377;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+45;technician;married;professional.course;no;yes;no;cellular;jul;tue;83;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+25;admin.;single;high.school;no;yes;no;cellular;jul;tue;53;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+49;blue-collar;married;basic.4y;unknown;yes;no;cellular;jul;tue;106;12;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+30;blue-collar;single;basic.4y;no;yes;no;cellular;jul;tue;82;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+30;blue-collar;single;basic.6y;no;yes;no;telephone;jul;tue;135;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+32;services;married;high.school;no;no;no;cellular;jul;tue;135;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+46;technician;divorced;professional.course;no;yes;no;cellular;jul;tue;387;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+45;retired;divorced;university.degree;no;yes;no;cellular;jul;tue;372;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+40;admin.;married;university.degree;no;yes;no;cellular;jul;tue;128;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+36;blue-collar;married;basic.4y;unknown;no;no;cellular;jul;tue;1615;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;yes
+33;housemaid;married;basic.9y;no;no;no;cellular;jul;tue;860;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;yes
+24;admin.;single;high.school;no;yes;yes;telephone;jul;tue;162;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+49;blue-collar;divorced;basic.4y;unknown;yes;no;cellular;jul;tue;246;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+47;admin.;married;basic.6y;no;unknown;unknown;cellular;jul;tue;317;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+56;management;married;basic.4y;unknown;yes;no;cellular;jul;tue;122;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+56;housemaid;married;basic.4y;unknown;no;no;cellular;jul;tue;76;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+47;admin.;married;basic.6y;no;yes;no;cellular;jul;tue;462;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+23;student;single;high.school;unknown;unknown;unknown;cellular;jul;tue;125;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+34;admin.;single;university.degree;no;no;no;cellular;jul;tue;182;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+59;blue-collar;married;basic.4y;unknown;yes;no;cellular;jul;tue;85;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+48;blue-collar;married;basic.4y;unknown;yes;no;telephone;jul;tue;277;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+31;blue-collar;married;basic.9y;no;no;no;telephone;jul;tue;280;6;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+25;services;single;high.school;no;yes;no;cellular;jul;tue;218;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+36;admin.;single;basic.9y;no;yes;no;cellular;jul;tue;274;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+35;blue-collar;divorced;basic.9y;no;yes;no;cellular;jul;tue;130;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+37;technician;married;professional.course;unknown;yes;yes;cellular;jul;tue;177;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+34;technician;divorced;professional.course;no;no;no;cellular;jul;tue;116;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+34;admin.;single;university.degree;no;no;no;cellular;jul;tue;98;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+31;blue-collar;single;basic.9y;no;yes;no;cellular;jul;tue;442;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+35;blue-collar;married;basic.6y;no;no;yes;cellular;jul;tue;92;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+33;admin.;married;high.school;unknown;yes;no;cellular;jul;tue;88;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+28;blue-collar;married;basic.9y;unknown;yes;no;telephone;jul;tue;141;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+35;blue-collar;divorced;basic.9y;no;no;no;cellular;jul;tue;658;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;yes
+31;technician;single;professional.course;no;yes;no;telephone;jul;tue;37;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+37;technician;married;professional.course;unknown;yes;yes;cellular;jul;tue;144;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+33;management;married;university.degree;no;no;no;cellular;jul;tue;794;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+56;management;married;university.degree;no;yes;no;cellular;jul;tue;90;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+37;housemaid;married;basic.4y;no;yes;no;cellular;jul;tue;70;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+26;admin.;married;basic.9y;no;no;no;cellular;jul;tue;878;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;yes
+35;housemaid;married;basic.9y;no;no;no;cellular;jul;tue;280;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+40;admin.;divorced;high.school;no;yes;no;cellular;jul;tue;193;6;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+43;blue-collar;married;basic.9y;no;no;yes;cellular;jul;tue;148;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+46;technician;divorced;professional.course;no;yes;no;cellular;jul;tue;513;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+30;services;single;high.school;no;no;yes;cellular;jul;tue;172;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+50;technician;single;university.degree;no;yes;no;cellular;jul;tue;89;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+49;blue-collar;married;basic.4y;unknown;yes;no;cellular;jul;tue;792;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+31;admin.;single;high.school;no;no;no;cellular;jul;tue;355;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+32;services;single;unknown;unknown;yes;no;cellular;jul;tue;881;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;yes
+32;services;single;unknown;unknown;no;no;cellular;jul;tue;981;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;yes
+28;blue-collar;single;high.school;no;yes;no;cellular;jul;tue;158;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+28;admin.;married;high.school;unknown;yes;yes;cellular;jul;tue;722;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+29;management;single;high.school;no;no;yes;cellular;jul;tue;103;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+33;services;married;high.school;no;yes;no;cellular;jul;tue;820;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;yes
+50;admin.;married;professional.course;no;no;no;cellular;jul;tue;1001;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;yes
+26;technician;divorced;professional.course;no;no;yes;cellular;jul;tue;500;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;yes
+26;technician;divorced;professional.course;no;yes;no;cellular;jul;tue;348;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+30;blue-collar;single;basic.4y;no;yes;no;cellular;jul;tue;122;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+32;technician;single;professional.course;no;no;yes;cellular;jul;tue;129;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+34;management;divorced;university.degree;no;yes;no;cellular;jul;tue;1228;6;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;yes
+25;blue-collar;married;high.school;unknown;yes;no;cellular;jul;tue;94;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+32;entrepreneur;single;university.degree;no;yes;no;cellular;jul;tue;192;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+37;services;married;high.school;no;yes;no;cellular;jul;tue;331;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+31;admin.;married;basic.9y;no;yes;no;cellular;jul;tue;779;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+38;admin.;single;high.school;no;no;yes;telephone;jul;tue;91;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+56;management;married;basic.4y;unknown;yes;no;cellular;jul;tue;61;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+31;admin.;single;university.degree;no;no;no;cellular;jul;tue;555;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+45;blue-collar;married;basic.4y;no;no;no;cellular;jul;tue;157;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+34;management;divorced;university.degree;no;yes;no;cellular;jul;tue;580;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+39;housemaid;single;university.degree;unknown;no;no;telephone;jul;tue;39;9;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+41;technician;married;university.degree;no;no;no;cellular;jul;tue;83;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+52;blue-collar;divorced;unknown;no;no;no;cellular;jul;tue;111;8;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+23;technician;single;university.degree;no;yes;yes;cellular;jul;tue;603;11;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+33;unemployed;single;unknown;no;no;no;cellular;jul;tue;211;6;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+52;housemaid;married;basic.4y;no;yes;yes;cellular;jul;tue;105;7;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+39;admin.;divorced;high.school;no;yes;no;cellular;jul;tue;514;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;yes
+32;technician;single;professional.course;no;yes;no;cellular;jul;tue;479;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+43;blue-collar;married;basic.9y;no;no;no;cellular;jul;tue;111;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+56;blue-collar;married;basic.4y;unknown;no;no;cellular;jul;tue;368;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+34;admin.;single;university.degree;no;no;no;cellular;jul;tue;149;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+36;housemaid;single;high.school;no;yes;no;cellular;jul;tue;257;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+35;admin.;married;university.degree;no;yes;no;cellular;jul;tue;98;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+51;admin.;divorced;professional.course;no;yes;no;cellular;jul;tue;408;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+57;blue-collar;divorced;basic.6y;unknown;yes;yes;cellular;jul;tue;329;6;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+47;blue-collar;married;basic.9y;no;no;no;cellular;jul;tue;134;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+50;admin.;married;professional.course;no;no;no;cellular;jul;tue;306;14;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+47;housemaid;married;basic.4y;unknown;yes;no;telephone;jul;tue;159;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+41;entrepreneur;married;basic.6y;no;no;no;telephone;jul;tue;275;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+30;management;divorced;basic.4y;no;yes;no;cellular;jul;tue;68;8;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+48;unemployed;married;university.degree;no;yes;no;cellular;jul;tue;135;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+34;technician;divorced;basic.6y;no;yes;no;cellular;jul;tue;716;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;yes
+36;services;single;high.school;no;no;yes;cellular;jul;tue;257;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+35;admin.;divorced;university.degree;no;yes;no;cellular;jul;tue;826;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+28;admin.;single;university.degree;no;no;no;cellular;jul;tue;35;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+35;blue-collar;divorced;basic.9y;no;no;yes;cellular;jul;tue;1083;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+43;blue-collar;married;basic.6y;no;no;no;cellular;jul;tue;235;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+34;technician;single;professional.course;no;no;yes;cellular;jul;tue;955;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;yes
+41;entrepreneur;divorced;university.degree;no;yes;no;cellular;jul;tue;194;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+33;admin.;married;high.school;unknown;yes;no;cellular;jul;tue;194;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+32;management;divorced;university.degree;no;yes;no;cellular;jul;tue;123;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+30;services;single;high.school;no;no;no;cellular;jul;tue;612;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+33;services;married;high.school;no;no;no;cellular;jul;tue;85;8;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+48;admin.;single;university.degree;no;no;no;telephone;jul;tue;237;7;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+48;admin.;single;university.degree;no;no;no;cellular;jul;tue;196;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+30;blue-collar;married;high.school;no;yes;no;cellular;jul;tue;144;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+30;entrepreneur;single;high.school;no;yes;no;cellular;jul;tue;85;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+27;technician;single;professional.course;no;yes;no;cellular;jul;tue;179;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+45;blue-collar;married;basic.9y;unknown;no;no;cellular;jul;tue;220;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+36;admin.;single;basic.9y;no;no;yes;cellular;jul;tue;155;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+40;blue-collar;married;basic.9y;no;yes;no;cellular;jul;tue;107;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+56;blue-collar;married;basic.4y;unknown;yes;no;cellular;jul;tue;260;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+55;blue-collar;married;basic.6y;unknown;no;no;cellular;jul;tue;232;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+37;admin.;single;university.degree;unknown;no;no;cellular;jul;tue;150;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+27;services;single;high.school;no;no;no;cellular;jul;tue;232;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+56;management;married;basic.4y;unknown;yes;no;cellular;jul;tue;673;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+25;entrepreneur;single;university.degree;no;no;no;cellular;jul;tue;272;7;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+43;blue-collar;married;basic.6y;no;no;yes;cellular;jul;tue;197;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+28;blue-collar;single;basic.6y;unknown;no;no;cellular;jul;tue;263;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+58;admin.;married;university.degree;no;yes;no;cellular;jul;tue;275;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+39;blue-collar;married;basic.4y;unknown;yes;yes;cellular;jul;tue;157;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+34;management;married;high.school;no;no;no;cellular;jul;tue;419;7;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+32;blue-collar;divorced;basic.9y;no;yes;no;cellular;jul;tue;146;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+44;blue-collar;married;basic.4y;no;no;no;cellular;jul;tue;115;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+43;management;married;university.degree;no;yes;no;cellular;jul;tue;347;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+32;services;single;unknown;unknown;yes;yes;cellular;jul;tue;136;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+35;blue-collar;divorced;basic.9y;no;yes;no;cellular;jul;tue;357;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+57;management;married;basic.9y;no;no;no;cellular;jul;tue;374;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+35;blue-collar;single;basic.9y;no;yes;no;cellular;jul;tue;120;6;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+34;technician;divorced;professional.course;no;no;no;cellular;jul;tue;323;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+27;blue-collar;married;basic.9y;unknown;no;no;cellular;jul;tue;364;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+50;management;married;university.degree;no;yes;no;cellular;jul;tue;98;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+48;blue-collar;married;basic.9y;no;yes;no;cellular;jul;tue;84;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+35;admin.;married;university.degree;no;unknown;unknown;telephone;jul;tue;78;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+32;blue-collar;single;basic.6y;no;unknown;unknown;telephone;jul;tue;59;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+55;blue-collar;married;basic.4y;no;no;no;cellular;jul;tue;395;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+25;blue-collar;married;high.school;unknown;no;no;cellular;jul;tue;169;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+30;blue-collar;divorced;high.school;no;no;no;cellular;jul;tue;209;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+50;admin.;married;university.degree;unknown;yes;no;cellular;jul;tue;106;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+24;blue-collar;married;basic.9y;no;no;no;cellular;jul;tue;107;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+35;unemployed;married;university.degree;no;yes;no;cellular;jul;tue;462;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+50;technician;single;university.degree;no;yes;no;cellular;jul;tue;216;7;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+32;technician;single;professional.course;no;no;no;cellular;jul;tue;769;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;yes
+45;blue-collar;single;basic.4y;unknown;yes;no;cellular;jul;tue;115;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+33;blue-collar;divorced;basic.9y;unknown;no;no;cellular;jul;tue;889;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;yes
+56;unknown;divorced;basic.4y;no;no;no;cellular;jul;tue;547;12;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+46;housemaid;single;university.degree;unknown;no;yes;cellular;jul;tue;142;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+28;technician;single;high.school;no;yes;no;telephone;jul;tue;166;6;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+48;admin.;divorced;basic.9y;no;no;no;cellular;jul;tue;1424;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;yes
+35;blue-collar;single;basic.9y;unknown;yes;no;cellular;jul;tue;53;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+27;blue-collar;single;high.school;no;unknown;unknown;cellular;jul;tue;290;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+58;retired;married;basic.4y;unknown;no;no;cellular;jul;tue;520;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+27;admin.;single;university.degree;no;yes;no;cellular;jul;tue;490;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+34;management;married;high.school;no;yes;no;cellular;jul;tue;838;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;yes
+55;retired;married;basic.4y;unknown;no;yes;cellular;jul;tue;599;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+33;admin.;single;high.school;no;yes;no;cellular;jul;tue;498;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+51;technician;divorced;high.school;no;no;no;cellular;jul;tue;166;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+34;admin.;single;university.degree;no;no;no;telephone;jul;tue;232;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+40;admin.;divorced;high.school;no;no;yes;cellular;jul;tue;270;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+56;admin.;married;basic.4y;no;yes;no;cellular;jul;tue;118;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+25;blue-collar;single;basic.9y;no;yes;no;cellular;jul;tue;159;6;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+44;blue-collar;married;basic.9y;no;no;no;telephone;jul;tue;265;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+38;admin.;divorced;university.degree;no;no;no;cellular;jul;tue;419;8;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+33;blue-collar;married;high.school;unknown;yes;no;cellular;jul;tue;624;6;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+39;blue-collar;married;basic.6y;unknown;yes;no;cellular;jul;tue;59;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+48;unemployed;married;university.degree;no;yes;no;cellular;jul;tue;812;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+48;blue-collar;married;basic.9y;no;yes;no;cellular;jul;tue;97;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+50;blue-collar;married;basic.4y;unknown;yes;no;telephone;jul;tue;119;8;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+25;admin.;single;high.school;no;yes;no;cellular;jul;tue;84;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+57;blue-collar;divorced;basic.6y;unknown;no;no;cellular;jul;tue;632;6;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;yes
+27;admin.;single;professional.course;no;no;no;cellular;jul;tue;448;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;yes
+48;unemployed;married;basic.4y;unknown;no;no;cellular;jul;tue;163;6;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+50;blue-collar;married;basic.4y;unknown;no;yes;cellular;jul;tue;231;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+46;technician;divorced;professional.course;no;no;no;cellular;jul;tue;114;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+33;services;married;high.school;no;yes;no;telephone;jul;tue;32;7;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+25;blue-collar;single;high.school;no;yes;no;telephone;jul;tue;1142;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+36;blue-collar;married;basic.4y;unknown;yes;no;cellular;jul;tue;87;8;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+44;services;divorced;basic.9y;no;yes;no;telephone;jul;tue;62;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+53;blue-collar;divorced;unknown;no;yes;no;telephone;jul;tue;341;6;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+35;admin.;married;high.school;no;no;no;cellular;jul;tue;160;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+34;blue-collar;married;basic.9y;no;yes;no;cellular;jul;tue;1412;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+24;services;single;high.school;no;no;no;telephone;jul;wed;61;14;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+24;admin.;single;high.school;no;no;no;telephone;jul;wed;41;6;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+37;entrepreneur;divorced;high.school;unknown;yes;no;cellular;jul;wed;276;4;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+58;management;divorced;university.degree;no;yes;no;cellular;jul;wed;75;4;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+37;blue-collar;married;basic.6y;no;yes;no;telephone;jul;wed;208;8;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+56;admin.;married;high.school;unknown;yes;no;cellular;jul;wed;298;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+59;retired;married;university.degree;unknown;no;no;cellular;jul;wed;767;5;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;yes
+58;management;divorced;university.degree;no;yes;no;telephone;jul;wed;174;5;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+33;admin.;single;unknown;no;no;yes;cellular;jul;wed;186;4;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+38;self-employed;married;professional.course;no;no;no;cellular;jul;wed;350;7;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+34;blue-collar;married;basic.4y;no;no;no;cellular;jul;wed;52;7;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+27;services;single;professional.course;no;unknown;unknown;telephone;jul;wed;46;8;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+31;admin.;married;university.degree;no;yes;no;cellular;jul;wed;510;3;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+29;student;married;university.degree;no;yes;no;cellular;jul;wed;81;7;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+33;blue-collar;divorced;basic.9y;unknown;yes;yes;cellular;jul;wed;464;3;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+24;admin.;single;high.school;no;no;no;cellular;jul;wed;220;5;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+38;blue-collar;married;basic.4y;unknown;yes;no;telephone;jul;wed;31;6;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+30;self-employed;single;university.degree;no;no;no;cellular;jul;wed;1147;4;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+26;admin.;married;high.school;no;no;no;cellular;jul;wed;130;6;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+34;admin.;married;high.school;no;yes;no;cellular;jul;wed;95;4;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+26;technician;single;professional.course;no;no;no;cellular;jul;wed;161;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+49;blue-collar;married;basic.6y;unknown;no;no;cellular;jul;wed;221;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+55;housemaid;married;basic.4y;no;no;no;cellular;jul;wed;469;7;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+26;technician;single;professional.course;no;unknown;unknown;cellular;jul;wed;578;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;yes
+30;self-employed;married;university.degree;no;yes;no;telephone;jul;wed;51;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+37;entrepreneur;divorced;high.school;unknown;no;no;cellular;jul;wed;111;4;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+49;blue-collar;married;basic.6y;unknown;no;no;cellular;jul;wed;771;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+33;blue-collar;married;basic.9y;unknown;yes;no;telephone;jul;wed;164;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+37;technician;single;university.degree;unknown;yes;no;cellular;jul;wed;390;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+31;admin.;married;university.degree;no;yes;yes;cellular;jul;wed;154;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+30;blue-collar;married;unknown;no;yes;no;cellular;jul;wed;171;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+33;blue-collar;divorced;basic.9y;unknown;no;no;telephone;jul;wed;155;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+24;blue-collar;married;basic.9y;unknown;no;no;cellular;jul;wed;349;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;yes
+34;admin.;single;university.degree;no;yes;no;cellular;jul;wed;46;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+43;technician;single;professional.course;unknown;yes;no;cellular;jul;wed;574;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+31;blue-collar;married;basic.9y;no;no;no;cellular;jul;wed;715;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+43;housemaid;married;basic.9y;unknown;no;no;cellular;jul;wed;96;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+55;blue-collar;married;basic.4y;no;no;no;cellular;jul;wed;525;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+28;blue-collar;single;basic.6y;unknown;yes;no;cellular;jul;wed;70;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+31;blue-collar;married;basic.9y;no;yes;no;cellular;jul;wed;229;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+43;blue-collar;single;basic.6y;no;yes;yes;cellular;jul;wed;1806;4;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;yes
+28;blue-collar;single;basic.6y;unknown;yes;no;cellular;jul;wed;400;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+49;blue-collar;divorced;unknown;unknown;no;no;cellular;jul;wed;92;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+49;blue-collar;divorced;unknown;unknown;yes;no;cellular;jul;wed;284;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+34;technician;divorced;professional.course;no;no;no;cellular;jul;wed;130;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+27;services;married;high.school;no;no;no;cellular;jul;wed;151;4;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+32;blue-collar;single;basic.6y;no;yes;no;cellular;jul;wed;46;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+48;blue-collar;married;basic.6y;no;yes;no;cellular;jul;wed;79;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+37;entrepreneur;divorced;high.school;unknown;no;no;cellular;jul;wed;344;3;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+49;blue-collar;divorced;unknown;unknown;no;no;cellular;jul;wed;291;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+31;self-employed;married;basic.9y;no;no;no;cellular;jul;wed;56;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+50;blue-collar;married;basic.9y;no;yes;no;cellular;jul;wed;153;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+34;technician;divorced;professional.course;no;yes;no;cellular;jul;wed;401;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+31;blue-collar;single;basic.9y;no;no;no;telephone;jul;wed;138;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+52;management;married;university.degree;unknown;no;no;cellular;jul;wed;272;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+24;admin.;single;high.school;no;yes;no;cellular;jul;wed;145;4;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+49;services;married;high.school;unknown;yes;no;cellular;jul;wed;122;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+49;services;married;high.school;unknown;yes;no;cellular;jul;wed;226;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+45;unemployed;married;basic.6y;unknown;no;no;cellular;jul;wed;211;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+39;technician;married;unknown;no;yes;no;cellular;jul;wed;94;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+28;admin.;married;basic.9y;unknown;no;no;cellular;jul;wed;428;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+32;admin.;single;high.school;no;yes;no;cellular;jul;wed;156;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+29;technician;divorced;high.school;no;no;no;cellular;jul;wed;191;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+45;management;married;university.degree;unknown;no;no;cellular;jul;wed;225;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+39;technician;married;high.school;unknown;no;no;cellular;jul;wed;781;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;yes
+45;unknown;unknown;unknown;no;yes;yes;cellular;jul;wed;496;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;yes
+45;unknown;unknown;unknown;no;yes;no;cellular;jul;wed;586;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;yes
+34;blue-collar;single;basic.6y;no;yes;yes;cellular;jul;wed;195;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+55;management;married;basic.9y;no;yes;no;cellular;jul;wed;49;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+55;management;married;basic.9y;no;yes;no;cellular;jul;wed;90;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+49;blue-collar;divorced;unknown;unknown;no;no;cellular;jul;wed;339;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+29;services;married;unknown;no;yes;yes;cellular;jul;wed;268;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+27;blue-collar;married;basic.9y;no;no;no;cellular;jul;wed;689;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;yes
+45;management;married;high.school;unknown;no;no;cellular;jul;wed;94;3;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+29;technician;divorced;high.school;no;no;no;cellular;jul;wed;269;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+58;retired;divorced;basic.4y;unknown;no;no;cellular;jul;wed;303;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+56;admin.;married;high.school;unknown;no;no;cellular;jul;wed;120;4;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+49;retired;married;high.school;no;yes;no;cellular;jul;wed;239;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+31;blue-collar;married;basic.9y;no;no;no;cellular;jul;wed;129;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+35;admin.;single;university.degree;no;no;yes;telephone;jul;wed;98;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+49;retired;married;high.school;no;yes;no;cellular;jul;wed;555;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;yes
+37;technician;married;high.school;no;yes;no;cellular;jul;wed;130;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+34;admin.;married;university.degree;no;yes;no;cellular;jul;wed;686;6;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;yes
+32;technician;married;university.degree;no;no;no;cellular;jul;wed;124;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+34;admin.;married;high.school;no;yes;yes;cellular;jul;wed;29;8;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+43;technician;single;professional.course;unknown;no;no;cellular;jul;wed;528;9;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+26;technician;single;professional.course;no;no;no;cellular;jul;wed;83;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+23;blue-collar;single;high.school;no;yes;no;cellular;jul;wed;60;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+23;blue-collar;single;high.school;no;no;no;cellular;jul;wed;251;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+49;blue-collar;divorced;unknown;unknown;yes;no;cellular;jul;wed;206;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+30;admin.;married;university.degree;no;yes;no;cellular;jul;wed;1150;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+26;services;single;basic.9y;no;yes;no;cellular;jul;wed;294;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+23;blue-collar;single;high.school;no;no;no;cellular;jul;wed;435;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;yes
+31;self-employed;married;basic.9y;no;no;no;cellular;jul;wed;155;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+29;admin.;single;university.degree;no;yes;no;cellular;jul;wed;130;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+52;blue-collar;married;basic.4y;unknown;yes;no;cellular;jul;wed;294;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+42;services;married;high.school;unknown;no;yes;telephone;jul;wed;198;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+47;blue-collar;single;basic.9y;unknown;yes;no;cellular;jul;wed;72;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+23;blue-collar;single;high.school;no;yes;no;cellular;jul;wed;830;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;yes
+24;services;single;high.school;no;yes;no;cellular;jul;wed;57;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+44;blue-collar;married;basic.4y;no;yes;no;cellular;jul;wed;464;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+24;blue-collar;divorced;high.school;no;yes;no;cellular;jul;wed;57;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+26;technician;single;professional.course;no;yes;no;cellular;jul;wed;76;7;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+47;blue-collar;single;basic.9y;unknown;yes;no;cellular;jul;wed;318;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+29;admin.;married;university.degree;no;yes;no;cellular;jul;wed;39;9;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+29;admin.;single;university.degree;no;no;no;cellular;jul;wed;873;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;yes
+31;blue-collar;single;high.school;no;no;no;cellular;jul;wed;166;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+30;admin.;married;high.school;no;no;no;cellular;jul;wed;227;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+25;admin.;single;high.school;no;yes;no;cellular;jul;wed;202;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+27;technician;single;high.school;no;yes;no;telephone;jul;wed;109;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+29;blue-collar;single;basic.9y;no;no;no;cellular;jul;wed;243;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+34;technician;single;university.degree;no;yes;no;cellular;jul;wed;329;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+44;blue-collar;married;basic.4y;no;yes;no;cellular;jul;wed;214;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+41;blue-collar;single;basic.6y;no;yes;no;cellular;jul;wed;142;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+32;blue-collar;married;basic.6y;no;yes;no;cellular;jul;wed;151;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+31;admin.;single;university.degree;no;yes;no;cellular;jul;wed;335;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+37;services;divorced;basic.9y;no;no;no;cellular;jul;wed;143;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+37;services;divorced;basic.9y;no;yes;no;cellular;jul;wed;122;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+35;blue-collar;single;basic.9y;no;yes;no;cellular;jul;wed;48;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+34;admin.;married;university.degree;no;no;no;cellular;jul;wed;198;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+31;admin.;single;high.school;no;yes;no;cellular;jul;wed;183;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+31;unemployed;single;high.school;no;yes;yes;cellular;jul;wed;45;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+37;services;divorced;basic.9y;no;yes;no;cellular;jul;wed;684;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+31;unemployed;single;high.school;no;yes;no;cellular;jul;wed;255;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+31;management;single;university.degree;no;no;no;cellular;jul;wed;143;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+37;services;divorced;basic.9y;no;no;no;cellular;jul;wed;885;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+50;retired;married;basic.4y;no;no;no;cellular;jul;wed;1222;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;yes
+31;blue-collar;married;basic.9y;no;yes;yes;cellular;jul;wed;520;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+50;retired;married;basic.4y;no;yes;no;cellular;jul;wed;128;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+29;admin.;single;university.degree;no;yes;no;cellular;jul;wed;156;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+31;blue-collar;single;basic.9y;no;yes;no;cellular;jul;wed;325;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+50;retired;married;basic.4y;no;unknown;unknown;cellular;jul;wed;236;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+52;admin.;married;high.school;no;yes;no;cellular;jul;wed;419;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+42;technician;married;high.school;unknown;yes;no;cellular;jul;wed;197;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+47;technician;divorced;professional.course;no;yes;no;cellular;jul;wed;226;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+55;housemaid;married;university.degree;no;yes;no;cellular;jul;wed;705;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+26;admin.;married;university.degree;no;yes;no;telephone;jul;wed;649;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+37;blue-collar;married;basic.9y;no;no;no;cellular;jul;wed;77;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+23;blue-collar;single;high.school;no;yes;no;cellular;jul;wed;231;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+29;self-employed;single;university.degree;no;yes;no;cellular;jul;wed;513;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+31;technician;married;professional.course;no;yes;no;cellular;jul;wed;87;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+55;housemaid;married;university.degree;no;no;no;cellular;jul;wed;988;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;yes
+21;admin.;single;high.school;no;yes;no;cellular;jul;wed;102;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+21;admin.;single;high.school;no;yes;no;cellular;jul;wed;111;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+34;admin.;married;high.school;unknown;no;no;cellular;jul;wed;241;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+46;blue-collar;single;basic.4y;unknown;yes;no;telephone;jul;wed;558;6;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+28;services;married;high.school;no;yes;yes;cellular;jul;wed;177;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+21;admin.;single;high.school;no;yes;no;cellular;jul;wed;680;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+35;admin.;single;high.school;no;yes;yes;cellular;jul;wed;652;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;yes
+28;services;married;high.school;no;yes;no;cellular;jul;wed;350;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+58;retired;married;high.school;no;yes;no;cellular;jul;wed;124;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+28;services;married;high.school;no;no;no;cellular;jul;wed;359;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+49;management;single;basic.4y;unknown;yes;no;cellular;jul;wed;592;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+39;blue-collar;married;basic.9y;unknown;yes;no;cellular;jul;wed;165;5;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+25;services;married;basic.9y;no;no;no;cellular;jul;wed;128;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+27;blue-collar;married;basic.9y;no;no;no;cellular;jul;wed;68;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+26;technician;married;basic.9y;unknown;yes;no;telephone;jul;wed;367;6;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;yes
+25;management;married;basic.6y;no;no;no;cellular;jul;wed;192;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+27;blue-collar;married;basic.9y;no;no;no;cellular;jul;wed;128;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+25;services;divorced;high.school;no;yes;no;cellular;jul;wed;158;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+30;blue-collar;married;basic.9y;no;yes;no;cellular;jul;wed;547;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+33;blue-collar;married;basic.9y;no;yes;no;cellular;jul;wed;1019;11;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;yes
+43;blue-collar;single;basic.6y;no;no;no;cellular;jul;wed;93;3;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+43;technician;married;high.school;no;no;no;cellular;jul;wed;332;3;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+52;admin.;married;high.school;no;no;no;cellular;jul;wed;131;7;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+48;blue-collar;married;basic.6y;unknown;yes;no;cellular;jul;wed;709;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;yes
+29;self-employed;married;basic.9y;unknown;yes;no;telephone;jul;wed;188;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+25;services;married;high.school;unknown;no;no;cellular;jul;wed;59;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+41;blue-collar;married;unknown;unknown;no;no;cellular;jul;wed;516;4;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+51;blue-collar;married;basic.9y;no;yes;no;cellular;jul;wed;561;9;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;yes
+21;services;single;high.school;no;yes;no;telephone;jul;wed;198;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+49;services;married;high.school;unknown;yes;no;cellular;jul;wed;346;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+33;entrepreneur;married;professional.course;no;yes;no;cellular;jul;wed;157;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+40;services;married;high.school;no;yes;no;cellular;jul;wed;254;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+43;blue-collar;single;basic.6y;no;yes;no;cellular;jul;wed;199;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+34;blue-collar;married;basic.4y;unknown;no;no;cellular;jul;wed;171;6;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+31;admin.;married;university.degree;no;yes;no;cellular;jul;wed;101;3;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+24;technician;single;professional.course;no;no;no;cellular;jul;wed;98;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+59;retired;married;university.degree;unknown;yes;yes;cellular;jul;wed;87;16;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+38;blue-collar;married;basic.9y;no;yes;no;cellular;jul;wed;217;9;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+27;housemaid;single;high.school;no;no;no;cellular;jul;wed;293;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+29;blue-collar;married;professional.course;no;no;no;cellular;jul;wed;378;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+29;admin.;single;university.degree;no;no;no;telephone;jul;wed;129;6;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+49;blue-collar;divorced;unknown;unknown;no;no;cellular;jul;wed;132;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+28;services;married;high.school;no;no;no;cellular;jul;wed;240;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+45;unemployed;married;basic.6y;unknown;no;no;cellular;jul;wed;91;3;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+31;admin.;single;basic.9y;no;no;no;cellular;jul;wed;1432;5;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+43;technician;single;professional.course;unknown;no;no;telephone;jul;wed;87;5;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+29;services;married;high.school;unknown;no;no;cellular;jul;wed;111;4;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+55;housemaid;married;basic.4y;no;no;no;cellular;jul;wed;141;7;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+43;technician;married;high.school;no;no;no;cellular;jul;wed;322;4;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+34;blue-collar;single;basic.6y;no;unknown;unknown;cellular;jul;wed;254;3;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+26;admin.;single;university.degree;no;yes;no;cellular;jul;wed;455;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+34;blue-collar;married;basic.4y;unknown;no;no;cellular;jul;wed;285;5;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+51;admin.;married;high.school;no;yes;no;cellular;jul;wed;69;3;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+47;blue-collar;single;basic.9y;unknown;yes;no;cellular;jul;wed;89;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+30;blue-collar;married;basic.6y;no;yes;yes;cellular;jul;wed;1018;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;yes
+35;blue-collar;single;high.school;unknown;yes;no;cellular;jul;wed;60;5;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+34;admin.;single;university.degree;unknown;no;no;cellular;jul;wed;212;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+26;technician;single;professional.course;no;yes;no;cellular;jul;wed;173;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+36;management;single;university.degree;no;no;no;cellular;jul;wed;101;7;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+43;technician;married;basic.9y;no;no;no;cellular;jul;wed;110;6;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+29;technician;divorced;high.school;no;yes;no;cellular;jul;wed;128;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+35;student;married;basic.9y;no;no;no;cellular;jul;wed;156;6;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+58;admin.;divorced;basic.9y;no;no;no;telephone;jul;wed;231;5;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+38;blue-collar;married;basic.4y;unknown;yes;no;cellular;jul;wed;406;4;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+49;blue-collar;divorced;unknown;unknown;no;no;cellular;jul;wed;255;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+37;entrepreneur;divorced;high.school;unknown;yes;no;cellular;jul;wed;538;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+44;admin.;divorced;university.degree;no;no;no;cellular;jul;wed;191;6;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+23;blue-collar;married;basic.9y;no;yes;no;cellular;jul;wed;240;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+36;management;single;university.degree;no;yes;no;cellular;jul;wed;118;5;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+47;technician;married;unknown;unknown;yes;no;cellular;jul;wed;239;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+29;admin.;single;university.degree;no;no;no;cellular;jul;wed;164;6;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+29;admin.;single;university.degree;no;yes;no;telephone;jul;wed;73;6;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+28;blue-collar;single;basic.9y;unknown;no;yes;cellular;jul;wed;278;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+42;technician;married;high.school;unknown;no;no;cellular;jul;wed;252;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+29;admin.;single;university.degree;no;yes;no;cellular;jul;wed;77;6;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+37;blue-collar;married;basic.6y;unknown;yes;no;cellular;jul;wed;345;10;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+40;admin.;single;high.school;no;no;no;cellular;jul;wed;282;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+43;technician;single;professional.course;unknown;yes;no;telephone;jul;wed;39;7;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+33;management;married;basic.6y;no;no;no;cellular;jul;wed;169;5;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+34;admin.;married;university.degree;no;no;no;cellular;jul;wed;781;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;yes
+27;admin.;married;high.school;no;yes;no;telephone;jul;wed;202;6;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+29;technician;single;university.degree;no;no;yes;telephone;jul;wed;357;7;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+29;technician;single;university.degree;no;no;no;cellular;jul;wed;159;6;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+43;technician;married;high.school;no;no;no;cellular;jul;wed;1389;7;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+41;blue-collar;single;basic.6y;no;yes;no;cellular;jul;wed;1056;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+29;admin.;single;university.degree;no;yes;yes;cellular;jul;wed;166;6;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+26;technician;single;professional.course;no;no;yes;cellular;jul;wed;168;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+26;admin.;single;university.degree;no;no;no;cellular;jul;wed;212;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+46;management;divorced;basic.4y;no;no;no;telephone;jul;wed;201;5;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+28;services;married;basic.9y;no;no;no;cellular;jul;wed;191;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+37;technician;married;high.school;no;yes;no;cellular;jul;wed;1339;3;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+26;admin.;single;university.degree;no;yes;no;telephone;jul;wed;30;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+24;management;married;basic.9y;no;no;no;telephone;jul;wed;127;11;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+29;admin.;married;university.degree;no;no;no;cellular;jul;wed;319;5;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+38;management;single;university.degree;no;no;no;telephone;jul;wed;284;8;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+43;technician;married;basic.9y;no;no;yes;telephone;jul;wed;264;5;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+35;services;married;basic.9y;no;no;yes;cellular;jul;wed;204;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+23;blue-collar;single;unknown;unknown;no;no;cellular;jul;wed;1473;6;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+24;blue-collar;married;basic.9y;no;no;no;cellular;jul;wed;255;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+55;admin.;single;high.school;no;no;yes;cellular;jul;wed;108;5;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+37;entrepreneur;divorced;high.school;unknown;no;no;cellular;jul;wed;524;4;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+29;self-employed;single;university.degree;no;yes;no;cellular;jul;wed;26;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+29;admin.;married;university.degree;no;yes;no;cellular;jul;wed;184;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+30;admin.;single;university.degree;no;yes;yes;cellular;jul;wed;613;3;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+29;admin.;married;university.degree;no;no;no;cellular;jul;wed;268;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+44;blue-collar;married;basic.6y;unknown;no;no;cellular;jul;wed;605;6;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+33;technician;divorced;professional.course;no;no;no;cellular;jul;thu;93;7;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+32;admin.;single;high.school;no;no;no;cellular;jul;thu;98;3;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+33;services;single;high.school;no;yes;no;cellular;jul;thu;63;11;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+49;blue-collar;divorced;basic.6y;unknown;yes;no;cellular;jul;thu;128;3;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+32;admin.;single;basic.9y;no;no;no;cellular;jul;thu;185;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+33;management;married;university.degree;no;no;no;cellular;jul;thu;66;7;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+23;retired;single;professional.course;no;yes;no;cellular;jul;thu;102;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+30;technician;married;high.school;no;no;no;cellular;jul;thu;199;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+52;technician;married;professional.course;no;yes;no;telephone;jul;thu;293;20;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+36;management;married;university.degree;no;no;yes;cellular;jul;thu;59;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+32;admin.;single;basic.9y;no;no;no;cellular;jul;thu;330;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+32;admin.;single;high.school;no;yes;no;telephone;jul;thu;209;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+36;admin.;divorced;university.degree;no;yes;no;cellular;jul;thu;59;3;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+36;blue-collar;married;basic.9y;unknown;yes;no;cellular;jul;thu;159;3;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+28;self-employed;single;high.school;no;no;no;cellular;jul;thu;63;6;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+25;admin.;married;high.school;no;no;no;cellular;jul;thu;298;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+37;blue-collar;married;high.school;unknown;no;no;cellular;jul;thu;413;4;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+36;blue-collar;married;basic.9y;unknown;yes;no;cellular;jul;thu;53;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+40;management;single;university.degree;no;no;no;cellular;jul;thu;309;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+30;admin.;single;university.degree;no;no;no;cellular;jul;thu;257;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+30;admin.;single;university.degree;no;no;no;cellular;jul;thu;36;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+35;blue-collar;married;basic.9y;no;yes;no;cellular;jul;thu;55;14;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+30;admin.;married;basic.6y;no;yes;yes;cellular;jul;thu;53;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+39;blue-collar;married;basic.4y;no;yes;no;cellular;jul;thu;71;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+24;student;single;university.degree;unknown;yes;no;cellular;jul;thu;20;3;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+37;blue-collar;married;basic.9y;unknown;yes;no;cellular;jul;thu;117;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+28;admin.;single;high.school;no;yes;no;cellular;jul;thu;80;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+26;technician;single;university.degree;no;yes;no;cellular;jul;thu;261;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+36;blue-collar;married;basic.6y;no;no;no;cellular;jul;thu;201;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+34;entrepreneur;married;professional.course;no;yes;no;cellular;jul;thu;109;4;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+30;admin.;married;basic.6y;no;yes;no;cellular;jul;thu;397;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+38;blue-collar;married;basic.9y;no;no;no;cellular;jul;thu;69;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+36;blue-collar;married;basic.9y;unknown;yes;no;telephone;jul;thu;264;3;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+29;admin.;married;high.school;no;no;no;cellular;jul;thu;48;7;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+44;technician;single;professional.course;no;yes;no;cellular;jul;thu;90;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+28;blue-collar;single;basic.9y;no;no;no;cellular;jul;thu;72;3;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+34;entrepreneur;married;professional.course;no;yes;no;cellular;jul;thu;94;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+41;technician;married;professional.course;no;yes;yes;cellular;jul;thu;539;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+32;blue-collar;married;basic.6y;unknown;yes;no;cellular;jul;thu;317;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+24;services;single;high.school;no;no;no;cellular;jul;thu;1150;3;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;yes
+25;blue-collar;married;basic.4y;no;yes;no;cellular;jul;thu;144;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+26;services;single;high.school;no;no;yes;cellular;jul;thu;126;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+42;services;married;high.school;no;yes;yes;cellular;jul;thu;302;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+44;technician;single;professional.course;no;yes;yes;cellular;jul;thu;123;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+47;blue-collar;married;basic.4y;unknown;yes;yes;cellular;jul;thu;114;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+25;blue-collar;married;basic.4y;no;yes;no;cellular;jul;thu;235;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+35;entrepreneur;single;university.degree;no;no;no;cellular;jul;thu;196;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+35;unemployed;married;high.school;no;no;yes;telephone;jul;thu;84;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+26;blue-collar;married;basic.9y;no;yes;no;cellular;jul;thu;106;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+31;blue-collar;married;basic.9y;unknown;yes;no;telephone;jul;thu;151;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+54;blue-collar;married;basic.9y;unknown;yes;no;cellular;jul;thu;102;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+25;blue-collar;married;basic.4y;no;no;yes;cellular;jul;thu;521;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+36;blue-collar;married;basic.9y;no;yes;no;cellular;jul;thu;181;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+35;self-employed;married;university.degree;no;yes;no;cellular;jul;thu;50;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+55;housemaid;divorced;unknown;unknown;yes;no;cellular;jul;thu;80;5;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+26;technician;divorced;unknown;unknown;no;no;cellular;jul;thu;187;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+40;services;married;basic.9y;no;yes;no;cellular;jul;thu;158;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+49;services;single;high.school;no;yes;yes;cellular;jul;thu;205;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+49;self-employed;married;university.degree;no;no;no;cellular;jul;thu;114;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+40;services;married;basic.9y;no;no;no;cellular;jul;thu;228;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+24;services;single;high.school;no;no;no;cellular;jul;thu;20;3;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+35;self-employed;married;university.degree;no;yes;no;cellular;jul;thu;628;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+35;blue-collar;single;high.school;unknown;no;no;cellular;jul;thu;117;3;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+24;blue-collar;single;basic.9y;no;no;no;cellular;jul;thu;418;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+48;admin.;married;high.school;unknown;yes;yes;cellular;jul;thu;64;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+28;blue-collar;single;basic.9y;no;no;no;cellular;jul;thu;302;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+30;blue-collar;single;basic.9y;no;yes;no;telephone;jul;thu;17;3;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+45;services;married;basic.9y;no;no;no;cellular;jul;thu;50;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+44;admin.;married;university.degree;no;no;no;cellular;jul;thu;72;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+32;admin.;married;university.degree;no;yes;no;cellular;jul;thu;72;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+29;admin.;single;university.degree;no;yes;yes;cellular;jul;thu;258;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+32;admin.;married;university.degree;no;no;no;cellular;jul;thu;45;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+45;admin.;single;university.degree;no;yes;no;cellular;jul;thu;544;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+49;technician;divorced;high.school;no;no;no;cellular;jul;thu;124;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+31;services;single;basic.9y;no;yes;no;cellular;jul;thu;753;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;yes
+43;blue-collar;single;basic.6y;no;yes;no;cellular;jul;thu;391;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+49;services;single;high.school;no;yes;no;cellular;jul;thu;72;6;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+31;student;single;university.degree;no;no;no;cellular;jul;thu;84;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+29;admin.;single;university.degree;no;no;no;cellular;jul;thu;686;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+31;student;single;university.degree;no;yes;no;cellular;jul;thu;277;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+27;blue-collar;single;basic.9y;no;yes;no;cellular;jul;thu;64;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+49;technician;divorced;high.school;no;yes;no;cellular;jul;thu;388;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+31;student;single;university.degree;no;yes;no;cellular;jul;thu;324;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+27;blue-collar;single;basic.9y;no;yes;no;cellular;jul;thu;295;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+27;blue-collar;single;basic.9y;no;no;no;cellular;jul;thu;284;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+27;blue-collar;single;basic.9y;no;no;no;cellular;jul;thu;86;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+47;blue-collar;divorced;basic.9y;no;yes;no;cellular;jul;thu;504;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+49;technician;divorced;high.school;no;yes;no;cellular;jul;thu;1171;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+32;entrepreneur;married;basic.9y;no;yes;no;cellular;jul;thu;430;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+43;technician;single;university.degree;no;yes;no;cellular;jul;thu;201;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+43;technician;married;basic.9y;no;yes;no;cellular;jul;thu;50;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+26;technician;single;high.school;no;no;no;cellular;jul;thu;224;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+43;technician;single;university.degree;no;yes;no;cellular;jul;thu;272;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+49;self-employed;married;basic.9y;unknown;yes;no;cellular;jul;thu;82;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+31;self-employed;divorced;university.degree;no;unknown;unknown;cellular;jul;thu;262;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+49;admin.;single;university.degree;no;yes;no;telephone;jul;thu;344;10;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+27;blue-collar;single;basic.9y;no;yes;no;cellular;jul;thu;818;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+43;technician;single;university.degree;no;yes;no;cellular;jul;thu;534;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+52;technician;married;professional.course;no;yes;no;cellular;jul;thu;402;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+24;technician;single;basic.6y;no;yes;no;cellular;jul;thu;127;5;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+37;blue-collar;married;basic.4y;no;no;no;cellular;jul;thu;89;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+27;admin.;single;high.school;unknown;yes;no;cellular;jul;thu;87;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+27;admin.;single;high.school;unknown;yes;no;cellular;jul;thu;97;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+27;blue-collar;single;basic.9y;no;no;no;cellular;jul;thu;324;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+42;entrepreneur;married;basic.4y;unknown;yes;no;cellular;jul;thu;287;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+27;admin.;single;high.school;unknown;yes;no;cellular;jul;thu;284;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+30;blue-collar;married;basic.9y;unknown;yes;no;cellular;jul;thu;67;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+41;entrepreneur;married;professional.course;no;yes;no;cellular;jul;thu;156;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+33;management;single;basic.9y;no;yes;no;cellular;jul;thu;234;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+34;blue-collar;married;basic.4y;no;yes;no;cellular;jul;thu;54;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+50;blue-collar;married;unknown;unknown;no;no;cellular;jul;thu;59;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+50;blue-collar;married;unknown;unknown;no;no;cellular;jul;thu;134;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+49;admin.;single;university.degree;no;yes;no;telephone;jul;thu;167;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+50;blue-collar;married;unknown;unknown;yes;no;cellular;jul;thu;58;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+33;management;single;basic.9y;no;yes;no;cellular;jul;thu;509;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+30;unemployed;married;professional.course;no;unknown;unknown;cellular;jul;thu;156;6;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+50;blue-collar;married;unknown;unknown;no;no;cellular;jul;thu;200;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+39;admin.;divorced;high.school;no;yes;yes;cellular;jul;thu;354;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+27;unemployed;single;university.degree;no;yes;no;cellular;jul;thu;143;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+34;technician;single;professional.course;no;no;no;cellular;jul;thu;28;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+50;blue-collar;married;unknown;unknown;yes;no;cellular;jul;thu;224;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+42;housemaid;married;basic.9y;no;yes;no;cellular;jul;thu;410;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+34;technician;single;professional.course;no;yes;no;cellular;jul;thu;109;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+50;blue-collar;married;unknown;unknown;no;no;cellular;jul;thu;1275;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;yes
+30;entrepreneur;single;university.degree;no;yes;no;cellular;jul;thu;11;12;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+50;blue-collar;married;unknown;unknown;no;no;cellular;jul;thu;1183;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+25;blue-collar;single;basic.9y;no;no;no;cellular;jul;thu;692;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+58;blue-collar;divorced;basic.4y;no;yes;no;cellular;jul;thu;158;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+31;admin.;single;university.degree;no;yes;yes;cellular;jul;thu;120;3;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+47;blue-collar;married;basic.4y;unknown;no;no;cellular;jul;thu;136;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+50;blue-collar;married;unknown;unknown;no;no;cellular;jul;thu;114;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+51;blue-collar;married;basic.4y;unknown;yes;no;cellular;jul;thu;118;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+29;admin.;single;university.degree;no;yes;no;telephone;jul;thu;109;3;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+59;retired;single;high.school;no;yes;no;cellular;jul;thu;143;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+24;admin.;single;high.school;unknown;unknown;unknown;cellular;jul;thu;84;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+24;admin.;single;high.school;unknown;yes;no;telephone;jul;thu;15;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+30;technician;married;basic.9y;no;no;yes;cellular;jul;thu;536;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+35;admin.;married;high.school;no;no;no;cellular;jul;thu;490;7;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+24;admin.;single;high.school;unknown;yes;no;cellular;jul;thu;282;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+25;blue-collar;married;basic.4y;no;no;yes;telephone;jul;thu;1008;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;yes
+24;admin.;single;high.school;unknown;yes;yes;cellular;jul;thu;493;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+24;admin.;single;high.school;unknown;yes;no;cellular;jul;thu;421;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+24;admin.;single;high.school;unknown;yes;no;cellular;jul;thu;259;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+32;technician;married;university.degree;no;yes;no;cellular;jul;thu;80;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+29;unemployed;married;university.degree;no;yes;no;cellular;jul;thu;202;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+42;housemaid;married;basic.9y;no;yes;yes;cellular;jul;thu;301;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+39;housemaid;divorced;basic.9y;no;yes;no;cellular;jul;thu;105;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+29;unemployed;married;university.degree;no;no;no;cellular;jul;thu;509;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+23;management;single;university.degree;no;no;yes;cellular;jul;thu;49;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+23;management;single;university.degree;no;yes;no;cellular;jul;thu;134;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+27;unemployed;single;university.degree;no;yes;yes;cellular;jul;thu;538;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;yes
+41;entrepreneur;divorced;basic.9y;no;yes;yes;cellular;jul;thu;115;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+41;entrepreneur;divorced;basic.9y;no;yes;no;cellular;jul;thu;179;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+34;blue-collar;married;basic.4y;unknown;yes;yes;cellular;jul;thu;195;3;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+38;management;married;university.degree;no;yes;yes;cellular;jul;thu;68;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+23;management;single;university.degree;no;no;no;cellular;jul;thu;795;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;yes
+35;blue-collar;married;basic.9y;no;yes;no;cellular;jul;thu;225;3;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+39;housemaid;divorced;basic.9y;no;no;no;cellular;jul;thu;926;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;yes
+41;entrepreneur;divorced;basic.9y;no;yes;yes;cellular;jul;thu;219;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+58;retired;married;high.school;no;no;no;cellular;jul;thu;119;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+58;retired;married;high.school;no;yes;no;cellular;jul;thu;232;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+58;retired;married;high.school;no;yes;no;cellular;jul;thu;245;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+33;technician;divorced;university.degree;no;yes;yes;cellular;jul;thu;260;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+34;admin.;unknown;university.degree;no;yes;no;cellular;jul;thu;243;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+24;admin.;single;high.school;unknown;yes;no;cellular;jul;thu;470;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+35;self-employed;married;university.degree;no;no;no;cellular;jul;thu;109;3;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+27;student;single;university.degree;no;yes;no;cellular;jul;thu;172;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+27;student;single;university.degree;no;unknown;unknown;cellular;jul;thu;312;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+27;student;single;university.degree;no;yes;no;cellular;jul;thu;393;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+49;admin.;married;high.school;unknown;yes;no;cellular;jul;thu;71;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+45;services;married;basic.9y;unknown;yes;no;cellular;jul;thu;157;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+27;admin.;single;high.school;no;yes;no;cellular;jul;thu;130;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+45;services;married;basic.9y;unknown;yes;yes;cellular;jul;thu;270;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+32;admin.;single;university.degree;no;no;no;cellular;jul;thu;79;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+27;blue-collar;married;basic.9y;no;no;yes;cellular;jul;thu;655;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+49;technician;divorced;high.school;no;no;no;cellular;jul;thu;123;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+45;services;married;basic.9y;unknown;no;yes;cellular;jul;thu;479;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+32;admin.;single;university.degree;no;yes;no;cellular;jul;thu;96;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+54;blue-collar;married;basic.9y;unknown;no;no;cellular;jul;thu;225;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+33;services;divorced;high.school;no;no;no;cellular;jul;thu;654;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+27;student;single;university.degree;no;yes;no;cellular;jul;thu;747;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+29;technician;married;high.school;unknown;no;no;cellular;jul;thu;321;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+36;technician;single;professional.course;no;no;no;cellular;jul;thu;54;4;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+25;technician;single;professional.course;no;yes;no;cellular;jul;thu;312;5;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+32;admin.;single;university.degree;no;no;yes;cellular;jul;thu;1027;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;yes
+32;self-employed;single;university.degree;no;yes;no;cellular;jul;thu;630;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+24;services;single;high.school;no;no;no;cellular;jul;thu;360;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+50;entrepreneur;married;basic.4y;unknown;no;no;cellular;jul;thu;180;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+26;admin.;single;university.degree;no;yes;yes;cellular;jul;thu;22;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+26;admin.;single;university.degree;no;no;no;cellular;jul;thu;184;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+43;services;married;high.school;no;no;no;cellular;jul;thu;345;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+33;technician;single;professional.course;unknown;yes;no;cellular;jul;thu;506;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+39;blue-collar;married;basic.4y;no;yes;no;cellular;jul;thu;388;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+43;blue-collar;married;basic.4y;no;yes;no;cellular;jul;thu;377;11;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+50;technician;married;professional.course;no;no;no;cellular;jul;thu;683;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+23;services;single;high.school;no;no;no;cellular;jul;thu;796;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+50;blue-collar;single;basic.4y;unknown;yes;no;telephone;jul;thu;381;7;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+23;management;single;university.degree;no;yes;yes;cellular;jul;thu;804;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+33;services;single;high.school;no;yes;no;cellular;jul;thu;127;3;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+30;blue-collar;married;basic.9y;unknown;yes;no;cellular;jul;thu;18;11;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+41;blue-collar;divorced;high.school;no;yes;no;cellular;jul;thu;168;6;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+26;admin.;single;high.school;unknown;yes;no;cellular;jul;thu;263;6;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+25;blue-collar;married;basic.4y;no;yes;yes;cellular;jul;thu;309;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+40;housemaid;divorced;high.school;unknown;yes;yes;cellular;jul;thu;43;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+29;admin.;single;basic.9y;no;no;no;cellular;jul;thu;504;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+29;blue-collar;single;high.school;no;no;no;cellular;jul;thu;353;3;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+57;entrepreneur;married;unknown;unknown;no;no;cellular;jul;thu;384;4;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+29;unemployed;married;university.degree;no;unknown;unknown;cellular;jul;thu;177;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+24;technician;single;basic.6y;no;yes;yes;cellular;jul;thu;18;8;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+32;blue-collar;married;basic.4y;unknown;yes;no;cellular;jul;thu;334;3;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+26;blue-collar;single;basic.9y;no;yes;no;cellular;jul;thu;275;17;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+24;technician;single;basic.6y;no;yes;no;cellular;jul;thu;378;7;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+32;management;divorced;university.degree;unknown;yes;no;cellular;jul;thu;489;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+35;technician;married;professional.course;no;yes;yes;cellular;jul;thu;54;3;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+56;admin.;divorced;basic.6y;no;no;yes;cellular;jul;thu;174;8;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+42;entrepreneur;married;basic.4y;unknown;yes;no;telephone;jul;thu;485;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+23;management;single;university.degree;no;no;no;cellular;jul;thu;1584;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;yes
+25;blue-collar;married;basic.4y;no;no;no;cellular;jul;thu;420;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+26;housemaid;married;basic.4y;no;no;no;cellular;jul;thu;62;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+49;blue-collar;single;basic.6y;unknown;yes;no;cellular;jul;thu;626;3;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;yes
+29;unemployed;married;university.degree;no;yes;no;cellular;jul;thu;104;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+26;housemaid;married;basic.4y;no;no;no;cellular;jul;thu;695;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+55;housemaid;divorced;unknown;unknown;no;no;cellular;jul;thu;139;5;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+29;admin.;single;university.degree;no;no;yes;cellular;jul;thu;582;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;yes
+24;technician;single;basic.6y;no;yes;no;telephone;jul;thu;1448;7;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;yes
+23;management;single;university.degree;no;no;no;cellular;jul;thu;271;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+26;housemaid;married;basic.4y;no;yes;no;cellular;jul;thu;1151;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+40;housemaid;divorced;high.school;unknown;no;yes;telephone;jul;thu;265;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+28;admin.;single;basic.9y;unknown;no;no;telephone;jul;thu;171;8;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+26;admin.;single;high.school;unknown;yes;no;cellular;jul;thu;120;3;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+28;services;single;basic.9y;no;yes;no;cellular;jul;thu;277;3;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+31;self-employed;unknown;professional.course;no;no;yes;cellular;jul;thu;383;3;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+31;services;single;high.school;no;no;no;cellular;jul;thu;186;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+25;admin.;single;university.degree;no;yes;no;cellular;jul;thu;271;5;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+52;blue-collar;divorced;basic.4y;unknown;no;no;cellular;jul;thu;160;6;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+35;technician;married;professional.course;no;no;yes;cellular;jul;thu;207;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+35;admin.;divorced;high.school;no;yes;no;telephone;jul;thu;197;3;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+34;technician;single;university.degree;no;yes;no;telephone;jul;thu;202;5;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+27;blue-collar;single;basic.9y;no;no;no;cellular;jul;thu;656;3;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;yes
+33;management;married;university.degree;no;yes;yes;cellular;jul;thu;1390;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+28;blue-collar;single;unknown;no;no;no;cellular;jul;thu;637;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;yes
+49;blue-collar;divorced;basic.6y;unknown;yes;no;cellular;jul;thu;188;3;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+50;admin.;divorced;university.degree;no;yes;no;cellular;jul;thu;231;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+29;unemployed;married;university.degree;no;yes;no;cellular;jul;thu;738;3;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+31;blue-collar;divorced;basic.9y;no;no;no;cellular;jul;thu;551;3;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;yes
+28;blue-collar;single;unknown;no;yes;no;cellular;jul;thu;25;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+56;admin.;divorced;basic.6y;no;no;no;cellular;jul;thu;614;5;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+28;blue-collar;single;unknown;no;no;no;cellular;jul;thu;437;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+31;technician;married;basic.9y;no;no;yes;cellular;jul;thu;1319;5;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;yes
+27;admin.;single;high.school;unknown;yes;no;cellular;jul;thu;606;3;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+50;entrepreneur;married;basic.4y;unknown;no;no;cellular;jul;thu;235;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+24;services;single;basic.9y;unknown;yes;no;cellular;jul;thu;199;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+25;blue-collar;married;basic.6y;unknown;no;no;cellular;jul;thu;201;3;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+31;self-employed;divorced;university.degree;no;yes;no;cellular;jul;thu;275;3;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+35;blue-collar;married;basic.9y;no;yes;no;telephone;jul;thu;268;5;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+39;admin.;married;high.school;unknown;no;no;cellular;jul;thu;210;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+29;unemployed;married;university.degree;no;no;no;cellular;jul;thu;275;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+24;blue-collar;single;basic.9y;no;no;no;cellular;jul;thu;538;3;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+44;blue-collar;married;basic.6y;unknown;no;no;telephone;jul;thu;304;4;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+37;blue-collar;married;basic.4y;no;no;no;cellular;jul;thu;147;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+50;blue-collar;married;unknown;unknown;no;no;cellular;jul;thu;84;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+50;blue-collar;married;unknown;unknown;yes;no;cellular;jul;thu;125;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+43;admin.;married;basic.9y;unknown;no;no;cellular;jul;thu;294;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+25;blue-collar;married;basic.6y;unknown;yes;no;cellular;jul;thu;59;3;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+48;admin.;married;high.school;unknown;yes;no;cellular;jul;thu;182;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+41;technician;married;professional.course;no;yes;no;cellular;jul;thu;410;3;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+27;blue-collar;married;basic.6y;no;yes;no;cellular;jul;thu;209;4;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+27;technician;single;professional.course;no;no;no;cellular;jul;thu;234;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+33;blue-collar;single;basic.9y;no;yes;no;telephone;jul;thu;124;8;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+46;blue-collar;married;basic.4y;unknown;no;no;cellular;jul;thu;111;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+35;unknown;single;high.school;unknown;yes;no;cellular;jul;thu;277;3;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+50;blue-collar;married;unknown;unknown;yes;no;cellular;jul;thu;80;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+50;blue-collar;married;unknown;unknown;yes;no;cellular;jul;thu;222;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+32;admin.;single;high.school;no;no;no;cellular;jul;thu;147;3;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+33;admin.;married;university.degree;no;no;no;cellular;jul;thu;278;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+25;admin.;single;university.degree;no;yes;no;cellular;jul;thu;174;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+35;self-employed;married;university.degree;no;no;no;cellular;jul;thu;1175;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;yes
+35;blue-collar;married;basic.9y;no;no;no;telephone;jul;thu;46;6;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+27;blue-collar;divorced;unknown;no;no;no;cellular;jul;thu;536;5;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+59;retired;single;high.school;no;no;no;cellular;jul;thu;257;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+37;blue-collar;single;basic.4y;no;no;yes;cellular;jul;thu;728;3;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+33;admin.;married;university.degree;no;no;no;cellular;jul;thu;1018;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+50;blue-collar;married;unknown;unknown;no;no;cellular;jul;thu;291;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+32;management;single;university.degree;no;no;no;cellular;jul;thu;654;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+45;admin.;divorced;university.degree;no;yes;no;cellular;jul;thu;1673;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+44;technician;single;professional.course;no;no;no;cellular;jul;thu;330;3;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+42;entrepreneur;married;basic.4y;unknown;yes;no;cellular;jul;thu;124;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+42;self-employed;single;professional.course;no;yes;no;telephone;jul;thu;171;3;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+24;technician;single;basic.6y;no;yes;no;telephone;jul;thu;248;9;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+27;admin.;single;university.degree;no;yes;no;cellular;jul;thu;170;4;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+44;technician;single;professional.course;no;yes;no;cellular;jul;thu;408;11;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+25;services;single;basic.6y;unknown;yes;no;cellular;jul;thu;301;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+25;services;single;basic.6y;unknown;no;no;cellular;jul;thu;88;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+23;technician;married;professional.course;no;no;no;cellular;jul;thu;81;3;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+57;technician;married;basic.9y;unknown;yes;yes;cellular;jul;thu;155;6;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+26;services;single;high.school;no;no;no;cellular;jul;thu;770;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+52;technician;married;professional.course;no;yes;no;cellular;jul;thu;57;4;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+32;admin.;single;basic.9y;no;yes;no;cellular;jul;thu;77;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+26;admin.;married;high.school;no;no;no;cellular;jul;thu;991;5;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;yes
+28;blue-collar;single;unknown;no;no;no;cellular;jul;thu;82;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+30;blue-collar;married;basic.9y;unknown;no;no;cellular;jul;thu;903;4;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+28;blue-collar;single;basic.9y;no;no;no;telephone;jul;thu;610;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+50;entrepreneur;married;basic.4y;unknown;yes;no;cellular;jul;thu;175;3;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+32;admin.;married;university.degree;no;yes;no;cellular;jul;thu;122;17;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+49;technician;divorced;high.school;no;yes;no;cellular;jul;thu;395;3;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+38;entrepreneur;married;basic.6y;unknown;no;no;telephone;jul;thu;517;5;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+38;services;divorced;high.school;no;yes;no;cellular;jul;thu;444;4;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+24;technician;single;basic.6y;no;no;no;telephone;jul;thu;207;10;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+36;technician;single;professional.course;no;yes;no;cellular;jul;thu;230;5;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+36;admin.;married;university.degree;unknown;no;no;cellular;jul;thu;674;3;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+48;unemployed;married;basic.4y;unknown;yes;no;cellular;jul;thu;172;3;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+35;unemployed;divorced;basic.9y;no;no;no;cellular;jul;thu;169;7;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+24;admin.;single;high.school;unknown;no;no;cellular;jul;thu;320;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+46;admin.;single;university.degree;unknown;yes;no;cellular;jul;thu;153;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+46;admin.;single;university.degree;unknown;yes;no;cellular;jul;thu;154;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+29;admin.;married;university.degree;no;yes;no;cellular;jul;thu;51;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+29;blue-collar;single;professional.course;no;no;no;cellular;jul;thu;43;8;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+50;technician;married;professional.course;no;yes;no;cellular;jul;thu;143;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+31;self-employed;unknown;professional.course;no;no;no;cellular;jul;thu;505;3;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+49;admin.;divorced;high.school;no;no;no;telephone;jul;thu;27;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+37;admin.;single;university.degree;no;no;no;cellular;jul;thu;546;6;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+30;technician;single;university.degree;no;yes;no;cellular;jul;thu;91;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+24;technician;single;basic.6y;no;no;no;cellular;jul;thu;75;3;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+42;services;married;high.school;no;no;no;cellular;jul;thu;1153;4;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;yes
+49;admin.;divorced;high.school;no;no;no;cellular;jul;thu;602;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+32;blue-collar;married;basic.4y;unknown;no;no;cellular;jul;thu;740;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+27;blue-collar;divorced;unknown;no;no;no;cellular;jul;thu;193;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+28;blue-collar;married;basic.9y;no;no;no;cellular;jul;thu;125;1;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+52;housemaid;single;university.degree;no;no;no;cellular;jul;thu;188;3;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+57;admin.;married;high.school;no;no;no;telephone;jul;thu;487;9;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+39;admin.;married;high.school;unknown;no;yes;cellular;jul;thu;134;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+25;blue-collar;married;basic.4y;no;no;no;cellular;jul;thu;735;2;999;0;nonexistent;1.4;93.918;-42.7;4.958;5228.1;no
+25;services;single;high.school;no;yes;no;cellular;jul;fri;172;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+41;blue-collar;married;basic.4y;no;yes;no;cellular;jul;fri;138;3;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+22;admin.;single;high.school;no;yes;no;cellular;jul;fri;64;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+32;services;married;high.school;no;no;yes;cellular;jul;fri;157;3;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+32;services;single;high.school;no;no;no;cellular;jul;fri;185;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+53;services;divorced;basic.9y;no;yes;no;cellular;jul;fri;121;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+29;admin.;single;high.school;no;no;yes;telephone;jul;fri;21;9;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+35;blue-collar;married;basic.9y;no;no;no;cellular;jul;fri;156;3;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+37;technician;married;professional.course;no;yes;no;cellular;jul;fri;74;5;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+32;services;married;high.school;no;yes;no;cellular;jul;fri;302;3;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+34;services;married;high.school;no;no;no;cellular;jul;fri;95;8;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+22;blue-collar;single;basic.6y;no;no;no;cellular;jul;fri;100;4;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+32;self-employed;married;university.degree;unknown;no;no;cellular;jul;fri;172;3;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+41;blue-collar;married;basic.4y;no;no;no;cellular;jul;fri;623;3;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;yes
+37;technician;married;professional.course;no;no;yes;cellular;jul;fri;674;3;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;yes
+39;housemaid;married;basic.6y;no;yes;no;cellular;jul;fri;76;4;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+31;blue-collar;single;basic.9y;no;yes;yes;cellular;jul;fri;1081;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;yes
+39;blue-collar;married;basic.9y;no;yes;no;cellular;jul;fri;113;6;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+37;management;married;university.degree;no;no;yes;cellular;jul;fri;69;7;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+30;blue-collar;married;basic.6y;unknown;yes;no;cellular;jul;fri;50;4;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+35;technician;single;university.degree;no;no;no;telephone;jul;fri;455;9;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+46;admin.;single;university.degree;no;no;no;cellular;jul;fri;142;10;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+47;technician;married;professional.course;no;yes;no;cellular;jul;fri;165;3;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+53;management;married;high.school;no;no;no;cellular;jul;fri;91;10;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+38;entrepreneur;married;basic.9y;no;yes;no;telephone;jul;fri;53;4;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+42;entrepreneur;married;university.degree;unknown;no;no;cellular;jul;fri;400;6;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+31;self-employed;single;university.degree;no;yes;no;cellular;jul;fri;85;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+51;housemaid;married;high.school;unknown;yes;yes;cellular;jul;fri;454;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+29;admin.;single;high.school;no;yes;yes;cellular;jul;fri;67;11;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+53;services;divorced;basic.9y;no;no;no;cellular;jul;fri;127;3;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+46;admin.;married;university.degree;unknown;no;no;cellular;jul;fri;178;3;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+48;admin.;married;high.school;no;no;no;cellular;jul;fri;145;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+38;technician;single;professional.course;no;no;no;cellular;jul;fri;59;4;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+26;admin.;single;high.school;no;no;yes;cellular;jul;fri;287;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+31;technician;single;university.degree;no;no;no;cellular;jul;fri;85;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+30;technician;married;professional.course;no;yes;yes;cellular;jul;fri;292;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+42;admin.;single;university.degree;unknown;yes;yes;cellular;jul;fri;115;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+40;services;divorced;basic.9y;no;yes;no;cellular;jul;fri;85;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+27;admin.;married;university.degree;no;no;no;cellular;jul;fri;146;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+28;technician;married;basic.9y;no;yes;no;cellular;jul;fri;83;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+28;blue-collar;single;basic.9y;no;yes;no;cellular;jul;fri;103;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+57;blue-collar;married;high.school;unknown;no;no;cellular;jul;fri;558;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;yes
+57;blue-collar;married;high.school;unknown;yes;no;cellular;jul;fri;572;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;yes
+27;admin.;married;university.degree;no;yes;no;cellular;jul;fri;494;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;yes
+35;admin.;single;university.degree;no;no;no;cellular;jul;fri;14;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+37;admin.;married;high.school;no;no;yes;cellular;jul;fri;354;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+35;admin.;single;university.degree;no;no;no;cellular;jul;fri;91;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+42;blue-collar;married;basic.6y;unknown;no;no;cellular;jul;fri;304;3;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+35;admin.;single;university.degree;no;yes;no;cellular;jul;fri;199;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+36;admin.;married;high.school;no;unknown;unknown;cellular;jul;fri;191;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+31;admin.;single;basic.9y;no;no;no;cellular;jul;fri;978;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;yes
+32;blue-collar;single;basic.9y;unknown;yes;no;cellular;jul;fri;144;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+32;blue-collar;single;basic.9y;unknown;unknown;unknown;cellular;jul;fri;240;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+32;blue-collar;single;basic.9y;unknown;no;no;cellular;jul;fri;166;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+35;admin.;single;university.degree;no;no;no;cellular;jul;fri;536;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;yes
+32;blue-collar;single;basic.9y;unknown;no;no;cellular;jul;fri;316;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+32;services;married;high.school;no;yes;no;cellular;jul;fri;91;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+27;admin.;single;university.degree;no;no;no;cellular;jul;fri;149;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+33;management;single;university.degree;no;yes;no;cellular;jul;fri;72;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+29;management;single;basic.9y;no;yes;no;telephone;jul;fri;11;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+35;blue-collar;married;basic.9y;no;no;no;cellular;jul;fri;222;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+29;management;single;basic.9y;no;yes;no;cellular;jul;fri;135;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+52;retired;married;basic.4y;unknown;yes;no;cellular;jul;fri;412;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+56;admin.;married;university.degree;no;yes;yes;cellular;jul;fri;383;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+27;admin.;single;high.school;no;yes;no;telephone;jul;fri;41;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+29;admin.;single;high.school;no;no;no;cellular;jul;fri;567;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;yes
+31;technician;single;university.degree;no;yes;no;cellular;jul;fri;800;6;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+30;admin.;married;university.degree;no;no;no;cellular;jul;fri;84;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+39;self-employed;married;university.degree;no;no;no;cellular;jul;fri;178;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+29;blue-collar;single;high.school;no;yes;no;cellular;jul;fri;90;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+29;technician;single;high.school;no;no;no;cellular;jul;fri;33;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+37;entrepreneur;single;professional.course;no;no;no;cellular;jul;fri;274;5;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+26;technician;married;university.degree;no;yes;no;cellular;jul;fri;116;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+27;services;single;high.school;no;yes;no;cellular;jul;fri;71;3;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+43;blue-collar;married;basic.9y;no;yes;no;cellular;jul;fri;226;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+29;management;single;basic.9y;no;no;yes;cellular;jul;fri;968;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;yes
+43;blue-collar;married;basic.9y;no;no;no;cellular;jul;fri;377;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+46;blue-collar;married;basic.4y;unknown;no;no;cellular;jul;fri;111;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+46;blue-collar;married;basic.4y;unknown;no;no;cellular;jul;fri;113;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+36;blue-collar;married;basic.9y;no;yes;no;cellular;jul;fri;225;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+46;blue-collar;married;basic.4y;unknown;yes;no;cellular;jul;fri;277;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+29;technician;single;professional.course;no;yes;no;cellular;jul;fri;274;3;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+25;blue-collar;single;basic.9y;no;yes;no;cellular;jul;fri;467;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+36;admin.;married;professional.course;no;no;no;cellular;jul;fri;262;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+30;blue-collar;married;basic.6y;unknown;yes;no;cellular;jul;fri;474;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;yes
+33;admin.;single;high.school;no;no;no;cellular;jul;fri;191;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+31;technician;married;high.school;no;yes;no;cellular;jul;fri;110;10;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+53;blue-collar;married;basic.4y;unknown;yes;yes;telephone;jul;fri;131;7;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+26;blue-collar;single;high.school;no;yes;no;cellular;jul;fri;115;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+26;blue-collar;single;high.school;no;no;no;cellular;jul;fri;102;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+50;self-employed;married;basic.9y;no;no;no;cellular;jul;fri;411;3;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+33;admin.;single;high.school;no;yes;no;cellular;jul;fri;516;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;yes
+31;admin.;married;university.degree;no;no;no;cellular;jul;fri;143;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+25;services;married;high.school;no;yes;no;cellular;jul;fri;164;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+45;blue-collar;divorced;basic.4y;unknown;yes;no;cellular;jul;fri;120;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+24;blue-collar;single;high.school;no;yes;no;cellular;jul;fri;203;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+31;services;divorced;high.school;unknown;yes;no;cellular;jul;fri;73;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+24;blue-collar;single;high.school;no;no;no;cellular;jul;fri;482;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+56;admin.;married;university.degree;no;no;yes;cellular;jul;fri;569;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+30;unemployed;divorced;high.school;no;no;no;cellular;jul;fri;167;3;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+28;services;divorced;high.school;unknown;no;yes;cellular;jul;fri;278;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;yes
+54;blue-collar;married;basic.4y;unknown;no;no;cellular;jul;fri;94;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+31;technician;single;unknown;no;unknown;unknown;cellular;jul;fri;177;3;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+27;services;married;high.school;no;yes;no;cellular;jul;fri;110;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+37;blue-collar;divorced;basic.9y;no;yes;no;cellular;jul;fri;383;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+38;blue-collar;married;basic.9y;no;no;no;cellular;jul;fri;286;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+22;blue-collar;single;basic.9y;no;no;no;cellular;jul;fri;106;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+38;blue-collar;married;basic.9y;no;no;no;cellular;jul;fri;610;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;yes
+37;blue-collar;married;basic.9y;no;yes;no;cellular;jul;fri;223;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+32;admin.;single;university.degree;no;yes;no;cellular;jul;fri;313;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+56;admin.;married;university.degree;no;unknown;unknown;cellular;jul;fri;41;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+34;admin.;single;high.school;no;yes;no;cellular;jul;fri;108;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+29;services;single;university.degree;no;no;no;cellular;jul;fri;116;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+50;services;married;high.school;no;yes;no;cellular;jul;fri;60;7;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+56;admin.;married;university.degree;no;yes;no;cellular;jul;fri;359;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+41;self-employed;married;basic.9y;unknown;no;no;cellular;jul;fri;119;4;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+44;services;divorced;high.school;no;no;no;cellular;jul;fri;238;3;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+29;services;single;university.degree;no;yes;no;cellular;jul;fri;337;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+57;retired;single;university.degree;no;yes;no;cellular;jul;fri;75;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+26;services;single;high.school;unknown;yes;yes;telephone;jul;fri;11;3;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+26;admin.;single;university.degree;no;yes;no;cellular;jul;fri;174;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+33;blue-collar;married;basic.6y;unknown;yes;no;cellular;jul;fri;63;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+30;admin.;married;university.degree;no;no;no;cellular;jul;fri;483;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+38;services;married;high.school;no;yes;no;cellular;jul;fri;47;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+35;blue-collar;single;basic.4y;no;no;no;cellular;jul;fri;308;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+29;blue-collar;single;basic.9y;no;no;no;cellular;jul;fri;269;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+37;blue-collar;married;basic.6y;no;no;no;cellular;jul;fri;640;3;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;yes
+33;admin.;married;university.degree;no;no;no;cellular;jul;fri;384;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+28;management;single;university.degree;no;no;no;cellular;jul;fri;292;3;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+42;admin.;married;university.degree;no;no;no;cellular;jul;fri;147;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+42;admin.;married;university.degree;no;yes;no;cellular;jul;fri;287;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+57;blue-collar;married;basic.9y;unknown;no;no;cellular;jul;fri;168;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+22;blue-collar;single;basic.4y;unknown;yes;no;cellular;jul;fri;25;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+30;blue-collar;married;high.school;no;yes;no;cellular;jul;fri;159;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+57;blue-collar;married;basic.9y;unknown;no;no;cellular;jul;fri;302;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+31;blue-collar;divorced;basic.9y;no;yes;no;cellular;jul;fri;65;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+33;admin.;married;high.school;no;yes;no;cellular;jul;fri;90;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+46;admin.;single;university.degree;no;yes;no;cellular;jul;fri;439;3;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+49;unemployed;divorced;university.degree;no;yes;yes;cellular;jul;fri;133;5;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+26;blue-collar;married;basic.9y;no;no;yes;telephone;jul;fri;494;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+47;blue-collar;married;basic.9y;unknown;yes;no;cellular;jul;fri;67;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+49;technician;married;professional.course;no;no;no;cellular;jul;fri;96;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+36;management;single;university.degree;no;yes;no;cellular;jul;fri;381;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+44;services;married;basic.4y;unknown;no;no;cellular;jul;fri;226;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+49;technician;married;professional.course;no;yes;no;cellular;jul;fri;354;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+45;housemaid;married;university.degree;unknown;yes;no;cellular;jul;fri;117;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+47;technician;divorced;professional.course;no;yes;no;cellular;jul;fri;239;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+32;services;single;professional.course;no;yes;no;cellular;jul;fri;671;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;yes
+45;admin.;divorced;university.degree;no;no;no;cellular;jul;fri;508;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+45;housemaid;divorced;basic.4y;unknown;no;no;cellular;jul;fri;420;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;yes
+44;entrepreneur;married;professional.course;no;no;no;cellular;jul;fri;56;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+25;entrepreneur;single;basic.9y;no;no;no;cellular;jul;fri;130;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+25;entrepreneur;single;basic.9y;no;yes;no;cellular;jul;fri;263;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+37;entrepreneur;married;basic.9y;unknown;yes;no;cellular;jul;fri;658;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;yes
+30;admin.;married;high.school;no;yes;no;cellular;jul;fri;362;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+26;blue-collar;married;basic.9y;no;no;no;cellular;jul;fri;199;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+46;blue-collar;married;basic.4y;no;yes;no;cellular;jul;fri;342;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+36;housemaid;divorced;basic.4y;unknown;no;no;cellular;jul;fri;300;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+26;blue-collar;married;basic.9y;no;yes;no;cellular;jul;fri;207;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+30;unemployed;divorced;high.school;no;yes;no;cellular;jul;fri;115;4;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+49;services;divorced;basic.6y;unknown;yes;yes;cellular;jul;fri;112;3;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+51;services;married;basic.4y;no;yes;no;cellular;jul;fri;104;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+31;admin.;single;university.degree;no;yes;yes;cellular;jul;fri;111;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+50;admin.;divorced;high.school;no;yes;no;cellular;jul;fri;95;4;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+25;services;single;high.school;no;yes;no;cellular;jul;fri;259;3;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+53;services;divorced;basic.9y;no;yes;no;cellular;jul;fri;503;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+45;blue-collar;divorced;basic.4y;unknown;yes;no;telephone;jul;fri;168;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+45;blue-collar;divorced;basic.4y;unknown;yes;no;cellular;jul;fri;328;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+35;technician;married;university.degree;no;no;no;cellular;jul;fri;187;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+26;admin.;single;high.school;no;no;no;cellular;jul;fri;140;3;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+49;services;divorced;basic.6y;unknown;no;no;telephone;jul;fri;744;4;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+57;retired;divorced;basic.4y;unknown;no;no;cellular;jul;fri;655;4;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;yes
+59;management;married;basic.9y;unknown;yes;no;cellular;jul;fri;142;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+35;technician;married;university.degree;no;no;no;cellular;jul;fri;642;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+32;blue-collar;single;basic.4y;no;yes;no;cellular;jul;fri;141;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+24;blue-collar;single;basic.9y;no;yes;no;cellular;jul;fri;659;5;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;yes
+43;blue-collar;married;basic.4y;unknown;yes;no;cellular;jul;fri;101;6;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+60;admin.;divorced;high.school;no;yes;no;cellular;jul;fri;179;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+60;admin.;divorced;high.school;no;yes;no;cellular;jul;fri;144;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+33;services;married;basic.9y;no;yes;no;cellular;jul;fri;169;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+46;admin.;single;university.degree;no;yes;no;telephone;jul;fri;199;3;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+31;technician;divorced;high.school;no;no;no;cellular;jul;fri;143;7;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+56;blue-collar;married;basic.4y;no;yes;no;cellular;jul;fri;641;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;yes
+25;admin.;single;university.degree;no;no;no;cellular;jul;fri;835;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+43;blue-collar;married;basic.9y;no;yes;no;cellular;jul;fri;83;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+43;technician;single;university.degree;no;yes;no;telephone;jul;fri;54;7;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+33;management;single;university.degree;no;yes;no;cellular;jul;fri;415;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;yes
+42;admin.;married;university.degree;no;yes;no;cellular;jul;fri;146;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+52;admin.;married;high.school;unknown;yes;no;cellular;jul;fri;410;3;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+30;admin.;married;university.degree;no;no;no;cellular;jul;fri;70;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+33;admin.;married;high.school;no;no;no;cellular;jul;fri;595;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+37;blue-collar;married;basic.4y;unknown;yes;no;cellular;jul;fri;97;3;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+27;technician;single;basic.9y;unknown;no;no;cellular;jul;fri;171;7;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+53;self-employed;married;university.degree;unknown;no;no;telephone;jul;fri;239;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+37;technician;married;professional.course;no;yes;no;cellular;jul;fri;328;3;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+46;admin.;single;university.degree;no;no;no;cellular;jul;fri;852;9;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;yes
+34;admin.;single;high.school;no;yes;no;cellular;jul;fri;49;5;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+39;blue-collar;married;basic.9y;no;yes;no;cellular;jul;fri;635;3;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;yes
+38;entrepreneur;married;basic.9y;no;yes;no;cellular;jul;fri;215;3;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+26;services;single;high.school;unknown;yes;no;cellular;jul;fri;34;3;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+42;admin.;single;university.degree;unknown;yes;no;cellular;jul;fri;218;3;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+47;technician;married;professional.course;no;yes;no;cellular;jul;fri;352;5;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+29;management;single;basic.9y;no;no;no;cellular;jul;fri;652;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+46;management;divorced;university.degree;no;yes;no;cellular;jul;fri;317;6;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+37;entrepreneur;single;professional.course;no;yes;no;cellular;jul;fri;92;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+38;entrepreneur;married;basic.9y;no;no;no;cellular;jul;fri;102;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+43;blue-collar;married;high.school;no;no;no;cellular;jul;fri;297;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+30;admin.;married;high.school;unknown;no;no;cellular;jul;fri;225;7;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+47;admin.;single;university.degree;no;no;yes;telephone;jul;fri;183;9;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+20;student;single;university.degree;no;yes;no;cellular;jul;fri;1503;11;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+33;entrepreneur;married;basic.6y;no;yes;no;cellular;jul;fri;168;7;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+25;blue-collar;single;basic.6y;no;no;yes;cellular;jul;fri;1127;3;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;yes
+24;technician;single;professional.course;no;no;no;cellular;jul;fri;73;4;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+38;entrepreneur;married;basic.9y;no;no;yes;telephone;jul;fri;129;4;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+25;technician;single;university.degree;no;no;no;cellular;jul;fri;216;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+56;admin.;married;university.degree;no;no;no;telephone;jul;fri;55;9;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+41;admin.;single;university.degree;no;yes;no;cellular;jul;fri;706;9;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+37;technician;married;professional.course;no;yes;no;cellular;jul;fri;728;6;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+29;management;single;basic.9y;no;yes;yes;cellular;jul;fri;351;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+26;admin.;single;high.school;no;no;no;cellular;jul;fri;134;3;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+35;technician;single;university.degree;no;yes;no;cellular;jul;fri;127;10;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+49;technician;married;professional.course;no;yes;no;cellular;jul;fri;579;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+41;self-employed;married;basic.9y;unknown;yes;no;cellular;jul;fri;909;3;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+25;technician;single;high.school;no;no;no;cellular;jul;fri;96;3;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+39;blue-collar;single;basic.4y;unknown;yes;no;telephone;jul;fri;129;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+31;blue-collar;single;basic.9y;unknown;yes;no;cellular;jul;fri;100;4;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+45;housemaid;divorced;basic.4y;unknown;yes;no;cellular;jul;fri;183;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+47;admin.;married;high.school;unknown;yes;no;cellular;jul;fri;247;4;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+37;technician;married;professional.course;no;yes;no;cellular;jul;fri;252;6;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+44;self-employed;married;high.school;unknown;no;no;cellular;jul;fri;175;11;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+33;technician;married;high.school;no;yes;no;cellular;jul;fri;1360;9;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;yes
+36;blue-collar;married;basic.9y;no;no;yes;cellular;jul;fri;118;3;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+56;admin.;married;university.degree;no;no;no;cellular;jul;fri;139;5;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+36;admin.;divorced;high.school;no;yes;no;cellular;jul;fri;464;3;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+41;self-employed;married;basic.9y;unknown;no;no;cellular;jul;fri;788;6;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+30;technician;married;professional.course;no;yes;no;cellular;jul;fri;570;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+38;services;married;high.school;no;no;no;cellular;jul;fri;905;3;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+60;admin.;divorced;high.school;no;no;no;cellular;jul;fri;30;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+51;retired;married;basic.9y;no;no;no;cellular;jul;fri;180;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+39;blue-collar;single;basic.4y;unknown;no;no;cellular;jul;fri;541;7;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+44;services;married;basic.4y;unknown;no;yes;cellular;jul;fri;127;4;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+41;housemaid;married;high.school;no;yes;no;cellular;jul;fri;440;4;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+24;blue-collar;married;basic.9y;no;no;no;cellular;jul;fri;225;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+28;admin.;married;university.degree;no;yes;no;cellular;jul;fri;112;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+26;blue-collar;married;basic.9y;no;yes;yes;cellular;jul;fri;300;3;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+31;services;single;university.degree;no;no;yes;cellular;jul;fri;409;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+29;admin.;married;basic.9y;no;yes;no;cellular;jul;fri;247;5;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+56;admin.;married;university.degree;no;yes;no;cellular;jul;fri;177;5;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+29;services;single;high.school;no;no;no;cellular;jul;fri;320;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+32;entrepreneur;single;university.degree;no;no;no;cellular;jul;fri;89;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+26;services;single;high.school;no;yes;no;telephone;jul;fri;200;3;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+31;technician;married;university.degree;no;yes;no;cellular;jul;fri;166;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+36;services;divorced;basic.4y;unknown;no;no;cellular;jul;fri;207;9;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+28;technician;single;university.degree;no;no;no;cellular;jul;fri;453;3;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+24;technician;single;unknown;no;no;no;cellular;jul;fri;126;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+43;blue-collar;married;basic.9y;no;no;no;cellular;jul;fri;379;3;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+36;housemaid;single;basic.4y;unknown;no;no;cellular;jul;fri;184;3;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+26;services;single;high.school;no;yes;no;cellular;jul;fri;37;4;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+24;blue-collar;single;basic.9y;no;no;no;cellular;jul;fri;191;3;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+25;services;single;unknown;no;no;no;telephone;jul;fri;662;4;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+28;admin.;single;unknown;no;yes;no;cellular;jul;fri;251;5;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+26;services;single;high.school;no;no;no;cellular;jul;fri;588;7;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;yes
+28;admin.;single;high.school;no;no;no;telephone;jul;fri;70;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+35;blue-collar;married;basic.9y;no;yes;no;cellular;jul;fri;1373;4;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;yes
+53;blue-collar;married;basic.4y;unknown;no;no;cellular;jul;fri;93;4;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+21;blue-collar;single;basic.9y;no;no;no;cellular;jul;fri;127;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+29;entrepreneur;married;professional.course;no;no;no;cellular;jul;fri;462;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+33;admin.;married;university.degree;no;no;no;cellular;jul;fri;305;10;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+41;self-employed;married;basic.9y;unknown;no;no;cellular;jul;fri;46;8;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+39;blue-collar;married;basic.9y;no;yes;yes;telephone;jul;fri;99;5;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+31;blue-collar;single;university.degree;no;no;no;cellular;jul;fri;35;3;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+53;technician;married;professional.course;unknown;yes;yes;cellular;jul;fri;264;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+38;entrepreneur;divorced;university.degree;no;yes;no;cellular;jul;fri;113;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+29;admin.;single;university.degree;unknown;yes;no;cellular;jul;fri;837;8;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+29;admin.;single;university.degree;no;yes;no;cellular;jul;fri;243;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+21;admin.;married;unknown;no;yes;no;cellular;jul;fri;528;3;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+29;admin.;single;university.degree;no;no;no;telephone;jul;fri;277;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+39;blue-collar;single;basic.4y;unknown;no;no;telephone;jul;fri;470;24;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+34;blue-collar;married;basic.9y;unknown;yes;no;cellular;jul;fri;913;4;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;yes
+37;technician;married;professional.course;no;no;no;cellular;jul;fri;127;3;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+25;technician;married;professional.course;no;no;no;cellular;jul;fri;197;3;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+33;technician;married;professional.course;no;no;yes;cellular;jul;fri;414;6;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+22;student;single;high.school;no;no;yes;cellular;jul;fri;154;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+30;admin.;married;university.degree;no;yes;no;cellular;jul;fri;799;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;yes
+31;blue-collar;divorced;unknown;no;yes;no;cellular;jul;fri;320;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+31;blue-collar;divorced;unknown;no;yes;no;cellular;jul;fri;596;1;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+57;admin.;married;basic.9y;no;no;no;cellular;jul;fri;1139;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;yes
+51;blue-collar;married;basic.6y;no;yes;no;cellular;jul;fri;227;2;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+44;blue-collar;divorced;basic.6y;unknown;no;no;cellular;jul;fri;580;7;999;0;nonexistent;1.4;93.918;-42.7;4.957;5228.1;no
+26;blue-collar;single;basic.9y;unknown;yes;no;cellular;jul;mon;82;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+37;blue-collar;married;basic.9y;unknown;no;no;telephone;jul;mon;179;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+44;admin.;single;basic.9y;no;no;no;cellular;jul;mon;83;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+29;self-employed;single;university.degree;no;yes;no;cellular;jul;mon;212;7;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+37;technician;single;professional.course;no;no;no;telephone;jul;mon;280;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+30;management;married;university.degree;no;yes;no;cellular;jul;mon;124;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+39;technician;single;professional.course;no;yes;no;telephone;jul;mon;241;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+30;blue-collar;married;basic.4y;unknown;no;no;cellular;jul;mon;61;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+27;blue-collar;single;basic.9y;no;yes;no;cellular;jul;mon;120;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+33;admin.;single;university.degree;no;no;no;cellular;jul;mon;190;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+26;blue-collar;single;basic.9y;no;yes;no;cellular;jul;mon;200;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+28;blue-collar;married;basic.9y;no;no;yes;cellular;jul;mon;165;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+38;technician;married;professional.course;no;yes;no;cellular;jul;mon;239;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+26;admin.;single;university.degree;no;yes;no;cellular;jul;mon;200;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+30;technician;single;university.degree;no;yes;no;cellular;jul;mon;463;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+54;blue-collar;married;basic.9y;no;yes;no;cellular;jul;mon;144;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+34;blue-collar;married;high.school;no;yes;no;telephone;jul;mon;50;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+24;blue-collar;married;basic.9y;no;yes;no;cellular;jul;mon;192;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+25;services;single;high.school;no;yes;no;cellular;jul;mon;75;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+39;blue-collar;single;basic.9y;unknown;yes;no;cellular;jul;mon;123;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+24;services;married;high.school;no;yes;no;cellular;jul;mon;93;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+43;admin.;married;high.school;no;no;no;cellular;jul;mon;999;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;yes
+26;services;married;high.school;no;yes;yes;cellular;jul;mon;114;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+36;services;single;high.school;no;yes;no;cellular;jul;mon;335;8;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+33;blue-collar;married;unknown;no;yes;no;cellular;jul;mon;43;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+52;housemaid;divorced;basic.9y;unknown;no;no;cellular;jul;mon;272;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+39;admin.;single;university.degree;no;yes;no;cellular;jul;mon;589;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+59;retired;married;basic.4y;unknown;no;no;cellular;jul;mon;91;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+27;student;single;high.school;unknown;yes;no;cellular;jul;mon;54;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+55;entrepreneur;married;university.degree;no;yes;no;cellular;jul;mon;322;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+25;blue-collar;married;basic.9y;no;yes;no;cellular;jul;mon;78;16;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+48;services;divorced;high.school;no;yes;no;cellular;jul;mon;72;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+54;blue-collar;married;basic.4y;no;no;no;cellular;jul;mon;168;5;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+22;blue-collar;single;basic.9y;no;yes;no;telephone;jul;mon;110;7;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+60;retired;married;university.degree;no;yes;no;cellular;jul;mon;120;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+35;blue-collar;married;unknown;no;yes;no;cellular;jul;mon;149;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+26;admin.;divorced;basic.9y;no;no;no;cellular;jul;mon;489;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+31;services;single;high.school;no;no;yes;telephone;jul;mon;1425;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+43;blue-collar;married;basic.9y;unknown;yes;no;cellular;jul;mon;24;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+30;technician;single;university.degree;no;yes;no;telephone;jul;mon;218;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+33;blue-collar;married;unknown;no;no;yes;cellular;jul;mon;78;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+27;technician;single;professional.course;no;no;no;cellular;jul;mon;93;7;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+20;student;single;high.school;no;yes;no;cellular;jul;mon;100;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+41;blue-collar;married;basic.4y;unknown;yes;no;cellular;jul;mon;257;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+50;blue-collar;married;basic.4y;unknown;yes;yes;cellular;jul;mon;140;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+28;blue-collar;married;basic.9y;unknown;no;yes;cellular;jul;mon;145;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+30;management;single;university.degree;no;yes;no;telephone;jul;mon;90;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+33;blue-collar;married;basic.6y;no;no;no;cellular;jul;mon;122;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+36;blue-collar;married;basic.4y;no;yes;no;cellular;jul;mon;97;6;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+24;admin.;single;professional.course;no;yes;no;cellular;jul;mon;357;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+40;management;married;university.degree;no;yes;no;cellular;jul;mon;638;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;yes
+45;admin.;married;university.degree;unknown;yes;no;cellular;jul;mon;478;11;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+48;services;divorced;high.school;no;no;yes;telephone;jul;mon;118;7;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+29;blue-collar;married;basic.9y;no;yes;no;cellular;jul;mon;166;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+32;technician;married;professional.course;no;no;no;cellular;jul;mon;203;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+36;self-employed;single;university.degree;no;no;no;cellular;jul;mon;84;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+32;admin.;divorced;basic.9y;no;yes;no;cellular;jul;mon;118;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+32;admin.;single;high.school;unknown;no;yes;cellular;jul;mon;169;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+26;admin.;married;high.school;no;yes;no;cellular;jul;mon;176;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+36;self-employed;single;university.degree;no;no;no;cellular;jul;mon;195;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+29;blue-collar;married;basic.9y;no;yes;no;cellular;jul;mon;101;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+28;technician;married;basic.9y;no;unknown;unknown;cellular;jul;mon;153;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+25;technician;single;professional.course;no;yes;no;cellular;jul;mon;519;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+51;blue-collar;married;basic.4y;unknown;no;no;cellular;jul;mon;227;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+50;entrepreneur;married;basic.9y;unknown;no;no;cellular;jul;mon;394;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+28;technician;married;basic.9y;no;yes;no;cellular;jul;mon;236;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+35;blue-collar;married;basic.4y;unknown;no;yes;cellular;jul;mon;180;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+48;services;divorced;high.school;no;no;yes;cellular;jul;mon;88;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+30;technician;single;university.degree;no;no;no;cellular;jul;mon;89;20;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+30;admin.;single;university.degree;no;yes;yes;cellular;jul;mon;317;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+34;technician;divorced;professional.course;no;yes;no;cellular;jul;mon;172;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+27;admin.;single;high.school;unknown;no;no;cellular;jul;mon;1105;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;yes
+27;self-employed;single;professional.course;no;no;no;cellular;jul;mon;553;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+26;technician;single;high.school;no;yes;no;cellular;jul;mon;538;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+29;blue-collar;married;basic.9y;no;yes;no;cellular;jul;mon;808;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+38;blue-collar;divorced;high.school;no;yes;no;cellular;jul;mon;91;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+36;admin.;divorced;university.degree;no;yes;no;cellular;jul;mon;130;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+30;management;single;university.degree;no;yes;no;cellular;jul;mon;96;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+46;blue-collar;married;basic.9y;no;no;no;cellular;jul;mon;76;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+35;technician;married;professional.course;no;no;yes;cellular;jul;mon;554;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+49;management;married;university.degree;no;yes;no;cellular;jul;mon;184;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+30;technician;single;university.degree;no;yes;yes;cellular;jul;mon;126;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+46;blue-collar;married;basic.9y;no;yes;no;cellular;jul;mon;124;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+27;blue-collar;single;basic.9y;no;no;no;cellular;jul;mon;316;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+27;blue-collar;single;basic.9y;no;yes;no;cellular;jul;mon;405;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+40;self-employed;married;high.school;no;no;no;cellular;jul;mon;521;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+59;blue-collar;married;basic.4y;unknown;unknown;unknown;cellular;jul;mon;416;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+46;management;single;university.degree;no;yes;no;cellular;jul;mon;93;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+49;management;married;university.degree;unknown;yes;no;cellular;jul;mon;37;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+31;blue-collar;single;high.school;no;no;no;cellular;jul;mon;42;6;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+47;technician;single;professional.course;unknown;no;no;cellular;jul;mon;171;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+26;admin.;married;high.school;no;no;no;cellular;jul;mon;455;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+36;blue-collar;married;high.school;unknown;yes;no;cellular;jul;mon;150;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+29;blue-collar;married;basic.4y;no;yes;yes;cellular;jul;mon;93;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+35;admin.;single;university.degree;no;yes;no;cellular;jul;mon;156;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+25;admin.;single;basic.9y;no;no;no;cellular;jul;mon;66;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+30;management;single;university.degree;no;yes;no;cellular;jul;mon;323;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+37;blue-collar;single;basic.6y;unknown;no;no;telephone;jul;mon;37;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+36;services;divorced;high.school;no;yes;no;cellular;jul;mon;226;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+29;blue-collar;married;basic.4y;no;yes;yes;cellular;jul;mon;472;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+41;blue-collar;single;university.degree;no;no;no;cellular;jul;mon;357;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+46;blue-collar;single;basic.6y;unknown;yes;no;cellular;jul;mon;47;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+28;admin.;single;high.school;no;yes;no;cellular;jul;mon;295;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+27;technician;single;professional.course;no;no;no;cellular;jul;mon;581;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+28;blue-collar;married;basic.4y;no;yes;no;cellular;jul;mon;113;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+54;blue-collar;married;basic.4y;no;yes;yes;cellular;jul;mon;191;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+34;admin.;married;high.school;no;yes;yes;cellular;jul;mon;193;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+34;admin.;married;high.school;no;yes;no;cellular;jul;mon;38;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+55;blue-collar;married;basic.4y;unknown;yes;no;cellular;jul;mon;108;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+40;management;married;university.degree;no;no;no;cellular;jul;mon;77;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+53;entrepreneur;married;university.degree;no;yes;no;cellular;jul;mon;212;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+28;blue-collar;married;basic.9y;no;yes;no;cellular;jul;mon;225;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+35;entrepreneur;single;university.degree;no;no;no;cellular;jul;mon;120;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+53;entrepreneur;married;university.degree;no;no;no;cellular;jul;mon;304;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+57;admin.;married;university.degree;no;no;no;cellular;jul;mon;230;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+54;blue-collar;married;basic.4y;no;no;no;cellular;jul;mon;856;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+41;admin.;married;university.degree;no;no;yes;cellular;jul;mon;396;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+36;blue-collar;married;basic.9y;no;no;no;cellular;jul;mon;853;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+32;admin.;single;high.school;unknown;no;no;cellular;jul;mon;590;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;yes
+35;self-employed;divorced;basic.9y;no;no;no;cellular;jul;mon;53;6;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+42;blue-collar;single;high.school;unknown;yes;no;cellular;jul;mon;55;5;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+46;blue-collar;single;basic.6y;unknown;yes;no;cellular;jul;mon;169;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+43;admin.;married;high.school;no;yes;no;cellular;jul;mon;475;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+50;blue-collar;married;basic.4y;no;no;yes;cellular;jul;mon;141;6;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+36;blue-collar;single;basic.9y;unknown;no;no;cellular;jul;mon;54;10;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+28;admin.;single;high.school;no;yes;no;cellular;jul;mon;101;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+38;management;married;high.school;no;yes;no;cellular;jul;mon;54;8;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+38;blue-collar;single;basic.9y;no;no;yes;cellular;jul;mon;730;8;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+29;services;single;professional.course;no;yes;no;cellular;jul;mon;105;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+39;blue-collar;married;basic.4y;unknown;no;no;cellular;jul;mon;533;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+34;blue-collar;married;high.school;no;no;yes;cellular;jul;mon;177;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+24;admin.;married;high.school;no;yes;no;cellular;jul;mon;296;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+43;admin.;married;high.school;no;no;yes;cellular;jul;mon;304;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+36;technician;married;basic.4y;no;no;no;cellular;jul;mon;854;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;yes
+41;blue-collar;married;basic.4y;unknown;no;no;cellular;jul;mon;103;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+35;services;divorced;high.school;unknown;no;yes;cellular;jul;mon;97;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+33;admin.;single;high.school;no;no;no;cellular;jul;mon;31;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+60;admin.;married;high.school;unknown;no;yes;cellular;jul;mon;90;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+48;entrepreneur;married;basic.9y;no;no;no;cellular;jul;mon;90;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+46;services;married;high.school;no;yes;no;cellular;jul;mon;170;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+27;blue-collar;married;basic.9y;no;no;yes;cellular;jul;mon;99;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+31;blue-collar;married;basic.9y;no;no;no;cellular;jul;mon;111;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+29;blue-collar;married;basic.6y;no;no;no;cellular;jul;mon;115;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+39;services;married;high.school;no;yes;no;telephone;jul;mon;158;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+37;technician;divorced;professional.course;no;no;yes;cellular;jul;mon;100;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+55;admin.;married;university.degree;unknown;no;no;cellular;jul;mon;118;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+32;admin.;married;high.school;no;yes;no;telephone;jul;mon;19;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+32;admin.;married;high.school;no;no;no;telephone;jul;mon;65;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+46;services;married;high.school;unknown;no;yes;cellular;jul;mon;336;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+32;services;married;high.school;unknown;no;no;cellular;jul;mon;44;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+29;services;married;high.school;unknown;no;yes;cellular;jul;mon;479;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+44;admin.;single;basic.9y;no;no;no;cellular;jul;mon;71;11;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+39;technician;single;professional.course;no;no;no;cellular;jul;mon;617;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;yes
+46;management;married;university.degree;no;yes;no;cellular;jul;mon;92;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+44;housemaid;married;basic.4y;unknown;yes;no;cellular;jul;mon;95;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+27;blue-collar;single;high.school;no;yes;no;cellular;jul;mon;156;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+32;admin.;divorced;basic.9y;no;no;no;cellular;jul;mon;177;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+45;admin.;married;university.degree;unknown;no;yes;cellular;jul;mon;93;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+34;blue-collar;married;basic.6y;no;yes;yes;cellular;jul;mon;218;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+26;blue-collar;single;basic.9y;no;yes;no;cellular;jul;mon;369;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+29;technician;married;high.school;no;no;no;cellular;jul;mon;206;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+34;blue-collar;married;basic.6y;no;yes;no;cellular;jul;mon;320;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+40;blue-collar;married;basic.9y;unknown;no;no;cellular;jul;mon;163;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+30;admin.;single;high.school;no;no;yes;cellular;jul;mon;101;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+24;admin.;single;professional.course;no;yes;no;cellular;jul;mon;171;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+38;blue-collar;married;basic.4y;unknown;yes;no;cellular;jul;mon;1039;7;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;yes
+36;blue-collar;single;basic.9y;unknown;yes;no;cellular;jul;mon;221;8;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+44;blue-collar;married;basic.9y;unknown;yes;no;cellular;jul;mon;369;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+32;admin.;single;high.school;unknown;yes;no;cellular;jul;mon;141;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+44;blue-collar;married;basic.9y;unknown;yes;no;cellular;jul;mon;574;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;yes
+44;admin.;single;basic.9y;no;yes;yes;cellular;jul;mon;919;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;yes
+47;services;divorced;basic.9y;unknown;no;no;cellular;jul;mon;678;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+44;admin.;married;high.school;no;no;no;cellular;jul;mon;101;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+24;student;single;high.school;no;no;no;cellular;jul;mon;171;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+47;technician;married;professional.course;no;no;no;cellular;jul;mon;149;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+39;admin.;married;university.degree;no;yes;no;cellular;jul;mon;72;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+39;technician;single;professional.course;no;no;no;cellular;jul;mon;65;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+41;technician;divorced;high.school;no;yes;no;telephone;jul;mon;61;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+41;technician;divorced;high.school;no;yes;no;cellular;jul;mon;521;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+31;admin.;single;high.school;no;no;no;cellular;jul;mon;1017;6;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;yes
+40;self-employed;married;high.school;no;yes;no;cellular;jul;mon;51;7;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+24;blue-collar;single;basic.9y;no;no;yes;cellular;jul;mon;237;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+41;technician;divorced;high.school;no;yes;no;cellular;jul;mon;357;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+24;blue-collar;single;basic.9y;no;yes;yes;cellular;jul;mon;449;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+22;blue-collar;single;basic.9y;no;yes;yes;cellular;jul;mon;848;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;yes
+38;entrepreneur;married;professional.course;no;yes;no;cellular;jul;mon;356;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+27;blue-collar;single;basic.9y;no;yes;yes;cellular;jul;mon;204;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+37;admin.;single;high.school;no;no;no;cellular;jul;mon;71;15;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+56;technician;married;professional.course;no;yes;no;cellular;jul;mon;163;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+43;admin.;married;high.school;no;no;yes;cellular;jul;mon;111;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+39;admin.;married;university.degree;no;no;no;telephone;jul;mon;733;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;yes
+40;self-employed;married;high.school;no;no;no;cellular;jul;mon;353;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+43;admin.;married;high.school;no;yes;no;cellular;jul;mon;119;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+40;self-employed;married;high.school;no;yes;no;telephone;jul;mon;79;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+27;blue-collar;single;basic.9y;no;no;no;cellular;jul;mon;808;5;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+41;technician;single;university.degree;no;yes;no;cellular;jul;mon;553;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;yes
+43;admin.;married;high.school;no;no;no;cellular;jul;mon;507;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+55;admin.;married;university.degree;no;no;no;cellular;jul;mon;93;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+43;blue-collar;married;high.school;unknown;yes;no;cellular;jul;mon;245;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+28;technician;married;basic.9y;no;yes;no;cellular;jul;mon;1080;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;yes
+43;blue-collar;married;high.school;unknown;no;no;cellular;jul;mon;339;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+43;services;married;high.school;no;no;no;cellular;jul;mon;710;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;yes
+40;blue-collar;single;basic.9y;unknown;yes;no;cellular;jul;mon;824;5;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+29;admin.;single;university.degree;no;yes;no;cellular;jul;mon;333;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+43;services;married;high.school;no;yes;yes;cellular;jul;mon;1212;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;yes
+32;entrepreneur;married;high.school;no;yes;no;cellular;jul;mon;240;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+19;student;single;basic.9y;unknown;yes;no;cellular;jul;mon;87;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+40;admin.;married;university.degree;no;no;no;cellular;jul;mon;1156;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+39;self-employed;married;high.school;no;no;no;cellular;jul;mon;761;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+51;blue-collar;married;basic.4y;unknown;no;no;cellular;jul;mon;200;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+24;blue-collar;single;basic.9y;no;yes;no;cellular;jul;mon;471;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+35;technician;married;professional.course;no;no;no;cellular;jul;mon;80;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+48;services;divorced;high.school;no;no;no;cellular;jul;mon;137;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+37;blue-collar;married;basic.9y;unknown;yes;no;cellular;jul;mon;623;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+31;services;single;high.school;no;no;no;cellular;jul;mon;881;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+47;housemaid;divorced;basic.4y;unknown;no;no;cellular;jul;mon;255;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+59;entrepreneur;married;university.degree;unknown;no;no;cellular;jul;mon;251;5;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+47;housemaid;divorced;basic.4y;unknown;no;no;cellular;jul;mon;357;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+32;services;married;basic.4y;unknown;no;no;cellular;jul;mon;891;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;yes
+22;blue-collar;single;unknown;unknown;no;no;cellular;jul;mon;228;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+56;housemaid;divorced;basic.4y;unknown;yes;no;cellular;jul;mon;121;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+48;services;divorced;high.school;no;yes;no;cellular;jul;mon;200;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+31;blue-collar;single;basic.4y;no;no;no;cellular;jul;mon;116;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+38;entrepreneur;married;university.degree;unknown;no;no;cellular;jul;mon;157;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+26;blue-collar;single;basic.9y;no;yes;yes;cellular;jul;mon;151;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+39;admin.;single;university.degree;no;no;no;cellular;jul;mon;333;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+31;blue-collar;single;basic.4y;unknown;yes;no;cellular;jul;mon;153;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+36;technician;married;unknown;unknown;yes;no;cellular;jul;mon;81;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+52;blue-collar;divorced;basic.9y;unknown;yes;yes;cellular;jul;mon;410;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+35;blue-collar;married;basic.4y;unknown;yes;no;cellular;jul;mon;56;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+32;services;married;university.degree;no;no;no;telephone;jul;mon;691;10;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;yes
+33;admin.;married;basic.9y;no;yes;yes;cellular;jul;mon;202;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+28;blue-collar;divorced;basic.9y;no;yes;yes;cellular;jul;mon;125;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+35;entrepreneur;single;university.degree;no;yes;no;cellular;jul;mon;580;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+39;blue-collar;married;basic.6y;no;no;no;cellular;jul;mon;178;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+44;admin.;single;basic.9y;no;yes;no;cellular;jul;mon;61;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+30;admin.;single;high.school;no;yes;no;telephone;jul;mon;742;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+49;admin.;married;university.degree;unknown;no;no;cellular;jul;mon;80;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+36;blue-collar;single;basic.6y;unknown;yes;no;telephone;jul;mon;1877;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;yes
+49;admin.;married;university.degree;unknown;yes;no;telephone;jul;mon;18;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+39;blue-collar;married;basic.6y;no;yes;no;cellular;jul;mon;167;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+27;blue-collar;single;basic.9y;no;yes;no;cellular;jul;mon;295;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+35;blue-collar;married;basic.4y;no;yes;no;cellular;jul;mon;181;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+37;management;married;university.degree;no;yes;no;cellular;jul;mon;292;8;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+24;blue-collar;married;basic.9y;no;no;no;telephone;jul;mon;171;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+24;blue-collar;married;basic.9y;no;yes;no;cellular;jul;mon;46;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+51;blue-collar;married;basic.4y;unknown;no;no;cellular;jul;mon;578;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+27;admin.;single;high.school;no;yes;no;cellular;jul;mon;112;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+33;blue-collar;married;basic.6y;unknown;yes;no;cellular;jul;mon;299;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+26;admin.;married;university.degree;no;yes;no;cellular;jul;mon;588;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+44;admin.;single;basic.9y;no;yes;yes;cellular;jul;mon;145;5;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+48;blue-collar;married;basic.6y;unknown;yes;yes;cellular;jul;mon;250;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+30;technician;single;university.degree;no;yes;yes;cellular;jul;mon;149;7;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+23;services;single;high.school;no;yes;yes;cellular;jul;mon;129;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+25;services;single;high.school;no;yes;yes;cellular;jul;mon;208;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+37;admin.;single;high.school;no;no;no;cellular;jul;mon;249;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+25;technician;single;professional.course;no;yes;no;cellular;jul;mon;292;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+27;technician;single;high.school;no;yes;no;cellular;jul;mon;407;11;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+39;blue-collar;married;basic.4y;unknown;no;no;cellular;jul;mon;222;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+44;admin.;single;basic.9y;no;yes;no;cellular;jul;mon;50;5;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+41;technician;married;unknown;no;no;no;cellular;jul;mon;250;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+44;blue-collar;married;basic.9y;unknown;no;no;cellular;jul;mon;147;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+22;services;married;high.school;unknown;yes;no;cellular;jul;mon;100;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+29;admin.;married;high.school;no;no;no;telephone;jul;mon;89;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+32;admin.;married;high.school;no;yes;no;telephone;jul;mon;107;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+35;services;married;high.school;no;yes;yes;cellular;jul;mon;332;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+25;blue-collar;married;basic.9y;no;no;no;cellular;jul;mon;132;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+54;retired;married;basic.4y;unknown;yes;yes;cellular;jul;mon;320;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+42;housemaid;divorced;basic.4y;no;yes;no;cellular;jul;mon;71;9;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+32;blue-collar;married;basic.9y;unknown;yes;no;cellular;jul;mon;91;9;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+26;housemaid;married;basic.4y;no;yes;no;cellular;jul;mon;149;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+28;blue-collar;married;high.school;no;yes;no;cellular;jul;mon;392;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+56;blue-collar;married;unknown;unknown;yes;yes;cellular;jul;mon;210;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+22;blue-collar;single;unknown;unknown;no;no;telephone;jul;mon;50;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+57;blue-collar;married;professional.course;unknown;yes;no;cellular;jul;mon;857;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;yes
+31;services;single;university.degree;no;yes;no;cellular;jul;mon;68;9;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+56;blue-collar;married;unknown;unknown;no;no;cellular;jul;mon;298;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+30;blue-collar;single;basic.4y;unknown;yes;yes;cellular;jul;mon;213;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+30;services;single;university.degree;no;yes;no;cellular;jul;mon;195;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+58;management;married;university.degree;no;yes;no;cellular;jul;mon;260;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+30;services;married;high.school;no;no;no;cellular;jul;mon;474;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+29;admin.;single;high.school;no;yes;no;cellular;jul;mon;231;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+31;admin.;single;high.school;no;yes;yes;cellular;jul;mon;936;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+39;technician;single;professional.course;no;no;no;cellular;jul;mon;690;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+40;admin.;single;basic.9y;no;yes;no;cellular;jul;mon;381;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+40;admin.;single;basic.9y;no;no;no;cellular;jul;mon;1089;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+44;management;single;high.school;no;no;no;cellular;jul;mon;312;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+30;management;single;university.degree;no;no;no;cellular;jul;mon;211;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+32;technician;single;high.school;no;no;no;cellular;jul;mon;147;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+42;blue-collar;married;basic.4y;no;no;no;cellular;jul;mon;378;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+32;technician;married;professional.course;no;no;no;cellular;jul;mon;60;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+33;admin.;single;university.degree;no;yes;no;cellular;jul;mon;366;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+26;admin.;single;university.degree;no;yes;no;cellular;jul;mon;71;9;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+46;blue-collar;divorced;basic.9y;unknown;no;no;cellular;jul;mon;862;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+41;entrepreneur;divorced;high.school;unknown;yes;no;cellular;jul;mon;71;5;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+31;services;divorced;high.school;no;yes;no;cellular;jul;mon;172;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+37;admin.;single;high.school;no;yes;no;cellular;jul;mon;291;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+26;services;single;high.school;no;no;no;cellular;jul;mon;91;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+29;admin.;single;university.degree;no;no;yes;telephone;jul;mon;1130;8;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;yes
+29;admin.;married;basic.9y;no;yes;no;cellular;jul;mon;577;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;yes
+26;services;single;high.school;no;yes;no;cellular;jul;mon;509;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+26;services;single;high.school;no;yes;no;cellular;jul;mon;256;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+27;admin.;single;high.school;unknown;no;no;cellular;jul;mon;510;6;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+33;services;married;high.school;no;no;no;cellular;jul;mon;1342;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;yes
+29;technician;married;high.school;no;no;no;cellular;jul;mon;363;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+31;services;divorced;high.school;no;yes;no;cellular;jul;mon;522;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+55;admin.;married;high.school;no;no;no;cellular;jul;mon;168;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+46;services;married;high.school;no;no;yes;cellular;jul;mon;306;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+25;entrepreneur;single;professional.course;no;yes;no;cellular;jul;mon;354;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+30;admin.;single;university.degree;no;no;no;cellular;jul;mon;106;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+50;entrepreneur;married;basic.9y;unknown;no;no;cellular;jul;mon;262;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+37;admin.;single;high.school;no;yes;no;cellular;jul;mon;87;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+47;blue-collar;married;basic.6y;no;no;yes;cellular;jul;mon;930;1;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+30;services;married;high.school;no;yes;yes;telephone;jul;mon;342;9;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+48;admin.;divorced;university.degree;no;no;yes;cellular;jul;mon;564;5;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+37;admin.;married;high.school;no;no;no;cellular;jul;mon;157;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+46;services;married;high.school;no;yes;no;cellular;jul;mon;181;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+58;admin.;divorced;university.degree;no;yes;no;cellular;jul;mon;418;5;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+31;blue-collar;married;basic.9y;no;yes;yes;cellular;jul;mon;199;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+42;blue-collar;married;basic.4y;no;yes;no;cellular;jul;mon;251;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+28;technician;single;professional.course;no;yes;no;cellular;jul;mon;1002;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;yes
+30;management;married;university.degree;no;no;yes;cellular;jul;mon;833;5;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+39;technician;single;professional.course;no;no;yes;cellular;jul;mon;452;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+35;services;divorced;high.school;unknown;yes;no;cellular;jul;mon;274;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+46;unemployed;married;basic.9y;no;yes;no;cellular;jul;mon;241;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+57;admin.;married;university.degree;no;yes;no;cellular;jul;mon;564;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+43;admin.;married;high.school;no;yes;no;telephone;jul;mon;132;10;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+43;admin.;married;high.school;no;yes;no;cellular;jul;mon;250;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+22;blue-collar;single;unknown;unknown;unknown;unknown;cellular;jul;mon;47;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+48;services;divorced;high.school;no;yes;no;cellular;jul;mon;313;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+22;student;single;university.degree;no;yes;no;telephone;jul;mon;138;12;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+46;management;married;university.degree;no;no;no;cellular;jul;mon;338;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+43;blue-collar;married;basic.9y;unknown;yes;no;cellular;jul;mon;227;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+30;blue-collar;single;basic.9y;no;no;yes;cellular;jul;mon;985;11;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;yes
+35;admin.;married;unknown;unknown;yes;no;cellular;jul;mon;236;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+32;admin.;married;high.school;no;yes;no;cellular;jul;mon;67;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+44;blue-collar;married;basic.9y;unknown;yes;no;cellular;jul;mon;162;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+33;blue-collar;married;basic.9y;no;no;no;cellular;jul;mon;121;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+39;admin.;married;university.degree;no;yes;no;cellular;jul;mon;929;15;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+33;blue-collar;married;unknown;no;no;no;cellular;jul;mon;91;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+35;blue-collar;single;basic.4y;unknown;no;no;cellular;jul;mon;59;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+29;admin.;married;high.school;no;yes;no;cellular;jul;mon;126;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+57;blue-collar;married;basic.4y;unknown;yes;no;cellular;jul;mon;769;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+41;admin.;married;university.degree;no;no;no;cellular;jul;mon;1360;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;yes
+30;blue-collar;single;basic.9y;no;yes;yes;cellular;jul;mon;90;5;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+49;admin.;married;university.degree;unknown;no;no;cellular;jul;mon;91;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+37;technician;divorced;professional.course;unknown;yes;no;cellular;jul;mon;1134;5;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;yes
+30;blue-collar;married;basic.6y;no;no;no;cellular;jul;mon;173;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+49;management;married;university.degree;no;no;no;cellular;jul;mon;86;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+32;blue-collar;married;basic.4y;no;yes;no;cellular;jul;mon;130;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+25;admin.;single;basic.9y;no;no;no;cellular;jul;mon;83;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+43;blue-collar;married;basic.9y;unknown;yes;no;cellular;jul;mon;75;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+38;housemaid;married;unknown;unknown;yes;no;cellular;jul;mon;208;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+36;blue-collar;single;basic.6y;unknown;no;no;cellular;jul;mon;276;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+26;admin.;single;unknown;no;no;yes;cellular;jul;mon;106;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+29;blue-collar;married;unknown;no;no;no;cellular;jul;mon;251;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+33;admin.;divorced;high.school;no;yes;no;cellular;jul;mon;482;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+27;blue-collar;single;basic.9y;unknown;yes;no;telephone;jul;mon;21;31;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+55;technician;married;professional.course;unknown;no;no;cellular;jul;mon;240;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+39;management;married;university.degree;unknown;yes;no;cellular;jul;mon;908;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;yes
+35;entrepreneur;single;university.degree;no;yes;no;cellular;jul;mon;88;5;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+27;admin.;single;university.degree;no;yes;yes;cellular;jul;mon;150;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+46;housemaid;married;basic.4y;unknown;yes;no;cellular;jul;mon;31;20;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+36;services;married;high.school;no;yes;yes;cellular;jul;mon;185;7;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+37;blue-collar;single;basic.9y;no;no;no;cellular;jul;mon;167;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+28;technician;married;basic.9y;no;yes;no;telephone;jul;mon;105;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+27;admin.;single;university.degree;no;no;no;telephone;jul;mon;86;9;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+23;admin.;single;high.school;no;yes;no;cellular;jul;mon;34;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+36;admin.;married;university.degree;no;yes;no;cellular;jul;mon;105;10;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+32;services;married;basic.4y;unknown;no;no;cellular;jul;mon;322;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+25;housemaid;single;basic.9y;no;yes;no;cellular;jul;mon;898;5;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+32;admin.;married;high.school;no;no;no;cellular;jul;mon;549;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+32;blue-collar;married;basic.4y;unknown;no;no;cellular;jul;mon;193;5;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+30;admin.;single;high.school;no;no;no;telephone;jul;mon;177;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+27;technician;single;professional.course;no;no;no;cellular;jul;mon;357;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+32;blue-collar;married;basic.4y;unknown;yes;yes;cellular;jul;mon;419;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+55;technician;married;professional.course;unknown;no;no;cellular;jul;mon;78;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+24;admin.;single;high.school;no;yes;no;cellular;jul;mon;595;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+43;admin.;married;high.school;no;yes;no;cellular;jul;mon;24;28;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+36;blue-collar;married;high.school;unknown;yes;no;cellular;jul;mon;147;5;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+30;management;single;university.degree;no;no;yes;telephone;jul;mon;100;11;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+33;admin.;married;university.degree;no;no;no;cellular;jul;mon;145;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+25;admin.;single;high.school;no;no;no;telephone;jul;mon;184;21;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+33;blue-collar;married;basic.6y;unknown;no;yes;cellular;jul;mon;111;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+29;blue-collar;single;basic.9y;no;yes;no;cellular;jul;mon;189;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+29;retired;single;basic.4y;unknown;no;no;cellular;jul;mon;314;7;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+25;services;single;high.school;no;no;no;cellular;jul;mon;322;2;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+48;blue-collar;married;basic.9y;no;no;no;cellular;jul;mon;54;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+36;blue-collar;single;basic.9y;unknown;yes;no;cellular;jul;mon;445;4;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+45;blue-collar;married;basic.4y;unknown;yes;no;cellular;jul;mon;98;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+49;admin.;married;university.degree;unknown;no;no;cellular;jul;mon;97;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+24;admin.;single;high.school;no;yes;no;telephone;jul;mon;722;3;999;0;nonexistent;1.4;93.918;-42.7;4.96;5228.1;no
+45;services;married;high.school;no;yes;no;telephone;jul;tue;68;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+51;technician;married;basic.6y;no;yes;no;cellular;jul;tue;166;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+31;blue-collar;single;high.school;no;no;no;cellular;jul;tue;78;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+41;admin.;divorced;high.school;no;no;no;cellular;jul;tue;126;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+58;retired;married;professional.course;unknown;no;no;telephone;jul;tue;44;8;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+37;management;married;unknown;no;yes;no;cellular;jul;tue;70;9;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+45;services;married;high.school;no;no;no;telephone;jul;tue;80;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+53;retired;divorced;basic.4y;unknown;no;yes;cellular;jul;tue;159;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+28;admin.;single;high.school;no;no;no;cellular;jul;tue;72;14;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+42;admin.;single;university.degree;no;no;no;cellular;jul;tue;125;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+37;admin.;single;high.school;unknown;no;no;cellular;jul;tue;712;6;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;yes
+38;blue-collar;divorced;basic.4y;no;yes;no;cellular;jul;tue;85;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+44;blue-collar;married;professional.course;unknown;no;no;cellular;jul;tue;156;20;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+44;blue-collar;married;professional.course;unknown;no;no;cellular;jul;tue;181;11;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+30;unemployed;married;high.school;no;yes;no;cellular;jul;tue;383;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+48;technician;single;high.school;no;no;yes;cellular;jul;tue;93;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+30;services;single;high.school;unknown;yes;no;cellular;jul;tue;40;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+54;retired;divorced;university.degree;no;yes;no;cellular;jul;tue;152;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+57;housemaid;divorced;basic.6y;no;yes;no;cellular;jul;tue;87;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+37;admin.;married;university.degree;no;yes;no;cellular;jul;tue;46;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+31;admin.;single;high.school;no;no;no;cellular;jul;tue;17;7;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+27;blue-collar;single;basic.6y;no;no;no;telephone;jul;tue;68;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+28;technician;married;professional.course;no;no;no;cellular;jul;tue;261;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+38;services;single;high.school;unknown;yes;no;cellular;jul;tue;204;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+30;admin.;single;high.school;no;yes;no;cellular;jul;tue;102;7;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+35;admin.;divorced;high.school;no;unknown;unknown;cellular;jul;tue;637;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+31;blue-collar;married;professional.course;no;yes;no;cellular;jul;tue;95;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+39;blue-collar;married;basic.6y;unknown;yes;no;cellular;jul;tue;238;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+31;blue-collar;married;basic.6y;no;yes;no;cellular;jul;tue;420;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+59;housemaid;married;basic.4y;unknown;no;no;cellular;jul;tue;121;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+37;admin.;married;university.degree;no;yes;no;cellular;jul;tue;75;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+33;technician;single;professional.course;no;yes;no;cellular;jul;tue;312;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+27;blue-collar;single;high.school;no;no;no;cellular;jul;tue;29;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+56;entrepreneur;married;university.degree;unknown;no;yes;cellular;jul;tue;41;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+30;admin.;single;high.school;no;yes;no;cellular;jul;tue;1352;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;yes
+29;technician;married;professional.course;no;yes;yes;cellular;jul;tue;82;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+38;self-employed;single;unknown;no;yes;no;cellular;jul;tue;438;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+59;retired;married;basic.4y;no;no;no;cellular;jul;tue;153;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+22;blue-collar;single;basic.6y;unknown;yes;no;cellular;jul;tue;139;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+33;blue-collar;married;basic.6y;no;yes;no;cellular;jul;tue;376;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+37;admin.;married;high.school;no;no;yes;cellular;jul;tue;135;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+41;services;divorced;high.school;no;yes;no;cellular;jul;tue;77;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+24;blue-collar;married;professional.course;no;no;no;cellular;jul;tue;211;8;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+40;management;married;university.degree;no;no;no;cellular;jul;tue;314;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+33;services;married;high.school;no;yes;no;cellular;jul;tue;278;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+33;admin.;single;university.degree;no;no;yes;cellular;jul;tue;263;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+21;services;single;high.school;no;yes;no;cellular;jul;tue;344;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+33;blue-collar;married;basic.6y;no;no;no;cellular;jul;tue;1077;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;yes
+46;blue-collar;married;basic.4y;unknown;yes;no;cellular;jul;tue;152;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+31;admin.;single;university.degree;no;yes;no;cellular;jul;tue;72;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+31;admin.;single;university.degree;no;yes;no;cellular;jul;tue;137;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+31;admin.;single;university.degree;no;yes;no;cellular;jul;tue;214;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+58;retired;married;basic.4y;unknown;no;no;cellular;jul;tue;70;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+35;blue-collar;divorced;basic.4y;no;yes;no;cellular;jul;tue;178;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+35;blue-collar;divorced;basic.4y;no;yes;no;cellular;jul;tue;123;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+36;admin.;single;high.school;no;no;no;cellular;jul;tue;90;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+36;admin.;single;high.school;no;no;no;cellular;jul;tue;80;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+58;retired;married;basic.4y;unknown;no;no;cellular;jul;tue;307;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+36;admin.;single;high.school;no;no;no;cellular;jul;tue;259;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+33;blue-collar;married;basic.9y;no;yes;no;cellular;jul;tue;132;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+46;housemaid;divorced;basic.4y;unknown;yes;no;cellular;jul;tue;161;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+33;services;single;high.school;no;yes;no;cellular;jul;tue;714;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;yes
+27;blue-collar;married;basic.4y;no;yes;no;cellular;jul;tue;66;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+46;housemaid;divorced;basic.4y;unknown;yes;no;cellular;jul;tue;259;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+27;blue-collar;married;basic.4y;no;yes;no;cellular;jul;tue;185;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+54;technician;married;high.school;no;no;no;cellular;jul;tue;422;8;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+27;admin.;single;university.degree;unknown;yes;yes;cellular;jul;tue;255;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+46;housemaid;divorced;basic.4y;unknown;no;yes;cellular;jul;tue;518;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+27;services;single;high.school;no;yes;no;cellular;jul;tue;168;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+23;blue-collar;single;basic.9y;no;yes;no;cellular;jul;tue;255;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+28;blue-collar;single;high.school;no;no;no;cellular;jul;tue;139;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+35;blue-collar;married;unknown;unknown;yes;no;cellular;jul;tue;527;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+35;blue-collar;married;unknown;unknown;no;no;cellular;jul;tue;560;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;yes
+44;technician;married;professional.course;unknown;yes;no;cellular;jul;tue;663;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+38;blue-collar;married;basic.4y;unknown;no;no;cellular;jul;tue;690;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;yes
+39;blue-collar;single;high.school;unknown;yes;no;cellular;jul;tue;132;6;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+27;admin.;single;basic.9y;no;yes;yes;cellular;jul;tue;81;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+33;blue-collar;married;basic.6y;no;yes;no;cellular;jul;tue;702;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+30;blue-collar;divorced;basic.9y;no;yes;no;cellular;jul;tue;168;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+44;blue-collar;married;professional.course;unknown;no;no;cellular;jul;tue;407;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+30;admin.;single;high.school;no;yes;yes;cellular;jul;tue;254;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+30;admin.;single;high.school;no;no;no;cellular;jul;tue;176;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+45;services;married;high.school;no;no;no;cellular;jul;tue;89;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+40;admin.;married;high.school;no;no;no;cellular;jul;tue;305;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+22;admin.;single;high.school;no;yes;no;cellular;jul;tue;107;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+32;technician;single;unknown;no;yes;no;cellular;jul;tue;121;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+60;retired;married;basic.6y;no;no;no;cellular;jul;tue;268;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+59;retired;married;basic.6y;no;yes;no;cellular;jul;tue;196;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+35;services;single;high.school;unknown;yes;no;cellular;jul;tue;150;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+59;retired;married;basic.6y;no;yes;no;cellular;jul;tue;367;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+33;technician;single;professional.course;no;no;no;cellular;jul;tue;152;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+40;admin.;single;university.degree;no;no;no;cellular;jul;tue;490;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+37;admin.;married;university.degree;no;yes;no;cellular;jul;tue;125;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+59;retired;married;basic.6y;no;yes;no;cellular;jul;tue;807;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+56;blue-collar;married;basic.4y;unknown;no;no;cellular;jul;tue;1545;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;yes
+35;services;single;high.school;unknown;yes;no;cellular;jul;tue;40;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+35;services;single;high.school;unknown;no;no;cellular;jul;tue;65;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+35;services;single;high.school;unknown;yes;yes;cellular;jul;tue;47;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+35;services;single;high.school;unknown;yes;no;cellular;jul;tue;118;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+31;technician;married;professional.course;no;no;no;cellular;jul;tue;274;6;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+37;services;single;high.school;no;no;no;cellular;jul;tue;108;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+56;blue-collar;married;unknown;unknown;yes;no;cellular;jul;tue;1017;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+35;services;single;high.school;unknown;no;no;cellular;jul;tue;520;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+26;blue-collar;single;basic.9y;no;yes;no;cellular;jul;tue;56;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+46;blue-collar;married;unknown;no;yes;no;cellular;jul;tue;89;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+26;blue-collar;married;basic.4y;unknown;no;no;cellular;jul;tue;199;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+24;student;married;university.degree;no;no;no;cellular;jul;tue;114;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+38;self-employed;single;unknown;no;no;no;cellular;jul;tue;843;8;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+24;blue-collar;married;professional.course;no;no;no;cellular;jul;tue;273;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+30;blue-collar;married;basic.9y;no;no;no;cellular;jul;tue;189;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+37;admin.;single;unknown;no;no;no;telephone;jul;tue;74;13;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+57;blue-collar;divorced;basic.4y;unknown;yes;no;cellular;jul;tue;485;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+48;blue-collar;single;basic.4y;no;no;yes;cellular;jul;tue;271;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+24;blue-collar;single;basic.6y;no;no;no;cellular;jul;tue;115;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+54;services;married;high.school;no;no;no;cellular;jul;tue;152;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+38;blue-collar;married;basic.4y;unknown;yes;no;cellular;jul;tue;71;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+25;blue-collar;married;basic.9y;no;yes;yes;cellular;jul;tue;599;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+55;admin.;married;unknown;no;yes;yes;cellular;jul;tue;247;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+30;admin.;single;university.degree;no;yes;yes;cellular;jul;tue;204;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+30;admin.;single;university.degree;no;no;yes;telephone;jul;tue;215;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+41;blue-collar;married;basic.9y;no;yes;yes;cellular;jul;tue;88;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+37;blue-collar;married;high.school;unknown;yes;no;cellular;jul;tue;423;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+41;blue-collar;married;basic.9y;no;yes;no;cellular;jul;tue;285;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+49;admin.;married;university.degree;unknown;no;no;cellular;jul;tue;22;6;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+41;management;single;university.degree;no;no;no;cellular;jul;tue;200;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+23;blue-collar;single;basic.9y;no;no;no;cellular;jul;tue;246;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+36;admin.;married;university.degree;unknown;yes;no;cellular;jul;tue;352;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+30;admin.;single;high.school;no;no;yes;cellular;jul;tue;68;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+27;admin.;single;university.degree;no;yes;yes;cellular;jul;tue;292;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+26;blue-collar;single;basic.6y;unknown;no;no;cellular;jul;tue;188;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+35;blue-collar;married;unknown;no;yes;no;cellular;jul;tue;506;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+38;housemaid;married;basic.4y;unknown;no;no;cellular;jul;tue;136;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+59;retired;married;basic.6y;no;yes;no;cellular;jul;tue;89;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+32;blue-collar;married;basic.4y;no;yes;no;cellular;jul;tue;117;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+44;blue-collar;married;basic.6y;unknown;yes;yes;cellular;jul;tue;188;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+31;admin.;single;university.degree;no;yes;no;cellular;jul;tue;89;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+30;admin.;single;high.school;no;no;yes;cellular;jul;tue;455;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+27;unemployed;single;university.degree;no;yes;no;cellular;jul;tue;65;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+27;unemployed;single;university.degree;no;no;no;telephone;jul;tue;27;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+27;unemployed;single;university.degree;no;yes;no;cellular;jul;tue;272;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+27;unemployed;single;university.degree;no;yes;no;cellular;jul;tue;120;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+32;blue-collar;married;basic.4y;no;no;yes;telephone;jul;tue;605;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+40;management;married;university.degree;no;no;yes;cellular;jul;tue;630;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+31;self-employed;single;high.school;no;yes;no;cellular;jul;tue;151;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+39;technician;married;professional.course;no;no;no;cellular;jul;tue;62;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+39;technician;married;professional.course;no;no;yes;cellular;jul;tue;90;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+23;blue-collar;single;basic.9y;no;no;no;cellular;jul;tue;164;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+56;admin.;married;unknown;unknown;no;no;cellular;jul;tue;599;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+29;admin.;single;university.degree;no;no;no;cellular;jul;tue;106;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+35;services;divorced;university.degree;no;no;yes;cellular;jul;tue;654;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;yes
+30;admin.;single;university.degree;no;no;yes;cellular;jul;tue;127;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+30;management;single;high.school;no;no;no;cellular;jul;tue;1288;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+32;blue-collar;married;basic.6y;no;no;no;cellular;jul;tue;59;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+35;services;divorced;basic.9y;no;yes;no;telephone;jul;tue;124;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+34;services;single;high.school;no;no;no;telephone;jul;tue;29;16;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+29;technician;married;professional.course;no;no;no;cellular;jul;tue;156;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+49;admin.;married;basic.9y;no;yes;no;cellular;jul;tue;73;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+26;blue-collar;single;basic.6y;unknown;no;no;cellular;jul;tue;333;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+46;technician;married;basic.9y;unknown;yes;no;cellular;jul;tue;267;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+35;admin.;married;university.degree;unknown;yes;no;cellular;jul;tue;403;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+32;admin.;married;basic.9y;no;yes;no;cellular;jul;tue;129;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+58;retired;married;basic.4y;no;no;yes;cellular;jul;tue;52;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+49;blue-collar;married;basic.9y;unknown;no;no;cellular;jul;tue;270;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+58;retired;married;basic.4y;no;no;no;cellular;jul;tue;283;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+58;retired;married;basic.4y;no;no;no;cellular;jul;tue;81;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+50;blue-collar;married;basic.4y;no;no;yes;cellular;jul;tue;849;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;yes
+36;services;divorced;professional.course;no;yes;no;telephone;jul;tue;261;12;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+58;retired;married;basic.4y;no;yes;no;cellular;jul;tue;614;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+58;retired;married;basic.4y;no;no;no;cellular;jul;tue;114;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+45;services;married;high.school;unknown;no;no;cellular;jul;tue;70;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+26;blue-collar;single;basic.6y;unknown;yes;no;cellular;jul;tue;1833;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;yes
+31;technician;single;professional.course;no;yes;no;cellular;jul;tue;77;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+35;blue-collar;married;university.degree;no;unknown;unknown;cellular;jul;tue;87;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+26;admin.;single;university.degree;no;yes;no;cellular;jul;tue;369;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+35;admin.;married;university.degree;unknown;yes;no;cellular;jul;tue;62;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+40;blue-collar;married;basic.9y;no;yes;no;cellular;jul;tue;86;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+28;technician;single;high.school;no;no;no;cellular;jul;tue;431;8;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+46;self-employed;married;university.degree;no;no;yes;cellular;jul;tue;1220;12;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+55;entrepreneur;divorced;unknown;no;no;no;cellular;jul;tue;67;9;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+25;blue-collar;single;high.school;no;yes;no;cellular;jul;tue;214;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+53;technician;divorced;professional.course;no;yes;yes;cellular;jul;tue;639;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+35;services;divorced;university.degree;no;yes;no;cellular;jul;tue;722;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;yes
+49;admin.;single;high.school;no;yes;no;cellular;jul;tue;1281;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+22;services;single;high.school;no;yes;no;cellular;jul;tue;246;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+48;entrepreneur;single;university.degree;no;yes;no;cellular;jul;tue;654;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+56;retired;married;basic.4y;unknown;no;no;cellular;jul;tue;112;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+39;blue-collar;married;basic.4y;no;no;no;telephone;jul;tue;204;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+31;self-employed;single;high.school;no;no;no;cellular;jul;tue;364;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+31;self-employed;single;high.school;no;no;yes;cellular;jul;tue;85;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+45;entrepreneur;divorced;professional.course;no;yes;no;cellular;jul;tue;211;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+35;blue-collar;divorced;unknown;no;yes;no;cellular;jul;tue;1029;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+37;admin.;married;university.degree;no;yes;no;telephone;jul;tue;135;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+33;technician;single;professional.course;no;no;no;cellular;jul;tue;115;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+49;admin.;married;high.school;no;no;no;cellular;jul;tue;443;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+27;blue-collar;single;basic.6y;no;no;yes;cellular;jul;tue;153;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+36;admin.;single;unknown;no;no;no;cellular;jul;tue;133;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+42;entrepreneur;married;university.degree;no;yes;no;cellular;jul;tue;578;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+36;admin.;single;unknown;no;no;no;cellular;jul;tue;209;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+34;services;single;high.school;no;unknown;unknown;cellular;jul;tue;24;12;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+27;blue-collar;single;basic.6y;no;no;no;cellular;jul;tue;1508;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;yes
+57;management;married;university.degree;no;no;no;cellular;jul;tue;101;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+57;management;married;university.degree;no;no;no;cellular;jul;tue;632;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+49;unemployed;married;basic.4y;unknown;yes;yes;cellular;jul;tue;212;17;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+51;entrepreneur;married;university.degree;unknown;yes;yes;cellular;jul;tue;140;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+28;technician;single;high.school;no;yes;no;cellular;jul;tue;662;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+44;admin.;married;university.degree;no;yes;no;cellular;jul;tue;263;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+41;blue-collar;married;unknown;unknown;yes;yes;cellular;jul;tue;97;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+52;retired;divorced;professional.course;no;no;no;cellular;jul;tue;867;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+45;entrepreneur;divorced;professional.course;no;yes;no;cellular;jul;tue;50;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+33;technician;single;professional.course;no;no;no;cellular;jul;tue;96;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+30;admin.;single;university.degree;no;yes;no;cellular;jul;tue;124;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+48;blue-collar;married;basic.4y;no;yes;no;telephone;jul;tue;563;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+36;admin.;single;high.school;no;no;no;cellular;jul;tue;385;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+31;self-employed;single;high.school;no;no;no;cellular;jul;tue;196;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+29;blue-collar;single;high.school;no;yes;no;cellular;jul;tue;966;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;yes
+48;blue-collar;married;basic.4y;no;yes;no;cellular;jul;tue;264;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+28;technician;single;high.school;no;yes;no;cellular;jul;tue;124;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+58;retired;married;basic.4y;no;no;no;cellular;jul;tue;165;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+45;services;married;high.school;unknown;no;no;cellular;jul;tue;210;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+49;unemployed;married;basic.4y;unknown;yes;no;telephone;jul;tue;275;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+28;admin.;married;high.school;no;unknown;unknown;cellular;jul;tue;502;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+40;blue-collar;married;high.school;no;no;no;cellular;jul;tue;405;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+50;entrepreneur;married;university.degree;no;no;no;cellular;jul;tue;289;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+46;unemployed;married;professional.course;no;no;no;cellular;jul;tue;182;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+44;technician;married;high.school;no;yes;no;telephone;jul;tue;92;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+27;admin.;single;university.degree;unknown;no;no;cellular;jul;tue;128;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+31;blue-collar;single;basic.4y;no;yes;no;cellular;jul;tue;160;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+35;admin.;married;professional.course;no;no;no;cellular;jul;tue;139;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+53;admin.;single;unknown;unknown;no;no;cellular;jul;tue;183;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+39;blue-collar;married;basic.9y;unknown;no;no;cellular;jul;tue;181;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+33;blue-collar;divorced;basic.9y;no;no;no;cellular;jul;tue;134;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+35;blue-collar;divorced;basic.4y;no;no;yes;cellular;jul;tue;487;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+31;admin.;single;university.degree;no;yes;no;cellular;jul;tue;82;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+51;housemaid;married;basic.9y;no;yes;no;cellular;jul;tue;681;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+38;housemaid;married;basic.4y;unknown;yes;no;cellular;jul;tue;283;6;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+48;technician;single;professional.course;unknown;yes;no;cellular;jul;tue;417;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+41;blue-collar;married;basic.9y;no;yes;no;cellular;jul;tue;60;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+27;admin.;single;university.degree;unknown;yes;no;cellular;jul;tue;77;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+27;admin.;single;university.degree;unknown;yes;no;cellular;jul;tue;72;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+27;admin.;single;university.degree;unknown;yes;no;cellular;jul;tue;282;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+27;admin.;single;university.degree;unknown;yes;no;cellular;jul;tue;226;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+27;admin.;single;university.degree;unknown;no;no;cellular;jul;tue;137;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+27;admin.;single;university.degree;unknown;yes;no;cellular;jul;tue;261;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+37;student;single;unknown;no;yes;no;cellular;jul;tue;661;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+28;technician;single;high.school;no;no;no;cellular;jul;tue;206;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+35;admin.;married;university.degree;unknown;no;no;cellular;jul;tue;105;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+28;technician;single;high.school;no;yes;no;cellular;jul;tue;445;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+40;management;married;university.degree;no;yes;no;cellular;jul;tue;90;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+42;entrepreneur;married;university.degree;no;yes;no;cellular;jul;tue;370;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+41;blue-collar;divorced;unknown;no;yes;no;cellular;jul;tue;242;7;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+33;technician;single;professional.course;no;no;yes;cellular;jul;tue;1408;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+26;services;married;high.school;no;yes;no;telephone;jul;tue;514;11;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+26;blue-collar;single;basic.6y;unknown;yes;no;cellular;jul;tue;126;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+24;admin.;single;high.school;no;unknown;unknown;cellular;jul;tue;176;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+30;admin.;single;university.degree;no;no;yes;cellular;jul;tue;135;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+27;blue-collar;married;basic.6y;unknown;yes;no;cellular;jul;tue;163;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+43;services;divorced;unknown;unknown;yes;yes;cellular;jul;tue;483;7;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+30;admin.;single;university.degree;no;yes;no;cellular;jul;tue;608;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+49;services;divorced;high.school;unknown;yes;no;cellular;jul;tue;100;9;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+49;admin.;married;basic.9y;no;yes;yes;cellular;jul;tue;145;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+51;housemaid;married;basic.9y;no;yes;no;cellular;jul;tue;160;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+40;blue-collar;divorced;unknown;no;yes;no;cellular;jul;tue;160;6;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+43;entrepreneur;married;university.degree;unknown;yes;no;cellular;jul;tue;261;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+43;entrepreneur;married;university.degree;unknown;yes;no;cellular;jul;tue;307;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+27;services;single;high.school;no;yes;no;cellular;jul;tue;236;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+38;blue-collar;married;basic.6y;unknown;no;no;cellular;jul;tue;403;7;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+31;blue-collar;single;high.school;no;no;yes;cellular;jul;tue;241;9;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+31;blue-collar;married;basic.6y;no;yes;no;cellular;jul;tue;387;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+23;blue-collar;single;basic.9y;no;yes;no;cellular;jul;tue;211;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+25;services;single;unknown;no;yes;no;cellular;jul;tue;598;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;yes
+33;blue-collar;married;basic.6y;no;yes;no;cellular;jul;tue;1206;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+36;admin.;single;high.school;no;no;yes;cellular;jul;tue;248;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+58;retired;married;basic.4y;no;no;no;cellular;jul;tue;139;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+29;management;married;university.degree;no;yes;no;cellular;jul;tue;181;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+54;retired;divorced;basic.4y;no;yes;no;cellular;jul;tue;237;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+53;management;married;university.degree;no;no;no;cellular;jul;tue;477;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+41;management;married;high.school;no;yes;no;cellular;jul;tue;312;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+48;housemaid;divorced;basic.4y;no;yes;no;cellular;jul;tue;727;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+30;admin.;single;high.school;no;yes;no;telephone;jul;tue;249;21;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+50;blue-collar;married;basic.4y;no;yes;no;cellular;jul;tue;186;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+27;technician;married;university.degree;no;yes;no;cellular;jul;tue;459;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+24;blue-collar;married;professional.course;no;no;no;cellular;jul;tue;240;10;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+37;blue-collar;divorced;professional.course;no;no;no;cellular;jul;tue;107;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+27;admin.;single;university.degree;unknown;no;yes;telephone;jul;tue;287;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+32;blue-collar;single;basic.9y;no;yes;no;cellular;jul;tue;124;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+60;housemaid;married;illiterate;unknown;yes;no;cellular;jul;tue;176;7;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+35;technician;single;professional.course;no;no;no;cellular;jul;tue;270;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+49;admin.;single;high.school;no;yes;no;cellular;jul;tue;470;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+43;services;divorced;unknown;unknown;yes;no;cellular;jul;tue;139;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+33;services;single;high.school;unknown;yes;no;cellular;jul;tue;560;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;yes
+37;services;single;high.school;no;no;yes;cellular;jul;tue;96;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+28;technician;single;high.school;no;no;no;cellular;jul;tue;100;7;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+48;entrepreneur;single;university.degree;no;no;yes;cellular;jul;tue;137;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+38;self-employed;single;unknown;no;yes;yes;cellular;jul;tue;55;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+27;admin.;single;university.degree;no;no;no;cellular;jul;tue;1237;7;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;yes
+27;blue-collar;single;unknown;no;unknown;unknown;cellular;jul;tue;81;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+34;blue-collar;married;basic.4y;no;yes;no;cellular;jul;tue;246;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+34;blue-collar;married;unknown;no;no;yes;cellular;jul;tue;44;13;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+38;blue-collar;divorced;basic.4y;no;yes;no;cellular;jul;tue;493;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+44;blue-collar;married;basic.4y;no;no;no;cellular;jul;tue;345;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+58;retired;married;basic.4y;no;yes;no;cellular;jul;tue;216;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+54;technician;married;high.school;no;yes;no;cellular;jul;tue;187;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+56;retired;married;basic.4y;unknown;no;no;cellular;jul;tue;580;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+23;services;single;high.school;no;no;no;cellular;jul;tue;191;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+41;blue-collar;married;basic.9y;no;no;no;cellular;jul;tue;184;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+57;management;married;university.degree;no;no;no;cellular;jul;tue;443;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+47;blue-collar;single;unknown;unknown;yes;no;cellular;jul;tue;213;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+28;blue-collar;married;basic.9y;no;no;no;telephone;jul;tue;400;8;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+33;blue-collar;married;basic.6y;no;no;yes;cellular;jul;tue;289;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+41;services;single;unknown;unknown;no;no;cellular;jul;tue;717;13;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+51;blue-collar;married;basic.9y;unknown;yes;no;cellular;jul;tue;156;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+48;entrepreneur;single;university.degree;no;no;no;cellular;jul;tue;149;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+29;blue-collar;single;basic.9y;unknown;yes;no;cellular;jul;tue;89;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+29;self-employed;married;university.degree;no;yes;no;cellular;jul;tue;503;7;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+24;blue-collar;single;unknown;no;no;no;cellular;jul;tue;62;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+33;services;single;high.school;unknown;yes;no;cellular;jul;tue;282;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+20;services;single;high.school;no;no;no;telephone;jul;tue;97;15;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+24;blue-collar;single;unknown;no;no;no;cellular;jul;tue;39;17;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+38;blue-collar;married;basic.6y;no;yes;no;cellular;jul;tue;102;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+40;management;married;university.degree;no;no;no;cellular;jul;tue;88;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+44;unknown;married;basic.6y;no;no;no;cellular;jul;tue;199;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+36;management;divorced;university.degree;no;yes;no;cellular;jul;tue;233;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+34;blue-collar;married;basic.6y;unknown;yes;no;cellular;jul;tue;126;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+27;admin.;single;basic.9y;no;yes;no;cellular;jul;tue;44;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+47;blue-collar;single;unknown;unknown;yes;no;cellular;jul;tue;78;10;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+27;blue-collar;single;basic.6y;no;yes;yes;cellular;jul;tue;246;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+46;blue-collar;married;basic.4y;unknown;no;no;cellular;jul;tue;203;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+51;housemaid;married;basic.9y;no;no;no;cellular;jul;tue;209;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+43;admin.;married;university.degree;unknown;yes;no;cellular;jul;tue;112;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+38;blue-collar;married;basic.6y;no;no;no;cellular;jul;tue;728;8;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+41;services;divorced;high.school;no;yes;no;cellular;jul;tue;249;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+30;admin.;single;university.degree;no;yes;no;cellular;jul;tue;282;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+24;admin.;single;high.school;no;no;yes;cellular;jul;tue;210;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+26;admin.;single;university.degree;no;yes;no;cellular;jul;tue;1287;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+25;services;single;high.school;no;no;no;cellular;jul;tue;32;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+37;self-employed;divorced;professional.course;no;yes;no;cellular;jul;tue;437;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+26;blue-collar;single;basic.9y;no;yes;no;cellular;jul;tue;36;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+35;services;single;high.school;unknown;yes;yes;telephone;jul;tue;1148;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+36;blue-collar;married;basic.6y;no;yes;no;cellular;jul;tue;864;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;yes
+55;admin.;married;university.degree;no;yes;no;cellular;jul;tue;464;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+53;admin.;married;university.degree;unknown;yes;no;cellular;jul;tue;188;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+23;management;single;university.degree;no;yes;no;cellular;jul;tue;314;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+38;technician;married;high.school;no;yes;no;cellular;jul;tue;1037;8;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;yes
+41;blue-collar;divorced;unknown;no;yes;no;telephone;jul;tue;351;11;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+51;blue-collar;married;basic.4y;no;yes;no;cellular;jul;tue;279;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+35;services;divorced;university.degree;no;yes;no;telephone;jul;tue;119;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+31;blue-collar;single;high.school;no;yes;no;cellular;jul;tue;162;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+22;services;married;basic.9y;no;yes;no;cellular;jul;tue;209;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+20;student;single;high.school;no;yes;yes;cellular;jul;tue;136;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+57;technician;divorced;professional.course;no;no;no;cellular;jul;tue;624;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+52;entrepreneur;married;university.degree;unknown;yes;no;cellular;jul;tue;167;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+35;housemaid;married;basic.4y;no;yes;no;cellular;jul;tue;38;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+35;housemaid;married;basic.4y;no;no;yes;cellular;jul;tue;203;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+31;blue-collar;single;high.school;no;no;no;telephone;jul;tue;802;11;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;yes
+28;blue-collar;married;basic.9y;no;no;no;cellular;jul;tue;143;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+29;blue-collar;single;basic.9y;unknown;yes;no;cellular;jul;tue;262;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+29;blue-collar;single;basic.9y;unknown;yes;no;cellular;jul;tue;254;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+50;entrepreneur;married;university.degree;no;no;no;cellular;jul;tue;1226;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+48;technician;married;professional.course;unknown;no;no;cellular;jul;tue;113;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+29;blue-collar;single;basic.9y;unknown;yes;no;cellular;jul;tue;714;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+32;blue-collar;single;basic.9y;no;yes;yes;cellular;jul;tue;282;6;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+29;blue-collar;single;basic.9y;unknown;no;no;cellular;jul;tue;534;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+35;services;married;unknown;unknown;yes;yes;cellular;jul;tue;174;9;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+29;blue-collar;single;basic.9y;unknown;yes;yes;cellular;jul;tue;532;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+53;admin.;single;unknown;unknown;yes;no;cellular;jul;tue;319;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+31;blue-collar;married;unknown;unknown;no;no;cellular;jul;tue;1608;13;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;yes
+31;admin.;single;university.degree;no;unknown;unknown;cellular;jul;wed;61;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;management;married;university.degree;no;no;no;cellular;jul;wed;84;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+27;blue-collar;single;basic.9y;unknown;no;no;cellular;jul;wed;127;8;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+59;technician;divorced;basic.9y;no;yes;no;cellular;jul;wed;85;13;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+34;blue-collar;married;basic.9y;no;yes;no;cellular;jul;wed;487;5;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;management;married;university.degree;no;yes;no;cellular;jul;wed;217;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+24;services;single;basic.9y;no;no;no;cellular;jul;wed;439;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+24;admin.;married;unknown;no;yes;no;cellular;jul;wed;170;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;blue-collar;married;basic.6y;no;no;no;cellular;jul;wed;411;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+44;blue-collar;married;basic.4y;unknown;no;no;cellular;jul;wed;71;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+21;services;single;basic.9y;no;yes;no;cellular;jul;wed;285;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+25;blue-collar;single;basic.9y;unknown;yes;no;cellular;jul;wed;442;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;blue-collar;married;unknown;no;no;no;cellular;jul;wed;59;4;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+39;services;married;unknown;unknown;no;no;cellular;jul;wed;100;5;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+59;retired;married;unknown;unknown;no;no;cellular;jul;wed;133;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+36;entrepreneur;married;university.degree;no;yes;no;cellular;jul;wed;40;8;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+36;entrepreneur;married;university.degree;no;no;no;cellular;jul;wed;187;4;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;admin.;married;university.degree;no;no;yes;cellular;jul;wed;70;5;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+21;blue-collar;married;basic.9y;no;no;yes;cellular;jul;wed;89;6;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+26;services;single;high.school;no;yes;no;cellular;jul;wed;75;10;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+26;services;single;high.school;no;yes;no;cellular;jul;wed;284;8;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+28;blue-collar;single;high.school;no;yes;no;cellular;jul;wed;221;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;blue-collar;divorced;basic.6y;unknown;yes;no;cellular;jul;wed;97;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+42;housemaid;married;basic.4y;unknown;no;yes;cellular;jul;wed;123;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+49;blue-collar;divorced;basic.9y;no;yes;no;cellular;jul;wed;364;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+35;admin.;married;professional.course;no;yes;no;cellular;jul;wed;194;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+41;blue-collar;single;basic.6y;unknown;no;no;cellular;jul;wed;92;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+43;admin.;married;university.degree;no;yes;yes;cellular;jul;wed;73;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+27;blue-collar;single;high.school;no;yes;no;cellular;jul;wed;164;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;management;married;university.degree;no;no;yes;cellular;jul;wed;92;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;blue-collar;single;high.school;no;yes;no;cellular;jul;wed;73;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+48;services;married;basic.9y;no;yes;yes;cellular;jul;wed;51;5;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+56;housemaid;single;basic.4y;unknown;no;yes;cellular;jul;wed;122;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;technician;married;basic.9y;no;no;no;cellular;jul;wed;500;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+59;blue-collar;married;basic.9y;unknown;yes;no;cellular;jul;wed;569;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;services;single;high.school;no;yes;no;cellular;jul;wed;318;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+58;entrepreneur;married;university.degree;no;no;no;telephone;jul;wed;38;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+58;entrepreneur;married;university.degree;no;no;yes;cellular;jul;wed;137;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+58;entrepreneur;married;university.degree;no;no;no;telephone;jul;wed;175;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;self-employed;married;university.degree;no;yes;no;cellular;jul;wed;181;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+45;retired;married;basic.4y;no;no;no;cellular;jul;wed;390;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;admin.;single;high.school;no;yes;no;cellular;jul;wed;926;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+31;blue-collar;single;high.school;no;yes;yes;cellular;jul;wed;870;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+24;services;single;basic.9y;no;no;no;cellular;jul;wed;105;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+24;services;single;basic.9y;no;yes;no;cellular;jul;wed;411;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+38;blue-collar;married;basic.6y;no;yes;no;telephone;jul;wed;226;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+23;admin.;single;professional.course;no;no;no;cellular;jul;wed;141;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+23;admin.;single;professional.course;no;no;no;cellular;jul;wed;187;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+23;admin.;single;professional.course;no;yes;no;cellular;jul;wed;245;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+23;admin.;single;professional.course;no;no;yes;cellular;jul;wed;190;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+23;admin.;single;professional.course;no;yes;no;cellular;jul;wed;58;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+23;admin.;single;professional.course;no;no;no;cellular;jul;wed;115;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+59;retired;married;unknown;unknown;no;no;cellular;jul;wed;177;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+23;admin.;single;professional.course;no;yes;no;cellular;jul;wed;429;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+38;management;divorced;university.degree;no;yes;no;cellular;jul;wed;256;9;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+34;admin.;single;high.school;no;yes;no;cellular;jul;wed;271;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+33;blue-collar;married;basic.4y;no;yes;no;telephone;jul;wed;157;4;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+56;blue-collar;married;basic.9y;no;yes;no;cellular;jul;wed;114;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+28;admin.;single;high.school;no;no;no;cellular;jul;wed;107;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+26;admin.;single;university.degree;no;no;no;cellular;jul;wed;285;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+40;services;married;basic.4y;unknown;yes;no;cellular;jul;wed;205;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;technician;married;basic.9y;no;yes;no;cellular;jul;wed;161;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+33;admin.;single;university.degree;no;yes;no;telephone;jul;wed;40;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;services;single;high.school;no;no;yes;cellular;jul;wed;237;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;blue-collar;married;basic.4y;unknown;yes;no;cellular;jul;wed;106;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;blue-collar;married;basic.4y;unknown;yes;no;cellular;jul;wed;158;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;blue-collar;married;basic.4y;unknown;yes;no;telephone;jul;wed;145;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+24;technician;single;basic.9y;no;yes;no;cellular;jul;wed;74;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+38;blue-collar;married;basic.6y;no;yes;no;cellular;jul;wed;126;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+49;technician;married;professional.course;no;no;no;cellular;jul;wed;244;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;admin.;single;high.school;no;yes;no;cellular;jul;wed;730;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+35;admin.;married;high.school;no;no;no;cellular;jul;wed;223;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+39;admin.;married;basic.6y;unknown;yes;no;cellular;jul;wed;138;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+55;retired;married;basic.4y;no;yes;no;cellular;jul;wed;498;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+39;admin.;married;basic.6y;unknown;yes;no;cellular;jul;wed;327;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;blue-collar;divorced;basic.6y;unknown;yes;no;telephone;jul;wed;104;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;blue-collar;single;high.school;no;yes;yes;cellular;jul;wed;376;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+40;entrepreneur;married;university.degree;no;no;no;cellular;jul;wed;94;4;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+50;admin.;married;basic.6y;no;yes;no;cellular;jul;wed;137;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;blue-collar;single;high.school;no;yes;no;cellular;jul;wed;379;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+55;retired;married;basic.4y;no;no;no;cellular;jul;wed;761;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+24;services;single;basic.9y;no;yes;no;telephone;jul;wed;108;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+48;technician;divorced;professional.course;no;yes;yes;cellular;jul;wed;232;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+36;blue-collar;married;high.school;no;yes;yes;cellular;jul;wed;302;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+53;management;married;university.degree;unknown;no;no;cellular;jul;wed;184;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+36;blue-collar;married;high.school;no;yes;no;cellular;jul;wed;77;11;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;technician;single;high.school;no;yes;no;cellular;jul;wed;229;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+39;admin.;married;basic.6y;unknown;no;no;cellular;jul;wed;1176;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+42;admin.;married;university.degree;no;unknown;unknown;cellular;jul;wed;95;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+21;blue-collar;married;basic.9y;no;yes;no;cellular;jul;wed;281;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+40;admin.;divorced;university.degree;no;unknown;unknown;cellular;jul;wed;145;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+51;blue-collar;single;basic.4y;unknown;no;no;cellular;jul;wed;104;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+26;blue-collar;married;unknown;no;yes;no;telephone;jul;wed;142;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+59;technician;divorced;basic.9y;no;yes;no;cellular;jul;wed;142;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+26;admin.;single;high.school;no;no;yes;cellular;jul;wed;136;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+25;admin.;single;university.degree;no;yes;no;cellular;jul;wed;105;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+49;blue-collar;married;basic.4y;unknown;yes;no;cellular;jul;wed;495;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+21;blue-collar;married;basic.9y;no;no;no;cellular;jul;wed;160;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+34;technician;married;professional.course;no;yes;no;cellular;jul;wed;84;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+40;blue-collar;married;basic.6y;no;yes;no;cellular;jul;wed;167;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+34;services;married;high.school;no;no;no;cellular;jul;wed;235;11;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+37;unemployed;single;basic.9y;unknown;yes;yes;cellular;jul;wed;633;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+32;services;single;high.school;no;yes;no;telephone;jul;wed;272;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+39;management;married;basic.9y;no;no;no;cellular;jul;wed;55;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+29;technician;single;university.degree;no;yes;yes;cellular;jul;wed;1089;6;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+44;management;married;university.degree;no;yes;yes;telephone;jul;wed;43;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;blue-collar;married;basic.9y;unknown;yes;yes;cellular;jul;wed;16;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+39;services;married;unknown;unknown;yes;no;cellular;jul;wed;40;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;services;single;high.school;no;yes;yes;cellular;jul;wed;87;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;blue-collar;divorced;basic.9y;unknown;yes;no;cellular;jul;wed;336;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+43;admin.;divorced;university.degree;no;no;no;cellular;jul;wed;471;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+37;unemployed;married;professional.course;unknown;yes;no;cellular;jul;wed;59;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+27;blue-collar;single;basic.9y;unknown;yes;no;telephone;jul;wed;104;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+48;services;married;basic.9y;no;yes;no;cellular;jul;wed;18;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+24;services;single;basic.9y;no;yes;no;telephone;jul;wed;184;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+48;services;married;basic.9y;no;yes;no;cellular;jul;wed;178;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+24;services;single;basic.9y;no;no;no;cellular;jul;wed;250;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+44;technician;married;professional.course;no;no;no;cellular;jul;wed;115;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+25;blue-collar;single;basic.4y;no;yes;yes;telephone;jul;wed;18;9;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+24;blue-collar;single;basic.6y;no;no;no;telephone;jul;wed;115;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;housemaid;single;high.school;no;yes;yes;cellular;jul;wed;61;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+38;technician;married;unknown;no;yes;no;cellular;jul;wed;644;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+46;services;married;high.school;no;yes;yes;telephone;jul;wed;36;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;blue-collar;married;basic.6y;no;no;no;cellular;jul;wed;421;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+37;admin.;divorced;high.school;no;yes;no;cellular;jul;wed;178;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+48;unknown;married;basic.6y;no;no;no;cellular;jul;wed;884;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+28;admin.;single;university.degree;no;yes;no;cellular;jul;wed;156;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+36;blue-collar;married;high.school;no;no;no;cellular;jul;wed;238;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+40;blue-collar;married;high.school;no;no;no;cellular;jul;wed;319;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+33;blue-collar;married;basic.4y;no;yes;yes;cellular;jul;wed;371;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;blue-collar;divorced;basic.6y;unknown;yes;no;cellular;jul;wed;670;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+46;services;married;high.school;no;yes;no;cellular;jul;wed;194;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+28;management;single;university.degree;no;yes;no;cellular;jul;wed;35;9;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;blue-collar;married;basic.4y;unknown;yes;no;cellular;jul;wed;148;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;blue-collar;married;basic.9y;no;no;no;cellular;jul;wed;284;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+26;admin.;single;university.degree;no;yes;no;cellular;jul;wed;182;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+57;admin.;married;basic.9y;no;no;yes;cellular;jul;wed;194;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+36;entrepreneur;married;university.degree;no;no;yes;cellular;jul;wed;56;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;blue-collar;single;basic.6y;unknown;yes;no;cellular;jul;wed;375;8;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;technician;married;university.degree;no;yes;no;telephone;jul;wed;31;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+42;admin.;married;university.degree;no;no;no;cellular;jul;wed;73;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;housemaid;single;high.school;no;no;yes;cellular;jul;wed;952;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+39;services;married;high.school;no;no;no;cellular;jul;wed;111;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+24;blue-collar;single;basic.9y;unknown;yes;no;cellular;jul;wed;213;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+39;services;married;unknown;unknown;no;no;cellular;jul;wed;146;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+57;admin.;single;basic.9y;no;yes;no;cellular;jul;wed;158;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+24;services;single;basic.9y;no;yes;no;telephone;jul;wed;163;4;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+21;blue-collar;married;basic.9y;no;yes;no;cellular;jul;wed;150;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+36;blue-collar;single;basic.6y;no;yes;no;cellular;jul;wed;423;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+44;admin.;married;basic.6y;no;no;no;cellular;jul;wed;368;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;management;married;university.degree;no;yes;no;cellular;jul;wed;280;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+36;services;married;high.school;unknown;no;no;cellular;jul;wed;79;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;technician;single;high.school;no;no;no;telephone;jul;wed;40;5;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+38;blue-collar;married;high.school;no;yes;no;cellular;jul;wed;122;5;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+25;blue-collar;single;basic.6y;no;no;no;cellular;jul;wed;123;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;technician;married;professional.course;no;no;yes;cellular;jul;wed;183;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+40;entrepreneur;married;university.degree;no;no;no;cellular;jul;wed;639;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+22;blue-collar;single;high.school;no;yes;no;cellular;jul;wed;123;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+29;admin.;divorced;unknown;no;no;no;cellular;jul;wed;222;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+51;blue-collar;single;basic.4y;unknown;yes;no;telephone;jul;wed;70;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+47;self-employed;single;unknown;no;yes;no;cellular;jul;wed;202;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+36;blue-collar;married;basic.9y;no;no;no;cellular;jul;wed;157;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+26;services;single;high.school;no;yes;no;cellular;jul;wed;190;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+26;services;single;high.school;no;no;no;cellular;jul;wed;172;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+36;blue-collar;married;basic.9y;no;no;yes;cellular;jul;wed;143;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+44;admin.;married;basic.6y;no;no;no;cellular;jul;wed;70;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+25;blue-collar;single;basic.9y;unknown;no;no;telephone;jul;wed;173;4;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+55;unemployed;married;university.degree;no;yes;no;cellular;jul;wed;387;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;blue-collar;married;basic.6y;no;yes;no;cellular;jul;wed;74;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+33;management;married;high.school;no;yes;no;cellular;jul;wed;155;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+39;blue-collar;single;university.degree;no;no;no;cellular;jul;wed;81;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+24;admin.;married;unknown;no;yes;no;cellular;jul;wed;165;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+28;admin.;married;university.degree;no;no;yes;cellular;jul;wed;690;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+53;services;married;high.school;no;no;yes;cellular;jul;wed;159;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+28;services;single;high.school;no;no;no;cellular;jul;wed;73;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;management;married;university.degree;no;no;yes;cellular;jul;wed;465;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+26;student;single;high.school;no;no;yes;cellular;jul;wed;312;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;admin.;married;university.degree;no;yes;no;telephone;jul;wed;717;8;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+25;technician;single;university.degree;no;no;yes;telephone;jul;wed;355;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+36;entrepreneur;married;university.degree;no;yes;no;cellular;jul;wed;191;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+37;entrepreneur;married;university.degree;no;yes;no;cellular;jul;wed;538;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+50;admin.;single;university.degree;no;no;no;cellular;jul;wed;102;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+28;admin.;married;university.degree;no;no;no;cellular;jul;wed;118;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;services;divorced;high.school;no;no;no;telephone;jul;wed;197;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+58;retired;married;basic.4y;unknown;yes;no;cellular;jul;wed;374;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+24;admin.;married;unknown;no;yes;yes;cellular;jul;wed;130;5;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+53;entrepreneur;divorced;university.degree;no;yes;no;cellular;jul;wed;97;5;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+28;admin.;married;university.degree;no;yes;no;cellular;jul;wed;529;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+49;unemployed;married;high.school;no;yes;no;cellular;jul;wed;98;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+59;retired;married;university.degree;unknown;no;no;cellular;jul;wed;108;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+33;blue-collar;married;basic.4y;no;yes;no;cellular;jul;wed;273;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+39;services;married;unknown;unknown;unknown;unknown;cellular;jul;wed;140;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+28;admin.;married;university.degree;no;no;no;cellular;jul;wed;179;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+56;retired;married;professional.course;no;no;no;cellular;jul;wed;135;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+24;admin.;married;university.degree;no;no;no;cellular;jul;wed;135;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+34;technician;married;professional.course;no;no;no;cellular;jul;wed;511;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+27;management;single;university.degree;no;no;no;cellular;jul;wed;435;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+37;admin.;single;university.degree;no;no;no;telephone;jul;wed;36;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+49;self-employed;divorced;university.degree;no;no;yes;cellular;jul;wed;207;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;management;married;university.degree;no;unknown;unknown;cellular;jul;wed;173;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+40;admin.;divorced;university.degree;no;no;no;cellular;jul;wed;366;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+52;admin.;divorced;university.degree;no;no;yes;cellular;jul;wed;216;8;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+44;technician;married;professional.course;no;no;no;cellular;jul;wed;96;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+36;blue-collar;married;basic.9y;unknown;yes;no;cellular;jul;wed;297;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+50;housemaid;married;unknown;no;yes;no;cellular;jul;wed;58;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+38;management;single;university.degree;no;no;no;cellular;jul;wed;76;17;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;blue-collar;married;basic.4y;unknown;no;no;cellular;jul;wed;99;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;management;married;university.degree;no;no;no;cellular;jul;wed;103;4;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+27;services;single;high.school;no;yes;yes;cellular;jul;wed;158;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+25;blue-collar;married;high.school;no;no;no;telephone;jul;wed;90;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;blue-collar;married;basic.6y;no;no;yes;cellular;jul;wed;1152;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+27;blue-collar;single;high.school;no;yes;no;cellular;jul;wed;55;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+36;self-employed;single;university.degree;no;yes;no;cellular;jul;wed;335;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+49;self-employed;divorced;university.degree;no;yes;no;cellular;jul;wed;126;4;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+25;blue-collar;single;basic.9y;no;yes;no;cellular;jul;wed;439;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+26;technician;single;professional.course;no;no;no;cellular;jul;wed;169;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+26;admin.;single;university.degree;no;no;yes;cellular;jul;wed;979;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+49;unknown;married;university.degree;no;yes;no;cellular;jul;wed;92;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+34;blue-collar;married;high.school;unknown;yes;no;telephone;jul;wed;203;4;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+37;technician;single;university.degree;no;yes;no;cellular;jul;wed;256;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+29;blue-collar;married;unknown;no;yes;no;cellular;jul;wed;167;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+24;admin.;married;university.degree;no;yes;no;cellular;jul;wed;134;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+39;blue-collar;married;basic.6y;unknown;no;no;cellular;jul;wed;85;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;technician;married;professional.course;no;yes;no;cellular;jul;wed;172;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+53;entrepreneur;divorced;university.degree;no;no;no;telephone;jul;wed;383;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+26;services;single;high.school;no;unknown;unknown;telephone;jul;wed;588;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;blue-collar;married;basic.9y;no;no;no;cellular;jul;wed;152;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+51;blue-collar;married;basic.4y;no;no;yes;telephone;jul;wed;25;6;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+34;blue-collar;married;basic.9y;no;yes;no;cellular;jul;wed;874;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+24;admin.;married;university.degree;no;yes;no;cellular;jul;wed;396;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+29;self-employed;married;professional.course;unknown;no;no;cellular;jul;wed;434;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+25;blue-collar;single;basic.9y;no;yes;yes;cellular;jul;wed;322;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+53;blue-collar;married;basic.4y;no;yes;no;cellular;jul;wed;545;24;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+59;retired;divorced;unknown;no;no;no;cellular;jul;wed;413;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+34;admin.;married;university.degree;no;no;no;telephone;jul;wed;34;4;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+47;technician;married;professional.course;no;yes;no;cellular;jul;wed;586;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+27;services;single;university.degree;no;no;no;cellular;jul;wed;698;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+24;services;single;basic.9y;no;yes;no;cellular;jul;wed;73;4;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+36;admin.;divorced;high.school;no;no;no;cellular;jul;wed;1960;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+28;blue-collar;single;basic.4y;unknown;no;no;cellular;jul;wed;186;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+44;admin.;married;basic.6y;no;no;no;cellular;jul;wed;212;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+42;admin.;married;university.degree;no;no;no;cellular;jul;wed;1331;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+40;admin.;divorced;high.school;no;no;no;cellular;jul;wed;1776;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+39;admin.;married;basic.6y;unknown;no;no;cellular;jul;wed;312;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;blue-collar;single;basic.6y;no;no;no;cellular;jul;wed;638;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+36;services;married;high.school;no;no;no;cellular;jul;wed;98;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+24;technician;married;high.school;unknown;no;no;cellular;jul;wed;517;4;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+48;services;married;basic.9y;no;no;no;cellular;jul;wed;271;6;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+34;technician;single;professional.course;no;yes;no;cellular;jul;wed;100;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+25;services;married;high.school;no;no;no;cellular;jul;wed;206;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+29;technician;single;university.degree;no;yes;yes;cellular;jul;wed;166;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+39;services;married;high.school;unknown;yes;no;cellular;jul;wed;671;4;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+29;technician;single;university.degree;no;no;no;cellular;jul;wed;259;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;management;married;university.degree;no;yes;no;cellular;jul;wed;957;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+31;technician;single;professional.course;no;no;no;telephone;jul;wed;296;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+33;entrepreneur;married;basic.9y;no;yes;yes;telephone;jul;wed;85;6;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+55;unknown;married;unknown;unknown;yes;no;cellular;jul;wed;323;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+29;technician;single;university.degree;no;yes;no;cellular;jul;wed;438;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+33;blue-collar;married;basic.9y;unknown;no;no;cellular;jul;wed;218;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+58;retired;married;basic.4y;unknown;no;no;cellular;jul;wed;119;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+23;admin.;single;professional.course;no;yes;no;cellular;jul;wed;332;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+57;technician;married;basic.4y;unknown;no;no;cellular;jul;wed;158;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+29;blue-collar;married;basic.9y;no;no;no;cellular;jul;wed;125;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+27;services;single;university.degree;no;unknown;unknown;cellular;jul;wed;288;9;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+43;management;married;unknown;no;yes;no;cellular;jul;wed;129;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+50;self-employed;divorced;university.degree;unknown;yes;no;cellular;jul;wed;544;11;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+39;blue-collar;single;university.degree;no;no;no;cellular;jul;wed;91;7;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+40;entrepreneur;married;basic.4y;unknown;yes;no;cellular;jul;wed;448;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;services;single;basic.9y;no;no;no;cellular;jul;wed;168;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+26;admin.;single;university.degree;no;no;no;cellular;jul;wed;203;4;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+48;technician;divorced;professional.course;no;yes;no;cellular;jul;wed;118;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+23;admin.;single;professional.course;no;yes;no;cellular;jul;wed;902;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+39;blue-collar;married;unknown;unknown;yes;no;cellular;jul;wed;123;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+56;management;divorced;high.school;no;no;yes;cellular;jul;wed;361;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;blue-collar;married;high.school;no;no;no;cellular;jul;wed;248;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;services;single;basic.9y;no;no;no;cellular;jul;wed;711;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;blue-collar;married;basic.6y;no;yes;no;cellular;jul;wed;55;10;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;admin.;single;university.degree;no;yes;no;cellular;jul;wed;1327;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+30;management;married;university.degree;no;yes;no;telephone;jul;wed;90;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;technician;single;high.school;no;no;no;telephone;jul;wed;239;11;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+53;admin.;married;university.degree;unknown;no;yes;cellular;jul;wed;122;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+37;blue-collar;married;basic.9y;no;yes;no;cellular;jul;wed;1090;12;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+35;entrepreneur;married;university.degree;no;yes;no;telephone;jul;wed;82;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+38;technician;single;professional.course;no;unknown;unknown;cellular;jul;wed;361;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+33;admin.;single;university.degree;no;no;no;telephone;jul;wed;67;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+21;blue-collar;married;basic.9y;no;yes;no;cellular;jul;wed;2078;6;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+36;blue-collar;married;basic.9y;no;no;no;cellular;jul;wed;339;4;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+53;services;married;professional.course;no;yes;no;cellular;jul;wed;185;10;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+29;technician;single;university.degree;no;no;yes;telephone;jul;wed;203;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+29;technician;single;university.degree;no;no;yes;telephone;jul;wed;1118;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+46;admin.;divorced;high.school;no;no;yes;cellular;jul;wed;400;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+23;admin.;single;professional.course;no;no;no;cellular;jul;wed;580;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+38;blue-collar;married;basic.6y;no;no;no;cellular;jul;wed;179;17;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+34;blue-collar;single;basic.4y;no;no;no;cellular;jul;wed;475;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+42;technician;single;high.school;no;no;no;cellular;jul;wed;58;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;management;married;university.degree;no;yes;yes;cellular;jul;wed;229;4;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+38;blue-collar;married;basic.6y;no;no;no;cellular;jul;wed;530;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+25;blue-collar;married;basic.9y;no;yes;no;cellular;jul;wed;497;5;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;technician;married;basic.9y;no;yes;no;cellular;jul;wed;81;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+53;blue-collar;married;basic.6y;no;yes;no;cellular;jul;wed;362;19;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+42;unknown;married;university.degree;no;no;yes;cellular;jul;wed;255;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+23;admin.;single;professional.course;no;no;yes;cellular;jul;wed;206;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+42;self-employed;married;university.degree;no;no;no;telephone;jul;wed;185;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+56;blue-collar;married;basic.9y;unknown;yes;no;cellular;jul;wed;125;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+42;self-employed;married;university.degree;no;no;no;cellular;jul;wed;673;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+49;self-employed;divorced;university.degree;no;yes;no;cellular;jul;wed;1124;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+51;admin.;married;basic.9y;unknown;yes;no;cellular;jul;wed;228;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+30;technician;divorced;professional.course;no;no;no;cellular;jul;wed;180;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;technician;divorced;professional.course;no;no;yes;cellular;jul;wed;808;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+28;admin.;married;university.degree;no;yes;no;cellular;jul;wed;510;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+33;technician;married;university.degree;no;yes;no;cellular;jul;wed;162;6;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+26;admin.;single;university.degree;no;yes;no;cellular;jul;wed;413;5;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+54;housemaid;unknown;basic.4y;no;yes;no;cellular;jul;wed;198;13;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+55;management;married;basic.9y;no;yes;no;cellular;jul;wed;421;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+25;services;single;basic.9y;no;no;no;telephone;jul;wed;350;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+35;admin.;married;professional.course;no;yes;no;cellular;jul;wed;322;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+29;admin.;married;high.school;no;no;no;cellular;jul;wed;201;16;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+36;entrepreneur;married;university.degree;no;no;no;cellular;jul;wed;638;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+28;admin.;single;high.school;no;no;yes;cellular;jul;wed;437;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;services;divorced;basic.9y;unknown;no;no;cellular;jul;wed;68;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+28;admin.;single;university.degree;no;yes;no;cellular;jul;wed;147;4;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+34;services;married;high.school;no;no;no;telephone;jul;wed;248;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+57;blue-collar;married;basic.6y;unknown;yes;no;cellular;jul;wed;108;4;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+50;management;married;university.degree;no;yes;no;cellular;jul;wed;110;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+38;blue-collar;married;basic.6y;no;no;no;cellular;jul;wed;328;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+56;retired;married;professional.course;no;yes;no;cellular;jul;wed;1066;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+38;blue-collar;married;basic.9y;no;yes;no;cellular;jul;wed;305;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+22;admin.;single;high.school;no;yes;no;telephone;jul;wed;293;5;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+39;technician;married;professional.course;no;unknown;unknown;cellular;jul;wed;68;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+44;services;married;unknown;no;yes;yes;telephone;jul;wed;329;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;blue-collar;married;basic.6y;no;yes;yes;telephone;jul;wed;329;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+26;blue-collar;married;basic.6y;no;no;no;cellular;jul;wed;609;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+49;admin.;married;high.school;no;no;no;cellular;jul;wed;652;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+39;services;married;unknown;unknown;yes;yes;cellular;jul;wed;1201;6;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+35;services;married;basic.9y;no;yes;yes;cellular;jul;wed;252;6;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+27;blue-collar;single;basic.9y;unknown;yes;no;cellular;jul;wed;1309;4;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+48;technician;divorced;professional.course;no;no;no;cellular;jul;wed;127;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+37;admin.;married;high.school;no;yes;yes;cellular;jul;wed;205;6;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+59;services;married;high.school;unknown;yes;no;cellular;jul;wed;476;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;blue-collar;married;basic.6y;no;yes;no;cellular;jul;wed;158;4;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+24;services;single;high.school;no;no;no;cellular;jul;wed;74;5;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+28;admin.;married;high.school;no;no;no;cellular;jul;wed;419;5;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;blue-collar;married;basic.6y;no;yes;no;telephone;jul;wed;165;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+35;management;single;unknown;no;yes;yes;cellular;jul;wed;408;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+39;housemaid;single;basic.4y;unknown;no;no;telephone;jul;wed;135;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+23;services;single;high.school;no;unknown;unknown;cellular;jul;wed;1300;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+52;housemaid;married;high.school;unknown;yes;no;cellular;jul;wed;41;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+38;entrepreneur;married;university.degree;no;yes;no;telephone;jul;wed;83;4;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;admin.;divorced;basic.6y;no;no;no;cellular;jul;wed;144;10;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+60;blue-collar;married;basic.4y;unknown;yes;no;cellular;jul;wed;293;5;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+44;blue-collar;divorced;basic.9y;no;no;no;telephone;jul;wed;161;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+50;admin.;married;university.degree;unknown;yes;no;telephone;jul;wed;173;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+26;services;single;high.school;no;yes;no;cellular;jul;wed;156;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;blue-collar;married;basic.9y;unknown;no;no;cellular;jul;wed;280;4;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+47;self-employed;married;basic.9y;no;yes;no;cellular;jul;wed;1359;6;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+43;admin.;married;university.degree;no;yes;no;telephone;jul;wed;122;4;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+60;self-employed;married;university.degree;no;yes;no;cellular;jul;wed;416;4;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+27;technician;married;professional.course;no;no;no;telephone;jul;wed;36;15;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+50;admin.;single;university.degree;no;unknown;unknown;cellular;jul;wed;623;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+26;blue-collar;single;basic.4y;no;no;no;cellular;jul;wed;53;17;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+40;entrepreneur;married;university.degree;no;no;no;cellular;jul;wed;279;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+36;services;divorced;high.school;no;no;no;cellular;jul;wed;532;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+48;services;married;basic.9y;no;yes;no;cellular;jul;wed;107;4;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;blue-collar;married;basic.4y;unknown;no;no;cellular;jul;wed;933;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+34;management;married;university.degree;no;no;no;cellular;jul;wed;85;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;blue-collar;married;basic.4y;unknown;yes;no;cellular;jul;wed;790;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+40;admin.;divorced;university.degree;no;no;no;telephone;jul;wed;97;6;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+27;blue-collar;single;basic.9y;unknown;yes;yes;cellular;jul;wed;171;4;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+26;blue-collar;single;professional.course;no;yes;no;cellular;jul;wed;505;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;technician;married;professional.course;no;no;no;cellular;jul;wed;495;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+58;technician;married;unknown;unknown;no;no;cellular;jul;wed;799;4;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+41;blue-collar;married;basic.6y;no;yes;no;cellular;jul;wed;111;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+29;self-employed;married;professional.course;unknown;yes;yes;cellular;jul;wed;683;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+24;admin.;married;university.degree;no;yes;yes;cellular;jul;wed;84;13;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+48;technician;divorced;professional.course;no;yes;yes;cellular;jul;wed;547;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+27;admin.;married;high.school;no;yes;no;telephone;jul;wed;103;5;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+26;blue-collar;married;basic.6y;no;no;no;cellular;jul;wed;236;5;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;services;married;basic.9y;no;yes;no;telephone;jul;wed;71;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+40;admin.;divorced;university.degree;no;no;no;telephone;jul;wed;192;5;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+29;services;single;basic.6y;no;yes;no;cellular;jul;wed;476;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+40;blue-collar;divorced;basic.9y;no;no;no;cellular;jul;thu;50;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+29;technician;single;high.school;no;no;no;cellular;jul;thu;54;29;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+44;admin.;married;high.school;no;no;no;cellular;jul;thu;42;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+56;retired;married;basic.4y;no;no;no;cellular;jul;thu;57;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+31;blue-collar;single;basic.9y;unknown;no;yes;telephone;jul;thu;70;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+58;blue-collar;married;basic.4y;no;no;yes;cellular;jul;thu;265;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+52;services;married;high.school;unknown;yes;no;cellular;jul;thu;117;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+42;entrepreneur;married;university.degree;no;unknown;unknown;cellular;jul;thu;430;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+47;technician;divorced;high.school;no;no;no;cellular;jul;thu;202;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+41;technician;single;university.degree;no;no;no;cellular;jul;thu;537;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+42;admin.;married;high.school;no;no;yes;cellular;jul;thu;219;6;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+58;blue-collar;married;basic.4y;no;yes;no;telephone;jul;thu;48;6;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+52;retired;married;basic.4y;unknown;unknown;unknown;cellular;jul;thu;143;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+41;blue-collar;married;high.school;no;yes;yes;cellular;jul;thu;241;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+49;services;married;high.school;no;no;no;cellular;jul;thu;63;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+32;technician;married;university.degree;no;yes;no;cellular;jul;thu;357;7;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+41;entrepreneur;single;high.school;no;yes;yes;cellular;jul;thu;21;20;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+44;entrepreneur;married;university.degree;unknown;no;yes;cellular;jul;thu;13;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;services;single;high.school;no;yes;no;telephone;jul;thu;32;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+51;technician;married;high.school;no;no;no;cellular;jul;thu;73;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;services;single;high.school;no;yes;no;cellular;jul;thu;148;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;services;single;high.school;no;yes;no;cellular;jul;thu;46;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;housemaid;divorced;basic.6y;unknown;no;yes;cellular;jul;thu;53;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+56;blue-collar;married;basic.4y;no;yes;no;cellular;jul;thu;119;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+29;blue-collar;single;basic.6y;no;yes;no;cellular;jul;thu;92;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+38;blue-collar;married;basic.6y;no;unknown;unknown;cellular;jul;thu;226;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;services;single;university.degree;no;no;yes;cellular;jul;thu;200;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+47;technician;divorced;high.school;no;no;no;cellular;jul;thu;42;24;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+39;services;divorced;high.school;no;no;yes;cellular;jul;thu;187;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+39;services;divorced;high.school;no;no;yes;cellular;jul;thu;208;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+26;admin.;married;high.school;no;no;no;cellular;jul;thu;125;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+50;management;married;professional.course;no;no;no;cellular;jul;thu;162;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+29;admin.;single;university.degree;no;yes;no;cellular;jul;thu;281;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+36;admin.;single;university.degree;no;no;yes;cellular;jul;thu;139;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+39;services;divorced;high.school;no;no;yes;cellular;jul;thu;481;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+44;blue-collar;married;basic.9y;unknown;yes;no;cellular;jul;thu;101;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+31;services;married;high.school;unknown;no;yes;cellular;jul;thu;205;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+29;admin.;single;university.degree;no;no;yes;cellular;jul;thu;65;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+44;blue-collar;married;basic.4y;no;yes;no;cellular;jul;thu;311;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+41;technician;single;university.degree;no;no;no;cellular;jul;thu;186;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;admin.;single;high.school;no;yes;no;cellular;jul;thu;66;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+51;technician;married;professional.course;no;yes;yes;cellular;jul;thu;137;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+29;technician;single;high.school;no;no;no;cellular;jul;thu;91;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+26;admin.;married;high.school;no;no;no;cellular;jul;thu;544;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+50;entrepreneur;married;basic.9y;no;yes;no;cellular;jul;thu;129;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+35;management;single;university.degree;unknown;yes;no;cellular;jul;thu;211;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+41;technician;single;university.degree;no;yes;yes;cellular;jul;thu;78;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+41;entrepreneur;single;high.school;no;no;no;cellular;jul;thu;67;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+41;entrepreneur;single;high.school;no;no;no;cellular;jul;thu;71;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;blue-collar;single;basic.6y;no;no;no;cellular;jul;thu;326;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+41;entrepreneur;single;high.school;no;yes;no;telephone;jul;thu;70;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+55;entrepreneur;married;university.degree;unknown;no;no;cellular;jul;thu;58;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+46;blue-collar;married;basic.6y;no;no;no;cellular;jul;thu;130;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+49;blue-collar;married;basic.9y;unknown;no;yes;cellular;jul;thu;76;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;housemaid;divorced;basic.6y;unknown;yes;yes;cellular;jul;thu;97;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+59;technician;married;university.degree;unknown;no;yes;cellular;jul;thu;459;7;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+41;technician;single;university.degree;no;no;no;cellular;jul;thu;196;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+54;blue-collar;married;basic.4y;unknown;yes;yes;cellular;jul;thu;71;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+25;blue-collar;single;basic.9y;no;yes;yes;cellular;jul;thu;212;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+47;admin.;married;professional.course;no;no;no;cellular;jul;thu;458;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+54;services;married;high.school;unknown;no;no;telephone;jul;thu;105;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+26;blue-collar;single;basic.9y;no;no;no;telephone;jul;thu;77;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+32;student;single;high.school;no;yes;no;cellular;jul;thu;853;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+57;management;married;university.degree;no;no;no;cellular;jul;thu;164;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;entrepreneur;married;high.school;no;yes;no;cellular;jul;thu;380;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+37;blue-collar;divorced;basic.9y;unknown;yes;no;cellular;jul;thu;194;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+41;entrepreneur;single;high.school;no;yes;no;cellular;jul;thu;1204;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+31;blue-collar;married;basic.4y;no;yes;no;cellular;jul;thu;467;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;services;single;university.degree;no;no;no;cellular;jul;thu;55;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+54;services;married;high.school;unknown;no;yes;cellular;jul;thu;338;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+50;technician;married;professional.course;no;no;yes;cellular;jul;thu;168;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+54;technician;married;professional.course;unknown;no;yes;cellular;jul;thu;157;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;management;single;university.degree;no;no;no;cellular;jul;thu;528;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+59;technician;married;professional.course;no;no;no;cellular;jul;thu;464;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+57;self-employed;married;university.degree;no;yes;yes;telephone;jul;thu;152;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;services;single;high.school;no;yes;no;cellular;jul;thu;211;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+57;self-employed;married;university.degree;no;no;no;cellular;jul;thu;313;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+56;services;married;high.school;unknown;yes;no;telephone;jul;thu;279;11;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+47;technician;divorced;high.school;no;yes;no;cellular;jul;thu;335;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+33;technician;single;high.school;no;yes;no;cellular;jul;thu;209;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+56;services;married;high.school;unknown;no;yes;cellular;jul;thu;775;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+40;services;married;basic.9y;unknown;no;no;cellular;jul;thu;63;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+49;blue-collar;married;basic.9y;unknown;no;no;cellular;jul;thu;134;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+49;blue-collar;married;basic.9y;unknown;no;no;cellular;jul;thu;71;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+36;admin.;married;university.degree;no;no;no;cellular;jul;thu;561;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+49;technician;married;basic.4y;no;yes;no;cellular;jul;thu;197;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+31;entrepreneur;single;university.degree;no;yes;no;cellular;jul;thu;329;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+49;technician;married;professional.course;no;no;yes;cellular;jul;thu;70;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+46;blue-collar;married;high.school;unknown;yes;no;cellular;jul;thu;53;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+47;technician;divorced;high.school;no;yes;no;cellular;jul;thu;43;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+33;technician;single;basic.9y;no;no;no;cellular;jul;thu;142;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+23;blue-collar;single;basic.9y;no;yes;no;cellular;jul;thu;523;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+54;technician;married;high.school;unknown;yes;yes;telephone;jul;thu;193;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+44;admin.;married;university.degree;no;yes;no;cellular;jul;thu;604;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+53;technician;married;basic.9y;no;yes;no;cellular;jul;thu;144;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+53;entrepreneur;married;university.degree;no;yes;no;cellular;jul;thu;302;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+58;blue-collar;married;basic.9y;no;no;no;cellular;jul;thu;205;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+59;admin.;married;basic.4y;unknown;yes;no;cellular;jul;thu;137;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+59;admin.;married;basic.4y;unknown;no;no;cellular;jul;thu;142;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+54;services;married;basic.9y;unknown;yes;no;cellular;jul;thu;58;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+47;technician;divorced;high.school;no;yes;no;cellular;jul;thu;100;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+52;retired;single;basic.9y;no;no;no;telephone;jul;thu;239;6;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+54;technician;married;high.school;unknown;no;no;cellular;jul;thu;1756;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+45;services;married;high.school;no;no;no;cellular;jul;thu;77;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+54;services;single;basic.9y;no;no;yes;cellular;jul;thu;169;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+57;self-employed;married;university.degree;no;no;yes;cellular;jul;thu;1441;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+52;technician;married;professional.course;no;no;no;cellular;jul;thu;71;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+53;technician;married;unknown;no;yes;no;cellular;jul;thu;38;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+52;technician;married;professional.course;no;no;no;cellular;jul;thu;191;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+51;services;single;high.school;unknown;no;no;cellular;jul;thu;171;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+47;technician;divorced;high.school;no;yes;no;cellular;jul;thu;149;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+53;blue-collar;married;unknown;unknown;unknown;unknown;telephone;jul;thu;747;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+44;admin.;married;university.degree;no;no;no;cellular;jul;thu;186;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+46;technician;divorced;university.degree;no;yes;no;cellular;jul;thu;223;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+48;management;married;university.degree;no;yes;yes;telephone;jul;thu;154;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+52;blue-collar;married;basic.9y;no;yes;no;telephone;jul;thu;60;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+39;services;divorced;high.school;no;no;no;cellular;jul;thu;151;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+38;admin.;divorced;high.school;no;no;no;cellular;jul;thu;188;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+54;technician;married;university.degree;no;yes;no;cellular;jul;thu;185;6;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+56;technician;married;professional.course;no;yes;no;cellular;jul;thu;224;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+36;management;married;unknown;unknown;yes;no;cellular;jul;thu;171;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+48;blue-collar;married;basic.4y;unknown;yes;no;cellular;jul;thu;203;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+44;services;married;high.school;unknown;unknown;unknown;cellular;jul;thu;84;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+55;admin.;married;basic.4y;no;no;no;cellular;jul;thu;134;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+57;self-employed;married;basic.4y;no;yes;yes;cellular;jul;thu;164;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+44;blue-collar;married;basic.9y;unknown;no;no;cellular;jul;thu;128;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+49;technician;married;professional.course;no;yes;no;cellular;jul;thu;15;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;blue-collar;single;basic.9y;no;no;no;cellular;jul;thu;386;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;blue-collar;married;basic.9y;unknown;no;no;cellular;jul;thu;401;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+51;housemaid;divorced;high.school;no;yes;yes;cellular;jul;thu;137;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+52;services;married;high.school;unknown;no;no;cellular;jul;thu;200;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+41;blue-collar;single;basic.6y;unknown;no;no;cellular;jul;thu;225;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+52;services;married;high.school;unknown;yes;yes;cellular;jul;thu;379;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+45;admin.;married;unknown;unknown;yes;no;cellular;jul;thu;92;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+49;technician;married;professional.course;no;yes;no;cellular;jul;thu;92;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+45;admin.;married;unknown;unknown;no;no;cellular;jul;thu;188;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+39;self-employed;single;high.school;no;no;no;cellular;jul;thu;168;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+45;admin.;married;unknown;unknown;yes;no;cellular;jul;thu;651;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+57;blue-collar;married;basic.4y;no;yes;no;telephone;jul;thu;305;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+46;blue-collar;married;high.school;unknown;yes;no;cellular;jul;thu;497;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+41;entrepreneur;single;high.school;no;yes;no;cellular;jul;thu;205;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+51;housemaid;married;basic.4y;no;yes;no;telephone;jul;thu;179;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+34;services;divorced;high.school;no;no;no;telephone;jul;thu;212;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+46;blue-collar;married;unknown;no;no;yes;cellular;jul;thu;36;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+30;admin.;single;university.degree;no;yes;no;cellular;jul;thu;39;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+24;services;single;high.school;no;yes;no;cellular;jul;thu;576;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+46;blue-collar;married;basic.6y;no;yes;yes;cellular;jul;thu;94;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+57;blue-collar;married;unknown;no;yes;no;cellular;jul;thu;240;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+57;technician;married;professional.course;no;yes;no;cellular;jul;thu;147;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;technician;married;high.school;no;yes;no;cellular;jul;thu;604;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;technician;married;professional.course;unknown;yes;no;telephone;jul;thu;193;7;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+37;blue-collar;single;basic.9y;no;no;no;cellular;jul;thu;211;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+35;blue-collar;married;unknown;no;yes;no;cellular;jul;thu;120;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+29;entrepreneur;married;high.school;no;yes;no;cellular;jul;thu;169;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+34;blue-collar;divorced;basic.6y;no;yes;no;cellular;jul;thu;1491;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+53;blue-collar;married;unknown;no;no;no;cellular;jul;thu;131;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+53;unknown;single;unknown;no;yes;no;cellular;jul;thu;343;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+55;services;divorced;high.school;no;yes;yes;cellular;jul;thu;175;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+23;blue-collar;single;basic.9y;no;yes;no;telephone;jul;thu;308;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+35;retired;married;basic.4y;unknown;no;no;cellular;jul;thu;408;14;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+32;technician;single;university.degree;no;yes;no;telephone;jul;thu;119;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+45;admin.;married;unknown;unknown;yes;no;cellular;jul;thu;418;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+53;blue-collar;married;unknown;no;no;yes;cellular;jul;thu;821;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+50;blue-collar;married;basic.9y;unknown;yes;no;cellular;jul;thu;99;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+50;blue-collar;married;basic.9y;unknown;no;no;cellular;jul;thu;16;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+50;blue-collar;married;basic.9y;unknown;yes;no;cellular;jul;thu;78;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+50;unemployed;married;professional.course;unknown;yes;yes;cellular;jul;thu;225;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+39;admin.;married;university.degree;no;yes;yes;cellular;jul;thu;604;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+53;management;married;unknown;unknown;yes;no;cellular;jul;thu;250;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+56;blue-collar;married;basic.4y;no;yes;no;cellular;jul;thu;208;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+38;technician;single;professional.course;no;yes;no;cellular;jul;thu;72;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+55;blue-collar;married;basic.6y;unknown;no;no;cellular;jul;thu;23;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+40;blue-collar;single;professional.course;no;yes;no;cellular;jul;thu;498;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+55;blue-collar;married;basic.6y;unknown;unknown;unknown;cellular;jul;thu;78;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+42;management;married;high.school;no;no;no;cellular;jul;thu;204;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+41;entrepreneur;single;high.school;no;yes;no;cellular;jul;thu;90;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+55;services;divorced;high.school;no;no;no;cellular;jul;thu;539;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+40;entrepreneur;divorced;unknown;no;no;yes;cellular;jul;thu;273;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+48;blue-collar;married;basic.4y;unknown;no;no;cellular;jul;thu;107;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+50;management;married;university.degree;no;no;no;cellular;jul;thu;650;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;admin.;married;university.degree;no;no;no;cellular;jul;thu;48;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+34;management;married;university.degree;no;no;no;cellular;jul;thu;91;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+51;admin.;married;university.degree;unknown;no;no;cellular;jul;thu;229;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+31;admin.;single;high.school;no;yes;no;cellular;jul;thu;304;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;services;single;high.school;no;no;no;cellular;jul;thu;129;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+45;admin.;divorced;high.school;no;no;no;cellular;jul;thu;537;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+38;self-employed;married;university.degree;no;yes;no;cellular;jul;thu;915;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+48;admin.;married;high.school;no;yes;no;cellular;jul;thu;903;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+53;retired;married;basic.9y;no;yes;yes;cellular;jul;thu;58;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+29;admin.;single;university.degree;no;yes;no;telephone;jul;thu;122;12;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+30;admin.;single;university.degree;no;yes;no;cellular;jul;thu;873;8;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+35;blue-collar;divorced;basic.9y;unknown;yes;no;cellular;jul;thu;248;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+55;unknown;married;basic.4y;no;yes;no;cellular;jul;thu;1298;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+41;entrepreneur;single;high.school;no;yes;no;cellular;jul;thu;149;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+50;management;married;university.degree;unknown;no;no;cellular;jul;thu;717;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+47;technician;divorced;high.school;no;yes;no;telephone;jul;thu;147;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+21;unemployed;married;high.school;no;yes;yes;cellular;jul;thu;85;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+59;technician;married;basic.4y;unknown;yes;yes;cellular;jul;thu;709;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+32;technician;single;university.degree;no;yes;no;cellular;jul;thu;72;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+55;unknown;married;basic.4y;no;no;yes;cellular;jul;thu;185;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;blue-collar;single;basic.9y;no;no;no;telephone;jul;thu;28;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+54;retired;married;basic.9y;no;yes;no;cellular;jul;thu;148;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;blue-collar;married;unknown;no;yes;no;cellular;jul;thu;172;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+50;blue-collar;divorced;basic.4y;no;no;no;cellular;jul;thu;150;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+34;admin.;single;unknown;unknown;yes;no;cellular;jul;thu;51;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+36;management;married;university.degree;no;yes;yes;cellular;jul;thu;90;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+40;services;married;basic.9y;unknown;yes;no;cellular;jul;thu;1206;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+47;technician;divorced;high.school;no;no;yes;cellular;jul;thu;1869;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+59;unknown;married;unknown;no;yes;no;cellular;jul;thu;52;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+29;technician;single;professional.course;no;no;no;telephone;jul;thu;575;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+36;blue-collar;married;basic.6y;unknown;no;yes;cellular;jul;thu;256;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+54;technician;married;basic.6y;no;yes;no;cellular;jul;thu;823;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+48;blue-collar;married;basic.4y;unknown;no;no;cellular;jul;thu;484;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+50;management;married;professional.course;no;unknown;unknown;cellular;jul;thu;230;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+54;technician;married;basic.6y;no;no;no;cellular;jul;thu;112;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+56;blue-collar;married;basic.4y;no;yes;no;cellular;jul;thu;81;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+39;services;divorced;high.school;no;yes;no;cellular;jul;thu;56;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+56;management;divorced;university.degree;unknown;no;no;cellular;jul;thu;245;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+53;blue-collar;married;basic.9y;unknown;yes;no;cellular;jul;thu;332;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+53;technician;married;unknown;unknown;yes;no;cellular;jul;thu;988;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+25;blue-collar;single;basic.9y;no;no;yes;cellular;jul;thu;151;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+56;blue-collar;married;basic.4y;no;yes;no;cellular;jul;thu;132;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+25;blue-collar;single;basic.9y;no;yes;no;cellular;jul;thu;218;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+54;unemployed;married;university.degree;no;yes;no;cellular;jul;thu;773;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+38;blue-collar;single;high.school;unknown;no;no;cellular;jul;thu;147;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+57;blue-collar;married;basic.4y;no;yes;no;cellular;jul;thu;953;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+47;technician;divorced;high.school;no;yes;no;cellular;jul;thu;43;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;admin.;married;high.school;no;yes;no;cellular;jul;thu;1259;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+48;unemployed;married;basic.6y;no;yes;no;cellular;jul;thu;267;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+53;entrepreneur;married;university.degree;no;yes;yes;cellular;jul;thu;736;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+51;management;married;university.degree;unknown;no;no;cellular;jul;thu;901;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+43;entrepreneur;married;high.school;no;no;no;cellular;jul;thu;362;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+33;technician;single;basic.9y;no;no;no;cellular;jul;thu;89;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+28;blue-collar;married;basic.4y;no;no;no;cellular;jul;thu;196;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+35;technician;single;professional.course;no;no;yes;cellular;jul;thu;346;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+32;blue-collar;married;basic.9y;no;no;no;cellular;jul;thu;79;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+48;unemployed;married;basic.6y;no;no;no;cellular;jul;thu;1850;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+46;blue-collar;married;high.school;unknown;no;no;cellular;jul;thu;134;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+50;management;married;basic.9y;no;yes;yes;cellular;jul;thu;217;9;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+28;admin.;married;high.school;no;yes;no;cellular;jul;thu;119;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+30;blue-collar;married;basic.4y;no;yes;no;cellular;jul;thu;347;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+35;technician;single;professional.course;no;yes;yes;cellular;jul;thu;559;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+51;admin.;married;university.degree;unknown;yes;no;cellular;jul;thu;141;11;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+57;blue-collar;married;basic.4y;unknown;no;no;cellular;jul;thu;135;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+45;admin.;married;unknown;unknown;yes;no;telephone;jul;thu;27;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+41;blue-collar;married;high.school;no;yes;yes;cellular;jul;thu;126;6;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;services;single;high.school;no;no;no;telephone;jul;thu;101;14;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+45;entrepreneur;married;university.degree;unknown;yes;yes;cellular;jul;thu;62;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+42;services;divorced;high.school;no;yes;yes;cellular;jul;thu;464;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+57;blue-collar;married;basic.4y;no;yes;no;cellular;jul;thu;631;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+22;blue-collar;married;basic.9y;no;yes;no;cellular;jul;thu;203;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+59;retired;single;professional.course;unknown;yes;no;cellular;jul;thu;306;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+31;services;married;basic.9y;unknown;yes;no;cellular;jul;thu;318;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;entrepreneur;married;high.school;no;yes;no;cellular;jul;thu;810;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+48;admin.;married;high.school;unknown;yes;no;cellular;jul;thu;273;6;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+59;retired;single;professional.course;unknown;yes;no;telephone;jul;thu;780;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+44;admin.;married;university.degree;no;yes;yes;cellular;jul;thu;844;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+44;admin.;married;university.degree;no;yes;no;cellular;jul;thu;947;6;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+58;blue-collar;married;basic.4y;no;yes;no;cellular;jul;thu;328;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+22;blue-collar;married;basic.9y;no;yes;no;cellular;jul;thu;448;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+49;management;married;high.school;no;no;no;telephone;jul;thu;258;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+59;technician;married;university.degree;unknown;no;no;cellular;jul;thu;213;10;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+50;management;married;university.degree;no;yes;no;cellular;jul;thu;161;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+59;entrepreneur;married;basic.4y;no;yes;no;cellular;jul;thu;82;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+48;blue-collar;married;unknown;no;no;no;cellular;jul;thu;730;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+58;blue-collar;married;unknown;unknown;yes;no;cellular;jul;thu;180;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+50;management;married;university.degree;unknown;unknown;unknown;cellular;jul;thu;367;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+51;housemaid;divorced;high.school;no;yes;no;cellular;jul;thu;870;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+28;blue-collar;married;basic.4y;no;yes;no;cellular;jul;thu;1820;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+33;technician;single;basic.9y;no;yes;no;cellular;jul;thu;144;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;blue-collar;married;basic.9y;unknown;yes;no;cellular;jul;thu;732;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+47;technician;divorced;high.school;no;yes;no;cellular;jul;thu;303;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+30;blue-collar;married;basic.4y;no;yes;no;telephone;jul;thu;553;6;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+50;management;married;high.school;unknown;yes;no;cellular;jul;thu;90;6;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+38;technician;divorced;university.degree;no;yes;no;cellular;jul;thu;137;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+54;technician;married;professional.course;no;no;yes;cellular;jul;thu;268;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+47;technician;divorced;high.school;no;yes;no;cellular;jul;thu;828;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+35;services;single;basic.9y;no;yes;no;cellular;jul;thu;136;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+33;admin.;married;university.degree;no;no;no;cellular;jul;thu;180;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+45;blue-collar;married;basic.4y;no;yes;no;cellular;jul;thu;367;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+38;admin.;single;university.degree;no;yes;yes;cellular;jul;thu;513;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+48;admin.;married;basic.9y;no;yes;no;cellular;jul;thu;347;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+57;unemployed;married;university.degree;no;yes;no;cellular;jul;thu;1173;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+41;entrepreneur;single;high.school;no;yes;no;telephone;jul;thu;153;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+57;admin.;married;university.degree;no;yes;no;cellular;jul;thu;73;10;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+56;unemployed;married;unknown;no;no;no;telephone;jul;thu;626;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+35;services;single;basic.9y;no;yes;no;cellular;jul;thu;123;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+35;technician;married;professional.course;no;yes;yes;cellular;jul;thu;77;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+28;unemployed;married;university.degree;no;yes;no;cellular;jul;thu;263;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+34;technician;divorced;university.degree;no;no;no;cellular;jul;thu;91;10;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+54;retired;single;high.school;no;yes;no;cellular;jul;thu;577;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+47;technician;divorced;high.school;no;no;yes;cellular;jul;thu;417;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+47;technician;divorced;high.school;no;no;no;telephone;jul;thu;393;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+55;unknown;married;basic.4y;no;yes;no;cellular;jul;thu;633;7;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+53;self-employed;married;university.degree;no;no;no;cellular;jul;thu;568;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+25;technician;divorced;high.school;no;yes;no;cellular;jul;thu;237;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+49;blue-collar;married;basic.9y;unknown;yes;no;cellular;jul;thu;180;19;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+34;management;single;university.degree;no;no;no;cellular;jul;thu;257;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+50;unemployed;married;professional.course;unknown;no;no;cellular;jul;thu;144;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+52;blue-collar;married;basic.9y;unknown;yes;no;cellular;jul;thu;212;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+26;technician;single;university.degree;no;no;no;telephone;jul;thu;447;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+57;technician;married;professional.course;unknown;no;yes;cellular;jul;thu;92;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+57;self-employed;married;university.degree;no;no;no;telephone;jul;thu;552;16;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+51;housemaid;divorced;high.school;no;yes;no;cellular;jul;thu;241;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+59;unemployed;married;basic.4y;unknown;yes;no;cellular;jul;thu;458;9;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+37;admin.;married;basic.6y;no;yes;yes;cellular;jul;thu;1602;6;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+57;blue-collar;married;basic.4y;unknown;no;no;cellular;jul;fri;42;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+37;technician;married;basic.6y;unknown;no;no;cellular;jul;fri;130;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+49;technician;married;professional.course;unknown;no;no;cellular;jul;fri;197;6;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+48;admin.;single;high.school;no;no;no;cellular;jul;fri;52;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+35;admin.;single;high.school;no;no;no;cellular;jul;fri;441;12;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+52;blue-collar;married;unknown;unknown;yes;no;cellular;jul;fri;31;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+36;admin.;single;high.school;no;no;no;telephone;jul;fri;219;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+57;blue-collar;married;basic.4y;unknown;no;no;cellular;jul;fri;179;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+52;blue-collar;married;basic.9y;unknown;no;no;telephone;jul;fri;1492;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+43;admin.;married;basic.9y;no;no;no;cellular;jul;fri;72;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+45;technician;divorced;unknown;unknown;no;no;cellular;jul;fri;64;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;entrepreneur;single;university.degree;no;no;yes;cellular;jul;fri;210;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+60;retired;married;high.school;unknown;no;no;telephone;jul;fri;133;7;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+49;admin.;divorced;high.school;no;no;no;cellular;jul;fri;203;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+41;admin.;married;basic.9y;unknown;no;no;cellular;jul;fri;823;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+52;blue-collar;married;basic.4y;unknown;no;yes;cellular;jul;fri;682;10;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+42;technician;married;professional.course;no;yes;no;cellular;jul;fri;154;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+49;management;married;university.degree;no;yes;no;telephone;jul;fri;150;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+46;technician;married;professional.course;no;yes;no;cellular;jul;fri;13;9;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+33;technician;single;high.school;no;yes;no;cellular;jul;fri;1422;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+52;blue-collar;married;basic.4y;unknown;no;yes;cellular;jul;fri;114;12;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+31;admin.;divorced;high.school;no;no;yes;cellular;jul;fri;186;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+32;entrepreneur;divorced;university.degree;no;yes;yes;cellular;jul;fri;57;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+56;technician;divorced;professional.course;no;yes;no;telephone;jul;fri;159;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+32;entrepreneur;divorced;university.degree;no;no;no;cellular;jul;fri;123;16;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+28;services;single;high.school;no;no;no;cellular;jul;fri;102;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+56;services;married;high.school;no;yes;yes;cellular;jul;fri;65;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+50;technician;married;university.degree;no;no;no;telephone;jul;fri;78;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+36;services;married;high.school;no;yes;no;cellular;jul;fri;303;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+47;technician;divorced;professional.course;no;no;yes;cellular;jul;fri;43;7;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+49;admin.;married;university.degree;no;no;no;cellular;jul;fri;44;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+32;admin.;single;high.school;no;yes;no;cellular;jul;fri;212;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+35;admin.;single;university.degree;unknown;yes;no;cellular;jul;fri;111;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+56;retired;single;professional.course;unknown;yes;no;cellular;jul;fri;161;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;admin.;married;university.degree;no;no;yes;cellular;jul;fri;979;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+42;admin.;married;university.degree;no;no;no;cellular;jul;fri;591;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+54;blue-collar;married;basic.9y;unknown;yes;no;cellular;jul;fri;602;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+51;entrepreneur;married;basic.6y;unknown;no;no;cellular;jul;fri;190;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;services;single;high.school;no;no;yes;cellular;jul;fri;616;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+42;admin.;single;high.school;no;no;yes;cellular;jul;fri;295;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+46;admin.;married;professional.course;no;no;no;cellular;jul;fri;359;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+46;management;married;university.degree;no;no;yes;cellular;jul;fri;153;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+47;blue-collar;married;basic.4y;unknown;no;yes;cellular;jul;fri;110;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;technician;single;high.school;no;no;no;cellular;jul;fri;198;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+53;management;married;university.degree;no;yes;no;cellular;jul;fri;136;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+55;technician;married;unknown;no;no;no;cellular;jul;fri;173;8;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+38;blue-collar;divorced;high.school;no;no;no;cellular;jul;fri;294;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;technician;single;high.school;no;yes;no;cellular;jul;fri;784;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+40;admin.;married;university.degree;no;yes;no;cellular;jul;fri;310;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+42;blue-collar;single;basic.4y;no;yes;yes;cellular;jul;fri;107;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+31;self-employed;married;university.degree;no;yes;no;cellular;jul;fri;298;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;admin.;single;high.school;no;yes;no;cellular;jul;fri;110;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+34;blue-collar;single;unknown;no;no;yes;cellular;jul;fri;1000;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+39;admin.;single;high.school;no;yes;no;cellular;jul;fri;361;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+50;retired;married;professional.course;no;yes;no;cellular;jul;fri;695;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+52;blue-collar;single;unknown;unknown;no;yes;cellular;jul;fri;137;11;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;admin.;single;high.school;no;yes;no;cellular;jul;fri;335;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+44;admin.;married;unknown;no;no;no;cellular;jul;fri;735;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+28;blue-collar;single;basic.9y;no;no;no;cellular;jul;fri;75;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+55;unemployed;married;high.school;no;yes;yes;cellular;jul;fri;57;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+28;blue-collar;single;basic.9y;no;no;no;cellular;jul;fri;159;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+39;admin.;single;high.school;no;yes;no;cellular;jul;fri;337;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+50;technician;married;university.degree;no;no;yes;cellular;jul;fri;337;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+28;blue-collar;single;basic.9y;no;yes;no;cellular;jul;fri;267;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+28;blue-collar;single;basic.9y;no;no;no;cellular;jul;fri;803;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+45;technician;married;university.degree;no;yes;no;cellular;jul;fri;115;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+56;blue-collar;married;basic.9y;unknown;no;no;cellular;jul;fri;282;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+32;blue-collar;married;professional.course;no;yes;no;telephone;jul;fri;168;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+44;blue-collar;married;unknown;unknown;no;no;cellular;jul;fri;18;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+48;admin.;married;university.degree;no;no;no;cellular;jul;fri;54;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+38;technician;single;unknown;no;yes;no;cellular;jul;fri;172;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+32;blue-collar;married;professional.course;no;no;no;cellular;jul;fri;256;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+25;technician;single;high.school;no;no;yes;cellular;jul;fri;112;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+36;services;single;high.school;no;yes;no;cellular;jul;fri;862;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+45;technician;divorced;unknown;unknown;no;no;cellular;jul;fri;134;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+52;admin.;married;high.school;no;no;no;cellular;jul;fri;324;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+44;blue-collar;married;basic.4y;no;yes;no;cellular;jul;fri;65;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+40;admin.;single;university.degree;no;yes;no;cellular;jul;fri;250;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+40;admin.;single;university.degree;no;yes;no;cellular;jul;fri;198;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+40;admin.;single;university.degree;no;no;no;telephone;jul;fri;241;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+60;retired;married;high.school;unknown;yes;no;cellular;jul;fri;79;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+42;blue-collar;single;basic.4y;no;yes;no;cellular;jul;fri;112;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+56;technician;married;unknown;unknown;yes;no;cellular;jul;fri;86;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+50;admin.;married;university.degree;no;yes;no;cellular;jul;fri;127;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+48;admin.;divorced;university.degree;unknown;yes;no;cellular;jul;fri;246;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+51;retired;married;basic.9y;unknown;yes;no;cellular;jul;fri;50;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;admin.;single;high.school;no;yes;no;cellular;jul;fri;71;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+35;services;single;basic.9y;no;no;no;cellular;jul;fri;61;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+39;self-employed;married;basic.6y;no;yes;no;cellular;jul;fri;40;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+53;retired;married;high.school;no;no;no;cellular;jul;fri;720;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+40;technician;married;professional.course;no;no;no;cellular;jul;fri;175;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+40;technician;married;professional.course;no;no;no;cellular;jul;fri;234;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;admin.;married;university.degree;no;yes;no;cellular;jul;fri;226;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;admin.;married;university.degree;no;unknown;unknown;cellular;jul;fri;352;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+52;blue-collar;married;unknown;unknown;no;no;cellular;jul;fri;227;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+39;admin.;married;high.school;no;yes;no;cellular;jul;fri;214;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+56;self-employed;married;basic.9y;unknown;no;no;cellular;jul;fri;571;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+32;blue-collar;married;basic.4y;no;no;no;telephone;jul;fri;110;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+29;services;single;university.degree;no;no;no;cellular;jul;fri;246;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+51;technician;divorced;professional.course;no;no;no;cellular;jul;fri;63;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+56;blue-collar;married;basic.9y;unknown;yes;no;cellular;jul;fri;113;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+38;admin.;married;university.degree;no;no;no;cellular;jul;fri;188;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+34;technician;married;university.degree;no;yes;no;cellular;jul;fri;133;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+42;technician;single;professional.course;no;yes;no;cellular;jul;fri;98;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+47;blue-collar;married;basic.6y;unknown;no;no;cellular;jul;fri;51;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+33;blue-collar;married;basic.9y;no;no;no;telephone;jul;fri;286;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;technician;single;unknown;no;yes;no;cellular;jul;fri;238;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+45;admin.;married;professional.course;no;no;no;cellular;jul;fri;49;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+35;management;married;university.degree;no;no;no;cellular;jul;fri;102;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+48;admin.;single;high.school;no;no;yes;cellular;jul;fri;18;7;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+52;admin.;married;high.school;no;no;no;cellular;jul;fri;795;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+46;technician;divorced;university.degree;unknown;yes;no;telephone;jul;fri;1946;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+56;blue-collar;married;basic.9y;unknown;yes;no;cellular;jul;fri;560;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+45;admin.;married;high.school;no;yes;no;cellular;jul;fri;172;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+57;blue-collar;married;basic.4y;unknown;no;yes;cellular;jul;fri;77;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+50;admin.;married;university.degree;no;no;no;cellular;jul;fri;99;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+57;blue-collar;married;basic.4y;unknown;yes;no;cellular;jul;fri;153;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+60;retired;married;high.school;unknown;yes;no;telephone;jul;fri;297;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+60;retired;married;basic.6y;unknown;no;no;cellular;jul;fri;135;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+60;retired;married;basic.6y;unknown;no;no;cellular;jul;fri;95;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+57;blue-collar;married;basic.4y;unknown;yes;no;telephone;jul;fri;182;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+31;admin.;single;high.school;no;no;no;cellular;jul;fri;168;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+51;technician;divorced;unknown;unknown;yes;no;cellular;jul;fri;102;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+51;blue-collar;married;basic.4y;no;no;no;cellular;jul;fri;46;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+45;admin.;married;professional.course;no;no;no;cellular;jul;fri;1106;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+49;admin.;divorced;high.school;no;yes;no;cellular;jul;fri;81;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+59;blue-collar;married;unknown;no;no;no;cellular;jul;fri;124;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+56;blue-collar;married;basic.9y;unknown;no;no;cellular;jul;fri;236;8;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;blue-collar;married;high.school;no;yes;yes;cellular;jul;fri;132;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+31;entrepreneur;married;university.degree;no;yes;no;cellular;jul;fri;94;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+54;unemployed;married;high.school;unknown;no;no;cellular;jul;fri;203;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+28;blue-collar;single;basic.9y;no;no;yes;cellular;jul;fri;184;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+50;technician;married;university.degree;no;no;no;cellular;jul;fri;146;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+57;retired;single;basic.4y;no;no;no;telephone;jul;fri;102;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+39;admin.;married;high.school;no;no;no;cellular;jul;fri;184;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+50;technician;married;university.degree;no;yes;no;cellular;jul;fri;367;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+47;admin.;married;basic.6y;no;yes;no;cellular;jul;fri;426;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+45;admin.;divorced;high.school;no;yes;no;cellular;jul;fri;800;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+58;retired;married;professional.course;no;yes;no;cellular;jul;fri;96;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+46;technician;divorced;university.degree;no;no;yes;cellular;jul;fri;165;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+55;blue-collar;married;basic.9y;no;no;no;cellular;jul;fri;357;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+41;self-employed;married;basic.9y;no;yes;no;cellular;jul;fri;177;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+53;technician;married;professional.course;unknown;no;no;cellular;jul;fri;69;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+54;retired;married;professional.course;no;yes;no;cellular;jul;fri;72;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+53;technician;married;professional.course;unknown;no;no;cellular;jul;fri;209;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+59;retired;divorced;basic.9y;unknown;yes;no;telephone;jul;fri;362;8;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+40;blue-collar;married;basic.9y;unknown;no;yes;cellular;jul;fri;49;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+51;housemaid;married;basic.4y;unknown;yes;no;cellular;jul;fri;135;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+28;blue-collar;single;basic.9y;no;yes;yes;cellular;jul;fri;132;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+56;technician;married;unknown;unknown;yes;no;cellular;jul;fri;177;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;admin.;married;university.degree;no;no;no;cellular;jul;fri;67;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+49;admin.;married;high.school;no;no;yes;cellular;jul;fri;204;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+57;admin.;single;unknown;no;yes;no;cellular;jul;fri;153;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+51;services;married;high.school;unknown;yes;yes;cellular;jul;fri;239;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+38;technician;single;unknown;no;no;no;cellular;jul;fri;337;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+54;technician;married;professional.course;no;yes;no;telephone;jul;fri;149;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+51;blue-collar;married;basic.9y;unknown;yes;no;cellular;jul;fri;97;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+41;admin.;married;basic.9y;unknown;yes;no;cellular;jul;fri;471;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+48;admin.;single;high.school;no;yes;yes;telephone;jul;fri;214;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+54;technician;married;professional.course;no;no;no;cellular;jul;fri;796;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+58;retired;married;professional.course;no;yes;no;cellular;jul;fri;51;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+55;management;married;basic.9y;no;yes;no;telephone;jul;fri;106;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+52;blue-collar;married;basic.9y;unknown;yes;no;cellular;jul;fri;211;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+42;admin.;married;high.school;no;yes;no;cellular;jul;fri;311;6;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+34;technician;married;university.degree;no;yes;yes;cellular;jul;fri;483;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+58;retired;married;professional.course;no;yes;yes;cellular;jul;fri;605;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+50;blue-collar;married;basic.9y;unknown;yes;yes;cellular;jul;fri;110;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+48;blue-collar;married;basic.4y;unknown;no;no;cellular;jul;fri;276;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+53;admin.;married;university.degree;no;no;no;telephone;jul;fri;120;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+54;retired;married;professional.course;no;no;yes;cellular;jul;fri;39;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+39;admin.;married;university.degree;no;yes;no;cellular;jul;fri;127;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+52;blue-collar;married;basic.4y;unknown;no;no;cellular;jul;fri;80;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+59;retired;divorced;university.degree;no;no;no;telephone;jul;fri;87;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+28;blue-collar;single;basic.9y;no;no;no;cellular;jul;fri;66;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+42;admin.;single;high.school;no;no;no;cellular;jul;fri;163;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+54;unemployed;married;high.school;unknown;yes;no;cellular;jul;fri;83;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+51;technician;divorced;unknown;unknown;no;no;telephone;jul;fri;511;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+28;technician;single;unknown;no;yes;no;cellular;jul;fri;184;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+35;services;single;basic.9y;no;no;no;cellular;jul;fri;102;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+28;blue-collar;single;basic.9y;no;no;no;cellular;jul;fri;53;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+39;admin.;married;university.degree;no;no;no;cellular;jul;fri;743;13;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+55;retired;married;basic.4y;unknown;yes;no;cellular;jul;fri;129;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+55;retired;married;basic.4y;unknown;yes;yes;cellular;jul;fri;258;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+52;blue-collar;married;basic.4y;unknown;yes;no;cellular;jul;fri;2015;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+56;admin.;married;university.degree;unknown;no;no;cellular;jul;fri;98;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+48;self-employed;divorced;professional.course;no;no;no;telephone;jul;fri;657;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+53;management;married;university.degree;no;yes;no;telephone;jul;fri;199;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+54;blue-collar;married;basic.9y;no;no;no;cellular;jul;fri;261;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+26;services;married;high.school;no;yes;no;cellular;jul;fri;442;12;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+60;management;married;university.degree;no;no;no;cellular;jul;fri;241;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+49;technician;married;professional.course;unknown;yes;yes;cellular;jul;fri;152;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+32;admin.;single;high.school;no;yes;no;cellular;jul;fri;147;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+55;unemployed;married;high.school;no;yes;yes;cellular;jul;fri;730;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+52;blue-collar;married;basic.4y;unknown;yes;no;cellular;jul;fri;36;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+30;technician;married;high.school;no;no;no;cellular;jul;fri;1161;26;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+58;admin.;married;basic.9y;no;no;no;cellular;jul;fri;90;7;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+50;technician;married;university.degree;no;no;no;cellular;jul;fri;95;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+38;blue-collar;married;high.school;no;no;no;cellular;jul;fri;102;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+56;admin.;married;university.degree;no;yes;yes;cellular;jul;fri;374;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+36;services;married;high.school;no;no;no;cellular;jul;fri;468;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+51;entrepreneur;married;basic.6y;unknown;no;no;cellular;jul;fri;141;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+32;entrepreneur;divorced;university.degree;no;no;no;cellular;jul;fri;155;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+50;housemaid;married;basic.4y;unknown;unknown;unknown;cellular;jul;fri;356;9;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+46;technician;divorced;university.degree;no;no;no;cellular;jul;fri;147;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+45;admin.;married;basic.6y;no;no;yes;cellular;jul;fri;268;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+47;admin.;married;university.degree;no;no;no;cellular;jul;fri;84;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+41;admin.;married;basic.9y;unknown;no;no;telephone;jul;fri;259;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+57;entrepreneur;divorced;high.school;no;unknown;unknown;cellular;jul;fri;360;13;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+55;retired;married;professional.course;no;yes;no;cellular;jul;fri;1031;8;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+46;technician;married;professional.course;no;unknown;unknown;cellular;jul;fri;1368;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+51;services;married;high.school;unknown;yes;no;cellular;jul;fri;507;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+42;admin.;married;university.degree;unknown;no;no;cellular;jul;fri;148;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;technician;single;unknown;no;yes;no;cellular;jul;fri;266;6;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+36;unknown;single;unknown;no;no;no;cellular;jul;fri;295;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+58;services;married;high.school;no;no;no;cellular;jul;fri;134;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+33;technician;single;high.school;no;yes;no;cellular;jul;fri;270;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+33;services;married;high.school;no;yes;no;cellular;jul;fri;396;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+28;services;single;high.school;no;yes;no;cellular;jul;fri;273;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+58;services;married;high.school;no;yes;no;cellular;jul;fri;72;30;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+42;blue-collar;single;basic.4y;no;unknown;unknown;telephone;jul;fri;385;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+52;admin.;divorced;high.school;no;no;no;cellular;jul;fri;87;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;technician;married;professional.course;no;no;no;cellular;jul;fri;161;7;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+51;entrepreneur;married;basic.6y;unknown;yes;no;cellular;jul;fri;92;15;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+53;retired;married;professional.course;no;no;no;cellular;jul;fri;124;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+39;self-employed;married;university.degree;no;no;no;cellular;jul;fri;356;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+49;technician;married;professional.course;unknown;no;no;cellular;jul;fri;394;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+51;admin.;married;university.degree;no;no;no;cellular;jul;fri;293;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+48;admin.;single;high.school;no;no;no;cellular;jul;fri;135;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+60;technician;married;high.school;no;no;no;cellular;jul;fri;590;8;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+28;services;married;high.school;no;no;yes;cellular;jul;fri;200;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+46;student;single;unknown;no;yes;no;cellular;jul;fri;587;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+59;retired;married;basic.9y;unknown;no;no;cellular;jul;fri;1330;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+45;blue-collar;married;basic.4y;no;no;no;cellular;jul;fri;194;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+49;admin.;divorced;high.school;no;yes;no;cellular;jul;fri;238;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+52;admin.;married;university.degree;no;no;yes;cellular;jul;fri;171;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+35;unemployed;single;basic.9y;no;no;no;cellular;jul;fri;936;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+35;management;divorced;university.degree;no;no;no;cellular;jul;fri;210;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;admin.;single;university.degree;no;no;yes;cellular;jul;fri;83;10;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+52;services;married;high.school;unknown;yes;no;cellular;jul;fri;946;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+31;services;married;high.school;no;no;yes;cellular;jul;fri;1319;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;entrepreneur;married;university.degree;no;no;yes;cellular;jul;fri;250;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+58;technician;married;basic.4y;unknown;no;yes;cellular;jul;fri;103;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+59;admin.;married;unknown;unknown;yes;no;cellular;jul;fri;150;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+54;admin.;married;university.degree;unknown;no;no;cellular;jul;fri;67;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+51;entrepreneur;married;basic.6y;unknown;yes;yes;cellular;jul;fri;124;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+52;blue-collar;married;basic.4y;unknown;yes;yes;cellular;jul;fri;85;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+57;retired;single;basic.4y;no;no;yes;telephone;jul;fri;93;11;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+53;retired;married;high.school;no;yes;no;cellular;jul;fri;99;7;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+59;retired;married;high.school;no;yes;no;cellular;jul;fri;1448;17;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+52;blue-collar;married;basic.9y;unknown;no;yes;cellular;jul;fri;432;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+32;admin.;single;high.school;no;yes;no;telephone;jul;fri;143;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+35;unemployed;single;basic.9y;no;yes;yes;cellular;jul;fri;50;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+42;self-employed;married;basic.4y;unknown;yes;no;cellular;jul;fri;126;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+56;services;married;high.school;no;no;yes;cellular;jul;fri;87;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+42;admin.;married;university.degree;no;no;yes;cellular;jul;fri;400;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+46;student;single;unknown;no;yes;no;telephone;jul;fri;279;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+44;blue-collar;married;basic.9y;no;no;yes;cellular;jul;fri;185;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+38;admin.;divorced;high.school;no;yes;yes;cellular;jul;fri;164;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+56;admin.;married;university.degree;no;no;yes;cellular;jul;fri;188;9;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+53;technician;married;professional.course;unknown;no;yes;cellular;jul;fri;118;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+56;admin.;married;high.school;unknown;yes;no;cellular;jul;fri;661;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+57;admin.;single;unknown;no;no;no;cellular;jul;fri;137;7;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+48;admin.;single;high.school;no;yes;no;cellular;jul;fri;237;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+58;unemployed;divorced;high.school;unknown;no;no;cellular;jul;fri;195;6;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+47;blue-collar;married;basic.6y;unknown;yes;yes;cellular;jul;fri;138;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+25;management;single;university.degree;no;yes;yes;cellular;jul;fri;114;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+42;management;married;high.school;no;yes;no;cellular;jul;fri;96;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+46;technician;divorced;university.degree;unknown;no;no;cellular;jul;fri;65;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+45;blue-collar;married;basic.4y;no;no;no;cellular;jul;fri;144;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+58;blue-collar;married;basic.4y;unknown;yes;no;cellular;jul;fri;198;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+53;blue-collar;married;unknown;unknown;yes;no;cellular;jul;fri;386;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+51;admin.;single;university.degree;no;no;no;telephone;jul;fri;163;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+28;admin.;single;high.school;no;no;yes;cellular;jul;fri;63;12;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+56;technician;married;unknown;unknown;yes;yes;cellular;jul;fri;84;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+56;technician;married;basic.9y;unknown;no;no;cellular;jul;fri;188;14;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+40;admin.;divorced;basic.9y;no;yes;yes;cellular;jul;fri;481;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+28;blue-collar;single;basic.9y;no;no;no;cellular;jul;fri;1369;9;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+39;admin.;married;university.degree;no;no;no;cellular;jul;fri;653;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+50;retired;married;professional.course;no;yes;yes;cellular;jul;fri;460;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+44;blue-collar;married;basic.9y;no;no;no;cellular;jul;fri;41;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+50;blue-collar;married;basic.9y;unknown;yes;no;telephone;jul;fri;282;9;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+54;technician;married;professional.course;no;no;yes;telephone;jul;fri;395;6;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+49;technician;married;professional.course;no;yes;no;cellular;jul;fri;190;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+55;blue-collar;married;basic.9y;unknown;yes;no;cellular;jul;mon;71;7;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+55;admin.;divorced;professional.course;unknown;no;no;cellular;jul;mon;68;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+46;admin.;married;high.school;unknown;yes;no;cellular;jul;mon;151;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;admin.;married;high.school;no;yes;yes;cellular;jul;mon;32;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+44;management;married;high.school;unknown;yes;no;cellular;jul;mon;102;6;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+47;technician;divorced;professional.course;no;yes;no;cellular;jul;mon;147;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+42;unknown;single;university.degree;unknown;yes;no;cellular;jul;mon;93;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+44;blue-collar;married;basic.9y;unknown;no;no;cellular;jul;mon;29;12;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+48;services;married;high.school;no;yes;yes;telephone;jul;mon;63;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+55;blue-collar;married;basic.9y;unknown;no;no;cellular;jul;mon;40;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+36;admin.;married;university.degree;no;yes;yes;cellular;jul;mon;230;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+42;unknown;married;unknown;no;yes;no;cellular;jul;mon;33;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+54;housemaid;divorced;university.degree;unknown;yes;no;cellular;jul;mon;57;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+54;technician;married;basic.6y;no;yes;no;cellular;jul;mon;177;17;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+30;blue-collar;single;basic.9y;no;yes;yes;cellular;jul;mon;52;6;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+42;entrepreneur;single;university.degree;no;no;no;cellular;jul;mon;49;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+45;entrepreneur;single;university.degree;no;no;no;cellular;jul;mon;123;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+59;admin.;divorced;high.school;no;yes;yes;cellular;jul;mon;44;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+42;self-employed;married;university.degree;no;no;no;cellular;jul;mon;243;30;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+51;blue-collar;married;basic.9y;unknown;no;no;telephone;jul;mon;41;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+50;management;divorced;university.degree;no;no;no;cellular;jul;mon;60;6;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+44;technician;divorced;university.degree;unknown;yes;yes;telephone;jul;mon;31;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+40;admin.;divorced;high.school;no;yes;yes;cellular;jul;mon;52;10;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+37;student;married;unknown;no;yes;no;cellular;jul;mon;110;17;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+51;technician;married;basic.9y;unknown;yes;yes;cellular;jul;mon;33;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+49;unknown;unknown;unknown;unknown;yes;yes;cellular;jul;mon;49;9;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+44;admin.;married;high.school;unknown;no;no;cellular;jul;mon;327;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+47;technician;single;professional.course;no;yes;no;cellular;jul;mon;108;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+41;services;married;high.school;no;yes;yes;cellular;jul;mon;95;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+44;services;divorced;high.school;no;no;no;cellular;jul;mon;119;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+56;admin.;divorced;basic.6y;unknown;no;yes;cellular;jul;mon;234;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+47;management;single;university.degree;unknown;no;no;cellular;jul;mon;261;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+56;management;married;basic.9y;no;yes;no;cellular;jul;mon;180;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+41;services;married;high.school;no;yes;no;cellular;jul;mon;56;8;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+51;retired;divorced;professional.course;no;yes;no;cellular;jul;mon;70;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+42;admin.;married;basic.9y;unknown;yes;no;cellular;jul;mon;163;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+40;blue-collar;married;basic.6y;no;yes;no;cellular;jul;mon;62;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+37;admin.;married;university.degree;unknown;yes;no;cellular;jul;mon;110;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+45;admin.;married;high.school;unknown;yes;no;cellular;jul;mon;386;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+34;admin.;married;high.school;no;yes;no;cellular;jul;mon;295;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;blue-collar;married;basic.9y;no;no;no;cellular;jul;mon;458;6;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+51;admin.;divorced;university.degree;no;no;no;cellular;jul;mon;117;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+49;admin.;married;high.school;no;yes;no;cellular;jul;mon;69;11;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;admin.;single;university.degree;no;yes;no;cellular;jul;mon;48;20;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+36;blue-collar;married;basic.9y;no;yes;no;cellular;jul;mon;57;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+50;management;divorced;university.degree;no;no;no;cellular;jul;mon;983;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+47;technician;single;professional.course;no;yes;no;cellular;jul;mon;365;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+42;self-employed;married;university.degree;unknown;no;yes;cellular;jul;mon;95;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+36;blue-collar;single;basic.9y;no;no;no;cellular;jul;mon;31;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+38;technician;married;university.degree;no;yes;no;cellular;jul;mon;55;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+48;services;married;high.school;unknown;yes;no;cellular;jul;mon;49;6;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+44;blue-collar;single;high.school;unknown;no;no;telephone;jul;mon;193;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+56;blue-collar;married;basic.4y;unknown;no;no;telephone;jul;mon;36;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+59;retired;married;university.degree;no;yes;no;cellular;jul;mon;664;7;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+40;blue-collar;married;professional.course;no;yes;no;cellular;jul;mon;108;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+38;technician;married;professional.course;no;no;no;cellular;jul;mon;110;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+46;services;married;high.school;unknown;no;no;cellular;jul;mon;57;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+46;management;married;university.degree;no;no;no;cellular;jul;mon;89;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+44;blue-collar;single;high.school;unknown;no;no;cellular;jul;mon;699;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+37;admin.;divorced;high.school;no;no;yes;cellular;jul;mon;131;6;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;services;married;basic.6y;unknown;no;no;cellular;jul;mon;463;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;services;married;basic.6y;unknown;yes;yes;cellular;jul;mon;228;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+31;management;single;university.degree;no;yes;no;cellular;jul;mon;30;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+55;admin.;married;high.school;no;yes;no;cellular;jul;mon;700;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+53;admin.;married;university.degree;no;yes;yes;cellular;jul;mon;124;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;management;married;university.degree;unknown;no;yes;cellular;jul;mon;219;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+45;services;married;professional.course;no;yes;yes;cellular;jul;mon;307;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+41;services;married;high.school;no;yes;no;cellular;jul;mon;82;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+51;admin.;divorced;university.degree;no;yes;no;cellular;jul;mon;151;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+47;management;single;university.degree;unknown;yes;no;cellular;jul;mon;106;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+58;retired;married;unknown;unknown;yes;no;telephone;jul;mon;121;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+48;services;married;high.school;no;yes;yes;cellular;jul;mon;115;7;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;services;married;basic.6y;unknown;unknown;unknown;cellular;jul;mon;939;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+51;management;married;university.degree;unknown;no;no;cellular;jul;mon;60;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+45;admin.;divorced;university.degree;no;yes;yes;cellular;jul;mon;340;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+57;technician;married;professional.course;unknown;yes;no;cellular;jul;mon;54;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+44;technician;divorced;university.degree;unknown;no;no;cellular;jul;mon;73;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+58;retired;divorced;basic.4y;unknown;yes;no;cellular;jul;mon;362;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;management;married;university.degree;unknown;yes;yes;cellular;jul;mon;746;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+58;retired;married;unknown;unknown;yes;no;telephone;jul;mon;22;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+59;admin.;divorced;basic.4y;unknown;yes;yes;cellular;jul;mon;745;6;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+38;admin.;married;high.school;no;yes;no;cellular;jul;mon;319;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+30;admin.;married;high.school;no;no;no;cellular;jul;mon;219;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;technician;divorced;high.school;no;yes;yes;cellular;jul;mon;200;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+58;retired;married;unknown;unknown;yes;no;cellular;jul;mon;174;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+51;technician;married;basic.9y;unknown;no;no;cellular;jul;mon;136;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+44;technician;divorced;university.degree;unknown;no;no;cellular;jul;mon;154;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+40;blue-collar;married;professional.course;no;no;no;telephone;jul;mon;108;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+46;management;married;university.degree;no;no;no;cellular;jul;mon;87;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+57;technician;married;professional.course;no;no;no;cellular;jul;mon;68;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+57;self-employed;married;university.degree;unknown;unknown;unknown;telephone;jul;mon;644;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+59;blue-collar;married;basic.6y;unknown;yes;no;cellular;jul;mon;108;7;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+47;housemaid;married;basic.4y;unknown;yes;no;telephone;jul;mon;148;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+56;services;married;university.degree;no;no;no;cellular;jul;mon;139;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+39;blue-collar;married;high.school;no;yes;no;cellular;jul;mon;84;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+40;blue-collar;married;professional.course;no;no;no;cellular;jul;mon;240;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+57;admin.;married;basic.9y;unknown;no;no;cellular;jul;mon;194;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+47;blue-collar;married;professional.course;no;yes;yes;cellular;jul;mon;330;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+58;admin.;single;unknown;unknown;no;no;telephone;jul;mon;228;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+46;management;married;university.degree;no;no;no;cellular;jul;mon;662;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+53;services;married;unknown;unknown;yes;no;cellular;jul;mon;60;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+57;self-employed;married;university.degree;unknown;yes;no;telephone;jul;mon;40;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+55;unknown;unknown;unknown;unknown;yes;no;cellular;jul;mon;230;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+31;admin.;single;university.degree;no;no;no;cellular;jul;mon;173;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+47;housemaid;married;basic.4y;unknown;no;no;cellular;jul;mon;78;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+59;retired;married;basic.9y;no;no;no;cellular;jul;mon;551;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+50;management;divorced;university.degree;no;no;no;telephone;jul;mon;130;7;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+58;admin.;single;unknown;unknown;no;yes;cellular;jul;mon;49;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+49;blue-collar;married;unknown;unknown;no;no;cellular;jul;mon;295;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+47;housemaid;married;basic.4y;unknown;no;no;cellular;jul;mon;139;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+44;management;married;high.school;unknown;yes;no;telephone;jul;mon;13;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+47;housemaid;married;basic.4y;unknown;yes;no;cellular;jul;mon;367;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+44;management;married;high.school;unknown;no;no;telephone;jul;mon;137;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+42;self-employed;married;university.degree;no;no;no;cellular;jul;mon;97;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+55;admin.;married;university.degree;no;no;no;cellular;jul;mon;73;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+44;management;married;high.school;unknown;yes;no;cellular;jul;mon;126;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+44;management;married;high.school;unknown;no;no;cellular;jul;mon;164;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+39;admin.;single;university.degree;no;yes;no;cellular;jul;mon;50;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+42;admin.;married;university.degree;no;no;no;cellular;jul;mon;24;12;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+42;self-employed;married;university.degree;no;no;no;cellular;jul;mon;84;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;services;married;basic.6y;unknown;no;no;cellular;jul;mon;547;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+44;management;married;high.school;unknown;no;yes;cellular;jul;mon;292;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+50;unknown;married;unknown;unknown;no;no;cellular;jul;mon;53;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+56;blue-collar;married;basic.4y;unknown;no;no;cellular;jul;mon;241;6;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+44;management;married;high.school;unknown;yes;no;cellular;jul;mon;418;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+44;services;divorced;high.school;no;yes;yes;telephone;jul;mon;112;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+57;retired;married;basic.4y;unknown;no;yes;cellular;jul;mon;65;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+42;admin.;married;high.school;no;yes;yes;telephone;jul;mon;388;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+53;unemployed;married;basic.6y;unknown;no;no;cellular;jul;mon;273;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+59;housemaid;divorced;unknown;unknown;no;no;cellular;jul;mon;103;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+44;services;divorced;high.school;no;yes;yes;cellular;jul;mon;1169;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+46;admin.;divorced;university.degree;no;yes;no;telephone;jul;mon;59;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+40;blue-collar;married;professional.course;no;yes;yes;cellular;jul;mon;431;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+50;unknown;married;unknown;unknown;yes;no;cellular;jul;mon;143;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;services;married;basic.6y;unknown;yes;yes;cellular;jul;mon;405;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+49;admin.;married;high.school;no;yes;yes;cellular;jul;mon;263;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+40;self-employed;married;unknown;unknown;no;no;cellular;jul;mon;143;9;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+40;admin.;divorced;high.school;no;no;no;cellular;jul;mon;837;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+45;services;married;professional.course;no;yes;no;cellular;jul;mon;19;23;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+36;blue-collar;married;basic.9y;no;no;no;cellular;jul;mon;63;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+45;admin.;married;high.school;unknown;no;yes;telephone;jul;mon;55;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+51;services;married;high.school;unknown;yes;no;telephone;jul;mon;596;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+37;admin.;married;university.degree;unknown;yes;no;cellular;jul;mon;35;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+47;housemaid;married;basic.4y;unknown;no;no;cellular;jul;mon;71;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+38;admin.;divorced;university.degree;no;no;no;cellular;jul;mon;101;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;services;married;high.school;no;no;no;cellular;jul;mon;337;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;services;married;basic.6y;unknown;yes;no;cellular;jul;mon;65;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+42;unknown;married;unknown;no;yes;no;cellular;jul;mon;48;9;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+45;services;married;high.school;unknown;no;no;cellular;jul;mon;174;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+45;admin.;married;high.school;unknown;yes;no;cellular;jul;mon;201;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+45;admin.;divorced;basic.6y;no;no;yes;telephone;jul;mon;296;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+35;entrepreneur;single;university.degree;no;no;no;cellular;jul;mon;180;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+37;admin.;married;university.degree;unknown;no;no;cellular;jul;mon;332;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+56;blue-collar;married;basic.4y;unknown;no;no;cellular;jul;mon;55;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+45;admin.;married;high.school;unknown;no;yes;cellular;jul;mon;301;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+51;admin.;divorced;university.degree;no;no;no;telephone;jul;mon;359;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+54;blue-collar;married;basic.4y;no;no;no;cellular;jul;mon;54;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+51;technician;married;basic.9y;unknown;yes;no;cellular;jul;mon;114;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+59;admin.;divorced;high.school;no;yes;no;cellular;jul;mon;86;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+55;admin.;divorced;university.degree;no;yes;no;cellular;jul;mon;404;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+34;blue-collar;single;high.school;no;yes;no;cellular;jul;mon;435;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+57;admin.;married;university.degree;no;no;yes;cellular;jul;mon;231;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+40;blue-collar;married;basic.4y;no;yes;yes;telephone;jul;mon;40;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;admin.;single;university.degree;no;yes;no;cellular;jul;mon;73;6;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+45;admin.;divorced;high.school;no;no;no;cellular;jul;mon;300;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+48;services;married;high.school;unknown;yes;no;cellular;jul;mon;193;6;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+44;management;married;high.school;unknown;no;yes;telephone;jul;mon;73;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+58;retired;married;basic.4y;unknown;no;no;cellular;jul;mon;22;18;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+47;technician;married;basic.9y;no;yes;no;cellular;jul;mon;502;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+47;self-employed;married;university.degree;no;no;yes;cellular;jul;mon;83;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+51;admin.;divorced;university.degree;no;yes;no;cellular;jul;mon;289;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+54;management;divorced;professional.course;no;no;no;cellular;jul;mon;89;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+48;services;married;high.school;no;no;no;cellular;jul;mon;157;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+51;admin.;divorced;university.degree;no;yes;no;cellular;jul;mon;438;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+55;technician;married;professional.course;no;no;no;telephone;jul;mon;155;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+40;blue-collar;married;professional.course;no;no;no;cellular;jul;mon;189;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+40;blue-collar;married;professional.course;no;yes;no;cellular;jul;mon;96;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+39;admin.;single;university.degree;no;yes;yes;cellular;jul;mon;25;18;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+44;services;divorced;high.school;no;yes;yes;cellular;jul;mon;395;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+26;blue-collar;single;high.school;unknown;yes;no;cellular;jul;mon;246;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+59;admin.;divorced;high.school;unknown;no;yes;cellular;jul;mon;630;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+37;admin.;married;university.degree;no;no;no;cellular;jul;mon;60;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+51;technician;married;basic.9y;unknown;no;no;cellular;jul;mon;116;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+40;self-employed;married;unknown;unknown;no;no;telephone;jul;mon;1025;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+47;admin.;married;university.degree;unknown;yes;no;cellular;jul;mon;231;8;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;services;married;basic.6y;unknown;yes;yes;cellular;jul;mon;76;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+53;unemployed;married;basic.6y;unknown;yes;no;cellular;jul;mon;131;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+51;admin.;divorced;university.degree;no;no;no;cellular;jul;mon;470;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+50;management;divorced;university.degree;no;no;no;cellular;jul;mon;85;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+48;blue-collar;married;basic.9y;no;yes;yes;cellular;jul;mon;60;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+48;technician;married;professional.course;no;yes;no;cellular;jul;mon;383;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+36;services;single;high.school;no;no;no;cellular;jul;mon;719;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+40;unemployed;married;basic.9y;unknown;yes;no;cellular;jul;mon;68;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+56;admin.;divorced;basic.6y;unknown;no;no;cellular;jul;mon;70;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+36;blue-collar;single;basic.9y;no;no;no;cellular;jul;mon;234;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+40;blue-collar;married;professional.course;no;no;no;cellular;jul;mon;81;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+59;blue-collar;married;basic.6y;unknown;no;no;cellular;jul;mon;106;10;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+57;self-employed;married;university.degree;unknown;no;no;cellular;jul;mon;83;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+44;blue-collar;married;basic.9y;no;yes;no;cellular;jul;mon;89;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+47;blue-collar;married;basic.4y;no;yes;no;cellular;jul;mon;82;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+42;services;divorced;high.school;unknown;yes;no;cellular;jul;mon;118;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+46;admin.;married;high.school;no;no;no;cellular;jul;mon;76;10;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+49;technician;single;university.degree;unknown;no;no;telephone;jul;mon;97;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+47;blue-collar;married;professional.course;no;no;no;cellular;jul;mon;86;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+46;blue-collar;married;high.school;unknown;no;no;cellular;jul;mon;33;29;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+51;admin.;divorced;university.degree;no;yes;no;cellular;jul;mon;1339;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+49;technician;married;professional.course;no;yes;no;cellular;jul;mon;359;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+40;blue-collar;married;professional.course;no;no;no;cellular;jul;mon;102;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+46;housemaid;married;basic.4y;unknown;yes;no;cellular;jul;mon;59;8;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;admin.;married;high.school;no;yes;no;cellular;jul;mon;128;22;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+53;services;married;high.school;unknown;yes;no;cellular;jul;mon;153;1;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+41;technician;divorced;professional.course;no;yes;no;cellular;jul;mon;112;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+40;blue-collar;married;professional.course;no;no;no;cellular;jul;mon;674;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+37;admin.;married;university.degree;no;no;no;telephone;jul;mon;1009;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+55;self-employed;married;unknown;unknown;no;no;cellular;jul;mon;136;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+54;admin.;married;university.degree;unknown;yes;no;cellular;jul;mon;121;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+40;self-employed;married;unknown;unknown;yes;no;telephone;jul;mon;81;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+42;management;divorced;university.degree;unknown;yes;no;cellular;jul;mon;141;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+44;services;divorced;high.school;no;yes;no;cellular;jul;mon;158;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+48;technician;married;unknown;no;yes;no;cellular;jul;mon;1096;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+42;self-employed;married;university.degree;no;unknown;unknown;cellular;jul;mon;624;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;management;married;university.degree;unknown;no;no;cellular;jul;mon;93;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+49;technician;married;professional.course;no;yes;no;cellular;jul;mon;534;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;unemployed;divorced;basic.9y;no;no;no;cellular;jul;mon;117;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+54;housemaid;divorced;basic.4y;no;yes;yes;cellular;jul;mon;78;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+37;blue-collar;married;basic.9y;no;yes;no;cellular;jul;mon;247;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+45;services;married;university.degree;unknown;yes;no;telephone;jul;mon;317;8;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+53;admin.;divorced;high.school;no;yes;no;telephone;jul;mon;75;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+53;management;married;unknown;no;yes;yes;cellular;jul;mon;88;9;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+56;services;divorced;university.degree;no;yes;no;cellular;jul;mon;63;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;blue-collar;married;basic.9y;no;yes;no;cellular;jul;mon;318;7;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+30;admin.;married;unknown;no;no;no;cellular;jul;mon;246;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+52;admin.;divorced;university.degree;no;yes;no;cellular;jul;mon;867;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+43;unemployed;divorced;basic.9y;no;yes;yes;telephone;jul;mon;41;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+48;unknown;married;unknown;unknown;yes;no;cellular;jul;mon;207;7;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+56;services;divorced;high.school;unknown;yes;no;cellular;jul;mon;761;8;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+41;admin.;married;high.school;no;yes;yes;cellular;jul;mon;234;15;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+36;management;single;university.degree;no;no;no;cellular;jul;mon;310;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+48;self-employed;married;high.school;unknown;yes;yes;cellular;jul;mon;88;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+45;admin.;married;high.school;no;yes;yes;cellular;jul;mon;283;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+42;admin.;single;basic.9y;unknown;yes;no;cellular;jul;mon;418;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+45;self-employed;divorced;university.degree;no;no;no;cellular;jul;mon;179;8;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+39;admin.;single;high.school;no;no;no;cellular;jul;mon;419;7;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;housemaid;married;basic.4y;no;yes;no;cellular;jul;mon;88;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+53;management;divorced;high.school;no;no;no;cellular;jul;mon;121;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+56;blue-collar;divorced;unknown;no;no;no;cellular;jul;mon;42;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+41;services;married;high.school;unknown;no;yes;telephone;jul;mon;187;11;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+48;admin.;single;university.degree;no;yes;yes;cellular;jul;mon;141;7;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+53;admin.;married;university.degree;no;yes;no;cellular;jul;mon;320;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+42;technician;divorced;professional.course;no;yes;yes;cellular;jul;mon;154;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+41;admin.;married;high.school;no;no;no;cellular;jul;mon;339;8;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+54;admin.;divorced;high.school;no;no;no;cellular;jul;mon;493;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;admin.;married;high.school;no;no;yes;cellular;jul;mon;551;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+50;self-employed;married;professional.course;no;yes;yes;cellular;jul;mon;106;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+44;admin.;married;university.degree;no;yes;yes;cellular;jul;mon;239;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+39;technician;single;university.degree;unknown;no;no;cellular;jul;mon;644;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+57;retired;married;university.degree;no;yes;no;cellular;jul;mon;322;11;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+54;admin.;divorced;unknown;no;yes;yes;cellular;jul;mon;269;7;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+38;admin.;married;university.degree;no;yes;no;cellular;jul;mon;124;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+39;technician;single;university.degree;unknown;yes;no;cellular;jul;mon;333;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+53;admin.;married;high.school;no;no;no;cellular;jul;mon;180;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+32;blue-collar;single;basic.4y;no;no;no;cellular;jul;mon;160;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+47;services;divorced;high.school;no;yes;no;cellular;jul;mon;192;19;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+49;management;married;university.degree;unknown;yes;no;telephone;jul;mon;182;12;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+36;housemaid;married;basic.4y;no;yes;no;cellular;jul;mon;76;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+50;self-employed;divorced;university.degree;unknown;yes;no;cellular;jul;mon;433;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+56;technician;divorced;basic.6y;no;yes;no;cellular;jul;mon;120;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+27;admin.;married;high.school;no;yes;no;cellular;jul;mon;290;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+57;admin.;married;university.degree;no;yes;no;cellular;jul;mon;118;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+39;admin.;divorced;high.school;no;yes;no;cellular;jul;mon;58;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+46;admin.;married;high.school;no;yes;no;cellular;jul;mon;149;11;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+40;admin.;divorced;university.degree;no;no;no;cellular;jul;mon;114;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+38;student;single;unknown;unknown;no;no;cellular;jul;mon;91;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;unemployed;divorced;basic.9y;no;no;no;cellular;jul;mon;398;7;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+42;services;married;basic.4y;no;no;no;cellular;jul;mon;101;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+56;blue-collar;divorced;unknown;no;no;yes;cellular;jul;mon;117;8;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+47;services;married;basic.6y;no;yes;no;cellular;jul;mon;159;10;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+40;management;married;university.degree;unknown;yes;no;cellular;jul;mon;37;12;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+36;technician;divorced;university.degree;no;no;yes;cellular;jul;mon;127;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;housemaid;married;basic.4y;no;no;no;cellular;jul;mon;90;6;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+46;admin.;divorced;professional.course;no;no;yes;cellular;jul;mon;155;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+37;services;married;high.school;no;no;yes;cellular;jul;mon;264;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+58;unemployed;divorced;high.school;no;no;no;cellular;jul;mon;377;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+57;retired;married;high.school;no;no;no;cellular;jul;mon;73;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+58;housemaid;married;university.degree;unknown;yes;no;cellular;jul;mon;71;6;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+44;blue-collar;married;unknown;unknown;no;no;cellular;jul;mon;118;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+58;admin.;married;university.degree;unknown;no;no;cellular;jul;mon;257;6;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+30;admin.;married;unknown;no;no;no;cellular;jul;mon;234;11;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+49;blue-collar;divorced;basic.6y;unknown;no;no;cellular;jul;mon;1065;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+55;services;divorced;high.school;no;yes;no;cellular;jul;mon;499;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+30;admin.;married;unknown;no;no;no;cellular;jul;mon;220;6;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+30;admin.;married;unknown;no;no;no;cellular;jul;mon;270;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+55;blue-collar;divorced;basic.4y;no;yes;no;cellular;jul;mon;213;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+56;blue-collar;divorced;basic.6y;unknown;no;no;telephone;jul;mon;1037;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+36;housemaid;married;basic.4y;no;no;no;cellular;jul;mon;262;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+46;self-employed;married;university.degree;no;no;no;cellular;jul;mon;22;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+53;management;married;unknown;no;no;no;cellular;jul;mon;123;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+46;management;married;basic.9y;unknown;no;no;cellular;jul;mon;83;7;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+47;blue-collar;divorced;basic.9y;no;yes;yes;cellular;jul;mon;138;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+48;self-employed;married;university.degree;unknown;no;no;cellular;jul;mon;191;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+39;technician;single;university.degree;unknown;yes;no;cellular;jul;mon;267;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+55;retired;divorced;high.school;no;no;no;cellular;jul;mon;609;6;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+53;retired;divorced;basic.9y;no;no;no;telephone;jul;mon;313;16;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+55;admin.;married;high.school;no;yes;no;cellular;jul;mon;170;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+57;retired;single;unknown;unknown;no;no;cellular;jul;mon;117;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+38;student;single;unknown;unknown;yes;yes;cellular;jul;mon;76;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+48;retired;married;basic.4y;unknown;no;yes;cellular;jul;mon;780;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+52;entrepreneur;married;basic.9y;no;yes;no;cellular;jul;mon;165;5;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+36;technician;married;professional.course;no;no;no;cellular;jul;mon;314;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+48;housemaid;married;university.degree;no;yes;no;cellular;jul;mon;306;6;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+52;housemaid;married;basic.9y;no;yes;no;cellular;jul;mon;83;12;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+47;services;married;basic.6y;no;yes;no;cellular;jul;mon;320;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;unemployed;divorced;basic.9y;no;no;no;cellular;jul;mon;39;9;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+58;technician;divorced;unknown;unknown;yes;no;cellular;jul;mon;341;12;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+34;admin.;married;university.degree;no;yes;yes;cellular;jul;mon;151;7;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+57;retired;married;high.school;no;no;no;cellular;jul;mon;377;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+51;entrepreneur;divorced;university.degree;no;unknown;unknown;cellular;jul;mon;19;14;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+41;admin.;married;high.school;no;yes;yes;cellular;jul;mon;76;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+55;technician;married;basic.9y;unknown;yes;no;cellular;jul;mon;72;6;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+57;admin.;married;university.degree;unknown;yes;no;cellular;jul;mon;194;24;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+45;self-employed;divorced;university.degree;no;no;yes;cellular;jul;mon;890;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+43;services;married;high.school;no;yes;yes;telephone;jul;mon;118;8;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+45;self-employed;divorced;university.degree;no;yes;no;cellular;jul;mon;168;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+58;technician;married;professional.course;no;no;yes;telephone;jul;mon;76;18;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+56;services;divorced;high.school;no;no;no;cellular;jul;mon;167;6;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+48;admin.;single;university.degree;no;no;no;cellular;jul;mon;472;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+54;self-employed;divorced;high.school;unknown;no;no;telephone;jul;mon;178;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+46;admin.;divorced;professional.course;no;yes;no;cellular;jul;mon;276;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+49;technician;married;university.degree;no;no;no;cellular;jul;mon;147;15;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+60;retired;divorced;professional.course;no;no;no;cellular;jul;mon;131;7;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+56;blue-collar;divorced;basic.9y;no;yes;yes;cellular;jul;mon;123;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+54;housemaid;divorced;basic.4y;no;yes;no;cellular;jul;mon;50;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+50;admin.;divorced;university.degree;unknown;no;yes;cellular;jul;mon;85;9;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+41;unknown;unknown;unknown;no;yes;no;cellular;jul;mon;91;13;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+53;blue-collar;married;high.school;no;yes;no;cellular;jul;mon;209;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+58;admin.;divorced;university.degree;no;no;no;cellular;jul;mon;97;6;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+50;admin.;married;university.degree;no;no;no;telephone;jul;mon;1076;17;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;yes
+46;self-employed;married;university.degree;no;yes;no;cellular;jul;mon;152;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+44;technician;divorced;professional.course;no;no;yes;telephone;jul;mon;107;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+42;housemaid;married;basic.9y;unknown;no;no;cellular;jul;mon;100;16;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+46;management;married;basic.9y;unknown;yes;yes;cellular;jul;mon;488;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+43;unemployed;divorced;basic.9y;no;yes;no;cellular;jul;mon;265;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+57;retired;single;unknown;unknown;yes;yes;cellular;jul;mon;174;6;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+40;blue-collar;married;basic.9y;unknown;yes;no;cellular;jul;mon;504;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+26;admin.;single;university.degree;no;no;no;telephone;jul;mon;127;7;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+53;blue-collar;married;high.school;no;no;yes;cellular;jul;mon;136;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+55;services;divorced;high.school;no;no;no;cellular;jul;mon;164;7;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+48;retired;married;basic.4y;unknown;no;no;cellular;jul;mon;110;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+53;blue-collar;married;high.school;no;yes;yes;cellular;jul;mon;243;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+36;housemaid;married;basic.4y;no;yes;yes;cellular;jul;mon;120;6;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+57;admin.;married;professional.course;no;unknown;unknown;cellular;jul;mon;127;6;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+42;housemaid;married;basic.4y;unknown;yes;no;telephone;jul;mon;122;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+40;admin.;divorced;university.degree;no;no;no;cellular;jul;mon;206;10;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+44;technician;divorced;professional.course;no;yes;yes;telephone;jul;mon;90;11;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+48;retired;married;basic.4y;unknown;yes;yes;telephone;jul;mon;27;17;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+39;admin.;divorced;high.school;no;no;no;telephone;jul;mon;210;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+49;technician;married;high.school;no;yes;no;telephone;jul;mon;126;8;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+54;housemaid;married;basic.4y;unknown;no;no;cellular;jul;mon;125;2;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+39;admin.;single;high.school;no;yes;no;telephone;jul;mon;215;3;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+50;technician;single;professional.course;no;no;yes;cellular;jul;mon;173;8;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+49;blue-collar;divorced;basic.6y;unknown;yes;no;cellular;jul;mon;786;4;999;0;nonexistent;1.4;93.918;-42.7;4.962;5228.1;no
+47;housemaid;married;basic.4y;unknown;no;no;cellular;jul;tue;38;16;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+57;retired;married;high.school;no;no;no;cellular;jul;tue;193;9;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+50;blue-collar;married;basic.9y;unknown;yes;no;cellular;jul;tue;215;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+43;blue-collar;married;basic.9y;no;yes;yes;cellular;jul;tue;393;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+53;retired;divorced;university.degree;no;yes;no;cellular;jul;tue;62;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+38;self-employed;married;high.school;no;yes;no;telephone;jul;tue;121;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+55;entrepreneur;divorced;university.degree;no;no;no;telephone;jul;tue;345;16;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+45;technician;married;high.school;no;yes;no;cellular;jul;tue;88;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+53;technician;married;professional.course;no;no;yes;cellular;jul;tue;178;11;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+39;admin.;divorced;high.school;no;no;no;cellular;jul;tue;858;6;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+55;blue-collar;divorced;basic.4y;no;yes;no;cellular;jul;tue;82;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+50;self-employed;married;high.school;no;yes;no;cellular;jul;tue;119;6;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+32;blue-collar;single;high.school;no;no;no;telephone;jul;tue;480;8;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+42;technician;single;professional.course;no;yes;no;cellular;jul;tue;179;6;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+35;admin.;single;unknown;no;yes;no;cellular;jul;tue;95;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+46;admin.;single;university.degree;no;yes;yes;cellular;jul;tue;62;7;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+47;technician;single;unknown;no;no;no;cellular;jul;tue;117;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+38;unemployed;married;basic.4y;unknown;yes;no;cellular;jul;tue;176;20;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+57;admin.;married;professional.course;no;yes;no;cellular;jul;tue;47;7;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+42;services;single;unknown;unknown;yes;no;telephone;jul;tue;105;7;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+47;admin.;married;high.school;unknown;yes;yes;cellular;jul;tue;10;22;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+29;technician;single;professional.course;no;yes;no;cellular;jul;tue;62;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+57;admin.;married;university.degree;unknown;yes;yes;telephone;jul;tue;168;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+39;admin.;single;university.degree;no;no;no;cellular;jul;tue;60;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+53;technician;single;professional.course;no;no;no;cellular;jul;tue;114;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+55;technician;married;basic.9y;unknown;yes;no;cellular;jul;tue;234;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+45;management;divorced;university.degree;no;yes;yes;cellular;jul;tue;192;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+53;blue-collar;married;high.school;no;yes;no;cellular;jul;tue;118;7;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+51;services;married;high.school;unknown;no;no;cellular;jul;tue;158;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+31;blue-collar;single;professional.course;no;no;yes;telephone;jul;tue;186;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+35;admin.;married;university.degree;no;yes;yes;cellular;jul;tue;82;20;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+42;services;divorced;high.school;no;yes;yes;cellular;jul;tue;148;14;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+43;admin.;married;high.school;no;no;no;cellular;jul;tue;215;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+36;admin.;married;university.degree;no;yes;no;cellular;jul;tue;54;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+50;management;divorced;high.school;no;no;no;cellular;jul;tue;36;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+46;admin.;single;university.degree;no;yes;yes;cellular;jul;tue;146;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+54;housemaid;married;professional.course;no;no;no;cellular;jul;tue;604;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+33;entrepreneur;married;university.degree;no;yes;no;cellular;jul;tue;303;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+57;unknown;married;unknown;unknown;no;no;cellular;jul;tue;156;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+48;retired;married;basic.4y;unknown;no;no;cellular;jul;tue;32;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+36;admin.;married;university.degree;unknown;yes;no;cellular;jul;tue;874;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;yes
+41;services;married;unknown;no;no;no;cellular;jul;tue;99;6;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+60;retired;divorced;basic.4y;no;yes;no;telephone;jul;tue;50;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+53;blue-collar;divorced;basic.4y;no;yes;no;cellular;jul;tue;648;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;yes
+54;management;married;university.degree;no;yes;yes;telephone;jul;tue;44;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+36;technician;married;professional.course;no;no;no;cellular;jul;tue;71;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+43;admin.;married;university.degree;no;yes;no;cellular;jul;tue;101;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+36;blue-collar;married;basic.6y;no;yes;no;cellular;jul;tue;109;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+43;management;divorced;university.degree;no;yes;no;cellular;jul;tue;76;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+49;admin.;single;university.degree;no;no;no;cellular;jul;tue;90;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+54;management;married;university.degree;no;no;yes;cellular;jul;tue;218;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+36;blue-collar;married;basic.6y;no;no;no;cellular;jul;tue;164;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+47;technician;married;basic.9y;no;unknown;unknown;cellular;jul;tue;1569;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+57;admin.;married;university.degree;no;yes;no;telephone;jul;tue;7;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+45;self-employed;divorced;university.degree;no;no;no;cellular;jul;tue;69;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+55;entrepreneur;divorced;university.degree;no;no;no;cellular;jul;tue;122;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+57;admin.;divorced;high.school;unknown;yes;no;cellular;jul;tue;162;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+54;housemaid;divorced;basic.4y;no;unknown;unknown;cellular;jul;tue;179;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+42;management;married;high.school;unknown;no;no;cellular;jul;tue;179;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+54;blue-collar;married;illiterate;unknown;yes;yes;cellular;jul;tue;83;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+59;retired;divorced;university.degree;unknown;yes;no;cellular;jul;tue;165;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+50;services;married;high.school;no;no;no;cellular;jul;tue;301;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+59;retired;divorced;university.degree;unknown;yes;no;cellular;jul;tue;466;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+50;services;married;high.school;no;yes;no;cellular;jul;tue;117;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+47;services;divorced;professional.course;no;yes;no;telephone;jul;tue;165;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+44;blue-collar;married;unknown;unknown;no;yes;cellular;jul;tue;25;21;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+47;services;divorced;professional.course;no;no;no;cellular;jul;tue;318;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+46;admin.;married;university.degree;unknown;yes;no;cellular;jul;tue;112;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+45;housemaid;married;basic.4y;no;yes;no;cellular;jul;tue;241;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+52;entrepreneur;divorced;high.school;unknown;yes;no;cellular;jul;tue;710;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;yes
+55;blue-collar;divorced;basic.9y;no;yes;yes;cellular;jul;tue;80;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+50;technician;married;professional.course;unknown;yes;no;cellular;jul;tue;116;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+55;retired;divorced;high.school;no;yes;no;cellular;jul;tue;609;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+50;technician;married;professional.course;unknown;no;yes;cellular;jul;tue;106;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+54;housemaid;married;basic.4y;unknown;no;no;cellular;jul;tue;164;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+49;housemaid;divorced;basic.4y;unknown;yes;no;cellular;jul;tue;129;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+47;services;divorced;basic.4y;no;no;no;cellular;jul;tue;149;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+60;retired;divorced;basic.4y;no;yes;no;cellular;jul;tue;600;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;yes
+46;admin.;single;university.degree;no;no;no;cellular;jul;tue;206;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+60;retired;divorced;high.school;unknown;yes;yes;cellular;jul;tue;102;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+42;admin.;married;basic.9y;unknown;no;no;telephone;jul;tue;75;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+53;technician;divorced;professional.course;no;no;no;cellular;jul;tue;124;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+53;entrepreneur;married;university.degree;unknown;yes;no;cellular;jul;tue;893;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;yes
+47;services;single;high.school;no;yes;no;cellular;jul;tue;43;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+42;admin.;married;basic.9y;unknown;no;yes;cellular;jul;tue;336;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+50;unknown;married;unknown;unknown;yes;no;cellular;jul;tue;112;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+30;services;married;basic.9y;no;no;no;cellular;jul;tue;70;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+46;admin.;married;university.degree;unknown;yes;no;cellular;jul;tue;55;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+47;services;single;high.school;no;no;no;cellular;jul;tue;293;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+41;admin.;married;university.degree;no;no;no;cellular;jul;tue;184;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+50;unknown;married;unknown;unknown;yes;no;telephone;jul;tue;237;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+60;technician;married;professional.course;unknown;no;no;cellular;jul;tue;82;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+43;services;married;university.degree;no;yes;no;cellular;jul;tue;135;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+44;blue-collar;married;unknown;unknown;yes;no;cellular;jul;tue;299;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+43;admin.;married;university.degree;no;yes;no;cellular;jul;tue;24;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+43;admin.;married;university.degree;no;no;no;cellular;jul;tue;497;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+36;admin.;married;university.degree;unknown;no;no;cellular;jul;tue;97;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+38;services;married;high.school;no;yes;no;cellular;jul;tue;55;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+41;admin.;married;high.school;no;yes;no;cellular;jul;tue;60;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+39;admin.;single;high.school;no;no;no;cellular;jul;tue;48;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+54;admin.;divorced;unknown;no;no;no;cellular;jul;tue;109;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+34;housemaid;married;university.degree;no;no;no;cellular;jul;tue;132;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+46;housemaid;divorced;professional.course;unknown;no;no;cellular;jul;tue;167;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+43;admin.;married;high.school;no;yes;no;cellular;jul;tue;197;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+46;admin.;married;high.school;no;yes;no;cellular;jul;tue;98;6;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+45;admin.;married;university.degree;no;no;no;cellular;jul;tue;345;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+48;services;married;high.school;unknown;no;no;cellular;jul;tue;165;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+57;admin.;single;university.degree;no;yes;no;cellular;jul;tue;69;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+60;technician;married;professional.course;unknown;no;no;telephone;jul;tue;55;15;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+43;admin.;married;high.school;no;no;no;telephone;jul;tue;647;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+57;admin.;single;university.degree;no;no;no;cellular;jul;tue;105;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+57;admin.;single;university.degree;no;yes;no;cellular;jul;tue;33;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+50;technician;single;basic.4y;unknown;yes;no;cellular;jul;tue;96;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+54;management;married;university.degree;no;yes;no;cellular;jul;tue;100;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+47;blue-collar;single;unknown;no;yes;no;cellular;jul;tue;91;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+36;services;married;high.school;unknown;no;yes;cellular;jul;tue;285;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+35;admin.;married;professional.course;no;no;no;cellular;jul;tue;214;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+53;blue-collar;divorced;basic.4y;no;yes;no;cellular;jul;tue;155;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+53;blue-collar;divorced;basic.4y;no;no;no;cellular;jul;tue;64;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+53;blue-collar;divorced;basic.4y;no;no;no;cellular;jul;tue;305;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+58;technician;divorced;unknown;unknown;yes;no;cellular;jul;tue;261;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+53;blue-collar;divorced;basic.4y;no;no;yes;cellular;jul;tue;446;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+51;technician;married;professional.course;no;yes;no;cellular;jul;tue;248;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+58;admin.;married;high.school;unknown;yes;no;cellular;jul;tue;103;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+50;technician;single;university.degree;unknown;no;no;cellular;jul;tue;86;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+38;housemaid;married;basic.4y;unknown;unknown;unknown;cellular;jul;tue;105;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+56;services;divorced;high.school;no;no;no;cellular;jul;tue;57;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+56;services;divorced;university.degree;no;no;no;cellular;jul;tue;221;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+33;admin.;married;university.degree;no;no;no;cellular;jul;tue;2516;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;yes
+48;housemaid;married;basic.4y;unknown;yes;yes;cellular;jul;tue;72;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+56;retired;married;university.degree;unknown;no;no;cellular;jul;tue;361;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+47;admin.;married;high.school;no;yes;no;cellular;jul;tue;247;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+29;services;divorced;high.school;unknown;no;no;cellular;jul;tue;145;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+26;self-employed;married;university.degree;no;yes;no;cellular;jul;tue;146;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+30;admin.;married;unknown;no;no;yes;cellular;jul;tue;64;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+54;housemaid;married;basic.4y;unknown;no;no;cellular;jul;tue;522;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+56;admin.;divorced;university.degree;no;no;no;cellular;jul;tue;213;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+52;housemaid;married;university.degree;no;no;yes;cellular;jul;tue;137;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+57;admin.;married;university.degree;no;yes;yes;telephone;jul;tue;104;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+49;admin.;single;university.degree;no;no;no;cellular;jul;tue;57;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+47;services;married;basic.6y;no;no;no;cellular;jul;tue;100;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+56;technician;married;professional.course;no;yes;no;cellular;jul;tue;208;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+35;admin.;married;professional.course;no;no;no;cellular;jul;tue;735;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+57;technician;married;basic.9y;no;no;no;cellular;jul;tue;94;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+59;retired;divorced;university.degree;unknown;no;no;cellular;jul;tue;46;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+54;unemployed;married;high.school;unknown;no;no;telephone;jul;tue;28;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+44;technician;divorced;professional.course;no;yes;no;cellular;jul;tue;121;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+26;admin.;single;university.degree;no;yes;yes;cellular;jul;tue;65;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+55;retired;married;high.school;no;yes;yes;cellular;jul;tue;394;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+57;retired;single;unknown;unknown;yes;no;cellular;jul;tue;189;19;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+54;technician;divorced;professional.course;no;yes;yes;cellular;jul;tue;797;14;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+55;services;divorced;high.school;unknown;no;no;cellular;jul;tue;204;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+26;admin.;single;university.degree;no;no;no;cellular;jul;tue;212;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+33;admin.;married;university.degree;no;no;yes;cellular;jul;tue;255;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+55;blue-collar;divorced;basic.4y;no;no;yes;cellular;jul;tue;196;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+57;admin.;divorced;high.school;unknown;yes;no;telephone;jul;tue;184;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+43;admin.;married;university.degree;no;yes;no;telephone;jul;tue;145;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+43;housemaid;married;basic.4y;no;no;no;telephone;jul;tue;81;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+60;retired;divorced;professional.course;no;no;no;cellular;jul;tue;47;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+47;technician;single;unknown;no;yes;yes;telephone;jul;tue;24;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+58;housemaid;married;basic.4y;unknown;yes;no;telephone;jul;tue;35;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+58;housemaid;married;basic.4y;unknown;yes;no;cellular;jul;tue;92;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+37;blue-collar;divorced;high.school;no;yes;no;cellular;jul;tue;538;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+37;services;married;high.school;no;yes;no;cellular;jul;tue;520;7;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+34;admin.;married;university.degree;no;no;no;cellular;jul;tue;283;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+24;student;single;high.school;no;yes;no;cellular;jul;tue;153;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+51;blue-collar;divorced;basic.9y;no;yes;no;cellular;jul;tue;82;6;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+48;unknown;married;unknown;unknown;yes;no;cellular;jul;tue;198;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+58;housemaid;married;basic.4y;unknown;no;no;cellular;jul;tue;533;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+57;admin.;married;professional.course;no;yes;no;cellular;jul;tue;60;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+24;student;single;high.school;no;no;no;cellular;jul;tue;569;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+44;entrepreneur;married;high.school;no;yes;no;cellular;jul;tue;300;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+40;entrepreneur;married;high.school;no;no;no;cellular;jul;tue;422;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+35;admin.;married;high.school;no;no;no;cellular;jul;tue;100;11;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+54;admin.;divorced;high.school;no;no;yes;cellular;jul;tue;129;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+49;admin.;single;university.degree;no;no;no;cellular;jul;tue;57;6;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+46;technician;divorced;university.degree;no;no;no;cellular;jul;tue;199;8;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+40;admin.;divorced;university.degree;no;yes;no;cellular;jul;tue;56;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+36;technician;married;professional.course;no;no;no;cellular;jul;tue;281;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+47;blue-collar;married;basic.4y;no;yes;no;cellular;jul;tue;207;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+35;admin.;married;professional.course;no;yes;yes;cellular;jul;tue;1186;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+60;retired;divorced;professional.course;no;no;no;cellular;jul;tue;454;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;yes
+48;blue-collar;married;basic.6y;no;no;yes;cellular;jul;tue;337;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+38;unemployed;married;basic.4y;unknown;yes;no;telephone;jul;tue;156;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+38;unemployed;married;basic.4y;unknown;no;no;cellular;jul;tue;195;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+48;blue-collar;married;basic.6y;no;yes;no;cellular;jul;tue;63;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+47;blue-collar;married;high.school;no;yes;no;cellular;jul;tue;20;18;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+53;admin.;divorced;high.school;no;no;no;cellular;jul;tue;52;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+44;student;single;unknown;unknown;no;yes;cellular;jul;tue;113;6;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+46;technician;single;professional.course;no;no;no;cellular;jul;tue;328;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+56;admin.;divorced;university.degree;no;yes;no;cellular;jul;tue;86;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+38;unemployed;married;basic.4y;unknown;no;no;cellular;jul;tue;1058;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;yes
+49;entrepreneur;married;university.degree;no;no;no;cellular;jul;tue;114;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+39;admin.;divorced;high.school;no;no;no;cellular;jul;tue;121;17;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+26;self-employed;married;university.degree;no;yes;yes;cellular;jul;tue;45;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+43;unemployed;divorced;basic.9y;no;yes;no;cellular;jul;tue;187;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+57;blue-collar;married;basic.4y;unknown;no;no;cellular;jul;tue;369;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+34;admin.;single;university.degree;unknown;no;no;telephone;jul;tue;143;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+59;housemaid;divorced;basic.4y;unknown;no;no;cellular;jul;tue;277;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+42;blue-collar;single;basic.6y;unknown;yes;yes;cellular;jul;tue;85;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+47;admin.;married;high.school;unknown;no;no;cellular;jul;tue;96;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+42;blue-collar;single;basic.6y;unknown;no;no;telephone;jul;tue;126;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+39;admin.;divorced;high.school;no;yes;yes;cellular;jul;tue;180;9;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+57;housemaid;married;high.school;unknown;no;no;telephone;jul;tue;317;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+47;admin.;single;university.degree;no;no;no;cellular;jul;tue;108;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+58;admin.;married;high.school;no;yes;no;cellular;jul;tue;104;6;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+36;housemaid;married;basic.4y;no;yes;no;cellular;jul;tue;665;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+26;services;single;high.school;no;no;yes;cellular;jul;tue;125;12;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+46;services;divorced;high.school;no;no;yes;cellular;jul;tue;246;17;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+47;admin.;divorced;university.degree;no;no;no;cellular;jul;tue;33;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+32;technician;single;professional.course;no;yes;no;cellular;jul;tue;95;6;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+55;retired;married;professional.course;no;yes;no;cellular;jul;tue;277;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+31;blue-collar;married;high.school;no;yes;no;cellular;jul;tue;127;7;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+28;technician;single;university.degree;unknown;no;no;telephone;jul;tue;38;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+52;admin.;married;high.school;no;no;no;telephone;jul;tue;790;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+40;admin.;single;high.school;no;yes;no;cellular;jul;tue;635;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+58;housemaid;married;university.degree;no;yes;no;cellular;jul;tue;597;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+37;admin.;single;high.school;no;yes;no;telephone;jul;tue;77;34;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+39;technician;married;university.degree;no;no;no;cellular;jul;tue;62;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+53;management;single;professional.course;unknown;no;no;cellular;jul;tue;72;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+31;blue-collar;single;professional.course;no;no;yes;cellular;jul;tue;171;13;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+46;technician;divorced;professional.course;unknown;no;no;telephone;jul;tue;665;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+50;services;single;high.school;no;yes;no;cellular;jul;tue;110;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+35;technician;divorced;professional.course;no;no;no;cellular;jul;tue;77;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+59;housemaid;divorced;university.degree;no;yes;no;cellular;jul;tue;226;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+59;housemaid;divorced;university.degree;no;no;no;cellular;jul;tue;367;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+56;retired;married;basic.6y;no;yes;no;cellular;jul;tue;509;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+49;retired;married;high.school;no;yes;no;cellular;jul;tue;228;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+30;admin.;married;high.school;no;no;no;cellular;jul;tue;935;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+27;services;divorced;high.school;no;yes;no;telephone;jul;tue;129;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+25;admin.;single;high.school;no;no;no;cellular;jul;tue;313;6;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+55;blue-collar;single;basic.9y;unknown;yes;no;cellular;jul;tue;80;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+57;admin.;divorced;university.degree;unknown;yes;no;telephone;jul;tue;375;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+55;blue-collar;single;basic.9y;unknown;no;yes;cellular;jul;tue;194;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+43;housemaid;divorced;basic.9y;no;yes;no;cellular;jul;tue;94;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+32;admin.;married;professional.course;unknown;yes;no;cellular;jul;tue;97;7;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+39;services;married;high.school;no;yes;yes;cellular;jul;tue;197;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+47;admin.;divorced;university.degree;no;no;no;cellular;jul;tue;403;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+48;technician;married;professional.course;no;yes;no;telephone;jul;tue;616;11;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;yes
+42;admin.;divorced;high.school;no;yes;yes;telephone;jul;tue;207;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+57;admin.;divorced;university.degree;unknown;yes;yes;cellular;jul;tue;816;6;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;yes
+54;entrepreneur;divorced;high.school;unknown;no;yes;cellular;jul;tue;268;6;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+31;admin.;married;high.school;no;no;no;telephone;jul;tue;99;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+45;admin.;married;university.degree;no;no;no;cellular;jul;tue;114;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+36;technician;married;high.school;no;yes;no;cellular;jul;tue;123;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+59;housemaid;divorced;unknown;no;unknown;unknown;cellular;jul;tue;246;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+26;unemployed;married;high.school;no;unknown;unknown;cellular;jul;tue;263;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+38;services;single;high.school;unknown;yes;no;cellular;jul;tue;109;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+60;retired;married;basic.6y;unknown;yes;no;cellular;jul;tue;122;13;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+52;technician;married;basic.9y;no;no;no;cellular;jul;tue;162;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+46;services;divorced;high.school;no;no;no;cellular;jul;tue;69;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+39;blue-collar;married;unknown;no;yes;no;cellular;jul;tue;82;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+37;admin.;single;high.school;no;yes;no;cellular;jul;tue;205;11;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+52;admin.;divorced;high.school;unknown;yes;no;cellular;jul;tue;136;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+28;technician;single;university.degree;unknown;no;no;cellular;jul;tue;808;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;yes
+37;admin.;single;high.school;no;yes;no;cellular;jul;tue;316;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+40;entrepreneur;married;high.school;no;no;no;telephone;jul;tue;259;12;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+33;technician;married;professional.course;no;yes;yes;cellular;jul;tue;110;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+48;services;married;basic.6y;unknown;yes;no;cellular;jul;tue;64;6;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+35;services;married;high.school;no;yes;no;cellular;jul;tue;110;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+55;entrepreneur;divorced;university.degree;no;no;yes;telephone;jul;tue;119;7;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+30;blue-collar;married;basic.9y;no;yes;no;cellular;jul;tue;336;7;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+43;admin.;married;high.school;no;no;no;cellular;jul;tue;327;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+48;technician;married;professional.course;no;no;no;telephone;jul;tue;316;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+44;blue-collar;single;basic.9y;no;yes;no;telephone;jul;tue;1127;11;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;yes
+55;housemaid;married;basic.4y;unknown;no;no;telephone;jul;tue;1140;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+43;retired;married;basic.9y;no;yes;no;cellular;jul;tue;284;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+38;management;divorced;university.degree;no;yes;no;cellular;jul;tue;543;9;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+54;retired;divorced;basic.4y;unknown;no;yes;cellular;jul;tue;189;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+37;admin.;single;high.school;no;yes;no;cellular;jul;tue;52;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+37;admin.;single;high.school;no;no;yes;cellular;jul;tue;223;6;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+44;housemaid;married;university.degree;unknown;no;yes;cellular;jul;tue;468;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+26;unemployed;married;high.school;no;no;no;cellular;jul;tue;322;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+51;blue-collar;divorced;basic.9y;no;yes;no;cellular;jul;tue;61;1;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+41;housemaid;divorced;high.school;unknown;yes;yes;cellular;jul;tue;185;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+53;services;married;high.school;no;no;yes;cellular;jul;tue;347;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+30;admin.;divorced;university.degree;no;yes;no;telephone;jul;tue;399;9;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+46;admin.;married;university.degree;no;no;no;cellular;jul;tue;340;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+47;housemaid;married;basic.4y;unknown;no;no;cellular;jul;tue;637;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+58;retired;divorced;professional.course;no;no;no;cellular;jul;tue;60;24;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+25;admin.;single;high.school;no;no;yes;cellular;jul;tue;234;6;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+53;housemaid;married;basic.4y;unknown;no;no;cellular;jul;tue;165;20;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+47;housemaid;married;basic.4y;unknown;yes;yes;telephone;jul;tue;308;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+31;blue-collar;single;professional.course;no;no;no;cellular;jul;tue;75;8;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+45;admin.;married;university.degree;no;no;no;cellular;jul;tue;242;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+55;management;married;basic.4y;unknown;no;yes;cellular;jul;tue;142;7;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+44;unknown;married;high.school;unknown;no;no;cellular;jul;tue;153;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+55;housemaid;married;basic.4y;unknown;yes;no;telephone;jul;tue;481;2;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+30;admin.;single;university.degree;no;no;no;telephone;jul;tue;128;11;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+46;admin.;married;university.degree;no;no;no;telephone;jul;tue;53;6;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+37;admin.;single;high.school;no;yes;no;cellular;jul;tue;234;5;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+44;technician;divorced;unknown;no;no;no;telephone;jul;tue;222;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+30;blue-collar;single;high.school;no;yes;no;cellular;jul;tue;186;6;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+30;technician;married;professional.course;no;no;no;cellular;jul;tue;333;19;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+37;admin.;single;high.school;no;no;no;cellular;jul;tue;333;8;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+52;admin.;married;university.degree;no;yes;no;cellular;jul;tue;79;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+38;blue-collar;married;unknown;no;no;no;cellular;jul;tue;112;6;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+34;services;married;high.school;unknown;yes;no;telephone;jul;tue;157;6;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+34;blue-collar;single;high.school;no;yes;no;cellular;jul;tue;101;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+32;admin.;married;high.school;no;no;no;cellular;jul;tue;193;14;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+47;retired;married;university.degree;no;no;no;telephone;jul;tue;863;10;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+35;management;single;university.degree;no;yes;no;cellular;jul;tue;590;23;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+38;admin.;married;university.degree;no;yes;no;cellular;jul;tue;92;30;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+52;admin.;single;high.school;unknown;yes;no;cellular;jul;tue;153;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+40;housemaid;married;basic.6y;no;yes;no;telephone;jul;tue;225;3;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+37;admin.;single;high.school;no;yes;no;telephone;jul;tue;49;4;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+27;services;single;basic.9y;no;yes;yes;cellular;jul;tue;88;6;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+31;blue-collar;single;professional.course;no;yes;no;cellular;jul;tue;825;13;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+30;entrepreneur;single;university.degree;no;no;no;telephone;jul;tue;254;21;999;0;nonexistent;1.4;93.918;-42.7;4.961;5228.1;no
+34;admin.;single;university.degree;no;yes;no;cellular;jul;wed;11;6;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+45;admin.;married;university.degree;no;no;no;cellular;jul;wed;520;4;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+56;technician;married;basic.4y;unknown;yes;yes;cellular;jul;wed;138;6;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+48;entrepreneur;married;basic.9y;no;yes;no;cellular;jul;wed;44;7;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+26;services;single;university.degree;no;yes;no;cellular;jul;wed;142;8;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+25;services;single;high.school;unknown;yes;yes;cellular;jul;wed;984;7;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+55;services;married;basic.9y;no;yes;no;telephone;jul;wed;78;4;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+28;management;married;university.degree;no;yes;yes;cellular;jul;wed;329;4;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+40;admin.;single;high.school;no;yes;no;cellular;jul;wed;353;5;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+47;housemaid;married;basic.4y;unknown;no;no;cellular;jul;wed;189;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;housemaid;single;high.school;no;yes;no;cellular;jul;wed;125;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+60;blue-collar;divorced;basic.4y;unknown;no;no;cellular;jul;wed;105;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+44;blue-collar;married;basic.6y;no;yes;no;cellular;jul;wed;334;5;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+53;housemaid;married;basic.4y;unknown;no;yes;cellular;jul;wed;68;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+53;management;single;professional.course;unknown;no;no;cellular;jul;wed;76;5;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+46;admin.;married;university.degree;no;yes;no;cellular;jul;wed;28;11;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+45;housemaid;divorced;basic.4y;unknown;yes;no;cellular;jul;wed;458;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+26;services;single;high.school;no;yes;no;cellular;jul;wed;142;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+42;admin.;married;high.school;no;no;no;cellular;jul;wed;189;6;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+29;blue-collar;married;high.school;no;yes;yes;cellular;jul;wed;70;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+40;unemployed;divorced;university.degree;no;yes;no;cellular;jul;wed;18;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+45;technician;married;professional.course;no;no;no;cellular;jul;wed;158;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+39;admin.;single;university.degree;no;yes;yes;cellular;jul;wed;59;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;services;single;basic.9y;no;yes;no;cellular;jul;wed;31;20;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+39;admin.;single;university.degree;no;yes;no;cellular;jul;wed;150;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+56;retired;married;basic.6y;no;yes;no;telephone;jul;wed;90;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+39;admin.;single;university.degree;no;yes;no;cellular;jul;wed;258;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+37;admin.;single;university.degree;no;yes;no;cellular;jul;wed;305;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+47;services;divorced;basic.4y;unknown;no;no;cellular;jul;wed;67;6;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+39;admin.;married;high.school;no;yes;no;telephone;jul;wed;128;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+50;services;single;high.school;no;yes;no;cellular;jul;wed;99;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+49;admin.;divorced;basic.9y;no;no;no;cellular;jul;wed;39;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+49;admin.;divorced;basic.9y;no;yes;no;cellular;jul;wed;70;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;admin.;married;university.degree;no;no;yes;cellular;jul;wed;112;8;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+25;services;single;high.school;unknown;yes;no;cellular;jul;wed;113;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+41;student;married;unknown;unknown;yes;yes;cellular;jul;wed;69;5;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+56;retired;married;basic.6y;no;no;no;cellular;jul;wed;120;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+59;retired;married;high.school;unknown;yes;no;cellular;jul;wed;81;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+50;services;divorced;basic.6y;no;no;yes;cellular;jul;wed;684;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+37;admin.;single;university.degree;no;no;yes;cellular;jul;wed;312;5;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+33;technician;married;university.degree;no;yes;yes;telephone;jul;wed;89;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+49;services;married;high.school;unknown;yes;yes;cellular;jul;wed;42;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+25;services;single;high.school;unknown;yes;yes;cellular;jul;wed;843;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+38;technician;married;university.degree;no;yes;yes;cellular;jul;wed;150;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+38;admin.;single;university.degree;no;yes;no;cellular;jul;wed;834;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+58;technician;married;basic.9y;no;yes;no;cellular;jul;wed;528;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+58;technician;married;basic.9y;no;no;no;cellular;jul;wed;516;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+44;services;married;high.school;unknown;yes;no;cellular;jul;wed;86;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+46;admin.;married;university.degree;no;yes;yes;cellular;jul;wed;129;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+46;services;divorced;high.school;no;yes;no;cellular;jul;wed;652;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+40;housemaid;married;basic.6y;no;yes;no;cellular;jul;wed;102;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+42;entrepreneur;single;unknown;no;no;no;cellular;jul;wed;295;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+23;services;married;high.school;no;no;no;cellular;jul;wed;650;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+25;services;single;high.school;unknown;no;no;telephone;jul;wed;273;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+29;admin.;single;high.school;no;no;no;telephone;jul;wed;38;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+34;technician;single;professional.course;unknown;yes;no;cellular;jul;wed;409;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+39;services;divorced;high.school;no;no;no;cellular;jul;wed;160;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+45;admin.;single;professional.course;no;yes;no;cellular;jul;wed;77;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+36;services;married;high.school;no;no;no;cellular;jul;wed;65;4;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+24;blue-collar;single;basic.4y;no;yes;yes;cellular;jul;wed;132;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;services;single;high.school;unknown;yes;no;cellular;jul;wed;166;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;entrepreneur;single;university.degree;no;yes;yes;cellular;jul;wed;192;4;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+45;blue-collar;married;basic.9y;no;yes;no;cellular;jul;wed;73;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+55;entrepreneur;single;unknown;unknown;no;no;telephone;jul;wed;542;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+27;services;single;basic.9y;no;no;no;telephone;jul;wed;120;4;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+55;unknown;married;unknown;unknown;yes;no;cellular;jul;wed;219;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+41;blue-collar;married;basic.6y;no;yes;yes;telephone;jul;wed;47;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+36;admin.;married;high.school;no;yes;no;cellular;jul;wed;93;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+44;services;divorced;high.school;no;no;no;cellular;jul;wed;32;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+52;management;married;university.degree;no;no;no;cellular;jul;wed;119;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+28;self-employed;married;university.degree;no;yes;no;cellular;jul;wed;229;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+43;admin.;married;high.school;no;yes;no;cellular;jul;wed;25;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+44;unknown;married;high.school;unknown;yes;no;telephone;jul;wed;195;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+58;entrepreneur;married;university.degree;no;yes;no;telephone;jul;wed;64;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+42;management;married;university.degree;no;yes;yes;telephone;jul;wed;270;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;admin.;married;professional.course;no;yes;no;cellular;jul;wed;173;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+28;self-employed;married;university.degree;no;yes;no;cellular;jul;wed;695;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+35;blue-collar;married;basic.9y;unknown;yes;no;cellular;jul;wed;85;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+40;admin.;divorced;university.degree;no;yes;no;cellular;jul;wed;594;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+50;admin.;married;university.degree;no;yes;no;cellular;jul;wed;115;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+58;entrepreneur;married;university.degree;no;no;no;cellular;jul;wed;101;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;admin.;single;high.school;no;yes;no;cellular;jul;wed;605;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+55;entrepreneur;divorced;university.degree;no;yes;no;cellular;jul;wed;537;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+22;services;married;basic.9y;unknown;no;no;telephone;jul;wed;42;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+28;self-employed;single;university.degree;no;yes;no;telephone;jul;wed;51;19;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+25;admin.;single;high.school;no;no;no;cellular;jul;wed;71;4;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+39;technician;married;university.degree;no;yes;no;cellular;jul;wed;141;8;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+43;admin.;married;high.school;no;yes;yes;cellular;jul;wed;351;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+33;admin.;married;university.degree;no;no;no;cellular;jul;wed;50;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+28;technician;single;professional.course;no;no;no;cellular;jul;wed;76;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+34;admin.;married;university.degree;unknown;no;no;cellular;jul;wed;183;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+34;technician;married;professional.course;no;yes;no;cellular;jul;wed;58;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+41;housemaid;divorced;basic.9y;unknown;no;no;cellular;jul;wed;141;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+34;technician;married;professional.course;no;no;no;cellular;jul;wed;187;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+37;admin.;married;university.degree;no;yes;no;cellular;jul;wed;55;22;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+44;admin.;married;high.school;no;yes;yes;cellular;jul;wed;164;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+28;technician;single;professional.course;no;yes;no;cellular;jul;wed;111;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+40;technician;single;unknown;no;yes;no;telephone;jul;wed;145;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+52;blue-collar;divorced;basic.4y;no;yes;no;cellular;jul;wed;292;8;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+24;blue-collar;single;basic.9y;no;yes;no;cellular;jul;wed;71;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+36;technician;single;professional.course;no;no;no;cellular;jul;wed;14;29;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+24;blue-collar;single;basic.9y;no;yes;no;cellular;jul;wed;220;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+50;services;single;high.school;no;yes;no;telephone;jul;wed;340;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+36;unemployed;single;high.school;no;yes;no;cellular;jul;wed;148;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+51;blue-collar;married;high.school;unknown;yes;no;cellular;jul;wed;105;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+56;management;married;university.degree;no;no;yes;telephone;jul;wed;154;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+37;blue-collar;married;basic.6y;unknown;yes;no;cellular;jul;wed;83;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+37;blue-collar;married;basic.6y;unknown;no;no;cellular;jul;wed;77;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+39;blue-collar;married;basic.9y;unknown;no;no;cellular;jul;wed;138;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+37;blue-collar;married;basic.6y;unknown;no;no;cellular;jul;wed;244;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+36;unemployed;single;high.school;no;yes;no;cellular;jul;wed;597;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+40;unemployed;divorced;university.degree;no;no;no;cellular;jul;wed;161;5;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+34;admin.;married;university.degree;unknown;unknown;unknown;telephone;jul;wed;171;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+50;services;single;high.school;no;no;no;cellular;jul;wed;81;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+40;unemployed;divorced;university.degree;no;yes;no;cellular;jul;wed;1373;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+47;unknown;married;unknown;no;yes;no;cellular;jul;wed;133;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+41;housemaid;divorced;basic.9y;unknown;no;yes;cellular;jul;wed;122;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+44;admin.;single;university.degree;no;yes;no;cellular;jul;wed;153;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+33;management;single;university.degree;no;yes;no;cellular;jul;wed;65;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+44;self-employed;married;basic.9y;unknown;yes;no;cellular;jul;wed;41;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+46;admin.;married;university.degree;no;no;no;cellular;jul;wed;29;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+28;self-employed;married;university.degree;no;no;no;cellular;jul;wed;86;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;admin.;married;university.degree;no;yes;no;cellular;jul;wed;255;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+35;blue-collar;married;professional.course;no;yes;no;cellular;jul;wed;218;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+39;admin.;married;university.degree;unknown;yes;no;telephone;jul;wed;197;4;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+35;admin.;married;high.school;no;no;no;cellular;jul;wed;788;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+31;housemaid;single;high.school;no;yes;no;cellular;jul;wed;380;4;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;blue-collar;married;basic.9y;no;no;no;cellular;jul;wed;988;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+25;admin.;single;high.school;no;no;no;cellular;jul;wed;55;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+50;services;single;high.school;no;no;no;cellular;jul;wed;129;9;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+33;student;married;high.school;no;no;no;cellular;jul;wed;622;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+41;technician;divorced;professional.course;no;no;no;telephone;jul;wed;38;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+53;blue-collar;married;basic.6y;no;no;no;cellular;jul;wed;86;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+36;admin.;married;high.school;no;no;no;cellular;jul;wed;227;6;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+41;services;divorced;high.school;no;no;no;cellular;jul;wed;120;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;services;married;high.school;unknown;yes;no;cellular;jul;wed;149;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+33;technician;married;professional.course;no;yes;no;cellular;jul;wed;144;6;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;blue-collar;single;university.degree;no;yes;yes;cellular;jul;wed;126;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+44;technician;single;university.degree;no;yes;no;telephone;jul;wed;185;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+25;services;single;basic.9y;no;yes;no;cellular;jul;wed;197;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;admin.;married;university.degree;no;no;no;cellular;jul;wed;543;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+37;blue-collar;married;basic.6y;unknown;no;no;cellular;jul;wed;99;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;technician;single;professional.course;no;yes;no;cellular;jul;wed;156;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+40;management;single;high.school;no;no;no;cellular;jul;wed;94;4;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+39;blue-collar;married;basic.9y;unknown;no;no;telephone;jul;wed;87;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;blue-collar;single;high.school;no;yes;no;telephone;jul;wed;82;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+25;student;single;university.degree;no;yes;yes;cellular;jul;wed;77;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+25;services;single;basic.9y;no;no;yes;cellular;jul;wed;444;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+41;housemaid;married;basic.6y;no;no;no;telephone;jul;wed;34;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;blue-collar;single;high.school;no;no;yes;cellular;jul;wed;287;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+33;student;married;high.school;no;no;yes;cellular;jul;wed;73;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;admin.;single;university.degree;no;yes;no;cellular;jul;wed;152;4;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+51;technician;married;professional.course;no;yes;no;cellular;jul;wed;69;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+24;blue-collar;single;basic.9y;no;yes;no;cellular;jul;wed;74;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+25;services;single;basic.9y;no;yes;no;cellular;jul;wed;535;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+29;student;single;university.degree;no;yes;no;cellular;jul;wed;209;4;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;technician;single;university.degree;no;yes;no;cellular;jul;wed;72;15;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+51;housemaid;married;high.school;no;yes;no;cellular;jul;wed;44;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+52;admin.;married;basic.9y;no;no;no;cellular;jul;wed;1171;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+41;services;divorced;high.school;no;no;yes;cellular;jul;wed;72;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+55;entrepreneur;divorced;professional.course;no;no;no;telephone;jul;wed;117;4;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+33;blue-collar;divorced;basic.9y;no;yes;no;cellular;jul;wed;729;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+57;admin.;single;university.degree;no;no;no;cellular;jul;wed;341;4;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+28;self-employed;married;university.degree;no;yes;yes;cellular;jul;wed;186;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+33;technician;married;professional.course;no;no;no;cellular;jul;wed;96;4;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+25;services;single;basic.9y;no;yes;no;cellular;jul;wed;509;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+32;admin.;married;professional.course;no;yes;no;telephone;jul;wed;166;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+34;technician;single;professional.course;no;yes;no;cellular;jul;wed;1078;8;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;blue-collar;married;basic.9y;no;no;yes;telephone;jul;wed;27;16;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+35;services;married;high.school;no;yes;no;cellular;jul;wed;698;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+25;admin.;single;high.school;no;no;no;cellular;jul;wed;114;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+40;admin.;married;university.degree;unknown;yes;no;telephone;jul;wed;340;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;admin.;married;high.school;no;yes;no;cellular;jul;wed;106;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+40;admin.;married;university.degree;unknown;yes;no;cellular;jul;wed;424;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+35;services;married;high.school;no;yes;no;cellular;jul;wed;436;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+34;self-employed;single;university.degree;no;yes;no;cellular;jul;wed;159;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+34;self-employed;single;university.degree;no;no;no;cellular;jul;wed;208;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+36;admin.;married;high.school;no;no;no;cellular;jul;wed;96;8;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+34;self-employed;single;university.degree;no;yes;no;cellular;jul;wed;359;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+48;services;married;basic.6y;no;no;no;cellular;jul;wed;69;6;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;blue-collar;married;high.school;no;no;no;cellular;jul;wed;259;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+38;blue-collar;married;unknown;no;yes;yes;cellular;jul;wed;225;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+37;admin.;married;high.school;no;yes;yes;telephone;jul;wed;1089;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+40;technician;married;professional.course;no;no;no;cellular;jul;wed;65;5;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+48;technician;married;professional.course;no;no;yes;cellular;jul;wed;266;5;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+34;self-employed;single;university.degree;no;no;no;cellular;jul;wed;1211;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+44;blue-collar;single;basic.9y;no;yes;no;cellular;jul;wed;50;18;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+57;management;married;unknown;no;no;no;cellular;jul;wed;178;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+37;admin.;single;high.school;no;no;no;telephone;jul;wed;130;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+41;housemaid;divorced;basic.9y;unknown;no;no;cellular;jul;wed;118;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+36;blue-collar;divorced;basic.9y;no;no;no;telephone;jul;wed;109;7;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+39;admin.;single;basic.9y;unknown;no;yes;cellular;jul;wed;94;4;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+58;blue-collar;married;basic.4y;unknown;yes;no;cellular;jul;wed;647;6;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+55;blue-collar;married;professional.course;no;yes;no;cellular;jul;wed;120;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+36;admin.;married;high.school;no;yes;no;cellular;jul;wed;136;13;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;blue-collar;married;professional.course;no;yes;no;cellular;jul;wed;458;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+48;entrepreneur;married;basic.9y;no;yes;no;cellular;jul;wed;438;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+40;self-employed;married;university.degree;no;yes;no;cellular;jul;wed;225;5;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+35;student;single;unknown;unknown;no;no;cellular;jul;wed;103;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+29;services;single;high.school;no;yes;no;cellular;jul;wed;112;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+42;admin.;single;high.school;unknown;yes;no;cellular;jul;wed;145;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+39;technician;single;university.degree;no;no;no;cellular;jul;wed;31;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+48;technician;divorced;professional.course;no;yes;no;telephone;jul;wed;216;7;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+25;admin.;married;high.school;no;no;no;telephone;jul;wed;156;7;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+56;services;single;high.school;no;no;yes;cellular;jul;wed;52;5;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;admin.;married;high.school;no;yes;no;cellular;jul;wed;154;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+36;technician;married;high.school;no;no;no;cellular;jul;wed;1165;4;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+50;services;single;high.school;no;no;no;cellular;jul;wed;117;7;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+44;admin.;married;university.degree;no;yes;no;cellular;jul;wed;89;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;unemployed;single;university.degree;no;yes;yes;cellular;jul;wed;266;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+33;admin.;married;university.degree;no;yes;no;cellular;jul;wed;107;10;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+44;admin.;married;university.degree;no;yes;no;cellular;jul;wed;486;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;blue-collar;single;high.school;no;yes;no;cellular;jul;wed;72;7;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+39;technician;married;university.degree;no;yes;yes;cellular;jul;wed;63;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+44;admin.;married;high.school;no;no;no;telephone;jul;wed;100;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+41;management;married;university.degree;no;no;no;cellular;jul;wed;174;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+25;admin.;single;high.school;no;yes;no;cellular;jul;wed;62;11;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+33;admin.;single;professional.course;no;yes;no;cellular;jul;wed;520;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+45;admin.;married;university.degree;no;yes;no;cellular;jul;wed;103;4;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;admin.;single;high.school;no;no;yes;cellular;jul;wed;233;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+24;technician;single;university.degree;no;no;yes;cellular;jul;wed;109;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+34;technician;married;professional.course;unknown;yes;no;cellular;jul;wed;64;4;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+34;unemployed;married;high.school;no;yes;yes;cellular;jul;wed;41;5;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+36;blue-collar;married;professional.course;no;unknown;unknown;cellular;jul;wed;153;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+33;admin.;divorced;high.school;no;unknown;unknown;cellular;jul;wed;57;17;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+38;housemaid;married;high.school;no;yes;no;cellular;jul;wed;335;5;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+56;retired;divorced;basic.4y;no;no;yes;cellular;jul;wed;246;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+35;admin.;single;high.school;no;no;no;cellular;jul;wed;86;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+58;retired;divorced;professional.course;no;no;no;cellular;jul;wed;85;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;unemployed;divorced;university.degree;no;yes;yes;cellular;jul;wed;104;7;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+57;admin.;married;university.degree;unknown;no;no;cellular;jul;wed;35;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+46;services;married;high.school;no;yes;yes;cellular;jul;wed;149;10;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;blue-collar;single;basic.9y;no;no;yes;cellular;jul;wed;85;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;admin.;married;high.school;unknown;no;no;cellular;jul;wed;82;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+36;blue-collar;married;basic.6y;unknown;no;no;telephone;jul;wed;350;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+36;self-employed;single;university.degree;no;no;no;cellular;jul;wed;540;6;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+29;technician;married;university.degree;no;yes;no;cellular;jul;wed;115;5;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+58;management;married;basic.9y;no;no;no;cellular;jul;wed;109;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+43;management;married;unknown;no;yes;yes;cellular;jul;wed;595;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+42;self-employed;married;university.degree;no;no;no;cellular;jul;wed;155;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+37;technician;married;professional.course;no;yes;no;telephone;jul;wed;242;4;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+35;self-employed;single;university.degree;no;yes;no;cellular;jul;wed;288;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+37;admin.;married;university.degree;unknown;yes;no;cellular;jul;wed;163;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+39;self-employed;married;professional.course;no;yes;no;telephone;jul;wed;339;8;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+34;services;married;high.school;no;no;no;telephone;jul;wed;29;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+33;services;married;high.school;no;no;no;telephone;jul;wed;139;4;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+36;admin.;divorced;university.degree;unknown;yes;yes;cellular;jul;wed;123;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+48;technician;married;professional.course;no;no;no;cellular;jul;wed;72;4;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+26;management;single;university.degree;no;no;yes;cellular;jul;wed;352;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+36;admin.;divorced;university.degree;unknown;yes;yes;cellular;jul;wed;103;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+56;retired;divorced;high.school;no;yes;no;cellular;jul;wed;173;4;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+27;blue-collar;single;high.school;no;yes;no;telephone;jul;wed;168;7;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+36;management;married;university.degree;no;no;yes;cellular;jul;wed;50;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;services;single;basic.9y;no;yes;no;cellular;jul;wed;22;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+53;technician;married;professional.course;unknown;no;no;telephone;jul;wed;191;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+37;entrepreneur;divorced;high.school;no;no;yes;cellular;jul;wed;245;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+46;admin.;single;high.school;no;no;no;cellular;jul;wed;251;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+23;student;single;high.school;no;yes;no;cellular;jul;wed;139;5;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;admin.;single;university.degree;no;unknown;unknown;cellular;jul;wed;95;5;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+23;services;single;high.school;no;no;yes;cellular;jul;wed;207;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;admin.;single;high.school;unknown;yes;no;cellular;jul;wed;88;4;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+35;technician;married;high.school;unknown;no;no;cellular;jul;wed;96;1;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+24;admin.;single;high.school;no;yes;yes;cellular;jul;wed;100;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+58;housemaid;married;basic.4y;no;yes;no;cellular;jul;wed;638;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+26;blue-collar;married;high.school;no;no;no;cellular;jul;wed;142;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+46;technician;divorced;professional.course;no;yes;no;cellular;jul;wed;90;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+35;admin.;married;university.degree;no;no;no;cellular;jul;wed;695;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+39;admin.;married;university.degree;no;yes;yes;cellular;jul;wed;53;6;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+44;admin.;divorced;high.school;no;yes;no;cellular;jul;wed;269;17;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+48;services;married;professional.course;unknown;yes;yes;cellular;jul;wed;354;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;admin.;single;high.school;no;no;no;cellular;jul;wed;251;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+43;admin.;divorced;high.school;no;no;no;cellular;jul;wed;764;4;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+40;services;married;high.school;no;yes;yes;cellular;jul;wed;251;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+37;services;single;high.school;no;yes;no;cellular;jul;wed;411;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+40;self-employed;single;university.degree;no;yes;no;cellular;jul;wed;1065;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+33;unemployed;married;high.school;unknown;yes;no;cellular;jul;wed;590;9;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+35;self-employed;married;university.degree;no;no;no;telephone;jul;wed;100;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+39;admin.;married;high.school;no;no;no;cellular;jul;wed;184;6;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+43;technician;divorced;professional.course;unknown;yes;yes;cellular;jul;wed;180;7;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+45;unknown;single;high.school;no;yes;no;cellular;jul;wed;83;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+42;technician;married;university.degree;no;no;no;cellular;jul;wed;130;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+41;management;married;university.degree;no;no;no;telephone;jul;wed;300;5;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+44;admin.;divorced;high.school;no;yes;yes;cellular;jul;wed;70;6;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+35;technician;married;professional.course;no;yes;yes;cellular;jul;wed;126;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+24;technician;single;university.degree;no;no;no;cellular;jul;wed;141;4;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+42;technician;married;basic.9y;unknown;yes;no;cellular;jul;wed;130;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+34;technician;married;professional.course;unknown;yes;no;cellular;jul;wed;75;5;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+43;housemaid;married;basic.6y;unknown;yes;no;cellular;jul;wed;61;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;admin.;single;high.school;no;no;no;cellular;jul;wed;95;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+35;blue-collar;married;basic.9y;no;no;no;cellular;jul;wed;1259;6;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+56;blue-collar;married;basic.9y;no;no;no;cellular;jul;wed;70;5;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+39;services;married;high.school;no;no;no;cellular;jul;wed;356;4;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+58;unknown;married;high.school;unknown;no;no;cellular;jul;wed;258;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+38;admin.;married;unknown;no;no;yes;cellular;jul;wed;311;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+39;services;single;high.school;no;no;no;cellular;jul;wed;239;4;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;admin.;married;university.degree;no;yes;no;telephone;jul;wed;2692;8;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+28;services;married;high.school;no;yes;yes;telephone;jul;wed;79;8;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+49;technician;married;basic.9y;unknown;yes;no;cellular;jul;wed;117;17;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+48;admin.;divorced;university.degree;no;yes;no;cellular;jul;wed;121;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;management;single;university.degree;no;no;no;cellular;jul;wed;675;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+51;management;married;basic.9y;no;no;no;cellular;jul;wed;71;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+35;blue-collar;married;basic.4y;no;no;no;cellular;jul;wed;103;8;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+45;services;divorced;high.school;no;yes;yes;cellular;jul;wed;230;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+40;admin.;married;professional.course;unknown;no;no;cellular;jul;wed;100;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+33;services;married;professional.course;no;yes;no;cellular;jul;wed;192;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+38;admin.;married;unknown;no;yes;no;cellular;jul;wed;87;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+56;technician;divorced;university.degree;unknown;yes;yes;cellular;jul;wed;448;5;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+33;unemployed;married;high.school;unknown;yes;yes;cellular;jul;wed;285;8;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+54;housemaid;married;basic.4y;unknown;yes;no;cellular;jul;wed;92;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+42;blue-collar;married;basic.4y;no;no;no;cellular;jul;wed;54;10;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+51;management;married;basic.9y;no;yes;no;cellular;jul;wed;154;4;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+37;blue-collar;married;basic.9y;no;yes;yes;cellular;jul;wed;184;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+30;admin.;single;high.school;no;yes;no;telephone;jul;wed;196;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;admin.;married;high.school;no;no;no;cellular;jul;wed;185;4;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+40;self-employed;single;university.degree;no;yes;yes;telephone;jul;wed;98;11;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+24;blue-collar;single;basic.9y;no;yes;no;cellular;jul;wed;590;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+33;services;married;professional.course;no;no;no;cellular;jul;wed;782;7;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+26;admin.;single;university.degree;no;no;no;telephone;jul;wed;342;5;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+35;technician;married;professional.course;no;no;no;cellular;jul;wed;151;8;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+44;admin.;single;basic.6y;unknown;no;no;telephone;jul;wed;383;7;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+33;admin.;divorced;high.school;no;no;no;cellular;jul;wed;249;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+36;management;married;university.degree;no;no;yes;cellular;jul;wed;93;4;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+58;retired;married;basic.4y;no;yes;no;cellular;jul;wed;134;23;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+27;self-employed;married;university.degree;no;no;no;telephone;jul;wed;215;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+37;housemaid;single;professional.course;no;yes;no;cellular;jul;wed;60;8;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+39;technician;married;high.school;no;no;no;cellular;jul;wed;188;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+37;blue-collar;married;professional.course;no;yes;no;cellular;jul;wed;83;4;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+46;technician;divorced;professional.course;no;no;no;cellular;jul;wed;187;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+36;management;married;university.degree;no;no;no;cellular;jul;wed;777;10;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+30;admin.;single;university.degree;no;no;no;telephone;jul;wed;84;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+31;services;single;high.school;no;yes;no;cellular;jul;wed;21;20;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+29;admin.;single;high.school;no;yes;yes;cellular;jul;wed;160;4;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+32;technician;single;university.degree;no;no;no;cellular;jul;wed;61;4;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+42;blue-collar;married;basic.4y;no;no;no;cellular;jul;wed;53;10;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+22;unemployed;single;high.school;no;no;no;telephone;jul;wed;82;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+51;management;married;basic.9y;no;yes;no;telephone;jul;wed;208;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+36;technician;married;professional.course;no;no;no;cellular;jul;wed;84;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+42;blue-collar;married;basic.4y;no;yes;no;cellular;jul;wed;962;4;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+43;services;married;high.school;unknown;no;yes;cellular;jul;wed;105;11;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+48;services;married;professional.course;unknown;yes;yes;cellular;jul;wed;98;2;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+38;admin.;married;high.school;no;no;no;cellular;jul;wed;166;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+26;blue-collar;single;high.school;no;no;yes;cellular;jul;wed;111;8;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;no
+38;admin.;married;unknown;no;yes;no;cellular;jul;wed;481;3;999;0;nonexistent;1.4;93.918;-42.7;4.963;5228.1;yes
+44;management;married;university.degree;unknown;yes;no;cellular;jul;thu;148;15;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+40;admin.;married;basic.9y;no;yes;no;cellular;jul;thu;106;4;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+55;technician;married;professional.course;no;yes;yes;cellular;jul;thu;101;5;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+44;admin.;divorced;high.school;no;yes;yes;cellular;jul;thu;75;11;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+49;technician;married;basic.9y;unknown;yes;no;cellular;jul;thu;75;2;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+27;admin.;single;professional.course;unknown;yes;no;cellular;jul;thu;114;2;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+42;admin.;married;university.degree;no;yes;no;telephone;jul;thu;24;12;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+56;entrepreneur;married;basic.4y;unknown;yes;no;cellular;jul;thu;20;20;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+32;blue-collar;single;high.school;no;no;no;telephone;jul;thu;234;4;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+28;services;married;high.school;no;no;no;cellular;jul;thu;15;14;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+28;admin.;single;university.degree;no;yes;no;cellular;jul;thu;13;10;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+41;self-employed;divorced;university.degree;no;no;no;cellular;jul;thu;81;10;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+41;admin.;single;university.degree;no;yes;no;cellular;jul;thu;435;5;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+52;retired;married;basic.9y;unknown;no;no;cellular;jul;thu;59;4;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+38;admin.;married;high.school;no;no;no;cellular;jul;thu;175;5;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+54;blue-collar;married;basic.9y;no;yes;no;cellular;jul;thu;150;2;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+47;admin.;married;basic.9y;no;yes;yes;telephone;jul;thu;43;4;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+37;services;single;high.school;no;no;no;cellular;jul;thu;52;6;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+40;unknown;married;unknown;no;yes;yes;cellular;jul;thu;67;6;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+36;blue-collar;married;basic.9y;no;no;no;cellular;jul;thu;85;2;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+35;self-employed;married;university.degree;no;no;no;telephone;jul;thu;11;5;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+30;admin.;single;high.school;no;no;no;cellular;jul;thu;13;27;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+34;technician;married;university.degree;no;no;no;cellular;jul;thu;153;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+28;admin.;single;high.school;no;yes;no;cellular;jul;thu;87;6;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+42;admin.;divorced;university.degree;no;no;yes;telephone;jul;thu;46;17;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+35;admin.;single;high.school;no;yes;yes;cellular;jul;thu;283;16;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+28;services;married;high.school;no;yes;no;cellular;jul;thu;69;6;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+36;unemployed;married;university.degree;no;no;no;cellular;jul;thu;616;2;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+58;blue-collar;divorced;basic.4y;unknown;no;no;telephone;jul;thu;69;7;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+30;admin.;single;high.school;no;no;no;cellular;jul;thu;160;4;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+46;technician;divorced;professional.course;no;yes;no;cellular;jul;thu;165;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+56;technician;divorced;university.degree;unknown;no;yes;cellular;jul;thu;13;2;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+42;admin.;married;high.school;unknown;no;yes;cellular;jul;thu;141;5;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+37;blue-collar;divorced;basic.9y;no;yes;no;cellular;jul;thu;346;2;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+39;admin.;married;university.degree;no;yes;no;cellular;jul;thu;79;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+37;admin.;married;university.degree;no;no;yes;cellular;jul;thu;175;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+56;retired;divorced;high.school;no;yes;no;cellular;jul;thu;11;10;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+37;services;divorced;high.school;no;no;no;cellular;jul;thu;98;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+50;technician;single;high.school;unknown;no;no;telephone;jul;thu;125;6;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+36;blue-collar;married;basic.6y;unknown;yes;no;cellular;jul;thu;11;16;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+29;technician;married;university.degree;no;no;no;cellular;jul;thu;5;23;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+35;technician;married;professional.course;no;unknown;unknown;cellular;jul;thu;12;12;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+37;entrepreneur;divorced;high.school;no;yes;no;cellular;jul;thu;812;2;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;yes
+36;blue-collar;single;high.school;no;yes;no;cellular;jul;thu;8;24;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+33;technician;single;professional.course;no;no;no;cellular;jul;thu;194;5;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+29;admin.;single;high.school;no;no;yes;cellular;jul;thu;130;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+39;services;married;high.school;no;yes;no;cellular;jul;thu;68;2;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+32;blue-collar;single;high.school;no;yes;no;cellular;jul;thu;110;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+43;technician;divorced;professional.course;no;yes;no;cellular;jul;thu;87;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+36;blue-collar;married;basic.6y;unknown;yes;no;cellular;jul;thu;517;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+36;management;married;university.degree;no;yes;no;cellular;jul;thu;350;2;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+40;technician;married;professional.course;unknown;no;yes;telephone;jul;thu;921;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+40;blue-collar;single;basic.9y;no;yes;no;cellular;jul;thu;217;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+32;admin.;single;university.degree;no;no;yes;cellular;jul;thu;749;8;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+33;services;married;professional.course;no;yes;yes;cellular;jul;thu;630;4;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;yes
+32;admin.;divorced;high.school;no;unknown;unknown;cellular;jul;thu;81;4;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+34;technician;married;university.degree;no;no;no;cellular;jul;thu;85;2;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+29;admin.;married;high.school;no;no;no;cellular;jul;thu;468;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+48;services;married;professional.course;unknown;yes;no;cellular;jul;thu;55;5;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+39;technician;married;high.school;no;no;no;cellular;jul;thu;28;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+35;technician;married;professional.course;no;no;no;cellular;jul;thu;207;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+30;admin.;single;university.degree;no;yes;no;cellular;jul;thu;27;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+42;self-employed;married;university.degree;no;yes;no;telephone;jul;thu;1088;14;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;yes
+37;blue-collar;divorced;basic.9y;no;yes;no;cellular;jul;thu;1150;4;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;yes
+35;technician;married;professional.course;no;yes;no;cellular;jul;thu;570;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+39;technician;married;high.school;no;yes;no;cellular;jul;thu;404;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+46;admin.;single;high.school;unknown;no;no;cellular;jul;thu;75;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+39;technician;married;high.school;no;no;no;cellular;jul;thu;232;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+50;technician;married;high.school;no;no;no;cellular;jul;thu;190;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+46;admin.;single;high.school;no;unknown;unknown;cellular;jul;thu;37;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+27;admin.;married;high.school;unknown;no;no;cellular;jul;thu;84;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+52;blue-collar;married;basic.4y;no;yes;no;cellular;jul;thu;92;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+56;technician;divorced;university.degree;unknown;no;no;cellular;jul;thu;384;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+28;admin.;single;university.degree;no;no;no;cellular;jul;thu;321;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+52;blue-collar;married;unknown;no;no;no;cellular;jul;thu;394;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+27;blue-collar;single;basic.4y;no;no;no;cellular;jul;thu;451;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+29;admin.;single;university.degree;no;no;no;cellular;jul;thu;117;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+27;blue-collar;single;basic.4y;no;no;no;cellular;jul;thu;508;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+22;unemployed;single;high.school;no;no;no;cellular;jul;thu;60;6;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+48;entrepreneur;married;university.degree;no;yes;no;cellular;jul;thu;207;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+31;blue-collar;single;high.school;no;yes;no;cellular;jul;thu;107;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+45;admin.;married;university.degree;no;no;no;cellular;jul;thu;196;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+38;admin.;married;high.school;no;no;yes;cellular;jul;thu;106;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+48;entrepreneur;married;university.degree;no;yes;no;cellular;jul;thu;413;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+35;technician;married;professional.course;no;no;yes;cellular;jul;thu;15;23;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+28;services;married;high.school;no;unknown;unknown;cellular;jul;thu;81;4;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+36;student;divorced;university.degree;no;no;yes;cellular;jul;thu;125;5;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+29;admin.;single;university.degree;no;yes;no;cellular;jul;thu;543;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+45;admin.;married;university.degree;no;yes;no;telephone;jul;thu;91;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+56;entrepreneur;married;basic.4y;unknown;yes;yes;cellular;jul;thu;14;20;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+44;admin.;single;basic.6y;unknown;yes;no;cellular;jul;thu;130;2;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+33;services;married;professional.course;no;no;yes;cellular;jul;thu;151;7;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+29;admin.;single;high.school;no;yes;yes;cellular;jul;thu;104;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+45;admin.;married;university.degree;no;no;yes;cellular;jul;thu;468;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+59;housemaid;married;basic.4y;no;yes;yes;cellular;jul;thu;69;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+43;blue-collar;single;basic.6y;unknown;no;no;cellular;jul;thu;79;5;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+47;admin.;married;high.school;unknown;no;yes;telephone;jul;thu;225;5;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+45;blue-collar;single;university.degree;no;yes;no;cellular;jul;thu;102;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+49;technician;married;basic.9y;no;yes;no;cellular;jul;thu;183;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+42;technician;married;university.degree;no;no;yes;cellular;jul;thu;65;2;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+28;admin.;single;university.degree;no;no;no;cellular;jul;thu;395;2;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+45;blue-collar;single;university.degree;no;no;no;cellular;jul;thu;291;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+39;self-employed;married;professional.course;no;no;no;cellular;jul;thu;49;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+41;services;divorced;high.school;no;yes;no;cellular;jul;thu;474;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+50;management;married;university.degree;unknown;no;no;cellular;jul;thu;118;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+50;management;married;university.degree;unknown;yes;no;telephone;jul;thu;30;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+36;management;married;university.degree;unknown;yes;no;telephone;jul;thu;28;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+50;management;married;university.degree;unknown;yes;no;cellular;jul;thu;221;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+42;self-employed;married;university.degree;no;yes;no;telephone;jul;thu;30;6;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+45;entrepreneur;divorced;university.degree;no;no;yes;cellular;jul;thu;216;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+35;technician;single;high.school;no;yes;no;cellular;jul;thu;149;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+36;technician;married;high.school;no;no;no;telephone;jul;thu;110;6;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+44;services;married;high.school;unknown;no;no;cellular;jul;thu;374;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+38;housemaid;married;high.school;no;yes;no;cellular;jul;thu;108;2;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+39;entrepreneur;married;high.school;no;yes;no;cellular;jul;thu;244;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+50;technician;married;high.school;no;yes;no;cellular;jul;thu;196;2;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+38;services;married;high.school;no;no;yes;cellular;jul;thu;74;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+38;services;married;high.school;no;no;no;cellular;jul;thu;81;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+35;blue-collar;married;basic.9y;unknown;yes;no;telephone;jul;thu;19;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+43;services;married;high.school;unknown;no;no;cellular;jul;thu;126;19;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+32;admin.;married;university.degree;no;yes;no;cellular;jul;thu;129;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+33;services;divorced;high.school;no;no;yes;cellular;jul;thu;51;7;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+32;admin.;married;university.degree;no;yes;no;cellular;jul;thu;61;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+32;admin.;married;university.degree;no;no;no;cellular;jul;thu;100;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+35;blue-collar;married;basic.9y;unknown;no;no;cellular;jul;thu;574;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;yes
+32;technician;single;professional.course;no;no;yes;telephone;jul;thu;181;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+32;admin.;married;high.school;no;yes;yes;cellular;jul;thu;23;22;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+27;admin.;single;university.degree;no;no;yes;cellular;jul;thu;242;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+32;technician;single;professional.course;no;no;no;cellular;jul;thu;167;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+32;technician;single;professional.course;no;no;no;cellular;jul;thu;35;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+40;admin.;married;professional.course;no;yes;yes;cellular;jul;thu;203;6;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+33;technician;single;professional.course;no;no;no;cellular;jul;thu;140;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+32;technician;single;professional.course;no;yes;no;cellular;jul;thu;128;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+32;technician;single;professional.course;no;yes;no;cellular;jul;thu;128;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+32;technician;single;professional.course;no;no;no;cellular;jul;thu;119;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+32;technician;single;professional.course;no;yes;yes;cellular;jul;thu;234;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+30;blue-collar;single;basic.9y;no;no;no;cellular;jul;thu;56;2;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+25;technician;single;high.school;no;no;no;cellular;jul;thu;27;16;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+31;entrepreneur;single;university.degree;unknown;no;yes;telephone;jul;thu;15;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+37;unemployed;single;university.degree;no;yes;no;cellular;jul;thu;47;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+32;admin.;married;university.degree;no;no;no;cellular;jul;thu;46;4;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+53;technician;married;professional.course;no;yes;no;telephone;jul;thu;144;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+47;blue-collar;married;basic.4y;no;unknown;unknown;telephone;jul;thu;175;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+36;blue-collar;married;basic.6y;unknown;no;no;telephone;jul;thu;208;5;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+41;admin.;single;university.degree;no;yes;yes;telephone;jul;thu;180;5;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+35;technician;single;professional.course;no;yes;no;cellular;jul;thu;307;4;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+43;admin.;married;unknown;no;yes;no;cellular;jul;thu;51;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+43;admin.;married;unknown;no;yes;no;telephone;jul;thu;121;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+38;services;married;high.school;no;yes;no;cellular;jul;thu;73;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+38;services;married;high.school;no;yes;no;telephone;jul;thu;120;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+38;services;married;high.school;no;no;no;cellular;jul;thu;127;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+34;technician;married;university.degree;no;no;yes;cellular;jul;thu;114;2;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+40;admin.;married;professional.course;unknown;no;no;cellular;jul;thu;106;2;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+24;admin.;single;high.school;no;yes;no;cellular;jul;thu;725;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;yes
+35;technician;single;professional.course;unknown;yes;no;cellular;jul;thu;105;5;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+28;services;married;high.school;no;yes;no;telephone;jul;thu;115;4;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+42;management;married;basic.9y;no;no;no;cellular;jul;thu;114;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+42;management;married;basic.9y;no;no;no;telephone;jul;thu;92;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+29;admin.;single;university.degree;no;no;no;cellular;jul;thu;6;14;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+39;technician;married;high.school;no;yes;no;cellular;jul;thu;123;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+56;management;married;university.degree;no;yes;no;cellular;jul;thu;22;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+42;management;married;basic.9y;no;yes;no;cellular;jul;thu;253;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+56;management;married;university.degree;no;no;no;cellular;jul;thu;57;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+35;technician;married;professional.course;no;no;no;cellular;jul;thu;126;4;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+48;technician;married;professional.course;no;no;no;cellular;jul;thu;38;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+48;technician;married;professional.course;no;no;no;telephone;jul;thu;77;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+42;blue-collar;married;basic.9y;unknown;no;yes;cellular;jul;thu;349;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+53;blue-collar;married;basic.4y;unknown;no;yes;cellular;jul;thu;36;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+39;services;married;high.school;no;yes;no;cellular;jul;thu;543;29;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+52;blue-collar;married;basic.9y;no;yes;yes;cellular;jul;thu;114;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+26;blue-collar;married;high.school;no;yes;no;cellular;jul;thu;49;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+34;technician;married;professional.course;unknown;no;no;cellular;jul;thu;61;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+36;blue-collar;married;basic.9y;no;yes;no;telephone;jul;thu;77;2;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+32;technician;single;professional.course;no;yes;no;cellular;jul;thu;81;2;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+56;management;married;university.degree;no;yes;no;cellular;jul;thu;122;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+37;admin.;married;high.school;no;unknown;unknown;cellular;jul;thu;56;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+35;technician;single;professional.course;unknown;yes;no;cellular;jul;thu;53;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+34;unemployed;married;high.school;no;unknown;unknown;cellular;jul;thu;94;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+56;management;married;university.degree;no;yes;no;cellular;jul;thu;126;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+34;unemployed;married;high.school;no;yes;yes;cellular;jul;thu;118;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+46;technician;divorced;professional.course;no;no;no;cellular;jul;thu;60;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+56;technician;divorced;university.degree;unknown;yes;no;cellular;jul;thu;227;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+32;admin.;married;high.school;no;no;no;cellular;jul;thu;662;11;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;yes
+28;admin.;single;university.degree;no;no;no;cellular;jul;thu;727;2;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;yes
+49;technician;married;professional.course;unknown;yes;no;telephone;jul;thu;219;12;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+53;blue-collar;married;basic.4y;unknown;no;no;cellular;jul;thu;79;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+28;admin.;single;high.school;no;yes;no;cellular;jul;thu;231;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+56;technician;divorced;university.degree;unknown;yes;no;cellular;jul;thu;49;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+29;technician;married;university.degree;no;yes;yes;cellular;jul;thu;201;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+44;technician;married;professional.course;no;no;no;cellular;jul;thu;221;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+44;technician;married;professional.course;no;yes;no;telephone;jul;thu;168;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+29;technician;married;university.degree;no;yes;no;telephone;jul;thu;258;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+29;technician;married;university.degree;no;no;no;telephone;jul;thu;240;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+43;admin.;married;basic.4y;no;yes;yes;telephone;jul;thu;119;8;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+56;technician;divorced;university.degree;unknown;no;no;cellular;jul;thu;59;12;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+52;blue-collar;married;basic.4y;no;yes;no;cellular;jul;thu;156;6;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+30;technician;single;university.degree;no;no;no;cellular;jul;thu;131;8;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+32;admin.;married;university.degree;no;no;no;cellular;jul;thu;189;2;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+36;entrepreneur;married;university.degree;unknown;yes;no;cellular;jul;thu;107;13;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+40;technician;married;university.degree;no;no;no;cellular;jul;thu;122;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+36;self-employed;single;basic.4y;no;no;no;telephone;jul;thu;73;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+39;services;married;high.school;no;yes;no;cellular;jul;thu;216;2;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+36;self-employed;single;basic.4y;no;no;no;cellular;jul;thu;148;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+34;technician;married;professional.course;unknown;no;no;telephone;jul;thu;46;2;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+38;services;married;high.school;no;no;no;cellular;jul;thu;145;2;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+41;self-employed;divorced;university.degree;no;no;yes;cellular;jul;thu;52;6;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+57;admin.;married;university.degree;unknown;no;no;cellular;jul;thu;38;15;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+60;retired;married;basic.6y;unknown;no;no;cellular;jul;thu;126;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+29;admin.;married;university.degree;no;yes;yes;cellular;jul;thu;166;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+35;self-employed;single;university.degree;no;yes;no;cellular;jul;thu;106;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+42;blue-collar;married;basic.9y;unknown;yes;no;cellular;jul;thu;62;2;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+28;technician;married;professional.course;no;no;no;telephone;jul;thu;45;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+28;technician;married;professional.course;no;no;no;cellular;jul;thu;53;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+27;blue-collar;single;basic.4y;no;yes;no;cellular;jul;thu;225;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+33;unemployed;married;high.school;unknown;unknown;unknown;cellular;jul;thu;268;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+48;management;married;university.degree;no;no;no;cellular;jul;thu;52;4;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+35;self-employed;single;university.degree;no;no;no;cellular;jul;thu;609;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+27;blue-collar;single;basic.4y;no;no;yes;cellular;jul;thu;83;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+51;management;married;basic.9y;no;yes;yes;cellular;jul;thu;79;6;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+28;services;married;high.school;no;no;no;cellular;jul;thu;462;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+40;technician;married;professional.course;unknown;yes;no;cellular;jul;thu;847;10;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+38;services;married;high.school;no;no;no;cellular;jul;thu;857;2;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;yes
+43;housemaid;married;basic.6y;unknown;yes;no;cellular;jul;thu;188;2;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+28;services;married;high.school;no;no;yes;telephone;jul;thu;80;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+37;housemaid;single;professional.course;no;no;yes;cellular;jul;thu;50;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+37;housemaid;single;professional.course;no;yes;no;cellular;jul;thu;255;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+46;services;married;high.school;no;no;no;cellular;jul;thu;92;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+39;management;married;high.school;no;no;yes;cellular;jul;thu;245;2;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+33;admin.;divorced;high.school;no;no;yes;cellular;jul;thu;83;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+36;entrepreneur;married;university.degree;unknown;yes;no;cellular;jul;thu;55;7;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+58;self-employed;divorced;university.degree;no;yes;no;cellular;jul;thu;548;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+44;admin.;divorced;high.school;no;yes;no;cellular;jul;thu;281;2;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+32;services;single;high.school;no;no;yes;cellular;jul;thu;81;2;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+57;admin.;single;high.school;unknown;yes;no;telephone;jul;thu;35;6;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+28;admin.;single;university.degree;no;no;no;cellular;jul;thu;69;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+53;admin.;married;university.degree;no;yes;no;cellular;jul;thu;51;33;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+28;admin.;single;university.degree;no;no;no;cellular;jul;thu;829;2;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;yes
+42;blue-collar;married;basic.9y;unknown;yes;no;cellular;jul;thu;367;2;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+28;services;married;high.school;no;no;no;cellular;jul;thu;612;2;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;yes
+38;technician;single;professional.course;no;no;no;cellular;jul;thu;25;6;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+28;services;married;high.school;no;no;no;cellular;jul;thu;184;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+34;unemployed;married;high.school;no;no;no;cellular;jul;thu;284;2;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+31;admin.;married;high.school;no;no;no;cellular;jul;thu;187;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+31;admin.;single;university.degree;no;no;no;cellular;jul;thu;128;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+29;technician;single;professional.course;no;yes;no;cellular;jul;thu;150;2;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+46;technician;married;university.degree;no;no;no;cellular;jul;thu;124;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+51;management;married;basic.4y;no;yes;no;cellular;jul;thu;47;2;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+53;blue-collar;married;basic.4y;unknown;no;no;cellular;jul;thu;249;2;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+36;admin.;married;high.school;no;yes;no;cellular;jul;thu;74;2;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+38;self-employed;divorced;basic.9y;no;yes;yes;cellular;jul;thu;119;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+37;blue-collar;married;basic.9y;unknown;no;yes;telephone;jul;thu;88;7;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+32;admin.;married;high.school;no;yes;no;cellular;jul;thu;434;2;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+36;blue-collar;single;high.school;no;no;no;cellular;jul;thu;288;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+24;admin.;single;high.school;no;yes;yes;cellular;jul;thu;109;5;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+47;technician;married;high.school;no;yes;no;cellular;jul;thu;388;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+39;technician;married;high.school;no;yes;no;cellular;jul;thu;1461;4;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;yes
+44;admin.;divorced;university.degree;no;yes;no;cellular;jul;thu;155;11;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+35;self-employed;married;university.degree;no;yes;no;telephone;jul;thu;172;5;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+28;services;single;high.school;no;no;no;cellular;jul;thu;465;2;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+39;services;single;high.school;no;yes;no;cellular;jul;thu;91;5;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+31;management;single;university.degree;no;yes;no;cellular;jul;thu;166;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+44;unknown;married;unknown;no;yes;no;cellular;jul;thu;716;6;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+35;self-employed;married;university.degree;no;yes;no;telephone;jul;thu;33;12;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+39;technician;married;high.school;no;no;no;cellular;jul;thu;266;9;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+42;technician;married;professional.course;unknown;yes;no;cellular;jul;thu;721;10;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+39;admin.;single;unknown;no;no;no;cellular;jul;thu;99;10;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+40;admin.;married;high.school;no;no;no;cellular;jul;thu;228;2;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+27;self-employed;married;university.degree;no;yes;no;telephone;jul;thu;36;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+50;unemployed;married;professional.course;no;no;no;cellular;jul;thu;74;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+58;unknown;married;high.school;unknown;no;no;cellular;jul;thu;222;2;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+22;unemployed;single;high.school;no;yes;no;cellular;jul;thu;361;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;yes
+48;admin.;divorced;university.degree;no;yes;no;cellular;jul;thu;294;4;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+53;blue-collar;married;basic.4y;unknown;no;yes;cellular;jul;thu;247;2;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+36;admin.;single;university.degree;no;yes;no;cellular;jul;thu;109;7;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+54;admin.;married;university.degree;unknown;yes;no;cellular;jul;thu;324;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+47;technician;married;professional.course;no;no;no;cellular;jul;thu;223;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+59;services;married;high.school;no;yes;no;cellular;jul;thu;362;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+59;services;married;high.school;no;yes;no;cellular;jul;thu;300;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+35;admin.;married;high.school;no;no;no;cellular;jul;thu;66;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+38;admin.;married;basic.6y;no;no;no;cellular;jul;thu;169;5;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+45;management;married;university.degree;no;yes;no;cellular;jul;thu;391;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+57;technician;single;professional.course;no;yes;no;cellular;jul;thu;155;5;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+39;management;divorced;basic.9y;unknown;yes;no;cellular;jul;thu;86;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+45;blue-collar;married;basic.9y;no;unknown;unknown;cellular;jul;thu;151;10;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+55;management;married;university.degree;no;yes;yes;cellular;jul;thu;345;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+28;blue-collar;married;basic.4y;unknown;no;no;cellular;jul;thu;94;2;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+45;management;married;university.degree;no;no;no;cellular;jul;thu;843;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+44;blue-collar;divorced;professional.course;no;yes;yes;cellular;jul;thu;81;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+33;blue-collar;married;basic.6y;unknown;yes;no;cellular;jul;thu;75;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+25;admin.;single;basic.9y;no;no;no;cellular;jul;thu;198;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+25;admin.;single;basic.9y;no;no;no;cellular;jul;thu;81;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+30;unemployed;married;high.school;no;yes;no;cellular;jul;thu;34;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+53;admin.;married;high.school;unknown;no;no;cellular;jul;thu;61;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+60;management;married;professional.course;unknown;yes;no;cellular;jul;thu;241;4;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+34;services;married;high.school;no;yes;no;cellular;jul;thu;156;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+36;admin.;married;university.degree;no;no;no;cellular;jul;thu;1739;5;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+34;services;married;high.school;no;yes;no;telephone;jul;thu;345;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+36;technician;single;professional.course;no;no;no;cellular;jul;thu;111;4;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+37;blue-collar;married;basic.4y;unknown;no;no;cellular;jul;thu;166;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+54;blue-collar;married;basic.9y;no;yes;no;telephone;jul;thu;28;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+55;admin.;divorced;university.degree;no;no;no;cellular;jul;thu;119;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+55;admin.;divorced;university.degree;no;yes;yes;cellular;jul;thu;209;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+34;services;married;high.school;no;no;no;telephone;jul;thu;733;1;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+28;blue-collar;married;basic.4y;unknown;yes;no;cellular;jul;thu;44;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+25;admin.;single;basic.9y;no;no;no;cellular;jul;thu;18;29;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+30;services;single;high.school;no;no;no;telephone;jul;thu;444;5;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+36;admin.;single;university.degree;no;yes;no;cellular;jul;thu;744;8;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+29;management;married;university.degree;no;yes;no;cellular;jul;thu;196;4;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+34;technician;divorced;unknown;no;yes;no;telephone;jul;thu;190;4;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+31;self-employed;married;university.degree;no;no;no;cellular;jul;thu;245;5;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+48;blue-collar;married;professional.course;no;no;no;cellular;jul;thu;22;25;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+30;blue-collar;single;high.school;no;yes;no;telephone;jul;thu;13;16;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+31;services;single;high.school;no;yes;no;cellular;jul;thu;59;2;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+28;blue-collar;married;basic.4y;unknown;yes;no;cellular;jul;thu;108;9;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+33;admin.;single;professional.course;no;yes;no;cellular;jul;thu;134;2;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+28;technician;single;university.degree;no;yes;no;cellular;jul;thu;58;2;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+58;management;married;university.degree;no;no;yes;cellular;jul;thu;32;20;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+45;admin.;married;university.degree;no;no;no;cellular;jul;thu;9;7;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+48;technician;married;professional.course;unknown;no;yes;telephone;jul;thu;37;6;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+33;technician;married;university.degree;no;yes;no;cellular;jul;thu;90;5;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+54;admin.;married;university.degree;unknown;yes;no;cellular;jul;thu;20;27;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+36;admin.;single;university.degree;no;yes;no;cellular;jul;thu;33;33;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+36;admin.;single;university.degree;no;yes;yes;telephone;jul;thu;18;8;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+44;blue-collar;divorced;professional.course;no;no;no;cellular;jul;thu;66;31;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+39;technician;married;professional.course;no;yes;no;cellular;jul;thu;23;5;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+32;technician;married;university.degree;no;yes;no;cellular;jul;thu;19;6;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+25;admin.;single;basic.9y;no;yes;yes;cellular;jul;thu;37;17;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+38;admin.;married;high.school;no;yes;no;telephone;jul;thu;51;18;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+48;technician;married;professional.course;no;yes;no;cellular;jul;thu;21;2;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+38;admin.;married;basic.6y;no;yes;no;cellular;jul;thu;294;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+32;technician;married;university.degree;no;no;no;telephone;jul;thu;65;4;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+59;services;married;high.school;no;yes;no;cellular;jul;thu;70;5;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+38;technician;married;high.school;no;yes;yes;cellular;jul;thu;18;34;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+50;self-employed;married;professional.course;no;yes;no;cellular;jul;thu;77;2;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+54;admin.;married;university.degree;no;no;no;cellular;jul;thu;9;5;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+41;housemaid;married;basic.4y;unknown;no;no;cellular;jul;thu;17;24;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+52;blue-collar;married;basic.9y;unknown;no;no;cellular;jul;thu;393;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+32;technician;married;university.degree;no;yes;no;cellular;jul;thu;22;7;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+31;services;single;high.school;no;no;no;cellular;jul;thu;10;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+30;services;single;high.school;unknown;no;no;telephone;jul;thu;454;18;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+33;technician;married;university.degree;no;no;no;cellular;jul;thu;89;4;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+34;technician;married;professional.course;no;yes;no;cellular;jul;thu;11;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+59;retired;married;basic.4y;no;no;no;telephone;jul;thu;37;27;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+44;technician;single;unknown;unknown;no;yes;cellular;jul;thu;48;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+53;admin.;married;high.school;unknown;no;no;cellular;jul;thu;10;8;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+39;admin.;married;university.degree;unknown;no;no;cellular;jul;thu;67;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+33;technician;single;university.degree;no;no;no;cellular;jul;thu;58;5;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+30;unemployed;married;high.school;no;yes;no;cellular;jul;thu;272;2;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+36;technician;single;professional.course;no;yes;yes;cellular;jul;thu;164;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+48;admin.;single;university.degree;no;yes;yes;telephone;jul;thu;55;6;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+26;blue-collar;married;basic.4y;unknown;yes;no;cellular;jul;thu;530;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+25;admin.;single;basic.9y;no;yes;no;cellular;jul;thu;17;18;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+31;services;single;high.school;no;no;no;cellular;jul;thu;16;35;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+25;admin.;single;basic.9y;no;yes;no;cellular;jul;thu;14;28;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+47;technician;married;professional.course;no;yes;no;cellular;jul;thu;153;18;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+34;technician;divorced;unknown;no;yes;yes;cellular;jul;thu;8;8;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+38;admin.;married;basic.6y;no;yes;no;cellular;jul;thu;69;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+25;admin.;single;basic.9y;no;yes;yes;cellular;jul;thu;8;21;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+37;technician;married;professional.course;no;no;no;telephone;jul;thu;43;32;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+36;admin.;single;university.degree;no;yes;no;cellular;jul;thu;106;27;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+55;self-employed;married;university.degree;unknown;no;no;cellular;jul;thu;255;2;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+34;technician;divorced;unknown;no;yes;no;telephone;jul;thu;251;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+47;technician;married;professional.course;no;yes;no;cellular;jul;thu;30;33;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+33;blue-collar;married;basic.9y;no;yes;no;cellular;jul;thu;21;14;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+55;retired;married;basic.9y;unknown;yes;no;cellular;jul;thu;55;8;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+55;retired;married;basic.9y;unknown;no;no;telephone;jul;thu;16;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+30;admin.;single;professional.course;no;yes;yes;cellular;jul;thu;9;18;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+36;technician;single;professional.course;no;no;no;telephone;jul;thu;237;7;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+47;technician;married;professional.course;no;yes;yes;cellular;jul;thu;58;4;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+25;admin.;single;basic.9y;no;yes;no;cellular;jul;thu;115;4;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+36;unemployed;single;unknown;unknown;no;no;cellular;jul;thu;189;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+42;admin.;married;university.degree;no;no;yes;cellular;jul;thu;56;25;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+38;blue-collar;single;basic.6y;no;no;no;telephone;jul;thu;114;4;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+38;admin.;married;basic.6y;no;no;no;cellular;jul;thu;213;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+30;services;single;high.school;no;yes;no;cellular;jul;thu;70;6;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+52;admin.;married;university.degree;no;no;no;cellular;jul;thu;368;7;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+36;admin.;single;university.degree;no;yes;no;cellular;jul;thu;10;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+38;admin.;married;basic.6y;no;yes;no;cellular;jul;thu;135;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+36;admin.;single;university.degree;no;no;no;cellular;jul;thu;48;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+38;admin.;married;basic.6y;no;no;no;cellular;jul;thu;35;25;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+27;admin.;single;high.school;no;yes;no;telephone;jul;thu;14;23;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+43;admin.;married;professional.course;unknown;yes;no;cellular;jul;thu;68;2;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+59;retired;married;basic.4y;no;no;yes;telephone;jul;thu;22;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+41;blue-collar;married;basic.6y;no;no;no;telephone;jul;thu;5;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+49;technician;married;unknown;unknown;yes;no;cellular;jul;thu;160;14;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+40;services;married;basic.9y;no;no;no;telephone;jul;thu;21;35;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+41;blue-collar;married;basic.6y;no;yes;no;cellular;jul;thu;5;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+39;admin.;married;university.degree;unknown;yes;no;cellular;jul;thu;33;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+49;admin.;single;high.school;no;no;no;telephone;jul;thu;6;2;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+55;retired;married;basic.9y;unknown;no;no;cellular;jul;thu;149;5;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+34;technician;divorced;unknown;no;no;no;cellular;jul;thu;40;7;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+34;technician;divorced;unknown;no;yes;no;cellular;jul;thu;46;21;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+39;admin.;single;high.school;no;no;no;cellular;jul;thu;9;6;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+25;admin.;single;basic.9y;no;no;no;cellular;jul;thu;39;8;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+32;technician;married;university.degree;no;yes;no;cellular;jul;thu;280;6;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+41;housemaid;married;basic.4y;unknown;yes;no;telephone;jul;thu;350;10;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+54;admin.;married;university.degree;unknown;yes;no;cellular;jul;thu;65;43;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+37;technician;married;professional.course;no;no;no;cellular;jul;thu;37;8;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+48;blue-collar;married;professional.course;no;yes;no;cellular;jul;thu;49;16;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+34;technician;divorced;unknown;no;yes;yes;cellular;jul;thu;470;4;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+38;admin.;married;basic.6y;no;no;no;cellular;jul;thu;262;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+43;services;married;basic.6y;no;no;yes;cellular;jul;thu;124;8;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+42;entrepreneur;married;professional.course;no;yes;no;cellular;jul;thu;576;7;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+56;blue-collar;married;basic.6y;unknown;yes;no;cellular;jul;thu;10;5;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+58;blue-collar;married;basic.6y;unknown;yes;no;cellular;jul;thu;306;7;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+39;admin.;married;university.degree;unknown;yes;no;cellular;jul;thu;101;9;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+39;technician;married;unknown;no;yes;no;cellular;jul;thu;108;4;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+36;admin.;single;university.degree;no;no;no;cellular;jul;thu;67;6;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+36;admin.;single;university.degree;no;yes;no;telephone;jul;thu;16;8;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+39;admin.;married;university.degree;unknown;no;no;telephone;jul;thu;94;12;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+49;admin.;single;high.school;no;yes;no;cellular;jul;thu;24;13;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+38;admin.;married;basic.6y;no;no;no;cellular;jul;thu;18;6;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+54;admin.;married;university.degree;unknown;yes;no;cellular;jul;thu;77;5;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+43;admin.;married;professional.course;unknown;yes;no;cellular;jul;thu;747;4;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+24;technician;single;university.degree;no;no;no;cellular;jul;thu;299;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+31;services;single;high.school;no;yes;no;telephone;jul;thu;42;5;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+46;services;married;basic.9y;no;yes;no;cellular;jul;thu;40;9;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+27;admin.;single;high.school;no;no;no;cellular;jul;thu;10;20;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+31;services;single;high.school;no;no;yes;cellular;jul;thu;9;17;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+45;blue-collar;married;basic.6y;no;no;yes;cellular;jul;thu;92;4;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+30;services;single;high.school;no;yes;no;cellular;jul;thu;92;10;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+59;technician;married;high.school;unknown;no;no;telephone;jul;thu;130;8;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+36;admin.;single;university.degree;no;no;no;cellular;jul;thu;18;40;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+25;admin.;single;basic.9y;no;yes;no;cellular;jul;thu;83;4;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+49;management;married;basic.9y;unknown;no;yes;cellular;jul;thu;8;16;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+28;technician;single;professional.course;no;no;no;cellular;jul;thu;28;5;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+25;admin.;single;basic.9y;no;yes;yes;cellular;jul;thu;14;30;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+25;admin.;single;basic.9y;no;yes;no;cellular;jul;thu;8;27;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+32;technician;married;university.degree;no;yes;no;telephone;jul;thu;443;4;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+38;admin.;married;basic.6y;no;yes;no;telephone;jul;thu;214;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+33;technician;married;university.degree;no;yes;no;cellular;jul;thu;258;7;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+54;services;married;basic.6y;no;yes;no;cellular;jul;thu;86;4;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+30;services;single;high.school;no;yes;no;cellular;jul;thu;248;5;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+36;admin.;single;university.degree;no;yes;no;cellular;jul;thu;536;7;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+36;admin.;single;university.degree;no;yes;no;cellular;jul;thu;148;6;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+36;admin.;married;high.school;no;no;yes;cellular;jul;thu;18;12;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+34;management;single;university.degree;no;no;no;cellular;jul;thu;90;13;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+36;admin.;single;university.degree;no;no;no;cellular;jul;thu;78;16;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+25;admin.;married;university.degree;no;yes;no;cellular;jul;thu;60;5;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+32;technician;married;university.degree;no;yes;yes;telephone;jul;thu;50;6;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+36;admin.;single;university.degree;no;no;no;telephone;jul;thu;9;13;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+31;services;single;high.school;no;no;no;cellular;jul;thu;61;4;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+48;technician;married;professional.course;unknown;yes;no;cellular;jul;thu;5;2;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+27;admin.;single;high.school;no;yes;no;cellular;jul;thu;5;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+36;admin.;single;university.degree;no;yes;yes;cellular;jul;thu;12;7;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+42;admin.;married;university.degree;no;no;no;cellular;jul;thu;1142;5;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;yes
+29;self-employed;single;university.degree;no;yes;yes;cellular;jul;thu;22;8;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+36;services;married;high.school;no;yes;yes;telephone;jul;thu;576;17;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+25;blue-collar;married;basic.9y;unknown;yes;no;cellular;jul;thu;28;12;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+28;blue-collar;married;basic.4y;unknown;yes;no;cellular;jul;thu;6;8;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+39;blue-collar;single;basic.4y;unknown;yes;no;cellular;jul;thu;6;12;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+34;technician;divorced;unknown;no;yes;no;cellular;jul;thu;420;6;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+39;blue-collar;married;professional.course;no;yes;no;cellular;jul;thu;55;15;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+33;technician;married;university.degree;no;yes;no;cellular;jul;thu;76;4;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+34;blue-collar;married;unknown;no;yes;no;telephone;jul;thu;15;25;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+36;services;married;high.school;no;yes;yes;cellular;jul;thu;1721;4;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;yes
+38;admin.;married;basic.6y;no;yes;no;telephone;jul;thu;39;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+25;student;single;high.school;no;no;no;cellular;jul;thu;85;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+55;retired;married;high.school;no;yes;no;cellular;jul;thu;32;24;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+58;blue-collar;married;basic.6y;unknown;yes;yes;telephone;jul;thu;31;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+53;self-employed;married;professional.course;no;yes;no;cellular;jul;thu;9;31;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+33;technician;married;university.degree;no;yes;no;cellular;jul;thu;52;7;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+45;technician;married;basic.9y;unknown;no;no;cellular;jul;thu;31;22;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+31;services;single;high.school;no;yes;no;cellular;jul;thu;45;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+47;services;married;unknown;no;yes;no;cellular;jul;thu;43;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+39;technician;married;professional.course;no;no;no;cellular;jul;thu;84;6;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+38;admin.;married;basic.6y;no;yes;no;cellular;jul;thu;17;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+56;blue-collar;married;basic.6y;unknown;yes;no;cellular;jul;thu;28;21;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+31;services;single;high.school;no;yes;no;cellular;jul;thu;34;5;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+31;services;single;high.school;no;yes;no;cellular;jul;thu;48;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+37;admin.;married;high.school;no;yes;no;telephone;jul;thu;29;14;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+34;technician;divorced;unknown;no;yes;no;cellular;jul;thu;27;13;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+29;technician;married;university.degree;no;no;no;cellular;jul;thu;652;7;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+51;retired;married;university.degree;unknown;no;no;cellular;jul;thu;110;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+35;admin.;married;university.degree;no;no;no;cellular;jul;thu;19;10;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+34;technician;divorced;unknown;no;no;no;telephone;jul;thu;41;5;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+48;technician;married;professional.course;unknown;no;yes;cellular;jul;thu;6;10;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+48;blue-collar;married;professional.course;no;yes;no;cellular;jul;thu;12;5;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+33;admin.;single;professional.course;no;yes;no;cellular;jul;thu;143;4;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+36;services;married;high.school;no;yes;no;cellular;jul;thu;14;6;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+54;management;married;university.degree;unknown;yes;no;telephone;jul;thu;11;5;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+46;services;married;basic.9y;no;no;no;cellular;jul;thu;153;4;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+36;admin.;single;university.degree;no;no;yes;cellular;jul;thu;35;11;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+50;self-employed;married;professional.course;no;no;no;cellular;jul;thu;73;7;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+27;admin.;single;high.school;no;no;no;telephone;jul;thu;135;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+54;technician;married;basic.9y;no;no;yes;cellular;jul;thu;50;9;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+59;housemaid;married;basic.4y;no;no;yes;cellular;jul;thu;7;21;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+43;admin.;married;professional.course;unknown;no;no;cellular;jul;thu;127;3;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+28;blue-collar;married;basic.4y;unknown;no;yes;cellular;jul;thu;29;8;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+39;blue-collar;single;basic.4y;unknown;no;no;telephone;jul;thu;9;21;999;0;nonexistent;1.4;93.918;-42.7;4.968;5228.1;no
+48;housemaid;married;basic.4y;unknown;no;yes;cellular;aug;mon;148;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+45;management;divorced;high.school;no;no;yes;cellular;aug;mon;78;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+34;technician;single;university.degree;no;yes;no;cellular;aug;mon;156;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+34;technician;single;university.degree;no;no;no;cellular;aug;mon;160;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+41;technician;married;university.degree;no;unknown;unknown;cellular;aug;mon;531;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+38;blue-collar;single;high.school;no;yes;no;cellular;aug;mon;104;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+43;admin.;married;university.degree;no;no;no;cellular;aug;mon;116;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+43;admin.;married;university.degree;no;yes;yes;cellular;aug;mon;149;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+45;management;divorced;high.school;no;yes;no;cellular;aug;mon;272;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+44;admin.;single;university.degree;no;no;no;cellular;aug;mon;208;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+50;self-employed;married;basic.4y;unknown;no;no;cellular;aug;mon;222;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+50;self-employed;married;basic.4y;unknown;yes;no;cellular;aug;mon;311;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+31;admin.;single;university.degree;no;yes;no;cellular;aug;mon;163;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+41;technician;married;university.degree;no;yes;no;cellular;aug;mon;89;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+41;technician;married;university.degree;no;yes;no;cellular;aug;mon;53;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+41;technician;married;university.degree;no;yes;no;cellular;aug;mon;71;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+41;technician;married;university.degree;no;yes;no;cellular;aug;mon;227;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+57;unknown;married;unknown;unknown;yes;no;cellular;aug;mon;81;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+46;admin.;married;university.degree;no;yes;no;cellular;aug;mon;96;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+58;blue-collar;married;basic.9y;no;yes;no;cellular;aug;mon;436;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+33;admin.;single;university.degree;no;no;no;cellular;aug;mon;157;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+58;blue-collar;married;basic.9y;no;no;no;cellular;aug;mon;498;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+36;admin.;married;university.degree;no;no;no;cellular;aug;mon;147;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+58;blue-collar;married;basic.9y;no;yes;no;cellular;aug;mon;846;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;yes
+48;blue-collar;married;university.degree;no;no;no;cellular;aug;mon;164;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+49;services;married;high.school;no;no;no;cellular;aug;mon;117;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+30;admin.;married;university.degree;no;no;no;cellular;aug;mon;160;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+30;admin.;married;university.degree;no;no;no;cellular;aug;mon;243;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+48;blue-collar;married;basic.9y;no;no;yes;cellular;aug;mon;221;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+53;management;married;university.degree;no;yes;no;cellular;aug;mon;629;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+56;admin.;married;basic.6y;no;yes;no;cellular;aug;mon;240;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+53;services;married;basic.9y;unknown;no;no;cellular;aug;mon;79;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+53;services;married;basic.9y;unknown;yes;no;cellular;aug;mon;148;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+53;blue-collar;married;basic.4y;unknown;yes;no;cellular;aug;mon;144;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+37;student;married;professional.course;no;no;no;cellular;aug;mon;70;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+56;blue-collar;married;basic.9y;no;unknown;unknown;cellular;aug;mon;68;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+47;services;married;high.school;no;no;no;cellular;aug;mon;157;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+51;technician;married;professional.course;no;no;no;cellular;aug;mon;72;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+55;blue-collar;married;basic.4y;no;yes;no;telephone;aug;mon;94;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+55;blue-collar;married;basic.4y;no;yes;no;cellular;aug;mon;149;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+42;technician;divorced;professional.course;no;yes;no;cellular;aug;mon;151;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+58;retired;married;professional.course;no;yes;no;cellular;aug;mon;302;2;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+42;technician;divorced;professional.course;no;yes;no;cellular;aug;mon;408;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+56;retired;married;university.degree;no;yes;no;cellular;aug;mon;270;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+46;technician;married;university.degree;unknown;no;no;cellular;aug;mon;139;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+49;technician;married;professional.course;unknown;yes;yes;cellular;aug;mon;148;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+33;admin.;divorced;university.degree;no;yes;no;cellular;aug;mon;73;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+53;services;married;basic.9y;unknown;yes;no;cellular;aug;mon;136;2;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+46;housemaid;married;high.school;no;yes;no;cellular;aug;mon;121;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+46;housemaid;married;high.school;no;yes;no;telephone;aug;mon;130;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+35;admin.;single;university.degree;no;no;no;cellular;aug;mon;167;2;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+60;retired;married;university.degree;unknown;no;no;cellular;aug;mon;144;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+60;retired;married;university.degree;unknown;yes;no;cellular;aug;mon;174;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+30;admin.;single;university.degree;no;yes;no;cellular;aug;mon;39;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+35;technician;divorced;university.degree;no;yes;yes;cellular;aug;mon;142;2;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+57;admin.;married;high.school;unknown;yes;no;cellular;aug;mon;86;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+39;housemaid;married;basic.4y;no;yes;no;cellular;aug;mon;417;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+47;entrepreneur;married;university.degree;no;yes;yes;cellular;aug;mon;216;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+33;admin.;divorced;university.degree;no;no;yes;cellular;aug;mon;119;2;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+35;management;married;university.degree;unknown;yes;no;cellular;aug;mon;372;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+38;technician;married;professional.course;no;no;no;cellular;aug;mon;606;3;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+32;admin.;single;university.degree;no;no;no;cellular;aug;mon;200;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+49;technician;married;professional.course;no;no;no;cellular;aug;mon;96;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+31;admin.;married;university.degree;no;yes;no;cellular;aug;mon;244;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+30;technician;single;high.school;no;no;no;cellular;aug;mon;134;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+31;technician;married;professional.course;unknown;no;no;cellular;aug;mon;107;2;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+39;technician;single;professional.course;unknown;no;no;cellular;aug;mon;198;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+48;unknown;married;basic.9y;no;no;no;cellular;aug;mon;307;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+44;services;married;professional.course;no;no;yes;cellular;aug;mon;93;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+44;services;married;professional.course;no;no;no;cellular;aug;mon;90;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+34;technician;single;professional.course;no;yes;yes;telephone;aug;mon;64;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+34;technician;single;professional.course;no;yes;no;cellular;aug;mon;138;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+60;retired;married;basic.6y;no;no;no;cellular;aug;mon;79;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+36;admin.;married;professional.course;no;no;no;cellular;aug;mon;58;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+41;unknown;married;unknown;no;yes;no;cellular;aug;mon;230;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+33;technician;divorced;professional.course;no;no;yes;cellular;aug;mon;68;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+57;retired;married;basic.4y;no;yes;no;telephone;aug;mon;96;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+33;technician;divorced;professional.course;no;yes;no;cellular;aug;mon;413;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+33;technician;divorced;professional.course;no;yes;yes;cellular;aug;mon;679;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+45;blue-collar;married;basic.6y;unknown;no;no;cellular;aug;mon;160;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+49;blue-collar;married;basic.4y;unknown;yes;no;cellular;aug;mon;315;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+50;admin.;married;high.school;no;no;no;cellular;aug;mon;20;3;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+57;retired;married;basic.4y;no;no;no;cellular;aug;mon;177;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+46;blue-collar;married;basic.9y;no;no;no;cellular;aug;mon;488;2;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+46;technician;single;professional.course;unknown;no;no;cellular;aug;mon;824;2;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+47;technician;married;professional.course;no;yes;no;cellular;aug;mon;506;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+57;admin.;married;high.school;unknown;yes;no;cellular;aug;mon;166;2;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+35;technician;single;professional.course;no;no;yes;cellular;aug;mon;50;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+34;admin.;single;university.degree;no;yes;no;cellular;aug;mon;432;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+45;technician;married;university.degree;unknown;yes;no;cellular;aug;mon;372;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+33;student;divorced;professional.course;no;no;no;cellular;aug;mon;1110;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;yes
+35;technician;single;professional.course;no;yes;no;cellular;aug;mon;184;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+35;technician;single;professional.course;no;no;no;cellular;aug;mon;148;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+41;unknown;married;unknown;no;yes;no;cellular;aug;mon;166;2;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+50;unknown;married;unknown;unknown;yes;no;cellular;aug;mon;90;2;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+52;blue-collar;married;basic.9y;no;yes;no;cellular;aug;mon;551;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+46;blue-collar;married;high.school;no;no;no;cellular;aug;mon;422;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+48;blue-collar;married;basic.4y;unknown;yes;no;cellular;aug;mon;69;2;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+46;blue-collar;married;basic.9y;no;no;no;cellular;aug;mon;68;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+46;blue-collar;married;basic.9y;no;no;no;cellular;aug;mon;122;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+37;technician;single;professional.course;no;yes;no;cellular;aug;mon;44;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+41;technician;married;professional.course;no;no;no;cellular;aug;mon;157;3;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+41;unknown;married;unknown;no;yes;yes;cellular;aug;mon;653;2;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+37;management;married;university.degree;unknown;no;no;cellular;aug;mon;149;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+37;management;married;university.degree;unknown;no;no;cellular;aug;mon;161;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+41;technician;married;university.degree;no;yes;yes;cellular;aug;mon;58;2;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+54;technician;divorced;high.school;no;no;no;cellular;aug;mon;86;4;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+57;admin.;married;high.school;no;yes;no;cellular;aug;mon;91;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+57;admin.;married;high.school;no;yes;no;cellular;aug;mon;108;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+39;technician;single;university.degree;no;yes;no;cellular;aug;mon;112;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+29;technician;single;professional.course;no;no;no;cellular;aug;mon;165;2;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+39;housemaid;married;basic.4y;no;no;yes;cellular;aug;mon;357;2;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+36;technician;divorced;professional.course;no;yes;no;cellular;aug;mon;282;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+49;admin.;married;high.school;no;no;no;cellular;aug;mon;144;3;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+41;unknown;married;unknown;no;no;no;cellular;aug;mon;258;2;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+44;services;married;professional.course;no;no;no;cellular;aug;mon;341;2;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+53;blue-collar;married;unknown;no;no;no;cellular;aug;mon;115;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+56;admin.;married;university.degree;no;yes;no;cellular;aug;mon;178;2;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+34;admin.;single;university.degree;no;yes;no;cellular;aug;mon;298;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+39;admin.;married;university.degree;no;no;no;cellular;aug;mon;154;2;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+35;management;single;university.degree;no;yes;no;cellular;aug;mon;151;2;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+50;blue-collar;married;basic.9y;no;yes;no;cellular;aug;mon;333;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+54;blue-collar;married;unknown;no;no;no;cellular;aug;mon;143;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+44;blue-collar;married;basic.9y;no;no;no;cellular;aug;mon;135;3;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+41;technician;divorced;professional.course;no;yes;no;cellular;aug;mon;182;3;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+50;blue-collar;married;basic.9y;unknown;yes;no;cellular;aug;mon;36;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+58;housemaid;married;basic.4y;unknown;yes;no;cellular;aug;mon;328;2;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+44;blue-collar;married;basic.9y;no;yes;no;cellular;aug;mon;378;2;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+58;retired;married;professional.course;unknown;no;no;cellular;aug;mon;244;2;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+49;admin.;divorced;professional.course;no;yes;yes;cellular;aug;mon;230;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+57;admin.;married;high.school;no;no;no;cellular;aug;mon;958;2;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+30;unknown;married;university.degree;no;yes;no;cellular;aug;mon;171;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+44;admin.;divorced;high.school;no;yes;no;cellular;aug;mon;99;2;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+30;unknown;married;university.degree;no;yes;no;cellular;aug;mon;190;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+33;technician;divorced;professional.course;no;yes;no;cellular;aug;mon;170;2;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+45;technician;divorced;high.school;no;yes;yes;cellular;aug;mon;482;3;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+32;technician;married;university.degree;no;yes;no;cellular;aug;mon;130;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+32;technician;married;university.degree;no;yes;no;cellular;aug;mon;151;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+58;blue-collar;married;basic.9y;no;yes;no;cellular;aug;mon;190;3;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+47;services;married;high.school;no;yes;no;cellular;aug;mon;140;2;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+37;management;married;university.degree;unknown;no;no;cellular;aug;mon;110;2;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+45;technician;married;high.school;no;yes;no;cellular;aug;mon;84;1;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+54;technician;married;professional.course;unknown;no;yes;cellular;aug;mon;281;3;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+50;admin.;married;high.school;no;no;no;cellular;aug;mon;67;6;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+50;blue-collar;married;basic.4y;unknown;yes;no;cellular;aug;mon;91;2;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+60;retired;married;university.degree;unknown;yes;no;cellular;aug;mon;368;2;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+60;retired;married;university.degree;unknown;yes;yes;cellular;aug;mon;146;3;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+40;technician;married;professional.course;unknown;yes;no;cellular;aug;mon;198;3;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+59;retired;married;high.school;no;yes;no;cellular;aug;mon;370;2;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+35;admin.;married;university.degree;no;no;no;cellular;aug;mon;337;4;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+34;admin.;single;university.degree;no;no;yes;cellular;aug;mon;230;3;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+33;technician;divorced;professional.course;no;no;no;cellular;aug;mon;686;2;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+54;technician;married;professional.course;unknown;yes;no;cellular;aug;mon;365;2;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+48;blue-collar;married;basic.9y;no;yes;no;cellular;aug;mon;597;2;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+48;housemaid;married;basic.4y;unknown;yes;no;cellular;aug;mon;441;2;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+30;admin.;single;university.degree;no;yes;no;cellular;aug;mon;857;2;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+30;admin.;married;university.degree;no;no;yes;cellular;aug;mon;753;2;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+41;technician;married;university.degree;no;yes;no;cellular;aug;mon;101;2;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+44;services;married;professional.course;no;no;no;cellular;aug;mon;186;2;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+58;retired;married;professional.course;unknown;yes;no;cellular;aug;mon;410;4;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+60;retired;married;university.degree;unknown;no;no;cellular;aug;mon;430;2;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+48;housemaid;married;basic.4y;unknown;yes;no;cellular;aug;mon;251;3;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+59;retired;married;basic.4y;no;no;no;cellular;aug;mon;357;3;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+45;unemployed;married;university.degree;no;yes;no;cellular;aug;mon;211;3;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+54;technician;married;university.degree;no;yes;no;telephone;aug;mon;652;2;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;yes
+34;admin.;single;university.degree;no;no;no;cellular;aug;mon;177;2;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+30;unknown;married;university.degree;no;yes;no;cellular;aug;mon;183;2;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+52;management;married;university.degree;no;no;no;cellular;aug;mon;1488;2;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;yes
+40;entrepreneur;married;university.degree;no;yes;no;cellular;aug;mon;145;2;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+45;services;married;high.school;unknown;yes;no;cellular;aug;mon;413;2;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+50;technician;divorced;university.degree;unknown;no;no;cellular;aug;mon;114;2;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+47;technician;married;professional.course;no;no;no;cellular;aug;mon;428;2;999;0;nonexistent;1.4;93.444;-36.1;4.97;5228.1;no
+32;technician;married;professional.course;no;yes;no;cellular;aug;tue;133;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+30;technician;married;university.degree;no;yes;no;cellular;aug;tue;142;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+38;blue-collar;single;high.school;no;no;no;cellular;aug;tue;250;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+50;admin.;married;basic.9y;no;no;no;cellular;aug;tue;125;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+30;technician;single;high.school;no;yes;no;cellular;aug;tue;276;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+56;retired;married;university.degree;no;yes;no;cellular;aug;tue;377;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+47;entrepreneur;married;university.degree;no;no;no;cellular;aug;tue;487;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;yes
+47;entrepreneur;married;university.degree;no;yes;no;cellular;aug;tue;641;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;yes
+52;technician;divorced;professional.course;no;yes;no;cellular;aug;tue;126;4;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+50;admin.;married;high.school;no;no;yes;cellular;aug;tue;519;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+53;blue-collar;married;basic.4y;no;no;no;cellular;aug;tue;76;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+43;admin.;single;university.degree;no;yes;no;cellular;aug;tue;837;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;yes
+57;retired;married;basic.6y;no;no;no;cellular;aug;tue;222;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+35;unknown;married;basic.9y;no;no;no;cellular;aug;tue;117;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+49;services;married;high.school;no;no;no;cellular;aug;tue;91;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+58;admin.;married;high.school;no;yes;yes;cellular;aug;tue;314;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+58;admin.;married;high.school;no;yes;no;cellular;aug;tue;553;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;yes
+52;admin.;married;unknown;no;yes;no;cellular;aug;tue;976;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;yes
+38;technician;single;professional.course;no;yes;no;cellular;aug;tue;114;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+52;technician;divorced;university.degree;no;no;no;cellular;aug;tue;122;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+52;technician;divorced;university.degree;no;no;yes;cellular;aug;tue;86;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+52;admin.;married;unknown;no;no;no;cellular;aug;tue;91;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+35;admin.;married;university.degree;no;yes;no;cellular;aug;tue;36;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+52;admin.;married;unknown;no;no;no;cellular;aug;tue;422;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+52;technician;divorced;university.degree;no;no;yes;cellular;aug;tue;794;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;yes
+47;admin.;married;high.school;no;yes;no;cellular;aug;tue;145;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+48;technician;divorced;professional.course;no;no;no;cellular;aug;tue;139;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+53;blue-collar;married;basic.9y;no;yes;no;cellular;aug;tue;241;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+48;technician;divorced;professional.course;no;no;no;cellular;aug;tue;69;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+52;technician;divorced;professional.course;no;no;no;cellular;aug;tue;58;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+47;services;married;high.school;no;yes;no;cellular;aug;tue;836;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;yes
+41;technician;married;professional.course;no;no;no;cellular;aug;tue;269;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+29;admin.;single;university.degree;no;yes;no;cellular;aug;tue;67;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+45;housemaid;married;basic.4y;unknown;yes;no;cellular;aug;tue;195;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+45;housemaid;married;basic.4y;unknown;no;no;cellular;aug;tue;137;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+45;housemaid;married;basic.4y;unknown;no;no;cellular;aug;tue;148;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+35;admin.;single;university.degree;no;yes;no;cellular;aug;tue;448;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+49;technician;married;professional.course;unknown;no;no;cellular;aug;tue;162;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+48;blue-collar;married;basic.9y;no;yes;no;cellular;aug;tue;335;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+29;admin.;single;university.degree;no;no;no;cellular;aug;tue;140;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+58;blue-collar;married;basic.9y;no;no;no;cellular;aug;tue;171;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+37;admin.;married;university.degree;no;yes;no;cellular;aug;tue;356;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+42;admin.;married;university.degree;no;yes;no;cellular;aug;tue;130;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+51;admin.;married;university.degree;unknown;yes;no;cellular;aug;tue;545;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+48;management;married;high.school;unknown;no;no;cellular;aug;tue;135;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+39;technician;divorced;professional.course;no;yes;no;cellular;aug;tue;1134;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;yes
+57;retired;married;professional.course;unknown;yes;no;cellular;aug;tue;155;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+42;technician;married;high.school;no;yes;no;cellular;aug;tue;188;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+44;technician;single;professional.course;no;yes;no;cellular;aug;tue;164;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+42;technician;married;high.school;no;yes;no;cellular;aug;tue;409;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+42;technician;married;professional.course;no;yes;no;cellular;aug;tue;607;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;yes
+39;admin.;married;university.degree;no;yes;yes;cellular;aug;tue;328;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+37;admin.;married;university.degree;no;yes;no;cellular;aug;tue;131;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+47;management;married;university.degree;no;no;no;cellular;aug;tue;88;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+47;management;married;university.degree;no;no;no;cellular;aug;tue;175;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+41;technician;married;university.degree;no;yes;yes;cellular;aug;tue;124;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+34;admin.;married;university.degree;unknown;yes;no;cellular;aug;tue;148;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+34;admin.;married;university.degree;unknown;no;no;cellular;aug;tue;146;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+34;admin.;married;university.degree;unknown;yes;no;cellular;aug;tue;97;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+51;technician;divorced;high.school;unknown;no;no;cellular;aug;tue;162;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+41;technician;single;professional.course;no;yes;no;cellular;aug;tue;54;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+41;technician;single;professional.course;no;no;no;cellular;aug;tue;109;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+40;technician;married;professional.course;no;yes;no;cellular;aug;tue;114;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+43;management;married;university.degree;unknown;yes;no;cellular;aug;tue;268;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+40;technician;married;professional.course;no;yes;no;cellular;aug;tue;115;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+40;technician;married;professional.course;no;no;no;cellular;aug;tue;348;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+53;blue-collar;married;basic.4y;unknown;yes;no;telephone;aug;tue;1186;4;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;yes
+58;services;married;unknown;unknown;yes;no;cellular;aug;tue;197;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+45;blue-collar;married;basic.4y;no;yes;no;cellular;aug;tue;198;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+45;blue-collar;married;basic.4y;no;yes;no;cellular;aug;tue;111;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+53;technician;married;professional.course;no;yes;no;cellular;aug;tue;123;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+49;admin.;married;university.degree;no;yes;no;cellular;aug;tue;790;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+52;technician;married;professional.course;no;no;no;cellular;aug;tue;142;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+45;technician;married;professional.course;unknown;no;no;cellular;aug;tue;122;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+59;retired;married;university.degree;no;yes;no;cellular;aug;tue;163;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+34;admin.;single;university.degree;no;yes;no;cellular;aug;tue;174;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+45;technician;married;professional.course;unknown;yes;no;cellular;aug;tue;183;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+48;blue-collar;married;basic.9y;unknown;no;no;cellular;aug;tue;157;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+48;blue-collar;married;basic.9y;unknown;yes;no;cellular;aug;tue;196;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+46;self-employed;married;basic.9y;unknown;yes;no;cellular;aug;tue;159;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+55;admin.;married;professional.course;no;yes;yes;cellular;aug;tue;482;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+46;technician;married;professional.course;no;no;no;cellular;aug;tue;92;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+30;technician;married;professional.course;no;yes;no;cellular;aug;tue;297;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+48;admin.;married;university.degree;unknown;yes;no;cellular;aug;tue;229;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+52;services;divorced;basic.6y;no;yes;no;cellular;aug;tue;138;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+53;technician;married;high.school;no;yes;no;cellular;aug;tue;231;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+53;technician;married;high.school;no;yes;no;cellular;aug;tue;105;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+53;blue-collar;married;basic.4y;no;no;no;cellular;aug;tue;238;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+33;admin.;married;university.degree;no;yes;yes;cellular;aug;tue;178;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+34;technician;divorced;professional.course;no;yes;no;cellular;aug;tue;278;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+40;technician;married;professional.course;no;no;no;cellular;aug;tue;156;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+44;admin.;married;basic.4y;unknown;yes;yes;cellular;aug;tue;286;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+53;blue-collar;married;basic.9y;no;yes;no;cellular;aug;tue;334;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+44;admin.;married;basic.4y;unknown;yes;no;cellular;aug;tue;222;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+30;unknown;married;university.degree;no;yes;no;cellular;aug;tue;95;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+35;unknown;married;basic.9y;no;yes;no;cellular;aug;tue;148;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+59;admin.;married;university.degree;no;yes;no;cellular;aug;tue;177;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+34;technician;divorced;professional.course;no;yes;no;cellular;aug;tue;104;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+32;admin.;single;high.school;no;yes;no;cellular;aug;tue;195;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+56;admin.;married;high.school;unknown;yes;no;cellular;aug;tue;182;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+41;housemaid;married;basic.6y;no;no;no;cellular;aug;tue;56;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+32;technician;single;university.degree;no;no;no;cellular;aug;tue;68;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+32;technician;single;university.degree;no;yes;no;cellular;aug;tue;297;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+44;blue-collar;married;basic.4y;no;yes;no;cellular;aug;tue;720;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;yes
+44;technician;married;university.degree;no;yes;no;cellular;aug;tue;231;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+49;admin.;divorced;university.degree;no;no;no;cellular;aug;tue;126;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+44;blue-collar;married;basic.6y;no;no;no;cellular;aug;tue;67;4;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+33;technician;married;university.degree;no;yes;no;cellular;aug;tue;316;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+49;admin.;married;university.degree;unknown;yes;no;cellular;aug;tue;202;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+33;admin.;married;university.degree;no;no;yes;cellular;aug;tue;149;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+32;technician;married;university.degree;no;yes;no;cellular;aug;tue;168;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+52;services;divorced;basic.6y;no;yes;no;cellular;aug;tue;683;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+31;technician;single;professional.course;no;yes;no;cellular;aug;tue;176;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+50;blue-collar;married;basic.4y;unknown;yes;no;cellular;aug;tue;66;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+31;technician;single;professional.course;no;yes;no;cellular;aug;tue;935;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;yes
+45;technician;married;professional.course;unknown;no;no;cellular;aug;tue;320;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+43;technician;single;professional.course;no;no;no;cellular;aug;tue;165;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+49;services;married;high.school;unknown;no;no;cellular;aug;tue;241;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+35;admin.;single;university.degree;no;no;no;cellular;aug;tue;199;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+52;technician;married;professional.course;unknown;yes;no;cellular;aug;tue;622;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+49;services;married;high.school;no;yes;no;cellular;aug;tue;158;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+43;admin.;married;university.degree;no;yes;no;cellular;aug;tue;531;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;yes
+42;technician;divorced;university.degree;no;yes;no;cellular;aug;tue;141;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+49;admin.;married;university.degree;no;no;yes;cellular;aug;tue;414;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+38;admin.;divorced;university.degree;no;yes;no;cellular;aug;tue;339;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+42;admin.;married;university.degree;no;no;no;cellular;aug;tue;68;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+46;admin.;married;university.degree;unknown;no;no;cellular;aug;tue;123;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+41;admin.;married;university.degree;no;no;no;cellular;aug;tue;766;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;yes
+41;technician;married;university.degree;no;yes;no;cellular;aug;tue;27;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+37;admin.;married;university.degree;no;no;no;cellular;aug;tue;85;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+33;unknown;married;unknown;unknown;yes;no;cellular;aug;tue;229;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+36;admin.;divorced;university.degree;no;yes;no;cellular;aug;tue;112;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+46;blue-collar;married;basic.9y;no;yes;yes;cellular;aug;tue;704;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+37;management;married;university.degree;no;no;no;cellular;aug;tue;104;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+37;management;married;university.degree;no;yes;no;cellular;aug;tue;409;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+53;blue-collar;married;basic.4y;unknown;yes;no;cellular;aug;tue;106;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+42;admin.;married;university.degree;no;yes;no;cellular;aug;tue;1311;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;yes
+37;admin.;single;professional.course;no;no;no;cellular;aug;tue;223;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+46;technician;married;professional.course;no;no;yes;cellular;aug;tue;166;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+58;technician;married;professional.course;unknown;no;no;cellular;aug;tue;287;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+35;technician;single;professional.course;no;yes;no;cellular;aug;tue;109;4;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+32;housemaid;married;professional.course;no;yes;yes;cellular;aug;tue;291;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+39;unemployed;divorced;university.degree;unknown;no;no;cellular;aug;tue;307;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+40;technician;married;professional.course;no;no;no;cellular;aug;tue;451;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+32;unemployed;married;university.degree;no;yes;no;cellular;aug;tue;33;4;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+45;admin.;married;university.degree;unknown;no;no;cellular;aug;tue;239;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+57;housemaid;married;unknown;no;no;no;cellular;aug;tue;318;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+42;admin.;married;university.degree;no;no;no;cellular;aug;tue;101;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+52;admin.;married;high.school;no;no;no;cellular;aug;tue;80;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+44;technician;divorced;university.degree;unknown;no;no;cellular;aug;tue;117;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+49;blue-collar;married;high.school;no;no;no;cellular;aug;tue;193;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+36;self-employed;married;basic.9y;no;no;no;cellular;aug;tue;153;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+51;blue-collar;married;basic.4y;no;no;no;cellular;aug;tue;132;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+49;services;married;high.school;no;no;no;cellular;aug;tue;203;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+49;services;married;high.school;no;no;no;cellular;aug;tue;344;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+49;services;married;high.school;no;yes;no;cellular;aug;tue;197;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+50;self-employed;married;basic.4y;unknown;no;no;telephone;aug;tue;112;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+35;technician;divorced;professional.course;no;no;no;cellular;aug;tue;101;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+43;admin.;married;university.degree;unknown;yes;no;cellular;aug;tue;1332;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;yes
+54;technician;divorced;university.degree;no;no;no;cellular;aug;tue;155;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+40;admin.;married;university.degree;no;no;no;cellular;aug;tue;618;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;yes
+30;admin.;single;university.degree;no;no;no;cellular;aug;tue;1110;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+40;admin.;married;university.degree;no;no;yes;cellular;aug;tue;445;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+45;technician;married;professional.course;unknown;yes;yes;cellular;aug;tue;504;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+35;admin.;married;university.degree;no;yes;no;cellular;aug;tue;385;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+52;technician;married;professional.course;no;yes;no;cellular;aug;tue;425;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+38;technician;married;high.school;no;no;no;cellular;aug;tue;134;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+43;entrepreneur;married;professional.course;no;no;no;cellular;aug;tue;56;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+35;technician;married;high.school;no;no;no;cellular;aug;tue;121;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+41;unknown;married;unknown;no;yes;no;cellular;aug;tue;214;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+30;admin.;married;university.degree;no;no;yes;cellular;aug;tue;129;4;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+35;admin.;married;university.degree;no;yes;no;cellular;aug;tue;146;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+37;admin.;divorced;university.degree;no;yes;yes;cellular;aug;tue;211;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+35;technician;single;professional.course;no;no;no;cellular;aug;tue;513;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+45;blue-collar;married;unknown;unknown;no;no;cellular;aug;tue;371;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+32;admin.;single;university.degree;no;yes;no;cellular;aug;tue;419;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;yes
+37;admin.;married;university.degree;no;yes;yes;cellular;aug;tue;210;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+46;housemaid;married;basic.9y;no;yes;no;cellular;aug;tue;459;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+37;management;married;university.degree;no;yes;no;cellular;aug;tue;263;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+35;admin.;single;university.degree;no;no;no;cellular;aug;tue;332;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+34;blue-collar;married;professional.course;no;no;yes;cellular;aug;tue;150;4;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+52;technician;married;professional.course;unknown;no;no;cellular;aug;tue;131;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+34;admin.;married;university.degree;unknown;no;no;cellular;aug;tue;1227;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;yes
+51;admin.;married;university.degree;unknown;yes;no;cellular;aug;tue;507;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+50;admin.;married;university.degree;no;yes;no;cellular;aug;tue;608;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+38;housemaid;married;university.degree;no;yes;no;cellular;aug;tue;295;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+51;admin.;married;high.school;no;no;no;cellular;aug;tue;178;4;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+51;admin.;married;university.degree;unknown;yes;no;cellular;aug;tue;147;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+48;housemaid;married;basic.4y;unknown;yes;yes;cellular;aug;tue;307;4;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+40;technician;married;professional.course;no;yes;no;cellular;aug;tue;109;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+59;blue-collar;married;basic.9y;no;yes;no;cellular;aug;tue;1197;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+48;admin.;married;university.degree;unknown;yes;no;cellular;aug;tue;1208;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;yes
+47;blue-collar;married;basic.6y;unknown;yes;no;cellular;aug;tue;78;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+36;admin.;married;university.degree;no;yes;no;cellular;aug;tue;223;4;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+48;blue-collar;married;professional.course;no;yes;no;cellular;aug;tue;996;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+45;blue-collar;married;basic.4y;no;yes;no;cellular;aug;wed;92;5;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+57;retired;married;high.school;no;no;no;cellular;aug;wed;115;3;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+48;technician;divorced;professional.course;no;yes;no;cellular;aug;wed;78;3;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+44;self-employed;married;professional.course;no;yes;no;telephone;aug;wed;116;5;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+45;admin.;married;university.degree;no;yes;no;cellular;aug;wed;314;5;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+53;admin.;married;university.degree;no;no;no;cellular;aug;wed;384;5;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+33;housemaid;single;university.degree;unknown;yes;no;cellular;aug;wed;46;3;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+46;blue-collar;married;basic.4y;unknown;yes;no;cellular;aug;wed;1357;3;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;yes
+44;admin.;married;basic.4y;unknown;yes;no;cellular;aug;wed;125;2;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+44;admin.;married;university.degree;unknown;yes;yes;cellular;aug;wed;376;2;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+34;technician;single;university.degree;no;yes;yes;cellular;aug;wed;455;3;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;yes
+41;admin.;divorced;university.degree;no;yes;no;cellular;aug;wed;146;4;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+31;technician;single;professional.course;no;no;no;cellular;aug;wed;81;2;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+36;technician;married;high.school;no;yes;no;cellular;aug;wed;205;2;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+46;blue-collar;divorced;professional.course;no;yes;no;cellular;aug;wed;192;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+58;retired;married;university.degree;unknown;yes;yes;cellular;aug;wed;269;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+53;services;married;high.school;no;yes;no;cellular;aug;wed;406;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;yes
+32;technician;single;professional.course;no;no;no;cellular;aug;wed;103;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+58;housemaid;married;basic.4y;no;no;no;cellular;aug;wed;84;3;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+46;blue-collar;married;basic.9y;no;yes;no;cellular;aug;wed;175;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+37;management;married;university.degree;no;no;no;cellular;aug;wed;902;2;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;yes
+46;admin.;married;university.degree;no;no;no;cellular;aug;wed;273;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+31;management;married;university.degree;no;no;yes;cellular;aug;wed;92;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+31;management;married;university.degree;no;no;no;cellular;aug;wed;347;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+38;technician;married;professional.course;no;no;yes;cellular;aug;wed;120;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+45;self-employed;married;basic.9y;no;no;no;cellular;aug;wed;80;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+32;technician;married;professional.course;no;no;no;cellular;aug;wed;153;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+30;admin.;single;university.degree;no;yes;no;cellular;aug;wed;218;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+32;admin.;single;university.degree;unknown;yes;yes;cellular;aug;wed;43;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+32;admin.;single;university.degree;unknown;no;no;cellular;aug;wed;174;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+44;blue-collar;married;unknown;no;yes;no;cellular;aug;wed;140;2;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+47;services;married;high.school;unknown;yes;no;cellular;aug;wed;277;2;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+38;admin.;married;university.degree;no;no;no;cellular;aug;wed;898;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+51;technician;married;high.school;unknown;unknown;unknown;cellular;aug;wed;637;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;yes
+46;admin.;married;high.school;no;unknown;unknown;cellular;aug;wed;251;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+31;technician;single;high.school;no;no;no;cellular;aug;wed;71;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+53;management;married;university.degree;no;yes;no;cellular;aug;wed;115;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+32;admin.;single;university.degree;no;no;no;cellular;aug;wed;142;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+39;technician;single;university.degree;no;yes;no;cellular;aug;wed;224;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+39;technician;single;university.degree;no;no;no;cellular;aug;wed;254;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+45;technician;married;professional.course;unknown;no;no;cellular;aug;wed;128;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+46;blue-collar;married;basic.9y;unknown;no;no;cellular;aug;wed;189;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+31;admin.;married;professional.course;no;yes;no;cellular;aug;wed;90;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+45;blue-collar;married;basic.6y;unknown;yes;no;cellular;aug;wed;134;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+48;services;married;high.school;unknown;yes;yes;cellular;aug;wed;190;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+45;blue-collar;married;basic.6y;unknown;yes;yes;cellular;aug;wed;165;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+30;admin.;single;university.degree;no;yes;no;cellular;aug;wed;89;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+49;housemaid;married;basic.4y;unknown;yes;no;cellular;aug;wed;311;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+42;admin.;divorced;university.degree;no;yes;no;cellular;aug;wed;81;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+49;housemaid;married;basic.4y;unknown;yes;no;cellular;aug;wed;501;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;yes
+52;technician;married;high.school;no;yes;yes;cellular;aug;wed;165;2;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+44;unemployed;married;high.school;unknown;yes;no;cellular;aug;wed;209;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+39;technician;single;university.degree;no;no;no;cellular;aug;wed;50;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+56;blue-collar;married;basic.9y;no;yes;no;cellular;aug;wed;58;3;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+30;admin.;single;university.degree;no;yes;no;cellular;aug;wed;182;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+32;technician;single;professional.course;no;yes;no;cellular;aug;wed;499;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+32;technician;single;professional.course;no;no;no;cellular;aug;wed;720;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;yes
+34;admin.;married;university.degree;no;no;no;cellular;aug;wed;224;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+31;technician;single;high.school;no;yes;yes;cellular;aug;wed;113;2;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+32;technician;single;professional.course;no;yes;yes;cellular;aug;wed;952;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;yes
+31;blue-collar;single;basic.9y;no;no;no;cellular;aug;wed;38;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+51;admin.;married;high.school;no;yes;no;cellular;aug;wed;81;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+33;admin.;single;university.degree;no;yes;yes;cellular;aug;wed;102;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+33;admin.;single;university.degree;no;no;no;cellular;aug;wed;184;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+49;unemployed;married;professional.course;unknown;yes;no;cellular;aug;wed;397;2;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;yes
+46;self-employed;married;basic.9y;unknown;yes;yes;cellular;aug;wed;102;3;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+41;technician;married;high.school;no;yes;no;cellular;aug;wed;159;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+32;technician;single;professional.course;no;yes;no;cellular;aug;wed;117;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+31;admin.;single;university.degree;no;yes;no;cellular;aug;wed;194;2;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+32;technician;single;professional.course;no;yes;no;cellular;aug;wed;281;2;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+37;self-employed;married;university.degree;no;yes;yes;cellular;aug;wed;585;2;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+52;technician;married;professional.course;unknown;no;no;cellular;aug;wed;139;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+52;technician;married;professional.course;unknown;no;no;cellular;aug;wed;244;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+52;technician;married;professional.course;unknown;no;no;cellular;aug;wed;219;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+40;admin.;divorced;university.degree;no;yes;yes;cellular;aug;wed;65;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+40;admin.;divorced;university.degree;no;no;yes;cellular;aug;wed;71;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+55;technician;married;university.degree;no;no;yes;cellular;aug;wed;358;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+55;admin.;married;university.degree;unknown;no;no;cellular;aug;wed;163;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+36;technician;divorced;professional.course;no;yes;yes;cellular;aug;wed;81;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+50;admin.;divorced;high.school;unknown;no;no;cellular;aug;wed;64;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+50;admin.;divorced;high.school;unknown;no;yes;cellular;aug;wed;359;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+32;technician;married;high.school;unknown;no;no;cellular;aug;wed;211;2;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+37;technician;single;high.school;no;yes;no;cellular;aug;wed;133;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+46;blue-collar;married;basic.4y;no;no;no;cellular;aug;wed;131;2;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+50;technician;married;professional.course;no;no;no;cellular;aug;wed;467;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+29;technician;single;university.degree;no;yes;yes;cellular;aug;wed;225;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+41;technician;married;high.school;no;no;no;cellular;aug;wed;91;2;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+37;technician;single;high.school;no;yes;yes;cellular;aug;wed;763;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;yes
+31;technician;married;professional.course;no;yes;yes;cellular;aug;wed;184;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+31;admin.;married;university.degree;no;unknown;unknown;cellular;aug;wed;122;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+33;technician;married;university.degree;no;no;no;cellular;aug;wed;123;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+48;admin.;married;high.school;no;yes;no;cellular;aug;wed;103;2;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+31;management;married;university.degree;no;yes;yes;cellular;aug;wed;649;2;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;yes
+50;admin.;single;university.degree;no;yes;no;cellular;aug;wed;88;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+47;blue-collar;married;basic.6y;unknown;no;no;cellular;aug;wed;89;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+51;technician;married;professional.course;no;no;no;cellular;aug;wed;221;9;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+31;admin.;single;university.degree;no;no;yes;cellular;aug;wed;126;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+31;admin.;single;university.degree;no;yes;no;cellular;aug;wed;166;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+34;technician;single;university.degree;no;no;no;cellular;aug;wed;165;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+42;admin.;married;university.degree;no;yes;yes;cellular;aug;wed;68;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+42;admin.;married;university.degree;no;yes;no;cellular;aug;wed;127;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+53;technician;married;high.school;no;yes;no;cellular;aug;wed;169;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+53;technician;married;high.school;no;yes;no;cellular;aug;wed;78;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+40;admin.;divorced;university.degree;no;yes;no;cellular;aug;wed;302;2;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+50;unemployed;married;high.school;unknown;yes;yes;cellular;aug;wed;400;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+31;admin.;single;university.degree;no;yes;no;cellular;aug;wed;375;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+53;technician;married;high.school;no;yes;no;cellular;aug;wed;329;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+48;blue-collar;married;professional.course;no;yes;no;cellular;aug;wed;119;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+37;technician;single;professional.course;no;no;no;cellular;aug;wed;341;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+38;admin.;single;high.school;no;yes;no;cellular;aug;wed;246;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+38;admin.;single;high.school;no;no;no;cellular;aug;wed;181;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+39;admin.;single;university.degree;no;no;no;cellular;aug;wed;127;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+33;technician;married;high.school;unknown;no;yes;cellular;aug;wed;212;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+31;admin.;married;university.degree;no;yes;no;cellular;aug;wed;547;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;yes
+46;blue-collar;married;basic.9y;no;yes;no;cellular;aug;wed;124;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+59;housemaid;married;basic.4y;unknown;no;no;cellular;aug;wed;148;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+48;unknown;married;unknown;no;yes;no;cellular;aug;wed;174;3;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+31;technician;single;high.school;no;yes;no;cellular;aug;wed;113;2;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+42;admin.;married;university.degree;no;no;no;cellular;aug;wed;68;2;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+31;technician;single;high.school;no;no;no;cellular;aug;wed;232;2;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+57;blue-collar;married;unknown;unknown;yes;no;cellular;aug;wed;376;2;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+35;technician;married;professional.course;no;no;no;cellular;aug;wed;199;5;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+48;admin.;divorced;university.degree;no;yes;no;cellular;aug;wed;179;3;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+42;admin.;married;university.degree;no;no;no;cellular;aug;wed;150;2;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+39;admin.;single;university.degree;no;yes;no;cellular;aug;wed;2191;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+57;retired;married;basic.4y;unknown;no;no;cellular;aug;wed;185;2;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+32;technician;married;professional.course;no;yes;no;cellular;aug;wed;166;2;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+44;technician;married;professional.course;unknown;unknown;unknown;cellular;aug;wed;275;3;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+34;admin.;married;university.degree;unknown;no;no;cellular;aug;wed;388;2;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+53;blue-collar;married;basic.4y;no;no;no;cellular;aug;wed;165;2;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+55;retired;married;basic.4y;unknown;yes;yes;cellular;aug;wed;89;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+59;housemaid;married;basic.4y;unknown;yes;no;cellular;aug;wed;111;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+46;blue-collar;divorced;professional.course;no;yes;no;cellular;aug;wed;254;2;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+50;unemployed;married;high.school;unknown;yes;no;cellular;aug;wed;344;2;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+46;blue-collar;married;basic.9y;no;no;no;cellular;aug;wed;1044;2;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;yes
+33;technician;single;professional.course;no;yes;no;cellular;aug;wed;90;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+33;technician;single;professional.course;no;yes;no;cellular;aug;wed;244;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+33;technician;single;professional.course;no;yes;no;cellular;aug;wed;84;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+33;technician;single;professional.course;no;yes;no;cellular;aug;wed;290;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+33;technician;single;professional.course;no;yes;no;cellular;aug;wed;136;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+51;technician;married;professional.course;unknown;yes;no;cellular;aug;wed;365;2;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+47;blue-collar;married;basic.9y;no;yes;no;cellular;aug;wed;384;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+33;technician;single;professional.course;no;no;no;cellular;aug;wed;732;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+51;admin.;single;university.degree;unknown;yes;no;cellular;aug;wed;168;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+52;technician;divorced;university.degree;no;yes;yes;cellular;aug;wed;100;4;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+47;admin.;married;high.school;unknown;yes;no;cellular;aug;wed;136;2;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+51;admin.;married;high.school;no;no;no;cellular;aug;wed;301;2;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+31;technician;single;university.degree;no;no;no;cellular;aug;wed;118;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+31;technician;single;university.degree;no;unknown;unknown;cellular;aug;wed;184;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+29;technician;single;university.degree;no;yes;yes;cellular;aug;wed;44;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+45;retired;married;basic.9y;no;yes;no;cellular;aug;wed;45;2;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+31;technician;single;university.degree;no;yes;no;cellular;aug;wed;411;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+43;admin.;married;university.degree;unknown;yes;no;cellular;aug;wed;120;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+56;blue-collar;married;basic.4y;no;no;no;cellular;aug;wed;188;2;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+52;technician;single;professional.course;no;yes;no;cellular;aug;wed;72;2;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+49;admin.;divorced;university.degree;no;no;no;cellular;aug;wed;128;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+51;entrepreneur;married;basic.9y;no;no;no;cellular;aug;wed;135;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+51;entrepreneur;married;basic.9y;no;no;no;cellular;aug;wed;90;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+56;retired;married;basic.4y;unknown;yes;no;cellular;aug;wed;102;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+48;admin.;married;professional.course;no;no;no;cellular;aug;wed;265;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+56;retired;married;basic.4y;unknown;yes;no;cellular;aug;wed;198;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+41;admin.;divorced;high.school;no;no;no;cellular;aug;wed;170;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+33;technician;married;university.degree;no;yes;no;cellular;aug;wed;312;2;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+44;blue-collar;married;basic.4y;no;no;no;cellular;aug;wed;438;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+45;retired;married;basic.9y;no;yes;no;cellular;aug;wed;601;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+45;blue-collar;married;basic.4y;unknown;no;no;cellular;aug;wed;83;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+35;admin.;married;university.degree;no;yes;no;cellular;aug;wed;39;6;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+45;blue-collar;married;basic.4y;unknown;no;no;cellular;aug;wed;163;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+45;blue-collar;married;basic.4y;unknown;no;no;cellular;aug;wed;131;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+58;blue-collar;married;basic.4y;no;yes;no;cellular;aug;wed;127;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+37;management;married;university.degree;unknown;no;no;cellular;aug;wed;168;2;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+46;blue-collar;married;high.school;no;no;no;cellular;aug;wed;64;2;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+47;blue-collar;married;basic.6y;unknown;yes;no;cellular;aug;wed;55;2;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+59;technician;married;professional.course;no;no;no;cellular;aug;wed;378;4;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+55;admin.;married;university.degree;unknown;no;yes;cellular;aug;wed;308;2;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+31;admin.;single;university.degree;no;yes;no;cellular;aug;wed;432;2;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+56;retired;married;basic.4y;no;yes;no;cellular;aug;wed;240;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+31;technician;single;professional.course;no;yes;no;telephone;aug;wed;115;3;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+45;technician;married;professional.course;no;no;no;cellular;aug;wed;851;4;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+59;housemaid;married;basic.4y;unknown;no;no;cellular;aug;wed;291;2;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+31;technician;married;university.degree;no;yes;no;cellular;aug;wed;224;2;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+60;blue-collar;married;basic.4y;unknown;yes;no;cellular;aug;wed;165;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+52;blue-collar;married;basic.4y;no;yes;no;cellular;aug;wed;126;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+37;admin.;married;university.degree;no;no;no;cellular;aug;wed;996;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;yes
+34;technician;married;university.degree;no;yes;yes;cellular;aug;wed;83;3;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+51;technician;married;high.school;unknown;no;no;cellular;aug;wed;108;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+36;self-employed;married;basic.4y;unknown;yes;no;cellular;aug;wed;175;4;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+50;admin.;married;university.degree;no;no;no;cellular;aug;wed;536;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+44;technician;divorced;professional.course;no;yes;no;cellular;aug;wed;1552;3;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;yes
+48;blue-collar;married;unknown;no;yes;yes;cellular;aug;wed;742;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;yes
+54;technician;married;professional.course;no;no;no;cellular;aug;wed;171;3;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+48;admin.;married;university.degree;no;yes;no;cellular;aug;wed;203;7;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+41;admin.;single;university.degree;unknown;yes;yes;cellular;aug;wed;132;3;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+42;management;married;high.school;no;no;no;cellular;aug;wed;588;3;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+34;unknown;married;unknown;unknown;no;no;cellular;aug;wed;245;3;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+46;admin.;single;university.degree;no;unknown;unknown;cellular;aug;wed;311;5;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+37;technician;single;professional.course;no;no;yes;cellular;aug;wed;175;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+30;admin.;single;university.degree;no;yes;no;cellular;aug;wed;72;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+47;management;married;university.degree;no;yes;no;cellular;aug;wed;101;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+34;admin.;single;university.degree;unknown;yes;no;cellular;aug;wed;184;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+34;admin.;single;university.degree;unknown;no;no;cellular;aug;wed;147;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+45;admin.;divorced;high.school;no;yes;yes;cellular;aug;wed;192;3;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+36;technician;single;professional.course;no;no;no;cellular;aug;wed;275;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+46;blue-collar;married;basic.4y;no;yes;no;cellular;aug;wed;269;3;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+41;technician;married;high.school;no;no;no;cellular;aug;wed;209;3;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+32;admin.;single;university.degree;no;no;no;cellular;aug;wed;130;3;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+34;admin.;married;professional.course;no;yes;no;cellular;aug;wed;276;3;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+37;management;married;university.degree;no;yes;no;cellular;aug;wed;54;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+33;entrepreneur;married;university.degree;no;no;no;cellular;aug;wed;83;7;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+37;management;married;university.degree;no;yes;no;cellular;aug;wed;160;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+32;admin.;single;university.degree;unknown;yes;no;cellular;aug;wed;459;3;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+37;admin.;married;university.degree;unknown;no;no;cellular;aug;wed;739;1;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;yes
+42;admin.;married;university.degree;no;no;no;cellular;aug;wed;21;5;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+35;admin.;married;university.degree;no;yes;no;cellular;aug;wed;252;5;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+46;management;married;high.school;no;no;no;cellular;aug;wed;322;5;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+43;technician;married;professional.course;unknown;no;no;cellular;aug;wed;54;3;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+58;retired;married;professional.course;no;yes;no;cellular;aug;wed;406;3;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+32;technician;single;university.degree;no;yes;no;cellular;aug;wed;127;3;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+30;admin.;married;university.degree;no;yes;no;cellular;aug;wed;395;4;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+42;admin.;single;university.degree;no;no;no;cellular;aug;wed;286;3;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+57;blue-collar;married;basic.6y;no;no;no;cellular;aug;wed;433;3;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+43;admin.;single;university.degree;no;yes;yes;cellular;aug;wed;57;4;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+59;retired;married;high.school;no;no;no;cellular;aug;wed;292;2;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+48;admin.;married;high.school;unknown;no;no;cellular;aug;wed;562;3;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+34;admin.;divorced;high.school;no;no;no;cellular;aug;wed;176;3;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+53;technician;single;professional.course;no;no;no;cellular;aug;wed;293;2;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+54;retired;married;high.school;no;no;no;cellular;aug;wed;543;4;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+42;technician;married;professional.course;no;yes;no;cellular;aug;wed;685;2;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+33;technician;married;high.school;no;yes;yes;cellular;aug;wed;45;4;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+45;blue-collar;married;basic.9y;no;no;no;cellular;aug;wed;61;3;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+35;self-employed;married;basic.4y;unknown;unknown;unknown;cellular;aug;wed;227;3;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+43;admin.;single;university.degree;no;yes;yes;cellular;aug;wed;79;3;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+37;admin.;married;university.degree;no;no;no;cellular;aug;wed;426;3;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+31;services;married;professional.course;unknown;no;yes;cellular;aug;wed;80;2;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+33;admin.;single;university.degree;no;yes;no;cellular;aug;wed;236;4;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+29;technician;single;university.degree;no;yes;yes;cellular;aug;wed;626;3;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+41;technician;married;high.school;no;yes;yes;cellular;aug;wed;105;6;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+32;admin.;single;university.degree;unknown;yes;no;cellular;aug;wed;275;9;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+49;management;married;university.degree;no;unknown;unknown;cellular;aug;wed;178;4;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+55;admin.;married;university.degree;no;no;no;cellular;aug;wed;54;6;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+32;admin.;single;university.degree;no;no;no;cellular;aug;wed;226;5;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+29;management;married;university.degree;no;no;yes;cellular;aug;wed;181;2;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+47;entrepreneur;married;basic.6y;unknown;no;no;telephone;aug;wed;244;3;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+30;self-employed;single;university.degree;no;yes;yes;cellular;aug;wed;131;3;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+39;technician;married;high.school;no;yes;yes;cellular;aug;wed;132;2;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+47;management;married;university.degree;no;yes;yes;cellular;aug;wed;135;2;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+49;housemaid;married;university.degree;no;yes;no;cellular;aug;wed;210;2;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+31;technician;single;university.degree;no;yes;yes;cellular;aug;wed;107;2;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+52;blue-collar;married;basic.4y;unknown;yes;yes;cellular;aug;wed;1250;4;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;yes
+42;technician;married;professional.course;no;yes;yes;cellular;aug;wed;40;2;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;no
+43;admin.;single;university.degree;no;no;yes;cellular;aug;wed;1471;7;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;yes
+46;management;married;high.school;no;yes;yes;cellular;aug;wed;1456;3;999;0;nonexistent;1.4;93.444;-36.1;4.967;5228.1;yes
+35;technician;married;professional.course;no;yes;yes;cellular;aug;thu;122;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+42;technician;married;professional.course;no;yes;no;cellular;aug;thu;108;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+45;technician;divorced;professional.course;no;no;no;cellular;aug;thu;110;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+45;unemployed;married;high.school;no;no;no;cellular;aug;thu;186;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+43;admin.;married;university.degree;no;yes;yes;cellular;aug;thu;297;7;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+48;technician;married;high.school;no;no;no;cellular;aug;thu;157;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+41;technician;married;unknown;unknown;yes;yes;cellular;aug;thu;93;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+37;technician;married;high.school;unknown;no;no;cellular;aug;thu;91;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+30;technician;single;university.degree;no;yes;yes;cellular;aug;thu;1288;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;yes
+36;admin.;married;university.degree;no;no;no;cellular;aug;thu;187;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+33;admin.;married;university.degree;unknown;yes;no;cellular;aug;thu;59;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+44;technician;divorced;professional.course;no;yes;no;cellular;aug;thu;420;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+47;technician;married;professional.course;no;yes;no;cellular;aug;thu;117;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+47;blue-collar;married;basic.4y;no;no;no;cellular;aug;thu;82;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+39;technician;single;professional.course;no;no;no;cellular;aug;thu;122;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+39;technician;single;professional.course;no;yes;no;cellular;aug;thu;91;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+32;technician;single;university.degree;no;no;no;cellular;aug;thu;64;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+32;technician;married;university.degree;no;yes;no;cellular;aug;thu;67;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+47;blue-collar;married;basic.4y;no;yes;no;cellular;aug;thu;267;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+32;technician;married;university.degree;no;yes;no;cellular;aug;thu;74;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+32;technician;married;university.degree;no;no;yes;cellular;aug;thu;131;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+32;technician;married;university.degree;no;yes;no;cellular;aug;thu;318;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+30;technician;single;university.degree;unknown;yes;no;cellular;aug;thu;78;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+32;technician;married;university.degree;no;yes;no;cellular;aug;thu;402;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+30;technician;single;university.degree;unknown;yes;no;cellular;aug;thu;133;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+30;technician;single;university.degree;unknown;yes;no;cellular;aug;thu;123;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+30;technician;single;university.degree;unknown;no;no;cellular;aug;thu;132;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+32;admin.;single;university.degree;no;yes;yes;cellular;aug;thu;51;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+30;technician;married;high.school;no;no;no;cellular;aug;thu;51;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+39;technician;single;university.degree;no;no;no;cellular;aug;thu;163;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+30;technician;single;university.degree;unknown;no;no;cellular;aug;thu;666;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+38;admin.;married;university.degree;no;no;no;cellular;aug;thu;395;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;yes
+38;admin.;married;university.degree;no;no;no;cellular;aug;thu;326;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+39;technician;single;university.degree;no;yes;no;cellular;aug;thu;292;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+48;admin.;married;high.school;no;no;no;cellular;aug;thu;663;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;yes
+51;housemaid;married;basic.4y;unknown;no;yes;cellular;aug;thu;126;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+34;student;single;university.degree;no;no;no;cellular;aug;thu;387;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+29;admin.;married;university.degree;no;no;no;cellular;aug;thu;108;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+56;blue-collar;married;basic.4y;unknown;no;no;cellular;aug;thu;135;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+39;technician;single;professional.course;no;yes;no;cellular;aug;thu;142;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+48;blue-collar;married;basic.4y;unknown;yes;no;cellular;aug;thu;85;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+30;admin.;married;university.degree;no;no;no;cellular;aug;thu;287;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+44;blue-collar;married;basic.9y;no;no;no;cellular;aug;thu;1056;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;yes
+46;blue-collar;married;basic.9y;unknown;yes;no;cellular;aug;thu;48;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+39;technician;married;professional.course;no;yes;no;cellular;aug;thu;253;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+38;services;single;high.school;no;yes;no;cellular;aug;thu;228;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+46;blue-collar;married;basic.9y;unknown;no;no;cellular;aug;thu;124;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+30;student;single;university.degree;no;yes;yes;cellular;aug;thu;358;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+46;self-employed;married;basic.4y;no;no;yes;cellular;aug;thu;239;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+48;blue-collar;married;basic.4y;unknown;yes;no;cellular;aug;thu;84;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+48;admin.;married;unknown;no;no;no;cellular;aug;thu;262;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+48;blue-collar;married;basic.4y;unknown;no;yes;cellular;aug;thu;224;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+48;blue-collar;married;basic.4y;unknown;no;yes;cellular;aug;thu;274;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+36;technician;married;university.degree;no;yes;yes;cellular;aug;thu;22;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+54;blue-collar;married;basic.4y;unknown;yes;no;telephone;aug;thu;309;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+46;technician;single;professional.course;no;no;no;cellular;aug;thu;128;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+36;technician;married;university.degree;no;yes;no;cellular;aug;thu;131;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+35;technician;single;university.degree;no;yes;no;cellular;aug;thu;159;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+35;technician;single;university.degree;no;yes;no;cellular;aug;thu;111;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+31;self-employed;married;basic.4y;unknown;yes;no;cellular;aug;thu;63;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+35;technician;single;university.degree;no;yes;yes;cellular;aug;thu;30;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+31;admin.;single;university.degree;no;yes;yes;cellular;aug;thu;1462;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+35;technician;single;university.degree;no;yes;yes;cellular;aug;thu;205;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+35;technician;single;university.degree;no;no;no;cellular;aug;thu;165;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+52;blue-collar;married;basic.9y;no;yes;no;cellular;aug;thu;152;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+29;technician;single;high.school;no;no;no;cellular;aug;thu;225;4;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+32;technician;married;university.degree;no;yes;no;cellular;aug;thu;228;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+44;admin.;married;university.degree;unknown;yes;no;cellular;aug;thu;36;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+29;technician;single;professional.course;no;yes;no;cellular;aug;thu;199;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+35;technician;married;professional.course;no;no;no;cellular;aug;thu;154;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+44;admin.;married;university.degree;unknown;yes;yes;cellular;aug;thu;163;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+41;admin.;single;university.degree;unknown;yes;no;cellular;aug;thu;566;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;yes
+45;blue-collar;married;professional.course;no;yes;no;cellular;aug;thu;105;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+33;admin.;married;university.degree;no;yes;yes;cellular;aug;thu;1834;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+45;blue-collar;married;professional.course;no;no;no;cellular;aug;thu;398;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+49;housemaid;married;university.degree;no;yes;yes;cellular;aug;thu;131;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+33;admin.;married;university.degree;no;no;no;cellular;aug;thu;148;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+56;retired;married;high.school;unknown;yes;no;cellular;aug;thu;674;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;yes
+43;admin.;single;university.degree;no;no;yes;cellular;aug;thu;306;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+33;admin.;married;university.degree;no;no;yes;cellular;aug;thu;196;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+32;admin.;single;university.degree;no;yes;yes;cellular;aug;thu;1327;5;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;yes
+31;admin.;divorced;university.degree;no;yes;no;cellular;aug;thu;46;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+38;services;single;high.school;no;yes;no;cellular;aug;thu;235;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+31;admin.;divorced;university.degree;no;yes;no;cellular;aug;thu;177;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+31;admin.;divorced;university.degree;no;no;no;cellular;aug;thu;359;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+59;retired;married;professional.course;no;no;no;cellular;aug;thu;71;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+58;retired;married;professional.course;no;yes;yes;cellular;aug;thu;173;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+34;technician;divorced;university.degree;no;yes;yes;cellular;aug;thu;526;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;yes
+33;technician;married;high.school;no;no;yes;cellular;aug;thu;401;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;yes
+48;blue-collar;married;basic.9y;unknown;yes;no;cellular;aug;thu;122;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+41;technician;divorced;university.degree;no;no;no;cellular;aug;thu;140;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+41;technician;divorced;university.degree;no;yes;no;cellular;aug;thu;95;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+41;technician;divorced;university.degree;no;no;no;cellular;aug;thu;86;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+40;housemaid;divorced;basic.9y;no;yes;no;cellular;aug;thu;144;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+31;admin.;single;university.degree;unknown;no;yes;cellular;aug;thu;116;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+31;admin.;single;university.degree;unknown;yes;no;cellular;aug;thu;67;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+35;technician;single;university.degree;no;no;no;cellular;aug;thu;92;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+52;management;married;university.degree;unknown;yes;yes;cellular;aug;thu;118;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+32;technician;married;university.degree;no;no;no;cellular;aug;thu;155;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+32;technician;married;university.degree;no;no;no;cellular;aug;thu;137;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+42;admin.;divorced;university.degree;no;yes;no;cellular;aug;thu;85;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+32;technician;married;university.degree;no;no;no;cellular;aug;thu;251;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+48;services;married;basic.4y;unknown;no;no;cellular;aug;thu;88;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+48;services;married;basic.4y;unknown;yes;no;cellular;aug;thu;137;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+39;admin.;single;high.school;no;yes;no;cellular;aug;thu;73;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+39;admin.;single;high.school;no;no;yes;cellular;aug;thu;92;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+39;admin.;single;high.school;no;unknown;unknown;cellular;aug;thu;125;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+39;admin.;single;high.school;no;no;no;cellular;aug;thu;257;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+55;blue-collar;married;basic.4y;no;yes;no;cellular;aug;thu;100;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+49;admin.;married;basic.9y;unknown;no;yes;cellular;aug;thu;86;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+49;management;married;university.degree;no;yes;no;cellular;aug;thu;87;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+35;technician;single;professional.course;no;yes;no;cellular;aug;thu;493;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+56;admin.;married;basic.6y;unknown;no;no;cellular;aug;thu;102;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+49;admin.;married;high.school;unknown;yes;no;cellular;aug;thu;82;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+44;admin.;divorced;university.degree;no;yes;no;cellular;aug;thu;169;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+50;services;married;basic.6y;no;yes;no;cellular;aug;thu;181;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+53;blue-collar;married;basic.9y;unknown;yes;yes;cellular;aug;thu;64;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+47;admin.;single;university.degree;no;yes;no;cellular;aug;thu;156;4;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+30;blue-collar;single;high.school;no;yes;no;cellular;aug;thu;296;7;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+31;admin.;married;high.school;no;no;no;cellular;aug;thu;57;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+33;technician;single;professional.course;no;no;no;cellular;aug;thu;14;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+46;technician;single;university.degree;no;no;no;cellular;aug;thu;185;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+41;technician;married;professional.course;no;yes;no;cellular;aug;thu;306;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+29;admin.;single;high.school;no;yes;no;cellular;aug;thu;61;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+41;unemployed;divorced;university.degree;unknown;yes;no;cellular;aug;thu;122;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+29;admin.;single;high.school;no;yes;yes;cellular;aug;thu;150;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+41;unemployed;divorced;university.degree;unknown;yes;no;cellular;aug;thu;229;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+30;technician;single;university.degree;unknown;yes;no;cellular;aug;thu;103;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+36;admin.;married;university.degree;unknown;yes;no;cellular;aug;thu;94;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+50;blue-collar;married;basic.9y;unknown;no;no;cellular;aug;thu;203;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+36;admin.;married;university.degree;unknown;no;no;cellular;aug;thu;90;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+36;admin.;married;university.degree;unknown;no;no;cellular;aug;thu;111;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+48;blue-collar;married;basic.9y;unknown;no;no;cellular;aug;thu;106;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+45;self-employed;married;basic.4y;no;no;no;cellular;aug;thu;64;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+37;admin.;married;university.degree;unknown;no;no;cellular;aug;thu;105;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+37;admin.;married;university.degree;unknown;yes;no;cellular;aug;thu;244;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+59;retired;married;high.school;no;unknown;unknown;telephone;aug;thu;204;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+36;technician;divorced;university.degree;no;yes;no;cellular;aug;thu;197;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+46;technician;single;university.degree;no;no;no;cellular;aug;thu;119;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+50;admin.;married;university.degree;no;no;no;cellular;aug;thu;88;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+38;housemaid;married;basic.4y;no;no;no;cellular;aug;thu;231;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+34;technician;married;high.school;no;yes;no;cellular;aug;thu;112;5;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+39;admin.;single;high.school;no;no;yes;cellular;aug;thu;216;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+56;retired;married;high.school;unknown;yes;no;cellular;aug;thu;252;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+33;admin.;married;university.degree;unknown;yes;yes;cellular;aug;thu;259;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+31;services;married;professional.course;unknown;yes;no;cellular;aug;thu;133;5;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+56;blue-collar;married;basic.9y;no;yes;no;cellular;aug;thu;89;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+53;blue-collar;married;basic.9y;unknown;yes;no;cellular;aug;thu;504;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+45;blue-collar;married;basic.9y;no;yes;no;cellular;aug;thu;84;5;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+44;admin.;married;university.degree;no;no;no;cellular;aug;thu;84;10;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+48;services;married;basic.4y;unknown;no;yes;cellular;aug;thu;187;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+45;self-employed;married;basic.4y;no;yes;yes;cellular;aug;thu;266;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+31;admin.;married;high.school;no;no;no;cellular;aug;thu;155;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+29;services;single;professional.course;no;yes;yes;cellular;aug;thu;99;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+29;technician;single;high.school;no;yes;no;cellular;aug;thu;643;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+48;technician;married;professional.course;no;yes;no;cellular;aug;thu;107;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+39;admin.;married;university.degree;no;yes;no;cellular;aug;thu;90;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+50;technician;married;professional.course;no;yes;no;cellular;aug;thu;122;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+38;admin.;married;university.degree;no;no;no;cellular;aug;thu;89;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+42;management;married;university.degree;unknown;yes;no;cellular;aug;thu;109;5;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+29;admin.;single;university.degree;no;yes;no;cellular;aug;thu;228;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+38;admin.;married;university.degree;no;no;no;cellular;aug;thu;30;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+35;management;married;university.degree;no;yes;no;cellular;aug;thu;76;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+39;management;married;university.degree;no;no;no;cellular;aug;thu;1321;6;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;yes
+45;self-employed;married;basic.4y;no;yes;yes;cellular;aug;thu;797;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;yes
+50;admin.;married;university.degree;no;no;no;cellular;aug;thu;407;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+47;management;married;high.school;no;no;no;cellular;aug;thu;276;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+33;admin.;married;university.degree;no;yes;no;cellular;aug;thu;59;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+33;admin.;married;university.degree;no;no;no;cellular;aug;thu;168;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+50;services;married;unknown;no;yes;no;cellular;aug;thu;90;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+45;admin.;divorced;university.degree;no;no;yes;cellular;aug;thu;205;4;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+39;admin.;married;university.degree;no;no;no;cellular;aug;thu;436;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+56;technician;married;professional.course;unknown;no;yes;cellular;aug;thu;190;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+56;blue-collar;married;basic.4y;unknown;no;yes;cellular;aug;thu;360;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+54;admin.;single;university.degree;unknown;no;no;cellular;aug;thu;218;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+51;blue-collar;married;basic.4y;unknown;yes;yes;cellular;aug;thu;174;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+45;entrepreneur;married;university.degree;no;no;no;cellular;aug;thu;254;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+46;admin.;married;basic.9y;no;no;no;cellular;aug;thu;73;6;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+58;admin.;married;high.school;no;yes;no;cellular;aug;thu;107;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+58;admin.;married;high.school;no;no;no;cellular;aug;thu;214;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+34;management;married;university.degree;no;no;yes;cellular;aug;thu;82;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+45;self-employed;married;basic.4y;no;no;no;cellular;aug;thu;65;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+30;admin.;married;university.degree;no;no;no;cellular;aug;thu;194;5;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+46;blue-collar;married;basic.9y;no;no;no;cellular;aug;thu;67;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+48;services;married;basic.4y;unknown;no;no;cellular;aug;thu;118;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+44;unemployed;married;professional.course;unknown;no;no;cellular;aug;thu;105;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+50;technician;married;professional.course;no;no;no;cellular;aug;thu;139;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+37;student;married;professional.course;unknown;yes;no;cellular;aug;thu;72;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+37;student;married;professional.course;unknown;no;no;cellular;aug;thu;266;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+37;admin.;single;university.degree;no;no;no;telephone;aug;thu;118;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+32;admin.;single;university.degree;no;yes;yes;cellular;aug;thu;140;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+47;management;married;high.school;no;no;no;cellular;aug;thu;3422;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+49;technician;married;professional.course;unknown;yes;no;cellular;aug;thu;238;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+33;unknown;married;unknown;unknown;no;no;cellular;aug;thu;142;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+32;admin.;single;university.degree;no;no;no;cellular;aug;thu;159;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+47;management;married;university.degree;no;yes;no;cellular;aug;thu;20;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+47;management;married;university.degree;no;no;no;cellular;aug;thu;152;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+41;self-employed;married;university.degree;no;no;no;cellular;aug;thu;314;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+34;technician;single;professional.course;no;yes;yes;cellular;aug;thu;414;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+38;services;single;high.school;no;yes;no;cellular;aug;thu;122;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+56;blue-collar;married;basic.4y;unknown;no;no;cellular;aug;thu;163;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+48;blue-collar;married;basic.4y;unknown;yes;no;cellular;aug;thu;115;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+33;admin.;married;university.degree;no;yes;no;cellular;aug;thu;83;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+30;technician;single;university.degree;unknown;yes;no;cellular;aug;thu;108;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+57;technician;married;high.school;no;no;no;cellular;aug;thu;1230;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+33;admin.;married;university.degree;no;yes;no;cellular;aug;thu;118;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+52;technician;divorced;high.school;no;yes;no;cellular;aug;thu;101;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+36;admin.;single;university.degree;no;no;no;cellular;aug;thu;110;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+36;admin.;single;university.degree;no;yes;no;cellular;aug;thu;117;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+57;admin.;married;university.degree;unknown;yes;no;cellular;aug;thu;74;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+36;admin.;married;high.school;unknown;yes;no;cellular;aug;thu;165;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+53;blue-collar;married;basic.4y;unknown;yes;no;cellular;aug;thu;446;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+54;admin.;married;university.degree;no;yes;no;cellular;aug;thu;201;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+37;housemaid;married;high.school;unknown;no;no;cellular;aug;thu;126;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+37;housemaid;married;high.school;unknown;yes;no;cellular;aug;thu;481;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+46;technician;married;professional.course;unknown;no;no;cellular;aug;thu;166;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+54;self-employed;married;basic.9y;unknown;yes;no;cellular;aug;thu;429;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;yes
+57;admin.;single;university.degree;no;no;no;cellular;aug;thu;105;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+48;admin.;single;university.degree;no;yes;no;cellular;aug;thu;408;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+50;blue-collar;married;basic.4y;no;yes;no;cellular;aug;thu;198;4;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+48;blue-collar;married;basic.4y;unknown;no;yes;cellular;aug;thu;180;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+50;entrepreneur;married;professional.course;no;yes;yes;cellular;aug;thu;184;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+41;admin.;divorced;university.degree;no;yes;no;cellular;aug;thu;339;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+51;technician;married;professional.course;no;yes;no;cellular;aug;thu;291;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+32;admin.;married;high.school;no;yes;no;cellular;aug;thu;117;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+42;admin.;married;university.degree;no;yes;no;cellular;aug;thu;162;5;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+39;management;married;high.school;no;no;no;cellular;aug;thu;402;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+47;admin.;divorced;university.degree;no;no;no;cellular;aug;thu;235;7;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+36;admin.;married;high.school;unknown;no;no;cellular;aug;thu;324;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+32;admin.;married;high.school;no;no;no;cellular;aug;thu;876;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;yes
+48;admin.;married;university.degree;no;yes;no;cellular;aug;thu;321;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+35;technician;married;professional.course;no;no;no;cellular;aug;thu;72;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+50;blue-collar;married;basic.9y;no;no;no;cellular;aug;thu;524;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+30;admin.;single;university.degree;no;no;no;cellular;aug;thu;122;5;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+31;housemaid;married;basic.4y;no;no;no;cellular;aug;thu;235;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+31;housemaid;married;basic.4y;no;yes;no;cellular;aug;thu;248;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+48;technician;married;university.degree;unknown;yes;no;cellular;aug;thu;409;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+48;blue-collar;married;unknown;unknown;unknown;unknown;cellular;aug;thu;642;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+50;admin.;married;basic.9y;no;yes;no;cellular;aug;thu;61;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+50;admin.;married;basic.9y;no;no;no;cellular;aug;thu;84;1;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+55;retired;married;professional.course;no;yes;no;cellular;aug;thu;181;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+34;admin.;single;university.degree;no;yes;no;cellular;aug;thu;1934;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+52;technician;married;professional.course;no;yes;no;cellular;aug;thu;88;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+38;technician;married;high.school;no;yes;no;cellular;aug;thu;452;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+45;admin.;married;basic.9y;no;no;no;cellular;aug;thu;524;5;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+56;technician;married;professional.course;no;yes;no;cellular;aug;thu;124;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+42;admin.;married;university.degree;unknown;yes;no;cellular;aug;thu;51;7;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+52;technician;single;professional.course;no;yes;no;cellular;aug;thu;365;5;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+39;management;married;high.school;no;no;no;cellular;aug;thu;82;4;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+48;blue-collar;married;basic.4y;unknown;no;no;cellular;aug;thu;90;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+60;retired;married;professional.course;no;yes;no;cellular;aug;thu;448;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+32;admin.;divorced;university.degree;no;yes;no;telephone;aug;thu;262;7;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+48;blue-collar;married;basic.4y;unknown;no;yes;cellular;aug;thu;37;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+39;admin.;married;university.degree;no;yes;no;cellular;aug;thu;217;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+40;admin.;single;university.degree;no;yes;no;cellular;aug;thu;123;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+34;technician;single;university.degree;no;yes;no;cellular;aug;thu;336;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+55;admin.;married;unknown;unknown;yes;no;cellular;aug;thu;197;4;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+44;self-employed;married;university.degree;no;no;no;cellular;aug;thu;242;4;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+45;blue-collar;married;basic.9y;no;yes;no;cellular;aug;thu;773;5;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;yes
+49;technician;married;professional.course;unknown;yes;no;cellular;aug;thu;142;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+58;unemployed;married;professional.course;unknown;yes;no;cellular;aug;thu;147;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+34;admin.;single;university.degree;no;no;no;cellular;aug;thu;161;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+30;admin.;single;university.degree;no;no;no;cellular;aug;thu;1336;4;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;yes
+45;blue-collar;married;high.school;unknown;no;no;cellular;aug;thu;124;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+56;admin.;married;university.degree;no;no;yes;cellular;aug;thu;260;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+48;blue-collar;married;basic.4y;unknown;yes;yes;cellular;aug;thu;111;5;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+48;blue-collar;married;basic.4y;unknown;no;yes;cellular;aug;thu;96;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+58;unemployed;married;professional.course;unknown;yes;no;cellular;aug;thu;191;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+50;entrepreneur;married;professional.course;unknown;yes;no;cellular;aug;thu;293;4;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+44;self-employed;married;university.degree;no;no;no;cellular;aug;thu;107;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+37;housemaid;married;high.school;unknown;no;yes;cellular;aug;thu;534;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+51;technician;divorced;professional.course;no;yes;no;cellular;aug;thu;158;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+38;housemaid;married;basic.6y;no;yes;no;cellular;aug;thu;256;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+58;unemployed;married;professional.course;unknown;no;no;cellular;aug;thu;123;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+34;admin.;single;university.degree;no;yes;no;cellular;aug;thu;259;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+31;admin.;single;university.degree;no;no;yes;cellular;aug;thu;173;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+30;technician;single;professional.course;no;yes;no;cellular;aug;thu;452;5;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;yes
+36;admin.;married;high.school;unknown;yes;yes;cellular;aug;thu;163;5;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+45;technician;married;university.degree;no;no;no;telephone;aug;thu;430;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+32;admin.;married;university.degree;no;no;no;cellular;aug;thu;258;2;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+45;blue-collar;married;basic.4y;no;yes;yes;cellular;aug;thu;163;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+31;technician;married;university.degree;no;yes;yes;cellular;aug;thu;265;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+38;management;married;university.degree;no;yes;no;telephone;aug;thu;35;4;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+38;admin.;married;university.degree;no;yes;no;cellular;aug;thu;191;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+30;admin.;single;university.degree;no;no;no;cellular;aug;thu;152;4;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+30;technician;single;professional.course;no;yes;no;cellular;aug;thu;93;4;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+34;technician;single;university.degree;no;yes;no;cellular;aug;thu;385;4;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+59;unemployed;married;professional.course;no;no;no;cellular;aug;thu;82;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+31;admin.;married;university.degree;no;no;no;cellular;aug;thu;112;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+34;admin.;single;university.degree;no;yes;no;cellular;aug;thu;419;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+56;admin.;married;basic.4y;no;no;no;cellular;aug;thu;82;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+30;admin.;married;high.school;no;no;no;cellular;aug;thu;390;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+30;admin.;single;university.degree;no;no;yes;cellular;aug;thu;185;4;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+46;services;married;basic.6y;no;yes;no;cellular;aug;thu;160;3;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+51;admin.;divorced;university.degree;no;yes;no;cellular;aug;thu;218;6;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+46;technician;married;professional.course;unknown;yes;no;cellular;aug;thu;721;5;999;0;nonexistent;1.4;93.444;-36.1;4.968;5228.1;no
+34;admin.;married;university.degree;no;yes;no;cellular;aug;fri;201;4;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+39;management;married;high.school;no;no;no;cellular;aug;fri;215;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+47;technician;married;high.school;unknown;yes;no;cellular;aug;fri;152;5;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+33;self-employed;married;university.degree;no;no;no;cellular;aug;fri;36;7;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+44;blue-collar;married;professional.course;no;no;no;cellular;aug;fri;90;4;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+33;technician;single;professional.course;no;no;no;cellular;aug;fri;94;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+51;blue-collar;married;basic.4y;unknown;yes;no;cellular;aug;fri;174;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+51;blue-collar;married;basic.4y;unknown;no;no;cellular;aug;fri;153;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+51;blue-collar;married;basic.4y;unknown;no;no;cellular;aug;fri;116;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+42;admin.;married;university.degree;no;yes;no;cellular;aug;fri;231;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+51;blue-collar;married;basic.4y;unknown;yes;yes;cellular;aug;fri;129;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+31;technician;single;professional.course;no;no;no;cellular;aug;fri;193;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;yes
+31;entrepreneur;married;university.degree;no;yes;no;cellular;aug;fri;138;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+31;entrepreneur;married;university.degree;no;no;no;cellular;aug;fri;188;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+34;admin.;single;university.degree;no;yes;yes;cellular;aug;fri;191;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+50;entrepreneur;married;professional.course;unknown;yes;no;cellular;aug;fri;1306;4;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;yes
+35;technician;married;high.school;no;no;no;telephone;aug;fri;243;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;yes
+31;admin.;married;university.degree;no;no;yes;cellular;aug;fri;96;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+37;technician;married;professional.course;no;no;no;cellular;aug;fri;188;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+31;admin.;married;professional.course;unknown;yes;no;cellular;aug;fri;126;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+38;technician;divorced;professional.course;no;yes;no;cellular;aug;fri;130;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+33;admin.;married;university.degree;no;no;no;cellular;aug;fri;58;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+38;technician;divorced;professional.course;no;yes;no;cellular;aug;fri;117;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+32;admin.;married;high.school;no;no;no;cellular;aug;fri;52;8;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+38;technician;divorced;professional.course;no;yes;no;cellular;aug;fri;550;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+47;services;married;high.school;no;no;no;cellular;aug;fri;130;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+57;admin.;married;university.degree;unknown;yes;no;cellular;aug;fri;161;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+51;technician;divorced;professional.course;no;no;yes;cellular;aug;fri;50;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+50;unemployed;married;professional.course;unknown;no;no;cellular;aug;fri;135;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+36;technician;divorced;university.degree;no;yes;no;cellular;aug;fri;207;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+50;unemployed;married;professional.course;unknown;yes;no;cellular;aug;fri;133;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+57;retired;married;professional.course;no;yes;no;cellular;aug;fri;282;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+33;technician;married;high.school;unknown;no;no;cellular;aug;fri;442;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+35;admin.;single;university.degree;no;yes;no;cellular;aug;fri;299;4;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+47;self-employed;married;basic.9y;no;yes;no;cellular;aug;fri;146;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+33;housemaid;married;basic.9y;no;yes;no;cellular;aug;fri;147;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+51;technician;married;university.degree;unknown;no;no;cellular;aug;fri;82;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+34;technician;married;professional.course;no;yes;no;cellular;aug;fri;31;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+31;admin.;single;university.degree;no;yes;no;cellular;aug;fri;292;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+34;technician;married;professional.course;no;no;no;cellular;aug;fri;161;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+52;blue-collar;married;high.school;no;no;no;cellular;aug;fri;161;4;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+46;entrepreneur;married;basic.9y;no;no;no;cellular;aug;fri;169;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+51;blue-collar;married;basic.4y;unknown;yes;no;cellular;aug;fri;207;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+51;blue-collar;married;basic.4y;unknown;yes;no;cellular;aug;fri;205;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+38;management;married;university.degree;no;yes;no;cellular;aug;fri;102;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+47;admin.;married;high.school;no;yes;no;cellular;aug;fri;106;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+45;technician;married;high.school;no;yes;yes;cellular;aug;fri;243;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+30;admin.;single;university.degree;no;no;no;cellular;aug;fri;60;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+58;retired;married;high.school;no;yes;no;cellular;aug;fri;166;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+47;services;married;high.school;no;yes;no;cellular;aug;fri;207;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+34;admin.;married;university.degree;no;yes;no;cellular;aug;fri;193;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+54;blue-collar;married;basic.9y;no;yes;no;cellular;aug;fri;129;5;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+47;services;married;high.school;no;yes;yes;cellular;aug;fri;502;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+39;technician;married;professional.course;unknown;no;no;cellular;aug;fri;49;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+30;technician;single;professional.course;no;yes;no;cellular;aug;fri;126;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+39;management;married;university.degree;no;no;no;cellular;aug;fri;31;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+39;management;married;university.degree;no;no;no;cellular;aug;fri;155;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+31;technician;married;professional.course;unknown;no;no;cellular;aug;fri;93;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+44;admin.;divorced;university.degree;no;no;no;cellular;aug;fri;85;6;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+51;admin.;divorced;high.school;no;no;no;cellular;aug;fri;215;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+53;technician;divorced;professional.course;no;no;no;cellular;aug;fri;75;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+30;admin.;single;university.degree;no;yes;no;cellular;aug;fri;118;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+45;blue-collar;married;basic.4y;unknown;no;no;cellular;aug;fri;191;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+38;admin.;married;university.degree;no;no;no;cellular;aug;fri;111;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+56;housemaid;married;basic.4y;unknown;no;no;cellular;aug;fri;87;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+51;blue-collar;married;basic.4y;unknown;no;no;cellular;aug;fri;102;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+44;management;married;university.degree;no;no;no;cellular;aug;fri;261;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+40;technician;single;university.degree;no;yes;yes;cellular;aug;fri;150;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+36;blue-collar;married;professional.course;no;no;no;cellular;aug;fri;258;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+51;services;married;high.school;no;yes;no;cellular;aug;fri;241;4;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+36;technician;married;professional.course;no;no;no;cellular;aug;fri;94;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+48;technician;married;university.degree;unknown;no;no;cellular;aug;fri;109;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+47;self-employed;married;basic.9y;no;yes;no;cellular;aug;fri;97;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+45;blue-collar;married;basic.4y;unknown;yes;no;cellular;aug;fri;994;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;yes
+57;technician;married;high.school;unknown;no;yes;cellular;aug;fri;257;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+38;admin.;married;university.degree;no;yes;no;cellular;aug;fri;175;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+44;admin.;single;university.degree;no;no;no;cellular;aug;fri;112;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+36;admin.;married;professional.course;no;no;no;cellular;aug;fri;75;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+36;admin.;married;professional.course;no;no;no;cellular;aug;fri;172;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+44;management;married;high.school;unknown;yes;no;cellular;aug;fri;41;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+36;admin.;married;university.degree;unknown;no;no;cellular;aug;fri;169;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+32;technician;married;university.degree;no;no;no;cellular;aug;fri;198;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+56;technician;divorced;professional.course;no;yes;no;cellular;aug;fri;151;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+45;blue-collar;married;basic.4y;no;no;no;cellular;aug;fri;507;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;yes
+36;technician;married;professional.course;no;yes;no;cellular;aug;fri;197;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+33;admin.;married;professional.course;no;yes;no;cellular;aug;fri;130;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+44;admin.;single;university.degree;no;no;no;cellular;aug;fri;84;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+32;self-employed;single;university.degree;no;yes;no;cellular;aug;fri;118;5;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+38;admin.;single;university.degree;unknown;no;no;cellular;aug;fri;257;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+57;technician;married;high.school;unknown;no;no;cellular;aug;fri;784;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;yes
+37;admin.;single;university.degree;no;no;no;cellular;aug;fri;89;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+31;housemaid;married;basic.4y;no;no;no;cellular;aug;fri;172;5;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+49;admin.;married;high.school;no;no;no;cellular;aug;fri;151;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+49;admin.;married;high.school;no;yes;no;cellular;aug;fri;183;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+50;blue-collar;married;basic.4y;unknown;yes;no;cellular;aug;fri;80;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+34;admin.;married;university.degree;no;yes;no;cellular;aug;fri;80;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+37;admin.;married;high.school;unknown;no;no;cellular;aug;fri;45;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+50;blue-collar;married;basic.4y;unknown;yes;no;cellular;aug;fri;249;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+36;admin.;single;university.degree;no;yes;no;cellular;aug;fri;472;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+32;admin.;married;university.degree;unknown;yes;no;cellular;aug;fri;150;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+45;admin.;married;high.school;unknown;yes;yes;cellular;aug;fri;111;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+32;admin.;married;university.degree;unknown;no;no;cellular;aug;fri;298;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+29;technician;single;high.school;no;no;no;cellular;aug;fri;31;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+42;admin.;single;university.degree;no;no;no;cellular;aug;fri;353;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+36;technician;married;professional.course;unknown;no;no;cellular;aug;fri;201;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+29;technician;single;high.school;no;no;no;cellular;aug;fri;104;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+33;admin.;married;university.degree;no;unknown;unknown;cellular;aug;fri;74;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+46;admin.;married;professional.course;no;yes;no;cellular;aug;fri;75;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+35;housemaid;married;university.degree;unknown;no;yes;cellular;aug;fri;189;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+46;admin.;married;professional.course;no;no;no;cellular;aug;fri;385;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+32;admin.;single;university.degree;no;yes;no;cellular;aug;fri;233;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+58;admin.;married;university.degree;no;yes;no;cellular;aug;fri;124;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+47;entrepreneur;married;high.school;no;unknown;unknown;cellular;aug;fri;86;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+50;services;married;basic.4y;no;no;no;cellular;aug;fri;95;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+44;services;married;high.school;unknown;yes;yes;cellular;aug;fri;34;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+44;services;married;high.school;unknown;yes;yes;cellular;aug;fri;324;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+29;admin.;single;university.degree;unknown;no;no;cellular;aug;fri;88;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+29;admin.;single;university.degree;unknown;yes;no;cellular;aug;fri;156;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+29;admin.;single;university.degree;unknown;yes;no;cellular;aug;fri;124;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+29;admin.;single;university.degree;unknown;yes;no;cellular;aug;fri;163;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+30;admin.;single;university.degree;no;no;no;cellular;aug;fri;235;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+49;technician;married;professional.course;unknown;unknown;unknown;cellular;aug;fri;254;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+30;admin.;divorced;university.degree;no;unknown;unknown;cellular;aug;fri;316;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+52;blue-collar;married;basic.4y;no;no;no;cellular;aug;fri;151;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+52;blue-collar;married;basic.4y;no;no;no;cellular;aug;fri;109;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+52;blue-collar;married;basic.9y;no;no;no;cellular;aug;fri;809;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;yes
+60;admin.;married;university.degree;no;yes;yes;cellular;aug;fri;138;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+29;technician;married;professional.course;no;yes;no;cellular;aug;fri;112;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+29;technician;married;professional.course;no;yes;no;cellular;aug;fri;94;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+35;admin.;married;university.degree;unknown;no;no;cellular;aug;fri;70;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+46;admin.;married;high.school;unknown;no;no;cellular;aug;fri;49;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+53;blue-collar;married;basic.4y;unknown;no;no;cellular;aug;fri;523;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;yes
+39;management;married;university.degree;no;no;no;cellular;aug;fri;108;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+42;technician;married;university.degree;no;no;no;cellular;aug;fri;321;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+39;management;married;university.degree;no;no;no;cellular;aug;fri;224;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+54;self-employed;married;professional.course;no;no;no;cellular;aug;fri;309;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+47;admin.;married;basic.9y;no;no;no;cellular;aug;fri;177;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+47;admin.;married;basic.9y;no;yes;no;cellular;aug;fri;109;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+55;admin.;married;professional.course;no;yes;no;cellular;aug;fri;348;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+50;blue-collar;married;basic.6y;no;yes;no;cellular;aug;fri;433;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+36;technician;married;university.degree;no;yes;no;cellular;aug;fri;124;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+36;technician;married;university.degree;no;yes;no;cellular;aug;fri;167;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+36;technician;married;university.degree;no;unknown;unknown;cellular;aug;fri;248;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+42;technician;married;university.degree;no;yes;no;cellular;aug;fri;103;5;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+35;admin.;married;university.degree;no;yes;no;cellular;aug;fri;417;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+33;admin.;married;university.degree;no;yes;no;cellular;aug;fri;111;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+40;admin.;married;university.degree;no;no;yes;cellular;aug;fri;200;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+34;technician;married;professional.course;no;yes;no;cellular;aug;fri;189;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+34;technician;married;professional.course;no;yes;no;cellular;aug;fri;201;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+34;technician;married;professional.course;no;yes;no;cellular;aug;fri;50;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+54;admin.;married;high.school;no;yes;no;cellular;aug;fri;107;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+34;technician;married;professional.course;no;no;no;cellular;aug;fri;192;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+29;admin.;single;university.degree;unknown;no;no;cellular;aug;fri;521;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+51;housemaid;married;basic.4y;unknown;no;no;cellular;aug;fri;253;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+52;admin.;divorced;university.degree;unknown;yes;no;cellular;aug;fri;172;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+31;technician;married;professional.course;no;no;no;cellular;aug;fri;63;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+37;technician;married;professional.course;no;yes;no;cellular;aug;fri;73;4;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+40;technician;married;high.school;no;yes;no;cellular;aug;fri;419;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;yes
+34;technician;married;professional.course;no;no;yes;cellular;aug;fri;118;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+53;blue-collar;married;basic.4y;unknown;yes;no;cellular;aug;fri;169;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+29;admin.;single;university.degree;unknown;yes;no;cellular;aug;fri;142;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+36;admin.;married;university.degree;no;yes;no;cellular;aug;fri;385;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+45;admin.;married;high.school;unknown;unknown;unknown;cellular;aug;fri;215;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+33;technician;single;professional.course;no;no;yes;cellular;aug;fri;100;5;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+40;technician;single;university.degree;no;yes;no;cellular;aug;fri;117;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+44;services;married;high.school;unknown;yes;no;cellular;aug;fri;629;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+38;admin.;married;university.degree;no;yes;no;cellular;aug;fri;82;7;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+41;technician;married;university.degree;no;no;yes;cellular;aug;fri;133;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+40;admin.;single;university.degree;unknown;yes;no;cellular;aug;fri;876;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+47;admin.;married;high.school;unknown;no;no;cellular;aug;fri;61;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+33;technician;single;professional.course;no;yes;yes;cellular;aug;fri;125;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+36;technician;single;high.school;no;yes;no;cellular;aug;fri;81;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+53;services;married;high.school;no;yes;no;cellular;aug;fri;236;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+36;admin.;married;university.degree;no;yes;no;cellular;aug;fri;194;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+44;technician;divorced;high.school;unknown;yes;no;cellular;aug;fri;229;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+30;technician;single;professional.course;no;yes;no;cellular;aug;fri;445;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+53;blue-collar;married;basic.4y;unknown;yes;no;cellular;aug;fri;148;5;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+29;admin.;single;university.degree;unknown;no;no;cellular;aug;fri;140;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+30;admin.;divorced;university.degree;no;no;no;cellular;aug;fri;129;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+42;technician;married;university.degree;no;no;yes;cellular;aug;fri;124;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+58;admin.;married;basic.9y;unknown;no;no;cellular;aug;fri;131;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+35;admin.;single;university.degree;no;no;yes;telephone;aug;fri;91;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+52;blue-collar;married;basic.4y;no;yes;no;cellular;aug;fri;362;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+46;services;married;basic.6y;no;yes;no;cellular;aug;fri;16;5;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+33;technician;married;high.school;no;no;no;cellular;aug;fri;108;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+60;admin.;married;university.degree;no;no;no;cellular;aug;fri;176;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+51;admin.;married;university.degree;no;yes;no;cellular;aug;fri;51;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+47;blue-collar;married;unknown;unknown;yes;no;cellular;aug;fri;310;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+57;retired;married;unknown;unknown;no;no;cellular;aug;fri;153;6;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+37;technician;divorced;professional.course;no;no;no;cellular;aug;fri;780;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;yes
+48;technician;married;university.degree;unknown;no;no;cellular;aug;fri;66;4;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+34;technician;single;high.school;unknown;no;no;telephone;aug;fri;46;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+38;technician;married;professional.course;unknown;no;no;cellular;aug;fri;155;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+38;technician;married;professional.course;unknown;no;no;cellular;aug;fri;185;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+30;admin.;single;university.degree;no;no;no;cellular;aug;fri;255;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+30;admin.;single;university.degree;no;no;no;cellular;aug;fri;459;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;yes
+30;technician;single;professional.course;no;no;no;cellular;aug;fri;153;5;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+38;technician;single;professional.course;no;yes;no;cellular;aug;fri;87;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+37;admin.;single;university.degree;no;no;no;cellular;aug;fri;62;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+34;admin.;married;university.degree;no;yes;no;cellular;aug;fri;71;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+34;admin.;married;university.degree;no;no;no;cellular;aug;fri;147;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+29;admin.;single;university.degree;unknown;no;no;cellular;aug;fri;97;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+33;technician;married;professional.course;no;no;no;cellular;aug;fri;335;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+52;blue-collar;married;basic.6y;no;yes;no;cellular;aug;fri;100;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+50;blue-collar;married;basic.4y;unknown;yes;no;cellular;aug;fri;119;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+33;self-employed;married;basic.9y;unknown;no;no;cellular;aug;fri;116;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+34;admin.;divorced;high.school;no;no;no;cellular;aug;fri;178;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+45;management;married;university.degree;no;yes;no;cellular;aug;fri;156;4;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+52;services;married;professional.course;no;no;yes;cellular;aug;fri;173;7;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+46;technician;married;university.degree;no;no;no;cellular;aug;fri;74;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+32;admin.;married;university.degree;no;yes;no;cellular;aug;fri;79;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+35;admin.;married;university.degree;no;yes;no;cellular;aug;fri;193;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+41;technician;divorced;university.degree;no;yes;no;cellular;aug;fri;93;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+33;self-employed;married;basic.9y;unknown;no;no;cellular;aug;fri;1000;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;yes
+35;admin.;married;university.degree;no;yes;no;cellular;aug;fri;494;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+38;admin.;married;university.degree;no;yes;no;cellular;aug;fri;172;7;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+38;admin.;married;university.degree;unknown;yes;no;cellular;aug;fri;273;5;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+41;technician;divorced;university.degree;no;no;no;cellular;aug;fri;519;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;yes
+41;technician;divorced;university.degree;no;yes;no;cellular;aug;fri;167;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+51;admin.;divorced;university.degree;no;no;no;cellular;aug;fri;88;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+41;technician;divorced;university.degree;no;yes;no;cellular;aug;fri;191;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+34;admin.;divorced;high.school;no;yes;yes;cellular;aug;fri;63;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+51;admin.;divorced;university.degree;no;yes;yes;cellular;aug;fri;204;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+47;technician;married;professional.course;unknown;yes;no;cellular;aug;fri;127;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+48;entrepreneur;married;university.degree;no;no;no;cellular;aug;fri;83;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+31;admin.;single;university.degree;no;yes;no;cellular;aug;fri;136;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+31;technician;married;university.degree;no;no;no;cellular;aug;fri;52;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+49;housemaid;married;basic.4y;no;yes;no;cellular;aug;fri;448;5;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+58;admin.;married;high.school;no;no;no;cellular;aug;fri;528;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+46;blue-collar;married;basic.9y;unknown;no;no;cellular;aug;fri;140;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+50;blue-collar;married;basic.6y;no;no;no;cellular;aug;fri;733;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;yes
+52;blue-collar;married;basic.6y;unknown;no;no;cellular;aug;fri;88;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+29;technician;single;high.school;no;yes;no;cellular;aug;fri;580;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;yes
+38;technician;married;professional.course;no;no;no;cellular;aug;fri;93;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+34;technician;married;professional.course;no;yes;no;cellular;aug;fri;80;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+34;technician;single;professional.course;no;no;no;cellular;aug;fri;72;4;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+31;admin.;married;university.degree;no;yes;no;cellular;aug;fri;258;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+38;technician;married;professional.course;no;yes;no;cellular;aug;fri;848;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;yes
+58;self-employed;married;university.degree;no;yes;no;cellular;aug;fri;173;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+30;admin.;single;high.school;no;yes;no;cellular;aug;fri;406;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+33;technician;married;professional.course;no;yes;no;cellular;aug;fri;229;4;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+50;blue-collar;married;basic.6y;no;yes;no;cellular;aug;fri;604;4;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+58;self-employed;married;university.degree;no;no;no;cellular;aug;fri;1242;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;yes
+53;entrepreneur;married;university.degree;no;yes;no;cellular;aug;fri;899;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+49;services;married;high.school;unknown;yes;no;cellular;aug;fri;889;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+31;unemployed;married;university.degree;no;yes;no;cellular;aug;fri;420;4;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+32;technician;divorced;university.degree;no;yes;yes;cellular;aug;fri;515;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+29;admin.;single;university.degree;no;yes;no;cellular;aug;fri;79;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+48;housemaid;married;basic.6y;unknown;no;no;cellular;aug;fri;71;8;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+57;retired;married;basic.9y;unknown;yes;no;cellular;aug;fri;27;6;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+30;blue-collar;married;high.school;no;no;no;cellular;aug;fri;358;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+38;technician;married;professional.course;unknown;no;yes;cellular;aug;fri;498;6;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+36;admin.;married;university.degree;no;unknown;unknown;cellular;aug;fri;114;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+42;self-employed;married;university.degree;no;no;yes;cellular;aug;fri;327;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+44;self-employed;married;professional.course;no;unknown;unknown;cellular;aug;fri;179;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+38;technician;married;university.degree;no;yes;no;cellular;aug;fri;306;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+57;retired;married;basic.9y;unknown;yes;no;cellular;aug;fri;189;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+50;blue-collar;married;basic.9y;no;yes;no;cellular;aug;fri;455;4;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+44;technician;married;high.school;no;yes;yes;cellular;aug;fri;390;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+43;admin.;married;university.degree;unknown;yes;no;cellular;aug;fri;209;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+40;management;married;university.degree;no;no;no;cellular;aug;fri;231;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+33;technician;married;professional.course;no;no;no;cellular;aug;fri;922;7;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;yes
+42;self-employed;married;university.degree;no;no;no;cellular;aug;fri;1206;4;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;yes
+42;self-employed;married;university.degree;no;yes;no;cellular;aug;fri;219;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+35;technician;divorced;professional.course;no;no;no;cellular;aug;fri;424;4;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+38;entrepreneur;married;university.degree;no;unknown;unknown;cellular;aug;fri;188;5;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+46;blue-collar;married;basic.4y;no;no;no;cellular;aug;fri;492;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+33;technician;divorced;high.school;no;no;no;cellular;aug;fri;174;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+44;admin.;married;high.school;unknown;yes;no;cellular;aug;fri;453;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+42;self-employed;married;university.degree;no;yes;no;cellular;aug;fri;59;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+34;admin.;divorced;high.school;no;yes;no;cellular;aug;fri;263;5;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+33;admin.;divorced;high.school;no;yes;no;cellular;aug;fri;57;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+35;admin.;married;university.degree;no;yes;no;cellular;aug;fri;329;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+32;technician;single;university.degree;no;yes;no;cellular;aug;fri;166;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+58;self-employed;married;university.degree;no;yes;no;cellular;aug;fri;72;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+45;management;married;university.degree;no;yes;no;cellular;aug;fri;334;4;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+39;technician;divorced;professional.course;no;yes;no;cellular;aug;fri;108;4;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+53;admin.;divorced;high.school;no;no;yes;cellular;aug;fri;1567;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+30;blue-collar;married;high.school;no;yes;no;cellular;aug;fri;765;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+41;technician;divorced;university.degree;no;yes;yes;cellular;aug;fri;89;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+43;admin.;married;university.degree;unknown;no;no;cellular;aug;fri;170;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+36;technician;married;high.school;no;no;no;cellular;aug;fri;314;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+29;admin.;married;university.degree;no;no;yes;cellular;aug;fri;14;5;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+42;self-employed;married;university.degree;no;no;no;cellular;aug;fri;148;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+41;technician;divorced;university.degree;no;yes;yes;cellular;aug;fri;116;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+37;technician;married;professional.course;unknown;yes;no;cellular;aug;fri;17;7;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+52;retired;married;high.school;no;yes;no;cellular;aug;fri;293;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+39;technician;divorced;professional.course;no;yes;no;cellular;aug;fri;445;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+44;admin.;married;high.school;unknown;no;no;cellular;aug;fri;262;4;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+33;technician;married;professional.course;no;no;no;cellular;aug;fri;45;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+35;technician;single;professional.course;no;yes;no;cellular;aug;mon;120;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+36;technician;married;high.school;no;no;no;cellular;aug;mon;46;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+34;entrepreneur;married;university.degree;unknown;yes;no;cellular;aug;mon;343;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+58;technician;married;professional.course;no;yes;no;telephone;aug;mon;697;5;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+59;retired;married;basic.4y;no;yes;no;cellular;aug;mon;67;6;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+38;technician;divorced;high.school;no;yes;no;cellular;aug;mon;171;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+39;admin.;married;university.degree;no;yes;no;cellular;aug;mon;57;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+32;admin.;single;university.degree;no;yes;yes;cellular;aug;mon;326;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+42;technician;married;high.school;no;no;no;cellular;aug;mon;70;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+29;admin.;single;university.degree;no;no;no;cellular;aug;mon;716;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;yes
+44;blue-collar;married;basic.6y;no;no;no;cellular;aug;mon;67;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+52;blue-collar;married;basic.4y;no;no;no;cellular;aug;mon;209;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+31;admin.;divorced;university.degree;no;yes;no;cellular;aug;mon;367;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+32;admin.;single;university.degree;no;yes;no;cellular;aug;mon;255;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+36;admin.;married;university.degree;no;yes;no;cellular;aug;mon;258;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+31;management;single;university.degree;no;yes;no;cellular;aug;mon;72;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+36;management;married;university.degree;no;yes;no;cellular;aug;mon;99;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+49;technician;married;professional.course;no;no;no;cellular;aug;mon;92;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+39;technician;single;high.school;no;no;no;cellular;aug;mon;177;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+31;management;single;university.degree;no;no;no;cellular;aug;mon;413;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+40;admin.;divorced;university.degree;no;no;no;cellular;aug;mon;144;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+37;technician;married;high.school;unknown;yes;yes;telephone;aug;mon;144;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+38;technician;divorced;high.school;no;no;no;cellular;aug;mon;102;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+32;admin.;single;university.degree;no;yes;no;cellular;aug;mon;155;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+34;admin.;single;university.degree;no;yes;no;cellular;aug;mon;145;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+34;technician;married;high.school;no;yes;no;cellular;aug;mon;77;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+43;admin.;married;high.school;no;yes;no;cellular;aug;mon;210;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+33;technician;married;professional.course;no;yes;yes;cellular;aug;mon;106;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+44;admin.;divorced;university.degree;no;yes;no;cellular;aug;mon;105;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+31;technician;married;professional.course;no;yes;yes;cellular;aug;mon;98;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+55;blue-collar;married;basic.4y;no;yes;yes;cellular;aug;mon;588;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+32;management;married;university.degree;no;yes;no;cellular;aug;mon;73;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+56;unknown;married;basic.4y;no;yes;no;cellular;aug;mon;106;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+50;admin.;married;high.school;no;no;no;cellular;aug;mon;104;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+33;technician;single;high.school;no;yes;no;cellular;aug;mon;73;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+29;technician;single;professional.course;no;yes;no;cellular;aug;mon;111;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+33;technician;married;professional.course;unknown;yes;no;cellular;aug;mon;303;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+47;admin.;married;university.degree;unknown;yes;no;cellular;aug;mon;39;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+37;admin.;married;university.degree;unknown;yes;no;cellular;aug;mon;86;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+34;admin.;single;university.degree;no;yes;no;cellular;aug;mon;217;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+34;admin.;single;university.degree;no;yes;no;cellular;aug;mon;55;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+43;admin.;married;university.degree;no;unknown;unknown;cellular;aug;mon;72;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+47;retired;married;basic.9y;unknown;no;yes;cellular;aug;mon;97;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+34;admin.;single;university.degree;no;yes;no;cellular;aug;mon;667;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+35;admin.;married;university.degree;no;no;no;cellular;aug;mon;347;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+55;services;married;high.school;unknown;no;no;cellular;aug;mon;33;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+49;services;married;high.school;no;no;no;cellular;aug;mon;212;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+56;admin.;married;university.degree;no;no;no;cellular;aug;mon;165;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+49;services;married;high.school;no;yes;yes;cellular;aug;mon;382;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+45;admin.;married;university.degree;no;yes;no;cellular;aug;mon;226;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+32;technician;married;high.school;no;yes;no;cellular;aug;mon;47;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+37;housemaid;married;university.degree;unknown;no;yes;cellular;aug;mon;103;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+44;technician;married;professional.course;unknown;yes;no;cellular;aug;mon;147;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+35;unemployed;single;university.degree;no;no;no;cellular;aug;mon;386;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;yes
+36;technician;married;professional.course;no;yes;no;cellular;aug;mon;45;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+35;admin.;single;university.degree;no;yes;yes;cellular;aug;mon;121;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+44;admin.;married;high.school;no;no;no;cellular;aug;mon;116;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+44;admin.;married;high.school;no;no;no;cellular;aug;mon;126;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+44;technician;married;professional.course;unknown;no;yes;cellular;aug;mon;607;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+43;management;divorced;university.degree;no;yes;no;cellular;aug;mon;269;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+40;technician;married;professional.course;no;yes;no;cellular;aug;mon;505;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+50;blue-collar;married;basic.4y;no;yes;no;cellular;aug;mon;82;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+32;admin.;married;university.degree;no;yes;yes;cellular;aug;mon;71;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+32;admin.;married;university.degree;no;no;no;cellular;aug;mon;218;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+44;admin.;married;high.school;no;yes;no;cellular;aug;mon;758;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;yes
+32;admin.;married;university.degree;no;no;no;cellular;aug;mon;270;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+45;blue-collar;married;basic.4y;unknown;yes;yes;cellular;aug;mon;187;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+49;services;married;high.school;no;no;no;cellular;aug;mon;565;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+38;admin.;married;university.degree;no;yes;no;cellular;aug;mon;226;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+33;admin.;single;university.degree;no;yes;no;cellular;aug;mon;172;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+29;admin.;married;university.degree;no;yes;no;cellular;aug;mon;72;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+29;admin.;married;university.degree;no;yes;yes;cellular;aug;mon;164;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+32;technician;married;high.school;no;yes;no;cellular;aug;mon;55;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+41;self-employed;married;professional.course;no;no;no;cellular;aug;mon;69;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+41;self-employed;married;professional.course;no;yes;no;cellular;aug;mon;323;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+36;admin.;married;university.degree;no;no;no;cellular;aug;mon;123;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+45;services;married;high.school;unknown;no;no;cellular;aug;mon;138;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+37;admin.;married;university.degree;unknown;yes;yes;cellular;aug;mon;243;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+59;retired;married;basic.4y;unknown;yes;no;cellular;aug;mon;163;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+35;technician;single;professional.course;no;no;no;cellular;aug;mon;166;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+45;technician;married;professional.course;no;no;no;cellular;aug;mon;82;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+29;admin.;single;high.school;unknown;yes;no;cellular;aug;mon;102;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+59;retired;married;basic.4y;unknown;no;no;cellular;aug;mon;555;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;yes
+50;admin.;married;basic.4y;unknown;yes;no;cellular;aug;mon;179;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+34;technician;married;professional.course;no;no;no;cellular;aug;mon;187;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+55;services;married;high.school;unknown;no;no;cellular;aug;mon;123;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+40;admin.;divorced;university.degree;no;yes;no;cellular;aug;mon;257;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+31;admin.;married;university.degree;unknown;yes;no;cellular;aug;mon;155;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+35;admin.;single;university.degree;no;no;no;cellular;aug;mon;90;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+31;admin.;married;university.degree;unknown;no;no;cellular;aug;mon;275;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+32;technician;single;high.school;no;no;no;cellular;aug;mon;111;5;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+52;services;married;high.school;unknown;yes;no;cellular;aug;mon;99;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+39;technician;married;university.degree;no;yes;no;cellular;aug;mon;57;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+36;technician;single;university.degree;no;yes;no;cellular;aug;mon;101;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+34;admin.;single;university.degree;no;yes;no;cellular;aug;mon;72;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+46;blue-collar;married;basic.6y;no;yes;yes;cellular;aug;mon;104;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+36;housemaid;married;basic.6y;no;no;no;cellular;aug;mon;210;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+38;technician;divorced;high.school;no;yes;no;cellular;aug;mon;384;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;yes
+51;technician;married;professional.course;unknown;yes;yes;cellular;aug;mon;273;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+31;admin.;married;university.degree;unknown;no;no;cellular;aug;mon;70;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+39;technician;single;professional.course;no;no;no;cellular;aug;mon;71;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+56;retired;married;basic.4y;no;no;no;cellular;aug;mon;97;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+45;admin.;married;university.degree;no;no;no;cellular;aug;mon;237;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+54;retired;married;basic.4y;no;no;no;cellular;aug;mon;116;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+57;technician;single;high.school;no;yes;no;cellular;aug;mon;72;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+37;admin.;married;university.degree;no;no;yes;cellular;aug;mon;170;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+32;admin.;married;university.degree;no;yes;yes;cellular;aug;mon;217;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+33;technician;married;professional.course;no;yes;no;cellular;aug;mon;169;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+47;admin.;married;university.degree;no;no;no;cellular;aug;mon;97;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+38;technician;divorced;high.school;no;no;no;cellular;aug;mon;79;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+33;technician;married;high.school;no;yes;no;cellular;aug;mon;119;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+32;admin.;single;university.degree;no;yes;no;cellular;aug;mon;86;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+36;admin.;married;university.degree;no;yes;no;cellular;aug;mon;56;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+36;admin.;married;university.degree;no;yes;no;cellular;aug;mon;149;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+32;admin.;single;university.degree;no;yes;no;cellular;aug;mon;246;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+39;admin.;single;university.degree;unknown;no;yes;cellular;aug;mon;155;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+58;retired;married;basic.4y;unknown;no;no;cellular;aug;mon;139;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+47;technician;single;high.school;no;no;no;cellular;aug;mon;160;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+30;admin.;single;university.degree;no;no;no;cellular;aug;mon;356;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+33;admin.;married;university.degree;no;no;no;cellular;aug;mon;135;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+30;admin.;single;university.degree;no;yes;no;cellular;aug;mon;128;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+30;admin.;single;university.degree;no;no;no;cellular;aug;mon;135;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+30;admin.;single;university.degree;no;no;yes;cellular;aug;mon;309;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+44;management;married;university.degree;no;yes;no;cellular;aug;mon;250;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+30;admin.;single;university.degree;no;no;yes;cellular;aug;mon;545;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;yes
+39;technician;divorced;professional.course;no;yes;no;cellular;aug;mon;316;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+39;management;married;university.degree;no;no;no;cellular;aug;mon;168;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+59;retired;married;basic.9y;no;yes;no;cellular;aug;mon;230;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+34;technician;single;professional.course;no;yes;no;cellular;aug;mon;72;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+50;technician;married;university.degree;no;yes;no;cellular;aug;mon;204;5;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+33;technician;married;professional.course;no;yes;yes;cellular;aug;mon;61;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+58;technician;married;professional.course;no;unknown;unknown;cellular;aug;mon;52;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+29;technician;married;university.degree;no;yes;no;cellular;aug;mon;242;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+31;technician;single;professional.course;no;yes;no;cellular;aug;mon;194;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+33;technician;single;high.school;no;yes;no;cellular;aug;mon;111;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+32;technician;single;university.degree;no;yes;no;cellular;aug;mon;90;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+34;technician;married;professional.course;no;no;no;cellular;aug;mon;126;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+38;admin.;married;university.degree;no;yes;no;cellular;aug;mon;317;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+35;technician;married;professional.course;no;yes;no;cellular;aug;mon;105;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+35;technician;married;professional.course;no;yes;yes;cellular;aug;mon;228;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+37;technician;single;professional.course;no;yes;no;cellular;aug;mon;76;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+37;technician;single;professional.course;no;yes;yes;cellular;aug;mon;149;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+37;technician;single;professional.course;no;yes;yes;cellular;aug;mon;331;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+36;technician;single;professional.course;no;yes;no;cellular;aug;mon;86;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+38;admin.;married;university.degree;no;yes;no;cellular;aug;mon;1070;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;yes
+36;technician;single;professional.course;no;no;no;cellular;aug;mon;209;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+36;admin.;married;university.degree;no;no;no;cellular;aug;mon;610;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;yes
+34;technician;married;professional.course;unknown;no;no;cellular;aug;mon;174;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+29;technician;married;university.degree;unknown;yes;no;cellular;aug;mon;140;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+50;management;married;university.degree;unknown;no;no;cellular;aug;mon;139;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+37;technician;single;professional.course;unknown;yes;no;cellular;aug;mon;51;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+50;management;married;university.degree;unknown;yes;no;cellular;aug;mon;699;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;yes
+45;blue-collar;married;basic.4y;unknown;yes;no;cellular;aug;mon;591;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+36;technician;married;high.school;no;no;no;cellular;aug;mon;452;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+39;technician;married;high.school;no;no;no;cellular;aug;mon;225;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+30;management;married;high.school;no;no;no;cellular;aug;mon;65;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+36;housemaid;married;basic.6y;no;no;no;cellular;aug;mon;53;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+33;technician;single;high.school;no;yes;yes;cellular;aug;mon;102;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+44;management;married;university.degree;no;yes;no;cellular;aug;mon;389;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+35;technician;married;university.degree;unknown;yes;no;cellular;aug;mon;176;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+52;blue-collar;married;basic.4y;no;yes;no;cellular;aug;mon;917;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;yes
+37;technician;married;professional.course;no;no;no;cellular;aug;mon;275;6;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+52;services;married;high.school;unknown;no;no;cellular;aug;mon;36;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+41;self-employed;married;university.degree;no;no;no;cellular;aug;mon;247;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+29;admin.;married;university.degree;no;no;no;cellular;aug;mon;63;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+36;housemaid;married;basic.6y;no;no;no;cellular;aug;mon;104;9;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+36;housemaid;married;basic.6y;no;no;no;cellular;aug;mon;55;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+50;technician;married;professional.course;unknown;yes;no;cellular;aug;mon;272;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+31;management;single;university.degree;no;no;no;cellular;aug;mon;1099;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+32;technician;married;university.degree;no;no;yes;cellular;aug;mon;331;5;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+30;technician;single;high.school;no;no;no;cellular;aug;mon;79;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+52;blue-collar;married;basic.6y;unknown;yes;no;cellular;aug;mon;108;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+36;admin.;married;university.degree;no;no;no;cellular;aug;mon;83;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+52;admin.;married;university.degree;no;no;no;cellular;aug;mon;79;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+45;admin.;married;university.degree;no;yes;no;cellular;aug;mon;177;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+40;technician;married;professional.course;no;yes;no;cellular;aug;mon;146;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+33;technician;single;high.school;no;yes;no;cellular;aug;mon;104;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+36;admin.;married;university.degree;no;yes;no;cellular;aug;mon;103;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+43;technician;married;professional.course;unknown;yes;no;cellular;aug;mon;145;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+39;management;married;university.degree;no;yes;no;cellular;aug;mon;230;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+42;technician;married;high.school;no;yes;no;cellular;aug;mon;289;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+45;admin.;married;university.degree;no;no;no;cellular;aug;mon;216;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+35;technician;married;professional.course;no;no;no;cellular;aug;mon;189;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+36;self-employed;married;high.school;unknown;yes;no;cellular;aug;mon;130;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+45;services;married;basic.9y;no;no;no;cellular;aug;mon;744;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;yes
+35;technician;married;professional.course;no;yes;no;cellular;aug;mon;185;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+45;admin.;married;university.degree;no;no;no;cellular;aug;mon;608;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;yes
+35;technician;married;professional.course;no;yes;no;cellular;aug;mon;163;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+30;admin.;married;high.school;no;yes;no;cellular;aug;mon;214;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+55;services;married;high.school;unknown;no;no;cellular;aug;mon;33;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+48;entrepreneur;married;university.degree;no;yes;no;cellular;aug;mon;105;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+31;admin.;single;university.degree;no;no;no;cellular;aug;mon;121;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+34;management;married;high.school;no;yes;no;telephone;aug;mon;80;7;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+33;technician;single;high.school;no;yes;no;cellular;aug;mon;566;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+34;technician;single;professional.course;no;no;no;cellular;aug;mon;468;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+53;blue-collar;married;basic.4y;no;yes;no;cellular;aug;mon;182;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+31;admin.;single;university.degree;no;yes;no;cellular;aug;mon;317;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+31;technician;single;professional.course;no;no;no;cellular;aug;mon;370;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+29;technician;married;university.degree;unknown;yes;no;cellular;aug;mon;120;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+45;blue-collar;married;high.school;no;yes;no;cellular;aug;mon;103;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+37;technician;divorced;professional.course;no;yes;yes;cellular;aug;mon;63;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+52;admin.;married;university.degree;no;yes;no;cellular;aug;mon;27;10;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+31;management;single;university.degree;no;no;no;cellular;aug;mon;69;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+46;admin.;married;university.degree;unknown;no;no;cellular;aug;mon;1141;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;yes
+50;technician;married;professional.course;unknown;no;no;cellular;aug;mon;378;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+36;admin.;married;university.degree;no;yes;yes;cellular;aug;mon;92;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+42;technician;single;high.school;unknown;no;no;cellular;aug;mon;135;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+50;management;married;university.degree;unknown;yes;no;cellular;aug;mon;734;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;yes
+56;retired;married;basic.4y;no;yes;no;cellular;aug;mon;153;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+49;blue-collar;married;basic.6y;no;no;no;cellular;aug;mon;133;6;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+34;technician;single;university.degree;no;no;no;cellular;aug;mon;262;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+34;admin.;married;university.degree;no;no;no;cellular;aug;mon;1238;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;yes
+32;admin.;married;university.degree;unknown;no;no;cellular;aug;mon;149;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+34;admin.;single;university.degree;no;yes;no;cellular;aug;mon;382;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+31;unemployed;single;university.degree;no;yes;no;cellular;aug;mon;55;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+49;blue-collar;married;basic.6y;no;no;no;cellular;aug;mon;383;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+49;blue-collar;married;basic.6y;no;yes;yes;cellular;aug;mon;280;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+52;technician;married;professional.course;no;yes;no;telephone;aug;mon;93;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+49;management;married;university.degree;no;no;no;cellular;aug;mon;76;5;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+48;admin.;married;high.school;no;no;no;cellular;aug;mon;121;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+30;technician;married;university.degree;no;no;no;cellular;aug;mon;176;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+32;technician;married;professional.course;no;yes;no;cellular;aug;mon;187;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+36;admin.;married;university.degree;no;yes;yes;cellular;aug;mon;246;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+30;technician;single;university.degree;no;no;no;cellular;aug;mon;107;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+30;technician;single;university.degree;no;no;yes;cellular;aug;mon;132;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+46;blue-collar;married;basic.9y;unknown;no;no;cellular;aug;mon;109;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+55;admin.;married;professional.course;no;no;no;cellular;aug;mon;381;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+52;unemployed;married;university.degree;no;yes;no;cellular;aug;mon;445;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+30;technician;single;high.school;unknown;no;no;cellular;aug;mon;129;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+30;admin.;single;university.degree;no;yes;yes;cellular;aug;mon;71;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+51;housemaid;married;basic.4y;unknown;no;no;cellular;aug;mon;80;7;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+30;technician;single;university.degree;no;yes;no;cellular;aug;mon;720;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;yes
+44;admin.;married;high.school;no;yes;yes;cellular;aug;mon;64;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+42;housemaid;married;basic.4y;no;yes;no;cellular;aug;mon;173;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+55;retired;married;professional.course;no;no;yes;cellular;aug;mon;190;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+34;admin.;single;university.degree;unknown;yes;yes;cellular;aug;mon;90;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+40;technician;married;professional.course;no;unknown;unknown;cellular;aug;mon;139;7;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+47;admin.;single;university.degree;no;no;no;cellular;aug;mon;549;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+38;technician;single;high.school;unknown;yes;yes;cellular;aug;mon;265;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+36;technician;married;high.school;no;yes;no;cellular;aug;mon;61;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+36;technician;married;high.school;no;yes;no;cellular;aug;mon;67;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+56;blue-collar;married;basic.9y;unknown;yes;yes;cellular;aug;mon;126;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+48;admin.;married;high.school;no;no;yes;cellular;aug;mon;429;6;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+30;technician;married;university.degree;no;no;yes;cellular;aug;mon;117;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+39;admin.;married;high.school;no;yes;no;cellular;aug;mon;154;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+39;technician;married;professional.course;no;no;no;cellular;aug;mon;77;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+60;retired;married;basic.4y;unknown;no;no;cellular;aug;mon;221;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+30;blue-collar;married;high.school;unknown;yes;no;cellular;aug;mon;148;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+34;admin.;single;university.degree;no;yes;no;cellular;aug;mon;118;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+29;technician;married;professional.course;no;yes;no;cellular;aug;mon;80;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+29;admin.;single;university.degree;no;yes;no;cellular;aug;mon;214;5;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+55;retired;married;basic.9y;no;no;no;cellular;aug;mon;248;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+38;admin.;married;university.degree;unknown;no;no;cellular;aug;mon;240;5;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+40;management;married;university.degree;no;yes;no;cellular;aug;mon;385;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+30;housemaid;married;basic.6y;no;yes;no;cellular;aug;mon;249;5;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+30;admin.;single;university.degree;no;yes;no;cellular;aug;mon;104;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+39;technician;single;high.school;unknown;yes;no;cellular;aug;mon;124;6;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+34;admin.;single;university.degree;no;yes;yes;cellular;aug;mon;117;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+34;admin.;single;university.degree;no;no;yes;cellular;aug;mon;312;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+34;admin.;single;university.degree;no;no;no;cellular;aug;mon;271;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+32;entrepreneur;married;university.degree;no;no;no;cellular;aug;mon;95;5;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+29;technician;single;professional.course;no;no;no;cellular;aug;mon;157;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+50;technician;married;professional.course;no;yes;no;cellular;aug;mon;1144;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+46;admin.;married;university.degree;no;no;no;cellular;aug;mon;67;5;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+37;technician;married;university.degree;unknown;yes;yes;cellular;aug;mon;108;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+36;technician;single;professional.course;no;no;no;cellular;aug;mon;345;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+39;technician;married;university.degree;no;no;no;cellular;aug;mon;101;5;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+36;technician;single;professional.course;no;no;no;cellular;aug;mon;304;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+45;entrepreneur;married;university.degree;unknown;yes;yes;cellular;aug;mon;38;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+36;technician;married;professional.course;no;no;no;cellular;aug;mon;663;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;yes
+38;technician;single;high.school;unknown;no;no;cellular;aug;mon;95;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+46;blue-collar;married;basic.9y;no;no;yes;cellular;aug;mon;268;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+29;technician;married;high.school;no;no;no;telephone;aug;mon;133;5;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+30;technician;single;high.school;unknown;no;no;cellular;aug;mon;339;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+31;technician;single;professional.course;no;yes;no;cellular;aug;mon;106;5;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+29;admin.;married;university.degree;no;yes;no;cellular;aug;mon;209;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+40;management;married;university.degree;no;no;no;cellular;aug;mon;94;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+30;technician;married;high.school;no;yes;no;cellular;aug;mon;862;9;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+51;technician;married;professional.course;no;yes;no;cellular;aug;mon;236;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+36;technician;single;professional.course;no;no;no;cellular;aug;mon;444;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;yes
+32;technician;married;professional.course;no;no;no;cellular;aug;mon;239;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+32;technician;married;university.degree;unknown;no;no;cellular;aug;mon;418;5;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;yes
+30;management;married;university.degree;no;yes;no;cellular;aug;mon;277;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+31;technician;divorced;professional.course;no;no;no;cellular;aug;mon;231;5;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+30;technician;single;high.school;unknown;no;no;cellular;aug;mon;481;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+32;technician;married;university.degree;no;yes;no;cellular;aug;mon;157;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+30;blue-collar;married;basic.9y;no;yes;no;cellular;aug;mon;277;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+33;housemaid;married;high.school;no;yes;no;cellular;aug;mon;101;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+31;management;married;university.degree;no;no;no;cellular;aug;mon;154;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+33;admin.;single;university.degree;no;unknown;unknown;cellular;aug;mon;295;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+32;admin.;married;university.degree;no;no;no;cellular;aug;mon;247;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+57;housemaid;married;basic.9y;unknown;yes;no;cellular;aug;mon;164;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+40;self-employed;single;university.degree;no;no;no;cellular;aug;mon;270;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+32;admin.;divorced;university.degree;no;yes;no;cellular;aug;mon;1080;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;yes
+36;admin.;single;university.degree;unknown;yes;no;cellular;aug;mon;159;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+35;technician;single;university.degree;no;yes;no;cellular;aug;mon;217;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+48;admin.;married;high.school;no;yes;no;cellular;aug;mon;40;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+55;blue-collar;married;basic.6y;no;yes;yes;cellular;aug;mon;179;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+38;admin.;single;university.degree;no;yes;yes;cellular;aug;mon;1504;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+58;retired;married;professional.course;unknown;no;yes;cellular;aug;mon;85;5;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+54;blue-collar;married;basic.4y;no;unknown;unknown;cellular;aug;mon;320;6;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+54;self-employed;married;basic.9y;no;no;no;cellular;aug;mon;48;5;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+50;management;married;university.degree;no;yes;yes;cellular;aug;mon;342;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+33;admin.;single;university.degree;no;yes;no;cellular;aug;mon;566;6;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+29;technician;single;professional.course;no;no;no;cellular;aug;mon;356;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+48;technician;married;university.degree;no;yes;yes;cellular;aug;mon;159;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+38;technician;married;professional.course;no;yes;no;cellular;aug;mon;479;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;yes
+40;management;married;high.school;unknown;yes;no;cellular;aug;tue;236;7;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+54;blue-collar;married;professional.course;unknown;yes;yes;cellular;aug;tue;226;6;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+56;blue-collar;married;basic.9y;no;yes;no;cellular;aug;tue;91;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+38;admin.;married;university.degree;no;no;no;cellular;aug;tue;154;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+43;admin.;married;university.degree;unknown;no;no;cellular;aug;tue;101;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+58;retired;married;basic.4y;no;no;no;cellular;aug;tue;509;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+34;admin.;single;university.degree;no;no;no;cellular;aug;tue;161;5;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+37;technician;married;high.school;unknown;no;no;cellular;aug;tue;204;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+31;admin.;married;university.degree;no;yes;no;cellular;aug;tue;64;6;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+53;admin.;divorced;university.degree;no;no;no;cellular;aug;tue;506;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;yes
+51;housemaid;married;basic.4y;unknown;no;no;cellular;aug;tue;80;5;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+31;admin.;married;university.degree;no;no;no;cellular;aug;tue;219;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+44;admin.;married;high.school;no;no;yes;cellular;aug;tue;96;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+32;admin.;married;university.degree;no;yes;yes;cellular;aug;tue;246;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+41;self-employed;married;university.degree;no;yes;no;cellular;aug;tue;92;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+50;blue-collar;married;professional.course;unknown;no;no;cellular;aug;tue;150;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+32;admin.;married;university.degree;no;yes;no;cellular;aug;tue;359;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+52;management;married;university.degree;no;yes;no;cellular;aug;tue;72;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+58;retired;married;university.degree;no;no;yes;cellular;aug;tue;138;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+35;technician;married;university.degree;no;yes;no;cellular;aug;tue;614;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+58;retired;married;university.degree;no;yes;no;cellular;aug;tue;327;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+52;management;married;university.degree;no;yes;no;cellular;aug;tue;439;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+52;housemaid;married;basic.6y;no;no;no;cellular;aug;tue;144;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+52;housemaid;married;basic.6y;no;yes;no;cellular;aug;tue;56;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+52;housemaid;married;basic.6y;no;yes;no;cellular;aug;tue;106;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+52;housemaid;married;basic.6y;no;yes;no;cellular;aug;tue;112;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+31;technician;single;high.school;no;yes;no;cellular;aug;tue;75;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+31;housemaid;single;university.degree;no;yes;no;cellular;aug;tue;348;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+31;blue-collar;married;basic.6y;no;no;no;cellular;aug;tue;132;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+31;technician;single;high.school;no;no;no;cellular;aug;tue;191;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+31;technician;single;high.school;no;yes;yes;cellular;aug;tue;428;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+34;admin.;married;university.degree;unknown;yes;no;cellular;aug;tue;82;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+47;blue-collar;married;basic.9y;no;no;no;cellular;aug;tue;172;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+32;admin.;married;university.degree;no;no;no;cellular;aug;tue;127;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+31;technician;single;high.school;no;yes;yes;cellular;aug;tue;768;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;yes
+39;management;married;university.degree;no;unknown;unknown;cellular;aug;tue;185;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+31;admin.;married;university.degree;no;no;no;cellular;aug;tue;336;6;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+52;housemaid;married;basic.6y;no;yes;no;cellular;aug;tue;1134;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;yes
+38;technician;married;university.degree;no;yes;yes;cellular;aug;tue;76;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+36;services;married;professional.course;no;yes;yes;cellular;aug;tue;81;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+33;admin.;married;university.degree;no;no;no;cellular;aug;tue;120;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+33;technician;married;professional.course;no;yes;no;cellular;aug;tue;64;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+37;technician;single;university.degree;no;yes;no;cellular;aug;tue;178;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+42;technician;divorced;professional.course;no;yes;yes;cellular;aug;tue;158;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+31;unemployed;single;university.degree;no;yes;no;cellular;aug;tue;51;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+56;retired;married;high.school;no;unknown;unknown;cellular;aug;tue;235;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+47;technician;married;professional.course;no;yes;no;cellular;aug;tue;256;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+53;entrepreneur;married;basic.9y;unknown;yes;no;cellular;aug;tue;1282;5;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;yes
+47;technician;married;professional.course;no;no;no;cellular;aug;tue;364;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+29;technician;single;professional.course;no;no;no;cellular;aug;tue;168;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+38;technician;married;high.school;no;no;no;cellular;aug;tue;138;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+33;technician;married;high.school;no;yes;no;cellular;aug;tue;68;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+51;technician;married;professional.course;no;yes;no;cellular;aug;tue;96;4;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+38;technician;married;high.school;no;unknown;unknown;cellular;aug;tue;234;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+38;technician;married;high.school;no;yes;no;cellular;aug;tue;237;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+33;technician;single;university.degree;no;yes;no;cellular;aug;tue;181;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+46;services;married;university.degree;no;no;no;cellular;aug;tue;106;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+34;technician;single;professional.course;no;yes;no;cellular;aug;tue;110;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+46;services;married;university.degree;no;no;no;cellular;aug;tue;122;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+30;admin.;single;university.degree;no;no;no;cellular;aug;tue;52;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+30;admin.;single;university.degree;no;no;no;cellular;aug;tue;126;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+32;technician;married;university.degree;no;yes;no;cellular;aug;tue;815;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;yes
+52;management;married;university.degree;unknown;no;no;cellular;aug;tue;95;5;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+52;admin.;married;university.degree;no;no;no;cellular;aug;tue;73;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+39;technician;married;high.school;no;no;no;cellular;aug;tue;116;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+30;admin.;single;university.degree;no;no;no;cellular;aug;tue;365;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+29;technician;single;high.school;no;no;no;cellular;aug;tue;63;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+52;admin.;married;university.degree;no;yes;no;cellular;aug;tue;250;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+31;housemaid;single;professional.course;unknown;yes;yes;cellular;aug;tue;213;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+35;services;married;high.school;no;yes;no;cellular;aug;tue;126;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+35;services;married;high.school;no;no;no;cellular;aug;tue;63;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+35;services;married;high.school;no;yes;no;cellular;aug;tue;68;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+33;technician;married;professional.course;no;no;no;cellular;aug;tue;74;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+31;unemployed;single;university.degree;no;yes;no;cellular;aug;tue;77;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+30;admin.;single;university.degree;no;yes;yes;cellular;aug;tue;29;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+33;technician;married;professional.course;no;yes;no;cellular;aug;tue;147;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+52;admin.;married;university.degree;no;yes;no;cellular;aug;tue;867;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+40;admin.;married;university.degree;no;yes;no;cellular;aug;tue;124;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+40;admin.;married;university.degree;no;yes;yes;cellular;aug;tue;117;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+37;technician;single;professional.course;unknown;yes;no;cellular;aug;tue;971;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;yes
+40;admin.;married;university.degree;no;no;no;cellular;aug;tue;139;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+50;blue-collar;married;basic.4y;unknown;yes;no;cellular;aug;tue;105;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+45;technician;married;professional.course;no;yes;no;cellular;aug;tue;196;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+45;technician;married;professional.course;no;no;no;cellular;aug;tue;105;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+42;admin.;married;university.degree;no;yes;no;cellular;aug;tue;193;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+34;management;married;university.degree;no;yes;no;cellular;aug;tue;227;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+49;blue-collar;married;basic.6y;no;yes;no;cellular;aug;tue;232;4;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+37;technician;married;professional.course;no;yes;yes;cellular;aug;tue;95;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+48;admin.;married;university.degree;no;no;no;cellular;aug;tue;80;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+39;admin.;married;high.school;no;yes;no;cellular;aug;tue;101;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+59;technician;married;professional.course;no;no;yes;cellular;aug;tue;138;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+51;entrepreneur;married;basic.4y;unknown;no;no;cellular;aug;tue;148;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+33;technician;single;professional.course;no;yes;no;cellular;aug;tue;396;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;yes
+51;management;married;high.school;no;no;no;cellular;aug;tue;121;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+31;unemployed;single;university.degree;no;yes;no;cellular;aug;tue;174;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+29;technician;single;professional.course;no;no;no;cellular;aug;tue;603;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+37;technician;married;high.school;unknown;yes;no;cellular;aug;tue;69;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+31;technician;married;high.school;no;no;no;cellular;aug;tue;87;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+31;admin.;single;university.degree;no;yes;no;cellular;aug;tue;106;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+38;technician;single;high.school;unknown;no;yes;cellular;aug;tue;100;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+31;admin.;single;university.degree;no;no;no;cellular;aug;tue;138;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+50;self-employed;married;university.degree;no;yes;no;cellular;aug;tue;155;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+50;self-employed;married;university.degree;no;yes;no;cellular;aug;tue;123;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+31;admin.;single;university.degree;no;yes;yes;cellular;aug;tue;338;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+31;admin.;single;university.degree;no;no;no;cellular;aug;tue;507;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;yes
+45;self-employed;married;basic.4y;unknown;unknown;unknown;cellular;aug;tue;104;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+31;unemployed;single;university.degree;no;no;no;cellular;aug;tue;85;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+46;services;married;unknown;no;no;no;cellular;aug;tue;177;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+51;admin.;divorced;professional.course;no;no;yes;cellular;aug;tue;207;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+35;technician;married;high.school;no;no;no;cellular;aug;tue;150;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+32;admin.;divorced;university.degree;no;yes;no;cellular;aug;tue;105;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+34;services;married;professional.course;no;yes;no;cellular;aug;tue;126;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+31;admin.;single;university.degree;no;yes;no;cellular;aug;tue;130;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+35;technician;married;high.school;no;yes;no;cellular;aug;tue;603;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+32;admin.;divorced;university.degree;no;yes;no;cellular;aug;tue;66;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+32;admin.;single;university.degree;unknown;no;no;cellular;aug;tue;240;5;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+32;technician;married;high.school;no;yes;no;cellular;aug;tue;109;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+35;technician;single;university.degree;no;yes;no;cellular;aug;tue;439;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;yes
+36;technician;single;professional.course;no;unknown;unknown;cellular;aug;tue;217;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+51;blue-collar;married;basic.9y;unknown;yes;no;cellular;aug;tue;107;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+32;technician;married;professional.course;no;no;no;cellular;aug;tue;252;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+36;technician;single;university.degree;unknown;no;no;cellular;aug;tue;73;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+36;admin.;divorced;university.degree;no;no;no;cellular;aug;tue;61;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+60;services;married;high.school;unknown;no;no;cellular;aug;tue;73;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+39;technician;divorced;professional.course;no;yes;yes;cellular;aug;tue;80;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+38;technician;married;high.school;no;no;no;cellular;aug;tue;197;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+32;technician;single;university.degree;no;yes;no;cellular;aug;tue;171;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+34;technician;single;university.degree;no;yes;no;cellular;aug;tue;436;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+38;admin.;married;university.degree;no;yes;no;cellular;aug;tue;119;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+33;technician;married;professional.course;no;no;no;cellular;aug;tue;129;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+41;technician;married;professional.course;no;no;no;cellular;aug;tue;152;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+41;technician;married;professional.course;no;no;no;cellular;aug;tue;131;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+54;admin.;married;high.school;no;no;yes;cellular;aug;tue;150;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+45;admin.;married;high.school;unknown;yes;no;cellular;aug;tue;128;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+47;blue-collar;married;basic.6y;no;no;no;cellular;aug;tue;56;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+47;blue-collar;married;basic.6y;no;yes;no;cellular;aug;tue;64;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+48;blue-collar;married;basic.9y;no;yes;no;cellular;aug;tue;108;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+48;blue-collar;married;basic.9y;no;yes;no;cellular;aug;tue;84;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+44;services;married;high.school;unknown;yes;no;cellular;aug;tue;157;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+30;admin.;single;university.degree;no;no;no;cellular;aug;tue;312;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+36;management;married;university.degree;no;no;no;cellular;aug;tue;231;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+41;admin.;single;university.degree;unknown;no;no;cellular;aug;tue;121;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+40;technician;married;high.school;no;no;no;cellular;aug;tue;370;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+31;self-employed;married;university.degree;no;no;no;cellular;aug;tue;201;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+51;housemaid;married;basic.4y;unknown;yes;no;cellular;aug;tue;234;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+37;admin.;married;university.degree;unknown;yes;no;cellular;aug;tue;191;5;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+30;technician;single;university.degree;no;yes;yes;cellular;aug;tue;433;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+48;admin.;married;basic.9y;no;yes;no;cellular;aug;tue;1181;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;yes
+48;admin.;married;basic.9y;no;yes;no;cellular;aug;tue;92;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+53;management;married;university.degree;no;yes;no;cellular;aug;tue;1133;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;yes
+37;technician;married;high.school;unknown;yes;no;cellular;aug;tue;76;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+42;self-employed;married;university.degree;unknown;yes;no;cellular;aug;tue;91;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+35;technician;divorced;professional.course;no;yes;no;cellular;aug;tue;536;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+33;technician;married;high.school;no;no;no;cellular;aug;tue;398;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+38;technician;single;high.school;unknown;no;no;cellular;aug;tue;104;6;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+49;management;married;university.degree;no;no;yes;cellular;aug;tue;297;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+31;technician;single;high.school;no;yes;no;cellular;aug;tue;193;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+36;technician;single;professional.course;no;yes;yes;cellular;aug;tue;127;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+33;admin.;married;university.degree;no;no;yes;cellular;aug;tue;72;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+50;blue-collar;married;basic.6y;unknown;no;no;cellular;aug;tue;137;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+48;admin.;married;university.degree;no;yes;no;telephone;aug;tue;58;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+43;technician;married;professional.course;unknown;no;no;cellular;aug;tue;926;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;yes
+35;unemployed;married;university.degree;no;no;no;cellular;aug;tue;117;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+46;admin.;divorced;university.degree;no;yes;yes;cellular;aug;tue;121;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+32;technician;married;university.degree;no;no;yes;cellular;aug;tue;226;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+37;admin.;divorced;university.degree;no;no;no;cellular;aug;tue;355;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+33;technician;married;professional.course;no;no;yes;cellular;aug;tue;587;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;yes
+43;admin.;divorced;university.degree;unknown;no;no;cellular;aug;tue;111;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+39;self-employed;married;basic.9y;no;no;no;cellular;aug;tue;139;4;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+32;technician;married;university.degree;no;yes;no;cellular;aug;tue;83;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+45;self-employed;married;basic.4y;unknown;no;no;cellular;aug;tue;97;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+45;admin.;married;university.degree;no;no;no;cellular;aug;tue;632;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+35;management;married;university.degree;no;no;no;cellular;aug;tue;186;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+35;self-employed;married;university.degree;no;no;no;cellular;aug;tue;112;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+32;admin.;divorced;university.degree;no;no;no;cellular;aug;tue;225;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+35;management;married;university.degree;no;no;no;cellular;aug;tue;253;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+35;technician;married;high.school;unknown;no;no;cellular;aug;tue;112;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+35;management;married;university.degree;no;yes;no;cellular;aug;tue;284;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+35;technician;married;high.school;unknown;no;yes;cellular;aug;tue;306;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+35;management;married;university.degree;no;unknown;unknown;cellular;aug;tue;696;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;yes
+33;admin.;married;university.degree;no;no;no;cellular;aug;tue;66;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+32;technician;single;university.degree;no;yes;no;cellular;aug;tue;114;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+42;admin.;single;university.degree;no;no;no;cellular;aug;tue;105;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+42;technician;single;university.degree;no;yes;no;cellular;aug;tue;578;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+29;management;married;university.degree;no;yes;yes;cellular;aug;tue;116;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+59;retired;married;basic.9y;unknown;yes;no;cellular;aug;tue;464;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+32;admin.;married;university.degree;unknown;yes;no;cellular;aug;tue;134;4;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+53;admin.;married;basic.9y;no;yes;no;cellular;aug;tue;158;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+32;technician;single;university.degree;no;yes;no;cellular;aug;tue;645;4;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;yes
+46;services;married;university.degree;no;no;no;cellular;aug;tue;246;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+32;technician;single;professional.course;no;yes;no;cellular;aug;tue;473;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;yes
+50;admin.;married;university.degree;no;yes;no;cellular;aug;tue;304;8;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+31;technician;single;high.school;no;yes;yes;cellular;aug;tue;559;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;yes
+32;technician;single;university.degree;no;no;no;cellular;aug;tue;264;12;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+44;management;married;basic.9y;no;yes;no;cellular;aug;tue;100;5;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+32;technician;single;university.degree;no;no;yes;cellular;aug;tue;1092;4;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;yes
+41;technician;married;professional.course;no;no;no;cellular;aug;tue;174;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+41;technician;married;professional.course;no;yes;no;cellular;aug;tue;127;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+49;retired;divorced;professional.course;no;yes;yes;telephone;aug;tue;128;8;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+36;admin.;single;university.degree;no;yes;no;cellular;aug;tue;1344;7;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;yes
+41;technician;married;professional.course;no;yes;no;cellular;aug;tue;127;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+35;technician;single;university.degree;no;no;no;cellular;aug;tue;218;4;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+53;blue-collar;married;basic.4y;unknown;yes;no;cellular;aug;tue;178;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+31;services;single;university.degree;unknown;yes;no;cellular;aug;tue;1307;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;yes
+56;admin.;married;university.degree;no;yes;no;cellular;aug;tue;153;4;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+41;technician;married;professional.course;no;yes;no;cellular;aug;tue;1344;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;yes
+58;housemaid;married;basic.4y;no;no;no;cellular;aug;tue;168;5;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+48;blue-collar;married;basic.9y;unknown;no;no;cellular;aug;tue;213;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+46;blue-collar;married;basic.4y;unknown;yes;no;cellular;aug;tue;978;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;yes
+54;blue-collar;married;basic.4y;unknown;yes;no;cellular;aug;tue;781;5;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+32;admin.;married;university.degree;no;no;no;cellular;aug;tue;588;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+38;technician;divorced;professional.course;no;yes;no;cellular;aug;tue;75;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+31;housemaid;married;basic.4y;no;no;no;cellular;aug;tue;145;8;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+46;blue-collar;married;basic.4y;unknown;yes;no;cellular;aug;tue;42;4;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+54;services;married;basic.4y;no;yes;no;cellular;aug;tue;50;4;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+32;technician;single;university.degree;no;no;no;cellular;aug;tue;432;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;yes
+40;management;married;university.degree;no;no;yes;cellular;aug;tue;454;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+32;admin.;single;university.degree;no;no;no;cellular;aug;tue;1613;1;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;yes
+31;admin.;married;university.degree;no;no;no;cellular;aug;tue;141;5;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+54;blue-collar;married;basic.9y;unknown;yes;no;cellular;aug;tue;439;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+34;technician;single;university.degree;no;no;no;cellular;aug;tue;136;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+53;management;married;university.degree;no;no;no;cellular;aug;tue;864;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+49;blue-collar;married;basic.9y;unknown;no;no;cellular;aug;tue;474;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+30;technician;single;professional.course;no;no;no;cellular;aug;tue;216;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+36;admin.;single;university.degree;no;no;yes;cellular;aug;tue;459;4;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+31;technician;single;university.degree;no;yes;no;cellular;aug;tue;128;5;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+33;self-employed;married;university.degree;no;yes;no;cellular;aug;tue;418;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+33;admin.;single;university.degree;no;yes;no;cellular;aug;tue;226;4;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+46;admin.;married;high.school;no;yes;no;cellular;aug;tue;252;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+48;blue-collar;married;basic.4y;no;no;no;cellular;aug;tue;134;7;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+52;housemaid;divorced;high.school;no;yes;no;cellular;aug;tue;140;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+39;admin.;divorced;university.degree;no;yes;no;cellular;aug;tue;180;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+52;services;married;basic.4y;no;yes;no;cellular;aug;tue;483;4;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+31;technician;single;university.degree;no;no;no;cellular;aug;tue;409;7;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+32;technician;single;high.school;no;yes;no;cellular;aug;tue;222;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+33;technician;married;university.degree;no;yes;no;cellular;aug;tue;664;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;yes
+57;admin.;married;university.degree;no;no;no;cellular;aug;tue;612;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+31;housemaid;married;basic.4y;no;no;yes;cellular;aug;tue;129;6;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+45;management;married;university.degree;no;yes;no;cellular;aug;tue;1735;4;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;yes
+54;admin.;married;university.degree;no;yes;no;cellular;aug;tue;243;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+56;blue-collar;married;unknown;no;yes;no;cellular;aug;tue;178;8;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+38;technician;married;professional.course;no;yes;no;cellular;aug;tue;124;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+44;management;married;basic.9y;no;yes;no;cellular;aug;tue;284;4;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+33;technician;married;professional.course;no;no;no;cellular;aug;tue;129;4;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+34;admin.;married;high.school;no;yes;no;cellular;aug;tue;228;5;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+33;technician;married;professional.course;no;yes;no;cellular;aug;tue;940;10;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;yes
+32;admin.;single;university.degree;no;yes;no;cellular;aug;tue;460;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+32;technician;married;professional.course;unknown;yes;no;cellular;aug;tue;796;4;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;yes
+54;services;married;high.school;no;yes;no;cellular;aug;tue;136;5;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+46;blue-collar;married;basic.4y;unknown;yes;no;cellular;aug;tue;58;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+31;admin.;single;university.degree;no;yes;no;cellular;aug;tue;465;6;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+54;blue-collar;married;basic.9y;unknown;no;no;cellular;aug;tue;112;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+47;admin.;divorced;high.school;no;no;no;cellular;aug;tue;204;6;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+32;admin.;married;high.school;no;yes;yes;cellular;aug;tue;711;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+34;admin.;single;university.degree;no;no;no;cellular;aug;tue;121;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+46;blue-collar;married;basic.4y;unknown;no;no;cellular;aug;tue;83;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+54;services;married;high.school;no;no;no;cellular;aug;tue;321;4;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+41;technician;married;professional.course;no;no;no;cellular;aug;tue;1476;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+35;technician;married;university.degree;no;no;yes;cellular;aug;tue;204;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+41;technician;married;professional.course;no;yes;no;cellular;aug;tue;161;2;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+36;technician;married;university.degree;no;yes;no;cellular;aug;tue;120;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+46;services;married;basic.4y;unknown;no;no;cellular;aug;tue;507;3;999;0;nonexistent;1.4;93.444;-36.1;4.966;5228.1;no
+31;admin.;divorced;university.degree;no;yes;no;cellular;aug;wed;77;6;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+60;services;married;basic.4y;no;yes;no;telephone;aug;wed;767;7;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+54;blue-collar;married;basic.9y;unknown;yes;no;cellular;aug;wed;388;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+56;admin.;married;professional.course;no;yes;no;cellular;aug;wed;106;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+32;technician;single;university.degree;no;yes;no;cellular;aug;wed;168;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+35;management;married;university.degree;no;yes;yes;cellular;aug;wed;239;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+57;self-employed;married;basic.9y;no;no;no;cellular;aug;wed;139;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+29;technician;unknown;high.school;no;yes;no;cellular;aug;wed;78;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+29;technician;unknown;high.school;no;yes;no;cellular;aug;wed;536;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+36;admin.;married;university.degree;unknown;yes;no;cellular;aug;wed;295;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+32;admin.;married;university.degree;no;yes;yes;cellular;aug;wed;224;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+35;admin.;married;university.degree;unknown;yes;yes;cellular;aug;wed;156;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+34;admin.;married;university.degree;unknown;yes;no;cellular;aug;wed;206;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+33;technician;single;university.degree;no;no;no;cellular;aug;wed;317;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+30;technician;married;high.school;no;no;no;cellular;aug;wed;176;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+35;technician;married;professional.course;unknown;yes;yes;cellular;aug;wed;69;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+44;management;married;basic.9y;no;yes;no;cellular;aug;wed;244;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+46;technician;married;professional.course;no;yes;no;cellular;aug;wed;114;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+35;admin.;single;university.degree;no;yes;yes;cellular;aug;wed;132;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+41;housemaid;married;basic.6y;unknown;no;no;cellular;aug;wed;186;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+30;technician;married;professional.course;no;no;yes;cellular;aug;wed;128;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+30;technician;married;professional.course;no;yes;no;cellular;aug;wed;78;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+44;blue-collar;married;basic.6y;no;no;no;cellular;aug;wed;128;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+30;technician;married;professional.course;no;no;yes;cellular;aug;wed;100;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+51;admin.;married;university.degree;unknown;yes;no;cellular;aug;wed;96;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+32;admin.;married;university.degree;no;yes;no;cellular;aug;wed;1842;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;yes
+51;admin.;married;university.degree;unknown;unknown;unknown;cellular;aug;wed;332;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+33;admin.;single;university.degree;no;no;no;cellular;aug;wed;159;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+34;admin.;single;university.degree;unknown;no;no;telephone;aug;wed;127;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+31;technician;single;high.school;no;no;no;cellular;aug;wed;303;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+45;blue-collar;married;high.school;unknown;yes;no;cellular;aug;wed;969;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;yes
+59;retired;married;university.degree;no;no;yes;cellular;aug;wed;295;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+38;management;married;university.degree;no;no;no;cellular;aug;wed;157;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+32;admin.;single;university.degree;no;no;no;cellular;aug;wed;823;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;yes
+38;management;married;university.degree;no;no;no;cellular;aug;wed;58;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+33;technician;married;high.school;no;no;no;cellular;aug;wed;703;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;yes
+43;admin.;married;university.degree;no;no;no;telephone;aug;wed;618;8;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;yes
+47;services;married;high.school;unknown;yes;no;cellular;aug;wed;370;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+31;services;single;university.degree;unknown;yes;no;cellular;aug;wed;55;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+58;admin.;married;university.degree;no;yes;no;cellular;aug;wed;225;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+58;admin.;married;university.degree;no;no;no;cellular;aug;wed;460;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+32;technician;single;university.degree;no;yes;yes;cellular;aug;wed;93;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+35;technician;married;university.degree;no;yes;no;cellular;aug;wed;455;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;yes
+51;admin.;single;university.degree;no;no;no;telephone;aug;wed;214;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+52;admin.;married;high.school;no;no;no;cellular;aug;wed;139;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+44;technician;divorced;professional.course;no;no;no;cellular;aug;wed;57;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+38;management;married;university.degree;unknown;no;yes;cellular;aug;wed;107;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+46;blue-collar;married;basic.9y;no;no;no;cellular;aug;wed;239;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+36;admin.;single;university.degree;no;no;no;cellular;aug;wed;142;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+56;admin.;married;university.degree;unknown;yes;yes;cellular;aug;wed;287;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+39;technician;married;professional.course;no;yes;yes;cellular;aug;wed;86;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+40;management;married;high.school;no;no;yes;cellular;aug;wed;258;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+34;admin.;divorced;university.degree;no;no;no;cellular;aug;wed;185;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+39;technician;married;professional.course;no;no;no;cellular;aug;wed;458;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+54;services;married;basic.4y;no;no;no;cellular;aug;wed;211;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+57;admin.;single;university.degree;unknown;yes;yes;cellular;aug;wed;73;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+33;admin.;single;university.degree;unknown;yes;yes;cellular;aug;wed;121;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+54;services;married;basic.4y;no;yes;yes;cellular;aug;wed;900;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+57;admin.;single;university.degree;unknown;yes;yes;cellular;aug;wed;143;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+57;admin.;single;university.degree;unknown;yes;no;cellular;aug;wed;334;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+57;admin.;single;university.degree;unknown;no;no;cellular;aug;wed;112;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+55;entrepreneur;divorced;high.school;unknown;no;no;cellular;aug;wed;88;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+32;technician;married;university.degree;no;yes;yes;cellular;aug;wed;123;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+29;technician;single;professional.course;no;yes;yes;cellular;aug;wed;106;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+40;technician;married;professional.course;unknown;yes;yes;cellular;aug;wed;115;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+46;admin.;married;university.degree;no;yes;no;cellular;aug;wed;73;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+42;admin.;married;university.degree;no;yes;no;cellular;aug;wed;71;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+33;admin.;single;university.degree;no;yes;yes;cellular;aug;wed;110;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+57;admin.;married;university.degree;unknown;no;no;cellular;aug;wed;846;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;yes
+42;admin.;married;university.degree;no;yes;no;cellular;aug;wed;334;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+34;admin.;divorced;university.degree;no;no;no;cellular;aug;wed;105;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+34;admin.;divorced;university.degree;no;yes;yes;cellular;aug;wed;109;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+42;unemployed;married;university.degree;unknown;no;yes;cellular;aug;wed;110;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+58;admin.;married;university.degree;no;no;no;cellular;aug;wed;233;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+48;unemployed;married;basic.4y;unknown;yes;no;cellular;aug;wed;57;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+30;technician;married;university.degree;unknown;no;yes;cellular;aug;wed;96;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+42;admin.;married;university.degree;no;no;no;cellular;aug;wed;58;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+44;admin.;married;university.degree;unknown;no;yes;cellular;aug;wed;227;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+48;management;married;university.degree;unknown;no;no;cellular;aug;wed;127;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+36;admin.;divorced;university.degree;unknown;yes;yes;cellular;aug;wed;283;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+54;admin.;single;university.degree;no;yes;no;cellular;aug;wed;104;9;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+41;admin.;married;university.degree;no;yes;no;cellular;aug;wed;206;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+31;admin.;married;high.school;no;yes;no;cellular;aug;wed;91;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+31;admin.;married;high.school;no;yes;no;cellular;aug;wed;170;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+41;admin.;married;university.degree;no;yes;no;cellular;aug;wed;460;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+33;technician;single;university.degree;unknown;unknown;unknown;cellular;aug;wed;690;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+45;self-employed;married;basic.6y;no;yes;no;cellular;aug;wed;100;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+31;admin.;single;university.degree;no;yes;no;cellular;aug;wed;127;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+40;technician;married;professional.course;unknown;yes;no;cellular;aug;wed;192;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+35;technician;single;professional.course;no;yes;no;cellular;aug;wed;114;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+32;technician;married;professional.course;no;yes;no;cellular;aug;wed;159;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+29;technician;married;university.degree;no;no;no;cellular;aug;wed;183;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+29;technician;married;university.degree;no;no;yes;cellular;aug;wed;80;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+55;technician;married;university.degree;unknown;no;no;cellular;aug;wed;144;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+45;technician;married;professional.course;no;no;no;cellular;aug;wed;132;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+57;admin.;single;university.degree;unknown;yes;no;cellular;aug;wed;86;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+52;blue-collar;married;basic.4y;no;no;no;cellular;aug;wed;269;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+54;blue-collar;married;basic.4y;unknown;yes;no;cellular;aug;wed;73;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+54;blue-collar;married;basic.4y;unknown;yes;no;cellular;aug;wed;261;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+31;technician;married;professional.course;no;yes;no;cellular;aug;wed;409;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+34;admin.;single;university.degree;no;yes;no;cellular;aug;wed;100;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+54;blue-collar;married;basic.4y;unknown;yes;no;cellular;aug;wed;60;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+34;admin.;single;university.degree;no;yes;no;cellular;aug;wed;165;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+31;admin.;single;university.degree;no;yes;no;cellular;aug;wed;94;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+45;blue-collar;married;basic.9y;no;no;no;cellular;aug;wed;325;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+54;blue-collar;married;basic.4y;unknown;unknown;unknown;cellular;aug;wed;88;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+29;technician;married;university.degree;no;no;no;cellular;aug;wed;201;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+57;admin.;married;university.degree;no;no;no;cellular;aug;wed;182;6;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+54;blue-collar;married;basic.4y;unknown;yes;no;cellular;aug;wed;403;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+50;admin.;married;university.degree;no;yes;no;cellular;aug;wed;1149;5;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;yes
+39;admin.;divorced;university.degree;no;yes;no;cellular;aug;wed;130;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+33;technician;single;university.degree;no;yes;no;telephone;aug;wed;827;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;yes
+40;management;married;high.school;no;no;yes;cellular;aug;wed;119;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+40;management;married;high.school;no;yes;no;cellular;aug;wed;286;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+39;management;married;high.school;no;no;no;cellular;aug;wed;271;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+39;admin.;single;university.degree;no;yes;no;cellular;aug;wed;169;5;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+30;technician;married;high.school;no;yes;no;cellular;aug;wed;143;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+52;admin.;married;university.degree;unknown;yes;no;cellular;aug;wed;81;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+59;blue-collar;married;basic.4y;unknown;yes;no;cellular;aug;wed;145;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+44;admin.;married;university.degree;unknown;yes;no;cellular;aug;wed;641;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;yes
+34;technician;single;university.degree;no;no;no;cellular;aug;wed;62;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+46;blue-collar;married;basic.6y;unknown;no;no;cellular;aug;wed;151;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+31;technician;married;professional.course;no;yes;no;cellular;aug;wed;87;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+34;admin.;married;university.degree;no;no;no;cellular;aug;wed;202;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+34;admin.;married;university.degree;no;yes;no;cellular;aug;wed;270;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+30;admin.;married;high.school;unknown;yes;no;cellular;aug;wed;299;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+57;admin.;single;university.degree;unknown;yes;no;cellular;aug;wed;404;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;yes
+39;technician;married;professional.course;no;yes;yes;cellular;aug;wed;657;6;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;yes
+58;retired;married;basic.4y;no;no;no;cellular;aug;wed;180;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+52;technician;married;professional.course;no;yes;yes;cellular;aug;wed;203;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+33;admin.;single;university.degree;no;yes;no;cellular;aug;wed;66;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+32;management;married;university.degree;no;yes;no;cellular;aug;wed;78;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+56;admin.;married;university.degree;unknown;yes;no;cellular;aug;wed;78;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+53;admin.;married;university.degree;no;yes;no;cellular;aug;wed;79;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+54;services;married;basic.4y;no;yes;yes;cellular;aug;wed;250;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+60;retired;married;basic.9y;unknown;no;no;cellular;aug;wed;707;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;yes
+32;admin.;single;university.degree;unknown;yes;no;cellular;aug;wed;141;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+50;services;married;high.school;no;yes;no;cellular;aug;wed;737;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;yes
+55;technician;married;university.degree;unknown;yes;no;cellular;aug;wed;150;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+34;admin.;divorced;university.degree;no;yes;no;cellular;aug;wed;324;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+35;technician;single;professional.course;no;yes;no;cellular;aug;wed;156;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+31;technician;married;professional.course;no;no;no;cellular;aug;wed;112;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+58;admin.;married;university.degree;no;yes;no;cellular;aug;wed;328;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+31;technician;married;university.degree;no;yes;yes;cellular;aug;wed;156;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+31;technician;married;university.degree;no;yes;no;cellular;aug;wed;376;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+44;management;married;basic.9y;no;yes;no;cellular;aug;wed;260;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+46;admin.;married;high.school;no;no;yes;cellular;aug;wed;871;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;yes
+32;technician;married;university.degree;no;yes;yes;cellular;aug;wed;89;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+48;admin.;married;high.school;no;yes;no;cellular;aug;wed;110;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+57;blue-collar;married;basic.9y;unknown;no;no;cellular;aug;wed;175;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+57;blue-collar;married;basic.9y;unknown;yes;no;cellular;aug;wed;122;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+57;blue-collar;married;basic.9y;unknown;yes;no;cellular;aug;wed;145;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+34;entrepreneur;married;unknown;no;yes;no;cellular;aug;wed;98;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+34;entrepreneur;married;unknown;no;no;no;cellular;aug;wed;165;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+40;management;married;high.school;no;no;no;cellular;aug;wed;838;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;yes
+34;entrepreneur;married;unknown;no;yes;yes;cellular;aug;wed;684;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+44;blue-collar;married;basic.4y;unknown;yes;yes;cellular;aug;wed;310;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+46;unemployed;married;basic.9y;unknown;no;no;cellular;aug;wed;98;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+33;self-employed;single;university.degree;no;no;no;telephone;aug;wed;79;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+44;blue-collar;married;basic.6y;no;no;no;cellular;aug;wed;15;12;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+34;admin.;single;university.degree;no;yes;no;cellular;aug;wed;1038;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;yes
+52;admin.;divorced;university.degree;no;no;no;cellular;aug;wed;559;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+47;admin.;married;professional.course;no;yes;no;cellular;aug;wed;136;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+37;technician;married;professional.course;no;yes;yes;cellular;aug;wed;733;5;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+34;unknown;married;basic.6y;no;yes;no;cellular;aug;wed;713;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+29;technician;unknown;high.school;no;yes;no;cellular;aug;wed;243;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+31;technician;single;high.school;unknown;no;no;cellular;aug;wed;104;5;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+46;management;married;university.degree;no;no;no;cellular;aug;wed;517;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+52;housemaid;married;basic.6y;unknown;no;no;cellular;aug;wed;217;11;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+44;blue-collar;married;basic.6y;no;no;no;cellular;aug;wed;195;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+32;management;married;university.degree;no;yes;no;cellular;aug;wed;343;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+41;housemaid;single;university.degree;no;yes;no;cellular;aug;wed;116;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+57;technician;divorced;university.degree;no;yes;no;cellular;aug;wed;96;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+33;technician;married;university.degree;no;yes;no;cellular;aug;wed;111;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+51;management;married;high.school;unknown;no;no;cellular;aug;wed;158;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+49;blue-collar;married;basic.9y;unknown;no;yes;cellular;aug;wed;92;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+34;entrepreneur;married;professional.course;no;no;no;cellular;aug;wed;327;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+54;management;married;university.degree;no;no;yes;cellular;aug;wed;990;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;yes
+48;admin.;married;university.degree;unknown;yes;yes;cellular;aug;wed;523;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+59;self-employed;married;basic.9y;no;yes;no;cellular;aug;wed;160;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+35;technician;single;professional.course;no;yes;no;cellular;aug;wed;152;5;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+36;admin.;unknown;university.degree;no;no;no;cellular;aug;wed;69;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+37;technician;single;professional.course;no;yes;no;cellular;aug;wed;144;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+36;admin.;unknown;university.degree;no;yes;no;cellular;aug;wed;529;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;yes
+55;housemaid;married;university.degree;no;no;no;cellular;aug;wed;363;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+41;technician;married;professional.course;no;no;no;cellular;aug;wed;76;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+49;blue-collar;married;basic.4y;no;yes;no;cellular;aug;wed;342;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+39;management;married;university.degree;no;yes;no;telephone;aug;wed;306;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;yes
+33;technician;married;professional.course;unknown;yes;no;cellular;aug;wed;31;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+30;admin.;single;university.degree;no;yes;yes;cellular;aug;wed;75;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+54;blue-collar;married;basic.4y;unknown;yes;yes;cellular;aug;wed;111;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+29;blue-collar;single;university.degree;no;yes;no;cellular;aug;wed;68;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+34;technician;married;professional.course;no;no;no;cellular;aug;wed;1148;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;yes
+29;admin.;single;high.school;no;yes;no;cellular;aug;wed;257;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+45;admin.;single;university.degree;no;yes;no;cellular;aug;wed;99;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+37;admin.;married;university.degree;no;no;no;cellular;aug;wed;356;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+29;technician;single;high.school;no;yes;no;cellular;aug;wed;212;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+30;admin.;married;university.degree;no;no;no;cellular;aug;wed;139;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+51;blue-collar;married;basic.9y;unknown;no;no;telephone;aug;wed;490;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+54;retired;married;basic.4y;unknown;yes;no;cellular;aug;wed;175;5;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+59;blue-collar;married;basic.4y;unknown;no;no;cellular;aug;wed;130;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+52;blue-collar;married;basic.6y;unknown;yes;no;cellular;aug;wed;121;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+54;technician;married;university.degree;no;yes;no;cellular;aug;wed;78;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+57;management;married;university.degree;unknown;no;no;cellular;aug;wed;73;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+31;technician;married;professional.course;unknown;yes;no;cellular;aug;wed;84;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+32;admin.;single;university.degree;no;no;no;cellular;aug;wed;168;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+56;retired;married;university.degree;no;no;no;cellular;aug;wed;388;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+39;admin.;divorced;university.degree;no;no;no;cellular;aug;wed;99;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+44;technician;divorced;professional.course;unknown;yes;yes;cellular;aug;wed;418;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+31;admin.;single;university.degree;no;no;no;cellular;aug;wed;222;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+34;entrepreneur;married;professional.course;no;yes;no;cellular;aug;wed;73;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+51;blue-collar;married;basic.9y;unknown;no;no;cellular;aug;wed;202;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+46;retired;married;basic.9y;unknown;yes;no;cellular;aug;wed;394;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+31;admin.;married;university.degree;no;yes;no;cellular;aug;wed;109;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+51;management;married;high.school;unknown;yes;no;cellular;aug;wed;233;6;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+57;management;married;university.degree;unknown;no;no;cellular;aug;wed;338;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+57;technician;single;university.degree;unknown;yes;no;cellular;aug;wed;107;8;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+30;admin.;married;university.degree;no;no;no;cellular;aug;wed;163;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+31;admin.;single;university.degree;no;yes;no;cellular;aug;wed;86;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+59;retired;married;university.degree;unknown;yes;no;cellular;aug;wed;83;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+45;blue-collar;married;high.school;unknown;yes;no;cellular;aug;wed;399;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+31;admin.;married;university.degree;no;yes;yes;cellular;aug;wed;274;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+55;technician;divorced;professional.course;no;yes;no;cellular;aug;wed;150;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+34;admin.;single;university.degree;no;yes;no;cellular;aug;wed;209;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+34;admin.;single;university.degree;no;yes;no;cellular;aug;wed;67;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+32;technician;single;university.degree;no;yes;no;cellular;aug;wed;75;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+35;admin.;married;university.degree;unknown;no;no;cellular;aug;wed;181;5;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+59;blue-collar;married;basic.4y;unknown;no;no;cellular;aug;wed;413;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+48;technician;married;high.school;no;no;no;cellular;aug;wed;58;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+33;management;married;university.degree;no;yes;no;cellular;aug;wed;399;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+45;blue-collar;married;basic.6y;no;no;yes;cellular;aug;wed;48;8;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+42;technician;single;university.degree;no;yes;yes;cellular;aug;wed;275;8;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+31;technician;single;professional.course;no;yes;no;cellular;aug;wed;449;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+35;technician;single;professional.course;no;yes;no;cellular;aug;wed;536;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+32;technician;single;university.degree;no;yes;no;cellular;aug;wed;158;5;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+33;management;married;university.degree;no;no;no;cellular;aug;wed;113;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+45;admin.;single;university.degree;no;no;no;cellular;aug;wed;127;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+58;blue-collar;married;basic.9y;unknown;no;no;cellular;aug;wed;740;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+33;technician;married;university.degree;no;no;no;cellular;aug;thu;75;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+50;technician;single;university.degree;no;yes;no;cellular;aug;thu;178;5;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+32;technician;single;university.degree;no;no;yes;cellular;aug;thu;65;8;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+33;technician;married;high.school;no;no;no;cellular;aug;thu;152;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+44;services;married;high.school;no;no;no;cellular;aug;thu;464;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+49;admin.;married;high.school;no;no;no;cellular;aug;thu;96;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+33;technician;single;professional.course;no;no;no;cellular;aug;thu;64;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+53;services;married;high.school;unknown;yes;no;cellular;aug;thu;76;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+32;management;married;university.degree;no;yes;no;cellular;aug;thu;106;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+48;entrepreneur;married;basic.4y;unknown;no;no;cellular;aug;thu;81;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+32;technician;single;professional.course;no;no;no;cellular;aug;thu;169;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+33;technician;single;professional.course;no;no;no;cellular;aug;thu;103;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+52;blue-collar;married;basic.4y;unknown;no;no;cellular;aug;thu;82;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+45;blue-collar;married;basic.6y;unknown;yes;no;cellular;aug;thu;152;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+34;technician;single;university.degree;no;yes;no;cellular;aug;thu;90;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+34;technician;single;university.degree;no;yes;no;cellular;aug;thu;115;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;admin.;married;university.degree;no;yes;yes;cellular;aug;thu;67;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+33;admin.;single;university.degree;no;yes;no;cellular;aug;thu;175;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+39;technician;married;professional.course;no;yes;no;cellular;aug;thu;110;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;admin.;married;university.degree;no;yes;no;cellular;aug;thu;123;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+33;technician;single;professional.course;no;yes;no;cellular;aug;thu;719;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;technician;married;professional.course;no;yes;no;cellular;aug;thu;125;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+57;technician;married;university.degree;no;no;no;cellular;aug;thu;259;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+42;admin.;married;professional.course;unknown;yes;no;cellular;aug;thu;81;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;technician;married;professional.course;no;yes;no;cellular;aug;thu;373;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+42;admin.;married;professional.course;unknown;no;yes;cellular;aug;thu;36;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+42;admin.;married;professional.course;unknown;yes;yes;cellular;aug;thu;157;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+42;admin.;married;professional.course;unknown;yes;no;cellular;aug;thu;133;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;unknown;divorced;university.degree;no;no;yes;cellular;aug;thu;106;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;technician;married;professional.course;no;yes;no;cellular;aug;thu;707;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;yes
+31;admin.;single;high.school;no;yes;no;cellular;aug;thu;144;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;technician;single;professional.course;no;yes;no;cellular;aug;thu;360;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+35;technician;single;professional.course;no;yes;yes;cellular;aug;thu;55;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+23;entrepreneur;married;university.degree;no;yes;no;cellular;aug;thu;87;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+41;admin.;married;university.degree;no;yes;no;cellular;aug;thu;266;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+45;services;married;high.school;unknown;yes;no;cellular;aug;thu;149;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;admin.;married;university.degree;no;no;no;cellular;aug;thu;366;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;technician;married;professional.course;no;no;no;cellular;aug;thu;87;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+35;admin.;married;university.degree;no;no;yes;cellular;aug;thu;96;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+32;admin.;single;university.degree;no;yes;no;cellular;aug;thu;85;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+55;self-employed;married;basic.4y;unknown;unknown;unknown;cellular;aug;thu;169;5;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+54;services;married;high.school;no;yes;no;cellular;aug;thu;250;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+32;admin.;single;university.degree;no;no;no;cellular;aug;thu;109;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+32;admin.;single;university.degree;no;yes;no;cellular;aug;thu;206;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;technician;married;professional.course;no;no;no;cellular;aug;thu;184;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+45;admin.;married;high.school;no;yes;no;cellular;aug;thu;41;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+54;technician;married;university.degree;no;yes;no;cellular;aug;thu;252;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+32;technician;married;professional.course;no;yes;no;cellular;aug;thu;154;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;admin.;single;university.degree;unknown;no;yes;cellular;aug;thu;103;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+34;admin.;married;university.degree;no;yes;no;cellular;aug;thu;137;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+35;technician;single;professional.course;no;yes;no;cellular;aug;thu;238;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+34;admin.;married;university.degree;no;no;no;cellular;aug;thu;55;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+36;technician;married;professional.course;unknown;yes;no;cellular;aug;thu;125;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+34;admin.;single;university.degree;no;yes;no;cellular;aug;thu;98;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+47;housemaid;married;high.school;unknown;yes;no;cellular;aug;thu;107;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+42;admin.;married;university.degree;no;yes;no;cellular;aug;thu;71;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+49;technician;married;professional.course;unknown;yes;no;cellular;aug;thu;151;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+54;blue-collar;married;basic.4y;unknown;no;yes;cellular;aug;thu;169;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+45;self-employed;married;basic.9y;unknown;yes;no;cellular;aug;thu;167;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+56;blue-collar;married;basic.4y;no;unknown;unknown;cellular;aug;thu;114;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+50;technician;married;high.school;no;yes;no;cellular;aug;thu;50;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;admin.;single;university.degree;no;no;no;cellular;aug;thu;47;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+41;housemaid;married;basic.4y;unknown;yes;no;cellular;aug;thu;92;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+41;housemaid;married;basic.4y;unknown;yes;no;cellular;aug;thu;228;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+41;housemaid;married;basic.4y;unknown;yes;no;telephone;aug;thu;293;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+38;technician;married;professional.course;no;yes;no;cellular;aug;thu;98;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+49;blue-collar;married;basic.4y;unknown;yes;no;cellular;aug;thu;205;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+41;housemaid;married;basic.4y;unknown;no;no;cellular;aug;thu;107;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+34;admin.;single;university.degree;no;no;no;cellular;aug;thu;260;6;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+59;blue-collar;married;basic.9y;unknown;yes;no;cellular;aug;thu;152;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+47;admin.;divorced;university.degree;unknown;no;no;cellular;aug;thu;200;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+49;technician;divorced;high.school;no;yes;no;cellular;aug;thu;127;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+34;technician;married;university.degree;unknown;yes;no;cellular;aug;thu;10;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+33;admin.;single;university.degree;no;yes;no;cellular;aug;thu;273;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+34;technician;married;university.degree;unknown;no;yes;cellular;aug;thu;101;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;admin.;married;university.degree;no;yes;yes;cellular;aug;thu;465;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;self-employed;married;university.degree;no;yes;yes;cellular;aug;thu;145;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+36;self-employed;married;basic.9y;unknown;yes;yes;cellular;aug;thu;593;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;yes
+50;self-employed;married;basic.9y;no;yes;no;cellular;aug;thu;93;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+40;self-employed;married;university.degree;no;yes;no;cellular;aug;thu;141;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+40;self-employed;married;university.degree;no;yes;no;cellular;aug;thu;155;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+33;admin.;single;university.degree;no;yes;no;cellular;aug;thu;370;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;admin.;single;university.degree;no;yes;no;cellular;aug;thu;111;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+32;admin.;single;university.degree;no;yes;no;cellular;aug;thu;159;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+36;admin.;single;university.degree;no;yes;no;cellular;aug;thu;1217;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+34;technician;single;university.degree;no;yes;no;telephone;aug;thu;313;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+35;technician;married;professional.course;no;no;no;cellular;aug;thu;38;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+42;technician;single;university.degree;no;yes;no;cellular;aug;thu;213;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+51;blue-collar;married;basic.4y;unknown;yes;yes;cellular;aug;thu;297;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+54;blue-collar;married;university.degree;unknown;yes;no;cellular;aug;thu;128;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+34;technician;single;university.degree;no;yes;no;cellular;aug;thu;812;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;yes
+32;admin.;single;university.degree;no;no;no;cellular;aug;thu;356;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+32;admin.;single;university.degree;no;yes;no;cellular;aug;thu;605;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+58;technician;divorced;university.degree;unknown;yes;no;cellular;aug;thu;86;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+42;technician;single;university.degree;no;yes;no;cellular;aug;thu;935;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+34;technician;married;high.school;no;yes;no;cellular;aug;thu;143;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+57;retired;married;basic.4y;no;yes;no;cellular;aug;thu;92;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+34;technician;married;university.degree;unknown;yes;no;cellular;aug;thu;414;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;technician;married;university.degree;no;yes;no;cellular;aug;thu;95;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+41;technician;single;university.degree;no;yes;no;cellular;aug;thu;127;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+29;admin.;single;high.school;no;no;no;cellular;aug;thu;103;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;admin.;single;university.degree;unknown;no;no;cellular;aug;thu;69;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+29;admin.;single;high.school;no;no;no;cellular;aug;thu;90;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+54;self-employed;married;university.degree;unknown;yes;no;cellular;aug;thu;148;13;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+52;services;married;basic.9y;unknown;yes;yes;cellular;aug;thu;110;5;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;technician;married;university.degree;no;yes;no;cellular;aug;thu;515;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;technician;married;university.degree;no;yes;no;cellular;aug;thu;214;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+32;admin.;single;university.degree;no;yes;no;cellular;aug;thu;457;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+39;admin.;single;university.degree;no;no;no;cellular;aug;thu;421;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+48;blue-collar;married;basic.4y;unknown;yes;no;cellular;aug;thu;240;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+29;admin.;single;university.degree;unknown;no;no;cellular;aug;thu;112;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+40;admin.;married;university.degree;no;yes;no;cellular;aug;thu;374;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+41;technician;married;university.degree;unknown;yes;no;cellular;aug;thu;423;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+49;blue-collar;married;basic.4y;unknown;no;no;cellular;aug;thu;503;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+29;admin.;single;university.degree;unknown;yes;no;cellular;aug;thu;158;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;admin.;married;university.degree;no;yes;no;cellular;aug;thu;95;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;admin.;married;university.degree;no;yes;no;cellular;aug;thu;67;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+47;admin.;married;university.degree;no;no;no;cellular;aug;thu;93;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;admin.;single;university.degree;no;no;no;cellular;aug;thu;230;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;admin.;married;university.degree;no;yes;no;cellular;aug;thu;113;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+49;admin.;single;high.school;no;no;no;cellular;aug;thu;103;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+36;technician;divorced;professional.course;no;yes;no;cellular;aug;thu;106;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+34;management;married;university.degree;no;yes;no;cellular;aug;thu;294;6;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;admin.;married;university.degree;no;no;no;cellular;aug;thu;165;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+32;admin.;single;university.degree;no;no;no;cellular;aug;thu;59;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+35;entrepreneur;married;university.degree;no;yes;no;cellular;aug;thu;51;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;technician;married;university.degree;no;no;no;cellular;aug;thu;56;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;admin.;single;university.degree;no;yes;no;cellular;aug;thu;108;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+50;technician;single;university.degree;no;yes;no;cellular;aug;thu;89;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+50;technician;single;university.degree;no;yes;no;cellular;aug;thu;174;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+36;management;married;university.degree;no;no;no;cellular;aug;thu;112;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+41;admin.;divorced;university.degree;unknown;no;no;cellular;aug;thu;146;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+36;self-employed;married;basic.9y;unknown;no;no;cellular;aug;thu;406;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+34;admin.;single;university.degree;no;yes;no;cellular;aug;thu;518;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;yes
+30;admin.;single;university.degree;unknown;no;no;cellular;aug;thu;272;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+47;admin.;married;high.school;no;no;no;cellular;aug;thu;168;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+44;blue-collar;married;basic.6y;unknown;no;no;cellular;aug;thu;314;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+49;admin.;married;university.degree;no;yes;no;cellular;aug;thu;260;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+29;technician;single;professional.course;no;yes;no;telephone;aug;thu;85;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+46;admin.;married;university.degree;no;no;no;cellular;aug;thu;87;5;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+45;blue-collar;married;basic.6y;unknown;yes;no;cellular;aug;thu;90;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+45;admin.;single;university.degree;no;no;no;cellular;aug;thu;505;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;yes
+31;technician;married;professional.course;no;yes;no;cellular;aug;thu;104;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+41;technician;married;university.degree;no;yes;no;cellular;aug;thu;511;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+45;services;married;high.school;unknown;yes;yes;telephone;aug;thu;187;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;technician;married;university.degree;no;yes;no;cellular;aug;thu;197;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+39;admin.;divorced;university.degree;no;no;no;cellular;aug;thu;78;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+32;technician;single;university.degree;no;yes;no;cellular;aug;thu;118;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+40;admin.;married;university.degree;unknown;yes;no;cellular;aug;thu;343;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+34;technician;married;high.school;no;yes;no;cellular;aug;thu;221;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;admin.;divorced;university.degree;no;yes;no;cellular;aug;thu;280;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+59;retired;married;basic.4y;no;yes;yes;cellular;aug;thu;265;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+39;admin.;divorced;university.degree;no;yes;yes;cellular;aug;thu;158;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+46;technician;married;high.school;unknown;no;no;cellular;aug;thu;206;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+32;technician;single;university.degree;no;yes;no;cellular;aug;thu;133;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;technician;married;professional.course;unknown;yes;no;cellular;aug;thu;159;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+33;technician;married;professional.course;no;no;yes;cellular;aug;thu;924;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+44;blue-collar;married;basic.6y;unknown;no;no;cellular;aug;thu;145;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+34;technician;married;high.school;no;yes;no;cellular;aug;thu;85;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+58;technician;married;high.school;no;yes;yes;telephone;aug;thu;64;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+34;technician;single;university.degree;no;no;no;telephone;aug;thu;214;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+54;services;married;high.school;no;yes;no;cellular;aug;thu;834;9;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;yes
+47;admin.;married;high.school;no;yes;yes;cellular;aug;thu;3322;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;admin.;married;high.school;unknown;no;yes;cellular;aug;thu;153;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;housemaid;married;basic.6y;no;no;no;cellular;aug;thu;136;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+56;blue-collar;married;basic.4y;no;yes;no;cellular;aug;thu;366;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+58;technician;married;high.school;no;yes;no;cellular;aug;thu;260;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;technician;married;professional.course;no;no;no;cellular;aug;thu;107;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+36;self-employed;married;basic.9y;unknown;no;no;cellular;aug;thu;1184;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;yes
+31;housemaid;married;university.degree;no;yes;yes;cellular;aug;thu;208;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;housemaid;married;basic.6y;no;yes;yes;telephone;aug;thu;698;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;yes
+49;technician;married;professional.course;no;yes;yes;cellular;aug;thu;11;14;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+57;technician;single;university.degree;unknown;yes;yes;cellular;aug;thu;433;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+53;blue-collar;married;basic.6y;unknown;unknown;unknown;cellular;aug;thu;134;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+39;management;married;university.degree;no;yes;no;cellular;aug;thu;80;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+59;technician;single;university.degree;unknown;yes;no;cellular;aug;thu;95;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+53;admin.;married;high.school;unknown;no;no;cellular;aug;thu;201;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;admin.;married;high.school;unknown;yes;yes;cellular;aug;thu;1151;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;yes
+33;technician;married;professional.course;no;no;yes;cellular;aug;thu;189;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+33;technician;married;professional.course;no;yes;yes;cellular;aug;thu;168;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+47;admin.;married;university.degree;no;yes;no;cellular;aug;thu;61;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+32;technician;single;university.degree;no;yes;no;cellular;aug;thu;388;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+34;technician;married;university.degree;no;no;no;telephone;aug;thu;122;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+35;management;married;high.school;no;yes;no;cellular;aug;thu;448;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+58;admin.;married;university.degree;no;yes;no;telephone;aug;thu;60;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+47;admin.;married;university.degree;no;no;no;cellular;aug;thu;167;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+49;blue-collar;married;basic.4y;no;yes;no;telephone;aug;thu;92;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+50;technician;single;university.degree;no;yes;no;cellular;aug;thu;350;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;technician;single;professional.course;no;no;no;cellular;aug;thu;449;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+49;blue-collar;married;basic.4y;no;yes;no;telephone;aug;thu;158;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+55;technician;divorced;professional.course;no;no;yes;cellular;aug;thu;388;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+44;technician;divorced;professional.course;unknown;yes;no;cellular;aug;thu;145;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+48;technician;married;professional.course;unknown;no;no;cellular;aug;thu;112;8;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+32;admin.;single;university.degree;no;yes;no;cellular;aug;thu;217;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+32;admin.;single;university.degree;no;yes;yes;cellular;aug;thu;153;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;admin.;single;university.degree;no;yes;yes;cellular;aug;thu;337;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;technician;single;professional.course;no;yes;yes;cellular;aug;thu;94;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+45;blue-collar;married;basic.6y;no;yes;yes;cellular;aug;thu;425;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+49;technician;divorced;professional.course;unknown;no;no;cellular;aug;thu;377;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+42;self-employed;married;basic.4y;unknown;yes;no;cellular;aug;thu;52;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;technician;married;university.degree;no;yes;no;cellular;aug;thu;168;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+47;admin.;married;university.degree;no;unknown;unknown;cellular;aug;thu;1231;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;yes
+35;technician;single;professional.course;no;yes;yes;cellular;aug;thu;41;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+35;technician;single;professional.course;no;yes;yes;cellular;aug;thu;347;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+41;management;married;university.degree;no;yes;no;cellular;aug;thu;789;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+35;technician;single;professional.course;no;yes;no;cellular;aug;thu;636;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+35;technician;married;professional.course;no;yes;yes;telephone;aug;thu;34;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+47;technician;married;university.degree;no;yes;no;cellular;aug;thu;65;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;technician;married;professional.course;unknown;unknown;unknown;telephone;aug;thu;128;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+35;self-employed;married;university.degree;no;yes;no;cellular;aug;thu;884;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;yes
+46;admin.;married;university.degree;no;yes;yes;cellular;aug;thu;63;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+51;blue-collar;married;basic.9y;unknown;no;no;cellular;aug;thu;187;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;technician;single;high.school;no;yes;no;cellular;aug;thu;170;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+51;blue-collar;married;basic.9y;unknown;yes;yes;cellular;aug;thu;129;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+33;admin.;single;university.degree;no;no;no;cellular;aug;thu;277;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+47;blue-collar;married;basic.9y;unknown;yes;yes;cellular;aug;thu;84;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+50;self-employed;married;basic.9y;no;yes;no;cellular;aug;thu;219;7;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+34;technician;single;university.degree;no;yes;yes;cellular;aug;thu;38;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+34;technician;single;university.degree;no;yes;no;cellular;aug;thu;244;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+33;technician;married;professional.course;no;no;no;cellular;aug;thu;155;5;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+59;retired;married;university.degree;unknown;no;no;cellular;aug;thu;91;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;technician;married;professional.course;unknown;yes;yes;telephone;aug;thu;31;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+46;services;married;high.school;unknown;yes;no;cellular;aug;thu;65;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+41;admin.;divorced;university.degree;unknown;no;no;cellular;aug;thu;120;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;technician;married;professional.course;unknown;yes;yes;cellular;aug;thu;49;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+34;admin.;married;university.degree;no;yes;no;telephone;aug;thu;365;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+34;admin.;married;university.degree;no;yes;no;cellular;aug;thu;248;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;admin.;single;high.school;no;yes;yes;cellular;aug;thu;101;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+35;admin.;single;university.degree;no;no;yes;cellular;aug;thu;85;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+53;technician;married;professional.course;no;yes;no;cellular;aug;thu;178;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;technician;single;professional.course;no;yes;no;cellular;aug;thu;138;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+29;technician;single;university.degree;no;yes;no;telephone;aug;thu;234;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+47;blue-collar;married;unknown;unknown;no;no;telephone;aug;thu;753;13;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;yes
+54;self-employed;married;high.school;no;yes;yes;cellular;aug;thu;904;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;yes
+54;technician;married;professional.course;no;no;no;cellular;aug;thu;478;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;technician;married;high.school;no;no;no;cellular;aug;thu;124;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+47;blue-collar;married;unknown;unknown;yes;no;cellular;aug;thu;227;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+29;technician;single;university.degree;no;yes;no;telephone;aug;thu;226;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+47;blue-collar;married;unknown;unknown;no;yes;cellular;aug;thu;163;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+43;housemaid;divorced;professional.course;no;no;yes;cellular;aug;thu;306;5;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+54;self-employed;married;high.school;no;no;no;cellular;aug;thu;89;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+29;technician;married;university.degree;no;yes;no;telephone;aug;thu;137;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+51;management;married;university.degree;no;yes;no;cellular;aug;thu;244;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+54;technician;married;professional.course;no;yes;yes;cellular;aug;thu;64;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+51;management;married;university.degree;no;yes;no;cellular;aug;thu;386;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+33;housemaid;married;professional.course;no;yes;no;cellular;aug;thu;110;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+54;self-employed;married;high.school;no;yes;no;cellular;aug;thu;136;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+37;technician;single;professional.course;no;yes;no;cellular;aug;thu;286;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+29;technician;single;university.degree;no;yes;no;telephone;aug;thu;119;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+38;admin.;married;university.degree;unknown;yes;no;cellular;aug;thu;109;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+54;blue-collar;married;basic.4y;no;yes;no;cellular;aug;thu;86;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+32;admin.;single;university.degree;no;no;no;cellular;aug;thu;211;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+36;technician;married;professional.course;no;yes;no;cellular;aug;thu;126;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+53;entrepreneur;married;university.degree;unknown;no;yes;cellular;aug;thu;314;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+54;blue-collar;married;basic.4y;no;no;no;cellular;aug;thu;253;5;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+32;unknown;married;basic.9y;no;no;no;cellular;aug;thu;390;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+54;self-employed;married;high.school;no;yes;no;cellular;aug;thu;204;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+36;technician;married;professional.course;no;yes;no;cellular;aug;thu;45;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+54;blue-collar;married;basic.4y;no;yes;no;cellular;aug;thu;109;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+48;blue-collar;married;professional.course;unknown;yes;no;cellular;aug;thu;127;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+32;technician;single;university.degree;no;yes;no;cellular;aug;thu;76;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+35;technician;married;university.degree;no;unknown;unknown;cellular;aug;thu;1579;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;yes
+58;admin.;single;university.degree;no;no;no;cellular;aug;thu;96;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+32;admin.;single;university.degree;no;yes;no;cellular;aug;thu;1871;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+38;admin.;divorced;university.degree;no;yes;no;cellular;aug;mon;92;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+38;technician;divorced;university.degree;unknown;no;no;cellular;aug;mon;125;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;admin.;married;university.degree;no;yes;no;cellular;aug;mon;618;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;yes
+33;unemployed;divorced;professional.course;no;no;no;cellular;aug;mon;90;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+35;admin.;single;university.degree;no;yes;no;cellular;aug;mon;773;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;yes
+50;technician;married;university.degree;no;unknown;unknown;cellular;aug;mon;762;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;yes
+35;admin.;divorced;university.degree;no;yes;no;cellular;aug;mon;139;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+45;services;married;basic.6y;no;yes;no;cellular;aug;mon;671;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;yes
+31;management;married;university.degree;no;yes;no;cellular;aug;mon;181;5;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;technician;single;professional.course;no;yes;no;cellular;aug;mon;54;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;entrepreneur;married;university.degree;no;yes;no;cellular;aug;mon;59;7;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+34;admin.;single;university.degree;no;no;no;cellular;aug;mon;299;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+32;technician;married;professional.course;no;yes;no;cellular;aug;mon;92;5;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;admin.;married;university.degree;no;unknown;unknown;cellular;aug;mon;73;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;technician;single;high.school;no;no;no;cellular;aug;mon;638;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;yes
+35;technician;married;professional.course;no;no;no;cellular;aug;mon;594;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;yes
+41;technician;married;professional.course;no;yes;no;cellular;aug;mon;105;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+54;admin.;divorced;university.degree;no;no;no;cellular;aug;mon;180;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+38;admin.;divorced;university.degree;no;no;no;cellular;aug;mon;140;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+46;services;married;unknown;unknown;no;no;cellular;aug;mon;458;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+53;blue-collar;married;basic.9y;no;yes;no;cellular;aug;mon;195;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+29;technician;single;high.school;no;yes;no;cellular;aug;mon;87;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;unemployed;divorced;professional.course;no;no;no;cellular;aug;mon;197;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+41;technician;married;professional.course;no;no;no;cellular;aug;mon;203;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;technician;single;university.degree;unknown;no;no;cellular;aug;mon;131;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+32;admin.;married;university.degree;no;no;no;cellular;aug;mon;251;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+56;retired;married;basic.6y;no;no;no;cellular;aug;mon;68;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;admin.;married;university.degree;unknown;yes;no;cellular;aug;mon;109;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+39;admin.;single;university.degree;no;yes;no;cellular;aug;mon;114;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+32;admin.;married;university.degree;no;yes;yes;cellular;aug;mon;124;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;housemaid;married;professional.course;no;yes;no;cellular;aug;mon;105;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+40;technician;married;professional.course;no;no;no;cellular;aug;mon;108;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+59;admin.;married;university.degree;unknown;yes;no;cellular;aug;mon;113;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+49;admin.;married;basic.9y;no;yes;no;cellular;aug;mon;161;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+36;self-employed;married;basic.6y;unknown;no;no;cellular;aug;mon;233;7;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+35;technician;married;professional.course;no;yes;yes;cellular;aug;mon;882;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;yes
+48;services;married;high.school;no;no;no;cellular;aug;mon;115;5;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+41;technician;married;professional.course;no;no;no;cellular;aug;mon;341;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;admin.;married;university.degree;no;no;no;cellular;aug;mon;145;5;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+29;technician;single;high.school;no;no;no;cellular;aug;mon;26;9;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+47;admin.;single;university.degree;no;no;no;cellular;aug;mon;151;9;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+52;housemaid;married;basic.4y;unknown;yes;yes;cellular;aug;mon;85;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;admin.;married;university.degree;unknown;no;no;cellular;aug;mon;313;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;technician;single;university.degree;no;no;no;cellular;aug;mon;230;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+45;services;married;basic.6y;no;yes;yes;cellular;aug;mon;157;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+37;technician;married;professional.course;no;yes;no;cellular;aug;mon;393;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+32;technician;married;high.school;unknown;yes;no;cellular;aug;mon;111;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;admin.;married;university.degree;unknown;yes;yes;cellular;aug;mon;84;9;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+32;technician;single;university.degree;no;no;no;telephone;aug;mon;51;6;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+48;blue-collar;married;unknown;no;no;no;cellular;aug;mon;528;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;yes
+46;services;married;unknown;unknown;unknown;unknown;cellular;aug;mon;73;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+32;admin.;married;university.degree;no;yes;yes;cellular;aug;mon;71;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+50;admin.;married;university.degree;no;no;no;cellular;aug;mon;70;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;admin.;married;university.degree;no;no;no;cellular;aug;mon;146;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+46;services;married;unknown;unknown;yes;no;cellular;aug;mon;151;5;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+47;blue-collar;married;basic.4y;unknown;no;no;cellular;aug;mon;74;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;technician;single;professional.course;no;no;no;cellular;aug;mon;266;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+34;unemployed;married;university.degree;unknown;yes;no;cellular;aug;mon;452;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+34;admin.;single;university.degree;no;yes;no;cellular;aug;mon;347;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;admin.;married;university.degree;unknown;yes;no;cellular;aug;mon;114;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;management;married;university.degree;no;no;no;cellular;aug;mon;34;11;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+41;self-employed;married;university.degree;no;yes;no;cellular;aug;mon;113;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;technician;single;professional.course;no;yes;no;cellular;aug;mon;122;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+48;admin.;single;high.school;no;yes;no;cellular;aug;mon;48;5;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+54;admin.;divorced;university.degree;no;yes;no;cellular;aug;mon;80;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;admin.;married;university.degree;no;yes;no;cellular;aug;mon;104;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+47;admin.;married;university.degree;no;no;yes;cellular;aug;mon;94;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+35;technician;married;professional.course;no;yes;no;cellular;aug;mon;70;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+43;management;married;university.degree;no;no;no;cellular;aug;mon;121;5;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;technician;single;professional.course;no;no;no;cellular;aug;mon;145;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+32;admin.;single;university.degree;no;yes;no;cellular;aug;mon;61;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;technician;single;university.degree;no;yes;no;cellular;aug;mon;143;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+38;admin.;divorced;university.degree;no;no;no;cellular;aug;mon;172;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;management;married;high.school;unknown;yes;no;telephone;aug;mon;71;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+35;admin.;married;university.degree;unknown;no;no;cellular;aug;mon;45;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+36;admin.;married;high.school;no;no;no;cellular;aug;mon;91;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;admin.;married;university.degree;no;yes;no;cellular;aug;mon;513;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;management;married;university.degree;no;no;no;cellular;aug;mon;92;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+37;technician;married;professional.course;no;yes;no;cellular;aug;mon;89;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;technician;single;university.degree;no;yes;no;cellular;aug;mon;96;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+38;entrepreneur;single;university.degree;no;no;no;cellular;aug;mon;115;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+46;blue-collar;married;basic.6y;unknown;yes;no;cellular;aug;mon;121;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+49;unemployed;married;high.school;no;yes;no;cellular;aug;mon;119;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;technician;single;professional.course;no;no;no;cellular;aug;mon;176;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+36;self-employed;married;high.school;unknown;no;no;cellular;aug;mon;507;5;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+41;technician;married;high.school;no;no;no;cellular;aug;mon;69;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+32;technician;married;high.school;unknown;no;no;cellular;aug;mon;98;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+39;services;married;high.school;unknown;no;no;cellular;aug;mon;195;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+45;technician;divorced;university.degree;no;no;no;cellular;aug;mon;104;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+32;admin.;single;university.degree;no;no;no;cellular;aug;mon;515;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+36;admin.;married;university.degree;unknown;no;no;cellular;aug;mon;86;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+38;admin.;single;university.degree;no;yes;no;cellular;aug;mon;40;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+35;admin.;single;university.degree;no;yes;yes;cellular;aug;mon;100;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+34;admin.;single;university.degree;unknown;no;yes;cellular;aug;mon;27;12;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;technician;single;professional.course;no;no;no;cellular;aug;mon;97;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+50;admin.;married;university.degree;no;yes;no;cellular;aug;mon;166;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+49;services;married;basic.4y;unknown;no;no;cellular;aug;mon;309;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;yes
+50;services;married;basic.9y;unknown;yes;no;cellular;aug;mon;113;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+37;technician;married;university.degree;no;no;no;cellular;aug;mon;124;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+35;technician;married;professional.course;no;yes;no;cellular;aug;mon;207;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+35;technician;married;professional.course;no;yes;no;cellular;aug;mon;90;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+40;technician;married;professional.course;no;yes;no;cellular;aug;mon;100;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+38;technician;married;university.degree;no;no;no;cellular;aug;mon;219;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;technician;single;high.school;no;no;no;cellular;aug;mon;129;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+29;admin.;married;high.school;no;no;no;cellular;aug;mon;128;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;self-employed;single;university.degree;no;yes;no;cellular;aug;mon;75;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+38;technician;divorced;university.degree;unknown;yes;no;cellular;aug;mon;67;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+46;services;married;unknown;unknown;yes;no;cellular;aug;mon;111;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+52;housemaid;married;basic.4y;unknown;no;no;cellular;aug;mon;498;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;management;married;university.degree;no;yes;yes;cellular;aug;mon;203;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;admin.;single;university.degree;no;yes;no;cellular;aug;mon;96;7;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+34;admin.;divorced;university.degree;no;yes;no;cellular;aug;mon;111;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+42;technician;married;professional.course;no;yes;yes;cellular;aug;mon;245;7;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+52;housemaid;married;basic.4y;unknown;no;no;cellular;aug;mon;585;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;admin.;married;university.degree;no;yes;no;cellular;aug;mon;140;7;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+44;admin.;divorced;university.degree;no;yes;no;cellular;aug;mon;240;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+41;admin.;married;university.degree;unknown;yes;no;cellular;aug;mon;235;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+34;admin.;married;university.degree;no;yes;no;cellular;aug;mon;98;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+39;technician;single;professional.course;unknown;yes;no;cellular;aug;mon;129;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;admin.;married;university.degree;no;yes;no;cellular;aug;mon;315;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+36;admin.;married;university.degree;no;yes;no;cellular;aug;mon;147;5;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+43;technician;married;university.degree;no;yes;no;cellular;aug;mon;134;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+45;technician;married;professional.course;no;yes;no;cellular;aug;mon;95;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+48;blue-collar;married;unknown;no;no;no;telephone;aug;mon;63;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+38;admin.;married;university.degree;no;no;no;cellular;aug;mon;431;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+29;technician;single;high.school;no;yes;no;cellular;aug;mon;29;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+52;housemaid;married;basic.4y;unknown;yes;no;cellular;aug;mon;197;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+41;self-employed;married;university.degree;no;yes;yes;cellular;aug;mon;93;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+41;technician;married;high.school;no;no;no;cellular;aug;mon;697;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;yes
+36;technician;married;professional.course;no;no;no;cellular;aug;mon;168;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+36;admin.;divorced;university.degree;unknown;yes;no;cellular;aug;mon;280;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+35;technician;married;professional.course;no;no;no;cellular;aug;mon;80;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+35;technician;married;professional.course;no;yes;no;telephone;aug;mon;209;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+35;admin.;single;university.degree;no;yes;yes;cellular;aug;mon;201;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+32;management;married;university.degree;no;no;no;cellular;aug;mon;119;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+35;admin.;single;university.degree;no;no;no;cellular;aug;mon;306;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+50;services;married;basic.6y;unknown;no;no;telephone;aug;mon;161;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+29;admin.;married;high.school;no;yes;yes;cellular;aug;mon;36;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+35;admin.;married;university.degree;unknown;no;no;telephone;aug;mon;29;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+42;technician;married;professional.course;no;no;no;telephone;aug;mon;79;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+35;technician;married;professional.course;no;no;no;cellular;aug;mon;192;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+34;admin.;married;university.degree;no;no;no;telephone;aug;mon;199;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;technician;single;university.degree;no;yes;no;cellular;aug;mon;144;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;admin.;married;university.degree;no;yes;no;cellular;aug;mon;702;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;unemployed;divorced;professional.course;no;yes;no;telephone;aug;mon;331;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+35;housemaid;single;professional.course;no;yes;yes;cellular;aug;mon;111;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+47;admin.;married;university.degree;no;no;yes;cellular;aug;mon;471;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;admin.;married;university.degree;unknown;yes;no;cellular;aug;mon;142;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+36;admin.;divorced;university.degree;unknown;yes;no;cellular;aug;mon;58;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+50;blue-collar;married;basic.9y;no;yes;yes;cellular;aug;mon;68;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+44;blue-collar;married;basic.4y;no;yes;no;cellular;aug;mon;79;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+38;technician;divorced;university.degree;unknown;no;no;cellular;aug;mon;102;5;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+34;admin.;married;university.degree;no;yes;yes;cellular;aug;mon;87;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;management;married;university.degree;no;yes;yes;cellular;aug;mon;128;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+36;self-employed;married;high.school;unknown;yes;no;cellular;aug;mon;114;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+40;technician;married;professional.course;no;no;no;cellular;aug;mon;170;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+36;self-employed;married;high.school;unknown;yes;no;cellular;aug;mon;101;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;technician;single;professional.course;no;yes;no;cellular;aug;mon;263;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+41;technician;married;professional.course;no;yes;yes;cellular;aug;mon;80;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;admin.;single;high.school;no;no;no;cellular;aug;mon;52;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;technician;married;professional.course;no;yes;no;cellular;aug;mon;254;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+59;technician;married;professional.course;unknown;yes;no;cellular;aug;mon;571;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+41;self-employed;married;university.degree;no;no;no;cellular;aug;mon;173;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+32;admin.;married;university.degree;no;yes;no;cellular;aug;mon;150;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+37;admin.;married;professional.course;unknown;yes;yes;cellular;aug;mon;70;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+51;admin.;married;university.degree;unknown;yes;no;cellular;aug;mon;204;5;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+32;admin.;married;university.degree;no;yes;no;cellular;aug;mon;130;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;technician;single;professional.course;no;yes;no;cellular;aug;mon;191;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+42;technician;married;university.degree;unknown;yes;no;cellular;aug;mon;147;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+38;admin.;married;university.degree;no;no;no;cellular;aug;mon;65;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+44;blue-collar;married;basic.4y;no;yes;no;cellular;aug;mon;781;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;technician;single;professional.course;unknown;yes;yes;cellular;aug;mon;74;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+40;technician;married;professional.course;no;no;no;cellular;aug;mon;80;7;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+50;blue-collar;married;basic.9y;no;no;no;cellular;aug;mon;66;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+52;admin.;divorced;university.degree;no;no;no;cellular;aug;mon;91;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+38;technician;married;university.degree;no;no;no;telephone;aug;mon;280;10;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+54;blue-collar;married;basic.9y;no;yes;no;cellular;aug;mon;956;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;yes
+48;blue-collar;married;unknown;no;yes;no;cellular;aug;mon;346;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+41;technician;married;high.school;no;yes;yes;telephone;aug;mon;212;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+54;blue-collar;married;basic.9y;unknown;yes;no;cellular;aug;mon;143;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;admin.;single;high.school;no;no;no;cellular;aug;mon;93;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+36;technician;single;high.school;unknown;no;no;cellular;aug;mon;65;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+34;admin.;single;university.degree;unknown;no;yes;cellular;aug;mon;103;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+53;retired;divorced;professional.course;no;no;no;cellular;aug;mon;119;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+42;technician;married;professional.course;no;no;no;cellular;aug;mon;271;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+42;technician;married;professional.course;no;yes;yes;cellular;aug;mon;223;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+55;technician;married;professional.course;no;yes;yes;cellular;aug;mon;199;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+34;admin.;single;university.degree;unknown;no;no;cellular;aug;mon;1126;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;admin.;married;university.degree;no;no;no;cellular;aug;mon;514;7;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+47;admin.;married;university.degree;no;yes;no;cellular;aug;mon;75;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+37;admin.;married;professional.course;unknown;no;no;cellular;aug;mon;392;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;unemployed;divorced;professional.course;no;yes;no;cellular;aug;mon;150;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;unemployed;divorced;professional.course;no;yes;no;cellular;aug;mon;151;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;self-employed;single;professional.course;no;yes;no;cellular;aug;mon;215;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+35;admin.;single;university.degree;no;yes;no;cellular;aug;mon;547;6;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+45;technician;divorced;university.degree;no;yes;no;cellular;aug;mon;100;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;management;married;university.degree;no;yes;yes;cellular;aug;mon;85;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;admin.;married;university.degree;no;no;no;cellular;aug;mon;180;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;technician;single;university.degree;unknown;yes;no;cellular;aug;mon;86;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;technician;married;professional.course;no;no;no;cellular;aug;mon;22;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+41;technician;married;professional.course;no;yes;no;cellular;aug;mon;75;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+36;admin.;single;university.degree;unknown;yes;yes;cellular;aug;mon;134;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+53;retired;divorced;professional.course;no;unknown;unknown;cellular;aug;mon;82;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+41;technician;married;professional.course;no;yes;no;cellular;aug;mon;984;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+50;services;married;basic.9y;unknown;yes;yes;cellular;aug;mon;256;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;technician;single;university.degree;no;no;no;cellular;aug;mon;249;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+34;technician;married;high.school;unknown;yes;no;cellular;aug;mon;48;5;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;technician;single;university.degree;no;no;no;cellular;aug;mon;62;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+54;management;married;high.school;no;no;no;cellular;aug;mon;725;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+47;admin.;married;university.degree;no;no;no;cellular;aug;mon;384;6;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;yes
+41;self-employed;married;university.degree;no;yes;yes;cellular;aug;mon;377;5;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+38;admin.;single;university.degree;no;yes;no;cellular;aug;mon;417;5;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+29;technician;single;high.school;no;yes;no;cellular;aug;mon;201;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+54;management;married;university.degree;unknown;yes;no;cellular;aug;mon;261;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+29;housemaid;married;university.degree;no;yes;no;cellular;aug;mon;155;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+32;admin.;single;university.degree;unknown;yes;yes;cellular;aug;mon;128;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+34;admin.;single;university.degree;no;yes;no;cellular;aug;mon;103;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+42;management;married;university.degree;no;yes;no;cellular;aug;mon;178;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+48;blue-collar;married;unknown;no;yes;no;cellular;aug;mon;16;10;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+41;self-employed;married;university.degree;no;no;no;cellular;aug;mon;135;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;technician;single;professional.course;no;unknown;unknown;cellular;aug;mon;202;7;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;admin.;single;university.degree;no;no;no;cellular;aug;mon;37;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+52;housemaid;married;basic.4y;unknown;no;no;cellular;aug;mon;149;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;admin.;married;university.degree;no;no;yes;cellular;aug;mon;35;10;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+35;admin.;married;university.degree;no;no;no;cellular;aug;mon;1364;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+49;blue-collar;married;high.school;unknown;yes;yes;cellular;aug;mon;166;6;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;admin.;married;university.degree;no;yes;no;cellular;aug;mon;286;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+55;blue-collar;married;basic.4y;unknown;yes;yes;cellular;aug;mon;213;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+42;admin.;divorced;university.degree;no;yes;no;cellular;aug;mon;59;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;admin.;single;university.degree;no;yes;yes;cellular;aug;mon;207;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+32;technician;married;high.school;unknown;yes;no;cellular;aug;mon;73;6;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+37;technician;single;university.degree;unknown;no;yes;cellular;aug;mon;1559;5;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+49;admin.;married;high.school;no;yes;no;cellular;aug;mon;194;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;yes
+49;unknown;married;high.school;unknown;no;no;cellular;aug;mon;192;6;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+40;technician;married;high.school;no;no;no;cellular;aug;mon;304;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+37;admin.;single;university.degree;no;no;yes;cellular;aug;mon;89;6;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+45;admin.;married;high.school;no;yes;yes;cellular;aug;mon;124;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;technician;married;professional.course;unknown;yes;yes;cellular;aug;mon;67;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;admin.;single;university.degree;no;yes;yes;cellular;aug;mon;174;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+45;admin.;married;high.school;no;no;no;cellular;aug;mon;457;8;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+53;technician;married;university.degree;unknown;yes;yes;cellular;aug;mon;405;11;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+55;blue-collar;married;basic.4y;unknown;no;no;cellular;aug;mon;350;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;admin.;single;university.degree;no;no;no;cellular;aug;mon;123;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+37;admin.;married;university.degree;no;yes;no;cellular;aug;mon;395;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+44;blue-collar;married;basic.9y;unknown;yes;no;cellular;aug;mon;312;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+44;services;married;basic.4y;unknown;yes;no;cellular;aug;mon;779;7;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+45;admin.;married;university.degree;no;yes;no;cellular;aug;mon;92;12;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;admin.;single;university.degree;no;yes;no;cellular;aug;mon;374;12;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+42;admin.;married;high.school;unknown;yes;no;cellular;aug;mon;76;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+34;technician;single;high.school;no;yes;no;cellular;aug;mon;119;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+38;technician;married;professional.course;no;no;no;cellular;aug;mon;296;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+50;blue-collar;married;basic.4y;no;yes;no;cellular;aug;mon;193;5;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+32;technician;single;professional.course;no;yes;no;cellular;aug;mon;87;5;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+48;entrepreneur;married;basic.9y;unknown;yes;no;cellular;aug;mon;243;7;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+41;technician;divorced;university.degree;no;yes;no;cellular;aug;mon;835;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+35;admin.;single;university.degree;no;no;no;cellular;aug;mon;724;12;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;yes
+50;blue-collar;married;basic.4y;no;no;no;cellular;aug;mon;159;5;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+38;technician;divorced;high.school;unknown;no;no;cellular;aug;mon;445;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;technician;single;professional.course;no;yes;no;cellular;aug;mon;244;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;admin.;single;university.degree;no;no;no;cellular;aug;mon;212;10;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+29;admin.;single;university.degree;no;no;yes;cellular;aug;mon;119;6;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+35;technician;single;university.degree;no;yes;yes;cellular;aug;mon;176;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+48;technician;married;high.school;unknown;yes;no;cellular;aug;mon;241;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;technician;married;university.degree;no;yes;no;cellular;aug;mon;314;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+44;management;married;university.degree;unknown;yes;no;cellular;aug;mon;96;5;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+48;technician;married;professional.course;unknown;no;no;cellular;aug;mon;43;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+43;self-employed;married;university.degree;unknown;yes;yes;cellular;aug;mon;127;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+47;blue-collar;married;basic.4y;no;yes;no;cellular;aug;mon;729;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;technician;single;professional.course;no;no;yes;cellular;aug;mon;285;5;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;technician;married;unknown;no;no;no;cellular;aug;mon;393;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;technician;married;university.degree;unknown;yes;no;cellular;aug;mon;153;7;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+35;technician;married;professional.course;unknown;yes;no;cellular;aug;mon;189;5;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+35;admin.;single;university.degree;no;yes;no;cellular;aug;mon;129;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+32;technician;single;university.degree;no;no;no;cellular;aug;mon;195;7;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+49;blue-collar;married;basic.9y;unknown;no;no;cellular;aug;mon;199;5;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+49;technician;married;high.school;no;no;no;cellular;aug;mon;298;6;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+45;technician;divorced;university.degree;unknown;no;no;cellular;aug;mon;43;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+48;services;married;high.school;no;yes;yes;cellular;aug;mon;273;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;technician;married;professional.course;unknown;no;no;cellular;aug;mon;37;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+53;self-employed;married;university.degree;unknown;yes;no;cellular;aug;mon;693;6;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+52;services;married;high.school;no;yes;no;telephone;aug;mon;575;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;admin.;single;university.degree;no;yes;no;cellular;aug;tue;99;6;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;admin.;single;university.degree;no;no;no;cellular;aug;tue;247;9;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;admin.;divorced;university.degree;no;no;no;cellular;aug;tue;139;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+27;admin.;married;university.degree;no;no;no;cellular;aug;tue;97;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+41;admin.;married;university.degree;no;no;no;cellular;aug;tue;151;5;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;admin.;single;university.degree;no;no;no;cellular;aug;tue;192;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+34;technician;single;professional.course;no;yes;no;cellular;aug;tue;120;9;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+52;services;married;high.school;no;yes;no;cellular;aug;tue;607;5;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+44;blue-collar;married;basic.6y;no;no;no;cellular;aug;tue;141;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;admin.;single;university.degree;unknown;no;no;cellular;aug;tue;116;6;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+35;admin.;single;university.degree;no;no;no;cellular;aug;tue;102;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+35;admin.;single;university.degree;no;no;no;cellular;aug;tue;58;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+37;management;married;university.degree;no;no;no;cellular;aug;tue;208;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+40;technician;single;university.degree;no;no;no;cellular;aug;tue;203;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+40;technician;single;university.degree;no;yes;no;cellular;aug;tue;173;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+35;admin.;single;university.degree;no;no;no;cellular;aug;tue;122;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+40;technician;single;university.degree;no;yes;no;cellular;aug;tue;286;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+58;unknown;married;basic.4y;no;yes;no;cellular;aug;tue;645;10;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;yes
+44;blue-collar;married;basic.6y;no;no;yes;cellular;aug;tue;177;5;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+37;technician;married;university.degree;no;yes;no;cellular;aug;tue;158;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;admin.;single;university.degree;no;yes;no;cellular;aug;tue;83;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;admin.;single;university.degree;no;yes;no;cellular;aug;tue;125;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;admin.;single;university.degree;unknown;yes;no;cellular;aug;tue;112;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;admin.;single;university.degree;unknown;yes;no;cellular;aug;tue;64;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;technician;single;professional.course;no;yes;no;cellular;aug;tue;74;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+49;unknown;married;high.school;unknown;yes;no;cellular;aug;tue;54;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+35;entrepreneur;divorced;professional.course;unknown;no;no;cellular;aug;tue;255;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+46;blue-collar;married;basic.6y;no;yes;yes;cellular;aug;tue;133;12;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+45;admin.;married;university.degree;no;yes;no;cellular;aug;tue;245;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;admin.;divorced;university.degree;no;yes;yes;cellular;aug;tue;134;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+32;technician;married;university.degree;no;no;no;cellular;aug;tue;56;5;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+44;blue-collar;married;basic.9y;unknown;no;no;cellular;aug;tue;787;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;admin.;divorced;university.degree;no;yes;no;cellular;aug;tue;269;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+34;admin.;married;university.degree;unknown;yes;no;cellular;aug;tue;87;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+36;technician;single;high.school;no;yes;no;cellular;aug;tue;124;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+36;technician;single;high.school;no;no;no;cellular;aug;tue;78;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;technician;single;professional.course;no;yes;no;cellular;aug;tue;162;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+37;admin.;married;university.degree;no;no;yes;cellular;aug;tue;118;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+49;self-employed;married;professional.course;unknown;no;no;cellular;aug;tue;432;9;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+56;retired;married;university.degree;no;no;no;cellular;aug;tue;331;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+54;technician;married;professional.course;unknown;no;no;cellular;aug;tue;87;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+54;technician;married;professional.course;unknown;yes;no;cellular;aug;tue;70;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+54;technician;married;professional.course;unknown;no;no;cellular;aug;tue;222;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+54;technician;married;professional.course;unknown;no;no;cellular;aug;tue;213;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+54;technician;married;professional.course;unknown;no;no;cellular;aug;tue;166;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+29;admin.;single;university.degree;no;no;no;cellular;aug;tue;103;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;admin.;divorced;university.degree;no;yes;no;cellular;aug;tue;55;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+42;management;married;high.school;no;yes;no;cellular;aug;tue;173;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+32;technician;married;professional.course;no;no;no;cellular;aug;tue;215;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+39;admin.;single;university.degree;no;yes;no;cellular;aug;tue;104;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+36;admin.;married;university.degree;unknown;yes;no;cellular;aug;tue;361;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;admin.;married;university.degree;no;yes;no;telephone;aug;tue;223;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+46;technician;married;professional.course;unknown;no;no;cellular;aug;tue;235;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+59;blue-collar;married;basic.4y;unknown;yes;no;cellular;aug;tue;96;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;admin.;married;high.school;no;no;no;cellular;aug;tue;210;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+52;self-employed;married;university.degree;no;no;no;cellular;aug;tue;276;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+42;management;married;high.school;no;yes;no;cellular;aug;tue;671;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+48;management;married;university.degree;no;no;no;cellular;aug;tue;156;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+48;management;married;university.degree;no;yes;yes;cellular;aug;tue;83;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+48;management;married;university.degree;no;yes;no;cellular;aug;tue;189;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+48;management;married;university.degree;no;yes;yes;cellular;aug;tue;144;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+32;self-employed;single;professional.course;no;unknown;unknown;cellular;aug;tue;151;7;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;technician;married;professional.course;no;no;no;cellular;aug;tue;51;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+49;services;single;professional.course;no;yes;no;cellular;aug;tue;161;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;technician;married;professional.course;no;no;no;cellular;aug;tue;91;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+35;admin.;married;university.degree;no;yes;no;cellular;aug;tue;344;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;technician;married;professional.course;no;yes;no;cellular;aug;tue;284;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+32;technician;divorced;professional.course;no;no;yes;cellular;aug;tue;75;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;technician;married;professional.course;no;no;no;cellular;aug;tue;298;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+41;admin.;divorced;university.degree;no;no;no;cellular;aug;tue;141;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;technician;single;university.degree;no;no;no;cellular;aug;tue;134;6;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+52;self-employed;married;university.degree;no;yes;no;cellular;aug;tue;295;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+37;admin.;married;university.degree;no;yes;no;cellular;aug;tue;198;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;management;married;university.degree;no;yes;yes;cellular;aug;tue;199;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+58;retired;married;unknown;unknown;no;yes;cellular;aug;tue;92;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+36;management;married;university.degree;unknown;no;no;cellular;aug;tue;504;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;technician;single;university.degree;no;yes;no;cellular;aug;tue;113;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+29;management;single;university.degree;no;no;no;cellular;aug;tue;189;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+36;admin.;married;university.degree;unknown;yes;no;cellular;aug;tue;121;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+29;management;single;university.degree;no;no;yes;cellular;aug;tue;264;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+45;admin.;married;high.school;no;yes;no;cellular;aug;tue;1293;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;yes
+31;admin.;single;university.degree;unknown;no;no;cellular;aug;tue;359;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;technician;single;professional.course;no;yes;no;cellular;aug;tue;150;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+38;admin.;married;university.degree;no;yes;no;cellular;aug;tue;74;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+44;services;married;basic.4y;unknown;yes;no;cellular;aug;tue;227;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+49;admin.;married;high.school;no;yes;no;cellular;aug;tue;129;8;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+32;technician;single;university.degree;no;yes;no;cellular;aug;tue;125;10;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+50;admin.;divorced;university.degree;no;no;no;cellular;aug;tue;323;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+45;unknown;married;basic.9y;unknown;no;no;cellular;aug;tue;234;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;technician;single;professional.course;no;yes;no;cellular;aug;tue;101;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;technician;single;professional.course;no;no;no;cellular;aug;tue;193;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+32;admin.;divorced;university.degree;no;no;no;cellular;aug;tue;128;6;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+36;admin.;single;university.degree;no;no;no;cellular;aug;tue;260;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+54;housemaid;married;basic.4y;no;yes;no;cellular;aug;tue;133;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;technician;single;professional.course;no;yes;no;cellular;aug;tue;242;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;technician;single;professional.course;no;no;yes;cellular;aug;tue;501;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+34;admin.;married;university.degree;no;no;no;cellular;aug;tue;109;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+44;technician;married;professional.course;no;yes;no;cellular;aug;tue;339;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;technician;married;professional.course;no;yes;no;cellular;aug;tue;149;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+34;technician;married;high.school;no;no;no;cellular;aug;tue;76;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+34;technician;married;high.school;unknown;no;no;cellular;aug;tue;256;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+34;technician;married;high.school;unknown;no;no;cellular;aug;tue;332;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;admin.;married;university.degree;no;no;no;cellular;aug;tue;111;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+58;admin.;divorced;high.school;no;no;no;cellular;aug;tue;290;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;self-employed;single;university.degree;no;no;no;cellular;aug;tue;58;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+32;admin.;single;university.degree;no;no;no;cellular;aug;tue;80;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+32;technician;single;high.school;no;no;no;cellular;aug;tue;186;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+49;blue-collar;married;basic.6y;no;yes;no;cellular;aug;tue;195;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+54;self-employed;married;high.school;no;no;no;cellular;aug;tue;119;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+48;management;married;university.degree;no;no;no;cellular;aug;tue;115;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+39;admin.;married;university.degree;no;no;no;cellular;aug;tue;145;8;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;admin.;single;university.degree;no;no;no;cellular;aug;tue;145;5;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+32;admin.;married;university.degree;no;yes;no;cellular;aug;tue;126;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;admin.;married;university.degree;no;no;no;cellular;aug;tue;100;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+46;blue-collar;married;basic.6y;unknown;yes;no;cellular;aug;tue;204;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+38;technician;married;university.degree;no;yes;no;cellular;aug;tue;178;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+32;admin.;single;university.degree;no;yes;no;cellular;aug;tue;202;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+47;housemaid;married;basic.4y;unknown;no;yes;cellular;aug;tue;41;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+36;technician;married;university.degree;no;no;no;cellular;aug;tue;125;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;technician;married;professional.course;no;no;no;telephone;aug;tue;225;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+55;technician;married;professional.course;unknown;yes;no;cellular;aug;tue;160;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+36;technician;married;university.degree;no;yes;no;cellular;aug;tue;139;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+47;blue-collar;married;basic.9y;unknown;yes;no;cellular;aug;tue;118;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+36;admin.;married;university.degree;unknown;no;no;cellular;aug;tue;97;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+48;management;married;university.degree;no;yes;no;cellular;aug;tue;127;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+29;technician;married;university.degree;no;no;no;cellular;aug;tue;391;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+46;blue-collar;married;basic.6y;unknown;yes;no;cellular;aug;tue;143;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+46;blue-collar;married;basic.6y;unknown;no;yes;cellular;aug;tue;166;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+56;admin.;married;basic.9y;no;yes;no;cellular;aug;tue;130;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+35;admin.;single;university.degree;no;yes;yes;cellular;aug;tue;398;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;technician;married;professional.course;no;yes;no;cellular;aug;tue;276;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+48;technician;single;university.degree;unknown;yes;no;cellular;aug;tue;159;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;technician;married;professional.course;no;yes;no;cellular;aug;tue;452;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+40;admin.;married;university.degree;unknown;no;no;cellular;aug;tue;73;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;technician;single;professional.course;no;no;no;cellular;aug;tue;129;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;admin.;single;high.school;no;yes;no;cellular;aug;tue;195;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;admin.;single;high.school;no;yes;no;cellular;aug;tue;167;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+59;admin.;married;basic.4y;unknown;yes;no;cellular;aug;tue;306;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+45;technician;single;university.degree;unknown;no;no;cellular;aug;tue;117;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;technician;divorced;high.school;no;yes;yes;cellular;aug;tue;194;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;management;married;university.degree;no;no;no;cellular;aug;tue;133;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+36;technician;married;university.degree;no;yes;no;cellular;aug;tue;156;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+50;technician;married;high.school;unknown;no;no;cellular;aug;tue;679;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+52;admin.;married;university.degree;unknown;yes;no;cellular;aug;tue;175;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+37;technician;married;high.school;no;no;no;cellular;aug;tue;190;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+58;technician;divorced;professional.course;unknown;yes;no;cellular;aug;tue;109;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;technician;married;professional.course;no;yes;no;cellular;aug;tue;409;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;self-employed;single;university.degree;no;yes;no;cellular;aug;tue;176;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+47;services;married;basic.4y;no;yes;no;cellular;aug;tue;122;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+50;blue-collar;married;basic.4y;no;yes;no;cellular;aug;tue;406;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+58;self-employed;married;university.degree;no;yes;yes;cellular;aug;tue;598;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;admin.;single;university.degree;no;no;yes;cellular;aug;tue;92;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;admin.;married;university.degree;no;no;yes;cellular;aug;tue;113;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+44;blue-collar;married;basic.6y;no;yes;yes;cellular;aug;tue;222;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;technician;single;high.school;no;yes;no;cellular;aug;tue;183;13;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;admin.;divorced;university.degree;no;yes;no;cellular;aug;tue;90;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+34;technician;married;high.school;unknown;no;no;cellular;aug;tue;188;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;admin.;single;university.degree;no;yes;yes;cellular;aug;tue;275;6;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+32;admin.;single;university.degree;no;yes;no;cellular;aug;tue;96;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+41;admin.;married;university.degree;unknown;no;no;cellular;aug;tue;21;17;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+52;admin.;married;high.school;no;yes;no;cellular;aug;tue;163;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+36;admin.;married;university.degree;unknown;no;no;cellular;aug;tue;28;13;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+35;entrepreneur;divorced;professional.course;unknown;unknown;unknown;cellular;aug;tue;950;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;yes
+42;admin.;divorced;university.degree;no;no;no;cellular;aug;tue;56;7;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+58;admin.;divorced;university.degree;no;yes;no;cellular;aug;tue;679;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+38;technician;single;professional.course;no;yes;no;cellular;aug;tue;99;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+32;technician;single;high.school;no;yes;no;cellular;aug;tue;129;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+36;admin.;married;university.degree;unknown;yes;no;cellular;aug;tue;120;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+36;admin.;single;university.degree;no;no;yes;cellular;aug;tue;35;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+54;technician;married;professional.course;unknown;yes;no;cellular;aug;tue;687;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;yes
+36;admin.;single;university.degree;no;yes;no;cellular;aug;tue;74;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+42;technician;divorced;professional.course;no;yes;no;cellular;aug;tue;94;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+32;technician;married;university.degree;no;no;no;cellular;aug;tue;224;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+37;technician;married;university.degree;no;no;no;cellular;aug;tue;158;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+47;admin.;married;high.school;no;yes;no;cellular;aug;tue;292;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+46;admin.;married;university.degree;no;yes;no;cellular;aug;tue;208;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+37;self-employed;single;university.degree;no;yes;no;cellular;aug;tue;121;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+44;unknown;married;unknown;unknown;unknown;unknown;cellular;aug;tue;163;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;technician;married;high.school;no;yes;no;cellular;aug;tue;155;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+49;services;single;professional.course;no;yes;no;cellular;aug;tue;73;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+52;admin.;married;university.degree;no;yes;no;cellular;aug;tue;469;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+59;blue-collar;married;basic.4y;no;yes;no;cellular;aug;tue;115;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+54;blue-collar;married;basic.4y;no;no;no;cellular;aug;tue;146;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;technician;married;professional.course;no;no;no;cellular;aug;tue;1241;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+54;blue-collar;married;basic.4y;no;no;yes;cellular;aug;tue;299;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;admin.;single;university.degree;no;no;no;cellular;aug;tue;128;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+43;admin.;married;university.degree;no;no;yes;cellular;aug;tue;209;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+43;admin.;married;university.degree;no;no;no;cellular;aug;tue;166;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;technician;single;university.degree;no;yes;yes;cellular;aug;tue;131;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+58;retired;married;university.degree;unknown;no;no;cellular;aug;tue;587;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+29;technician;single;university.degree;no;yes;no;cellular;aug;tue;58;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;admin.;single;university.degree;no;yes;no;cellular;aug;tue;191;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;admin.;divorced;university.degree;no;no;no;cellular;aug;tue;274;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+48;technician;married;high.school;unknown;yes;yes;cellular;aug;tue;126;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+48;technician;married;high.school;unknown;no;yes;cellular;aug;tue;171;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+34;admin.;married;university.degree;no;yes;yes;cellular;aug;tue;80;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+41;technician;married;university.degree;no;yes;no;cellular;aug;tue;95;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+34;admin.;married;university.degree;no;no;yes;cellular;aug;tue;128;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+47;services;married;basic.4y;no;yes;yes;cellular;aug;tue;220;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+32;admin.;married;university.degree;no;yes;no;cellular;aug;tue;168;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+29;admin.;single;university.degree;no;no;yes;cellular;aug;tue;360;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+48;technician;married;professional.course;yes;no;no;cellular;aug;tue;66;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+48;technician;married;professional.course;yes;yes;no;cellular;aug;tue;133;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+52;technician;divorced;professional.course;no;yes;no;cellular;aug;tue;12;10;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+49;admin.;married;high.school;no;yes;yes;cellular;aug;tue;120;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+36;unemployed;single;professional.course;no;yes;yes;telephone;aug;tue;69;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+40;admin.;married;high.school;no;no;no;cellular;aug;tue;119;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+59;blue-collar;married;basic.4y;no;yes;no;cellular;aug;tue;258;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+40;admin.;married;high.school;no;yes;no;cellular;aug;tue;195;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+32;technician;single;university.degree;no;no;no;cellular;aug;tue;696;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+54;admin.;married;university.degree;unknown;no;no;cellular;aug;tue;434;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+40;admin.;married;high.school;no;yes;no;cellular;aug;tue;105;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+40;admin.;married;high.school;no;yes;yes;cellular;aug;tue;172;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;admin.;married;university.degree;no;yes;no;cellular;aug;tue;387;5;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+32;management;married;university.degree;no;yes;no;cellular;aug;tue;377;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+32;admin.;single;high.school;no;no;no;cellular;aug;tue;243;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+49;blue-collar;married;basic.9y;unknown;yes;no;cellular;aug;tue;60;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;unemployed;married;university.degree;no;no;no;cellular;aug;tue;91;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;unemployed;married;university.degree;no;yes;no;cellular;aug;tue;103;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+49;blue-collar;married;basic.9y;unknown;no;no;cellular;aug;tue;281;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+40;management;married;university.degree;unknown;yes;no;cellular;aug;tue;110;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+47;unemployed;married;professional.course;unknown;yes;yes;cellular;aug;tue;100;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;technician;married;professional.course;no;yes;no;cellular;aug;tue;111;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+49;unknown;married;high.school;unknown;no;yes;cellular;aug;tue;144;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;technician;married;professional.course;no;yes;no;cellular;aug;tue;205;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+45;blue-collar;married;basic.4y;unknown;yes;no;cellular;aug;tue;528;7;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+59;admin.;married;basic.4y;unknown;yes;yes;cellular;aug;tue;292;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;technician;single;university.degree;no;yes;no;cellular;aug;tue;116;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;technician;married;professional.course;no;no;no;cellular;aug;tue;120;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+41;blue-collar;divorced;basic.9y;no;no;no;cellular;aug;tue;102;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;technician;married;high.school;no;yes;yes;cellular;aug;tue;92;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;technician;married;high.school;no;yes;no;cellular;aug;tue;108;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;technician;married;high.school;no;yes;no;cellular;aug;tue;124;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;technician;married;high.school;no;no;no;cellular;aug;tue;142;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;technician;married;high.school;no;no;no;cellular;aug;tue;79;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;technician;married;high.school;no;no;no;cellular;aug;tue;41;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;technician;married;university.degree;unknown;yes;no;cellular;aug;tue;153;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;management;married;university.degree;no;no;no;cellular;aug;tue;551;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+50;blue-collar;married;basic.4y;no;yes;no;cellular;aug;tue;98;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+54;management;married;university.degree;unknown;no;no;cellular;aug;tue;97;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+36;admin.;married;university.degree;unknown;yes;no;cellular;aug;tue;181;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+37;technician;married;professional.course;no;no;no;cellular;aug;tue;386;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;self-employed;married;university.degree;no;no;no;cellular;aug;tue;135;5;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+35;technician;married;professional.course;unknown;no;no;cellular;aug;tue;349;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;admin.;single;university.degree;no;no;yes;cellular;aug;tue;358;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;admin.;married;university.degree;no;yes;no;cellular;aug;tue;154;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+54;blue-collar;married;basic.4y;no;yes;no;cellular;aug;tue;153;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+40;admin.;married;university.degree;no;yes;yes;cellular;aug;tue;197;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+36;admin.;single;university.degree;no;yes;no;cellular;aug;tue;245;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+36;admin.;single;university.degree;no;yes;no;cellular;aug;tue;168;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;admin.;married;university.degree;no;no;no;cellular;aug;tue;111;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+36;admin.;single;university.degree;no;no;no;cellular;aug;tue;288;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+32;admin.;single;university.degree;no;yes;yes;cellular;aug;tue;69;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;admin.;married;university.degree;no;no;yes;cellular;aug;tue;438;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+45;admin.;single;university.degree;no;no;yes;cellular;aug;tue;28;11;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+50;technician;married;high.school;unknown;no;no;cellular;aug;tue;280;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+49;admin.;married;high.school;no;no;no;cellular;aug;tue;15;13;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;admin.;married;university.degree;no;no;yes;cellular;aug;tue;824;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+32;admin.;single;university.degree;no;yes;no;cellular;aug;tue;451;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+45;blue-collar;married;unknown;no;no;no;cellular;aug;tue;194;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;technician;married;high.school;no;yes;no;cellular;aug;tue;385;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+54;technician;married;professional.course;no;no;no;cellular;aug;tue;99;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+35;management;married;university.degree;no;no;no;cellular;aug;tue;471;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+36;technician;single;university.degree;no;yes;no;cellular;aug;tue;486;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+39;technician;divorced;high.school;no;yes;yes;cellular;aug;tue;156;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+54;blue-collar;married;basic.4y;no;yes;yes;cellular;aug;tue;53;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+56;retired;married;basic.4y;no;no;no;cellular;aug;tue;933;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;yes
+29;management;single;university.degree;no;yes;no;cellular;aug;tue;139;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+32;admin.;single;university.degree;no;unknown;unknown;cellular;aug;tue;40;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+32;technician;married;university.degree;unknown;yes;no;cellular;aug;tue;328;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;management;married;high.school;no;yes;no;cellular;aug;tue;19;12;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+29;admin.;single;university.degree;no;yes;no;cellular;aug;tue;144;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+45;technician;married;high.school;no;yes;no;cellular;aug;tue;42;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+42;technician;married;professional.course;unknown;yes;no;cellular;aug;tue;1059;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+41;admin.;divorced;university.degree;no;no;no;cellular;aug;tue;117;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+34;technician;single;university.degree;no;yes;no;cellular;aug;tue;149;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;admin.;single;university.degree;no;yes;no;cellular;aug;tue;1032;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;yes
+32;technician;single;university.degree;no;yes;yes;cellular;aug;tue;231;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;technician;single;university.degree;no;yes;no;cellular;aug;tue;80;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;admin.;married;university.degree;no;yes;yes;cellular;aug;tue;141;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+45;technician;married;high.school;no;yes;yes;cellular;aug;tue;474;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+38;unemployed;single;university.degree;no;yes;yes;cellular;aug;tue;153;6;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+35;technician;married;professional.course;no;no;no;cellular;aug;tue;98;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;technician;single;professional.course;no;no;no;cellular;aug;tue;405;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+35;technician;married;professional.course;no;yes;yes;cellular;aug;tue;202;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+44;blue-collar;married;basic.4y;no;yes;no;cellular;aug;tue;294;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+50;admin.;married;basic.6y;no;no;no;cellular;aug;tue;178;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;admin.;married;university.degree;unknown;no;no;cellular;aug;tue;130;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+50;admin.;married;basic.6y;no;yes;no;cellular;aug;tue;264;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;technician;single;university.degree;no;no;yes;cellular;aug;tue;729;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+43;unemployed;married;professional.course;no;no;no;telephone;aug;tue;18;12;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;technician;single;university.degree;no;yes;yes;cellular;aug;tue;285;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;technician;single;university.degree;no;yes;no;cellular;aug;tue;367;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+44;admin.;married;basic.9y;unknown;yes;yes;cellular;aug;tue;86;5;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+48;blue-collar;married;basic.4y;no;no;no;cellular;aug;tue;155;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;services;married;university.degree;no;yes;no;cellular;aug;tue;88;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+32;admin.;single;university.degree;no;yes;yes;cellular;aug;tue;220;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;services;married;university.degree;no;yes;no;cellular;aug;tue;174;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+38;technician;married;professional.course;unknown;yes;no;cellular;aug;tue;134;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+43;technician;married;high.school;no;yes;no;cellular;aug;tue;88;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+32;admin.;single;university.degree;no;yes;yes;cellular;aug;tue;199;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+32;technician;single;university.degree;no;yes;no;cellular;aug;tue;178;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+47;blue-collar;married;basic.6y;no;yes;no;cellular;aug;tue;373;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+35;technician;married;professional.course;no;no;no;cellular;aug;tue;211;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+38;admin.;married;university.degree;unknown;yes;no;cellular;aug;tue;173;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;admin.;married;high.school;unknown;yes;no;cellular;aug;tue;68;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+56;blue-collar;married;basic.4y;no;no;no;cellular;aug;tue;44;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+34;admin.;single;university.degree;unknown;no;yes;cellular;aug;tue;285;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;technician;single;university.degree;no;no;no;cellular;aug;tue;302;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;technician;single;professional.course;no;yes;no;cellular;aug;tue;171;6;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+29;admin.;single;university.degree;unknown;yes;no;cellular;aug;tue;158;5;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;admin.;divorced;high.school;no;no;no;cellular;aug;tue;271;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+37;technician;single;university.degree;no;no;no;cellular;aug;tue;59;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;technician;single;university.degree;unknown;no;no;cellular;aug;tue;61;5;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+44;management;married;university.degree;no;yes;no;cellular;aug;tue;61;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+35;technician;married;professional.course;no;yes;no;cellular;aug;tue;105;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;admin.;married;university.degree;no;yes;no;cellular;aug;tue;118;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+55;services;married;high.school;no;yes;no;cellular;aug;tue;392;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;admin.;single;university.degree;unknown;unknown;unknown;cellular;aug;tue;313;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+29;technician;single;university.degree;no;yes;no;cellular;aug;tue;82;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;admin.;married;university.degree;unknown;no;no;cellular;aug;tue;109;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+32;technician;single;high.school;no;yes;no;cellular;aug;tue;78;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+52;unemployed;married;basic.4y;no;no;no;cellular;aug;tue;121;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;admin.;single;professional.course;no;no;no;cellular;aug;tue;97;7;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+55;retired;married;high.school;unknown;yes;yes;cellular;aug;tue;37;5;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+32;admin.;single;university.degree;no;yes;yes;cellular;aug;tue;221;8;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+40;admin.;divorced;university.degree;unknown;no;no;telephone;aug;tue;105;5;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+52;blue-collar;married;basic.9y;no;no;no;cellular;aug;tue;329;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+53;self-employed;married;basic.4y;no;no;no;cellular;aug;tue;268;11;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+32;technician;married;high.school;no;yes;no;cellular;aug;tue;160;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+60;retired;married;basic.4y;unknown;no;no;cellular;aug;tue;332;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+46;services;married;high.school;unknown;no;no;cellular;aug;tue;205;5;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+46;blue-collar;married;basic.6y;unknown;yes;no;cellular;aug;tue;398;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+32;technician;married;high.school;no;yes;no;cellular;aug;tue;599;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+41;technician;single;professional.course;unknown;no;yes;cellular;aug;tue;102;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;admin.;single;high.school;unknown;yes;no;cellular;aug;tue;82;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;technician;single;university.degree;no;yes;no;cellular;aug;tue;290;9;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;yes
+56;retired;married;high.school;no;yes;no;cellular;aug;tue;109;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;admin.;single;university.degree;no;yes;yes;cellular;aug;tue;238;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+37;services;married;high.school;no;no;no;cellular;aug;tue;249;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+36;technician;single;high.school;no;yes;yes;cellular;aug;tue;629;7;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+29;technician;single;university.degree;unknown;no;yes;cellular;aug;tue;137;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+52;admin.;married;high.school;no;yes;no;cellular;aug;tue;231;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+34;admin.;single;university.degree;no;no;no;cellular;aug;tue;119;6;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+47;blue-collar;married;basic.6y;no;yes;no;cellular;aug;tue;308;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;admin.;married;university.degree;unknown;no;no;cellular;aug;tue;609;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+56;blue-collar;married;basic.4y;unknown;yes;no;cellular;aug;tue;147;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+43;management;married;university.degree;no;no;no;cellular;aug;tue;123;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+41;technician;single;professional.course;unknown;yes;no;cellular;aug;tue;57;5;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+39;admin.;divorced;university.degree;no;no;no;cellular;aug;tue;199;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+35;technician;married;professional.course;no;no;no;cellular;aug;tue;219;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;admin.;single;university.degree;no;yes;no;cellular;aug;tue;386;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+29;admin.;single;university.degree;no;yes;no;cellular;aug;tue;112;5;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+45;technician;divorced;professional.course;no;no;no;cellular;aug;tue;706;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;admin.;single;university.degree;no;yes;no;cellular;aug;tue;173;9;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+52;admin.;divorced;unknown;no;no;no;cellular;aug;tue;228;5;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+40;technician;divorced;university.degree;no;no;no;cellular;aug;tue;207;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+32;admin.;married;university.degree;no;unknown;unknown;cellular;aug;tue;347;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+47;blue-collar;married;basic.6y;no;no;no;cellular;aug;tue;256;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+36;technician;married;university.degree;no;yes;no;cellular;aug;tue;85;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+55;housemaid;married;basic.4y;no;yes;no;cellular;aug;tue;117;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;technician;single;university.degree;no;no;yes;cellular;aug;tue;60;6;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;technician;single;professional.course;no;yes;yes;cellular;aug;tue;207;5;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+57;services;married;high.school;no;no;no;cellular;aug;tue;187;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+58;blue-collar;married;basic.6y;no;yes;no;cellular;aug;tue;166;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+32;admin.;divorced;university.degree;no;yes;no;cellular;aug;tue;152;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;technician;single;university.degree;no;no;no;cellular;aug;tue;93;5;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;admin.;single;university.degree;unknown;no;no;cellular;aug;tue;54;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+29;services;married;professional.course;no;no;no;cellular;aug;tue;836;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;yes
+31;services;divorced;high.school;no;yes;yes;cellular;aug;tue;242;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+38;technician;married;university.degree;no;yes;yes;cellular;aug;tue;235;5;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+52;blue-collar;married;basic.9y;unknown;yes;no;telephone;aug;tue;132;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+45;blue-collar;married;basic.6y;unknown;yes;no;cellular;aug;tue;561;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+48;blue-collar;married;basic.9y;no;yes;yes;cellular;aug;tue;303;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+43;management;married;university.degree;no;yes;no;cellular;aug;tue;343;7;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;services;married;university.degree;no;yes;no;cellular;aug;tue;159;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;self-employed;married;university.degree;no;yes;no;cellular;aug;tue;173;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+60;retired;married;basic.4y;unknown;yes;yes;cellular;aug;tue;595;8;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+40;admin.;divorced;university.degree;unknown;yes;no;cellular;aug;tue;1200;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+32;technician;married;university.degree;unknown;yes;no;cellular;aug;tue;695;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+40;admin.;divorced;university.degree;unknown;yes;no;cellular;aug;tue;100;11;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+58;admin.;married;university.degree;unknown;yes;yes;cellular;aug;tue;103;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+51;blue-collar;married;basic.4y;no;unknown;unknown;telephone;aug;tue;480;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;yes
+32;admin.;divorced;university.degree;no;yes;no;cellular;aug;wed;46;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+32;technician;married;high.school;no;yes;no;cellular;aug;wed;125;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+35;admin.;divorced;university.degree;no;yes;no;cellular;aug;wed;108;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+38;admin.;single;university.degree;unknown;yes;yes;cellular;aug;wed;131;5;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;technician;single;professional.course;no;yes;no;cellular;aug;wed;129;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+48;blue-collar;married;basic.9y;no;yes;no;cellular;aug;wed;118;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+42;technician;divorced;high.school;no;no;no;cellular;aug;wed;113;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;technician;single;professional.course;no;no;no;cellular;aug;wed;80;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+38;technician;married;professional.course;unknown;yes;yes;cellular;aug;wed;83;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;admin.;married;university.degree;unknown;no;no;cellular;aug;wed;150;5;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;admin.;single;university.degree;no;no;no;cellular;aug;wed;582;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;admin.;single;university.degree;no;no;no;cellular;aug;wed;68;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+38;technician;divorced;high.school;unknown;no;no;cellular;aug;wed;190;9;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+55;retired;married;basic.9y;unknown;yes;yes;cellular;aug;wed;117;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+29;technician;single;high.school;unknown;yes;no;cellular;aug;wed;143;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+33;admin.;single;university.degree;unknown;yes;no;cellular;aug;wed;183;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+59;admin.;married;university.degree;no;yes;no;cellular;aug;wed;264;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+29;admin.;married;university.degree;no;yes;no;cellular;aug;wed;216;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+58;blue-collar;married;basic.9y;unknown;yes;no;cellular;aug;wed;127;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+33;admin.;single;university.degree;no;no;no;cellular;aug;wed;43;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+33;admin.;single;university.degree;no;no;no;cellular;aug;wed;154;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+39;management;divorced;university.degree;no;no;no;cellular;aug;wed;649;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;yes
+33;admin.;single;university.degree;no;no;yes;cellular;aug;wed;155;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+37;technician;married;professional.course;no;yes;no;cellular;aug;wed;72;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+33;admin.;single;university.degree;no;no;no;cellular;aug;wed;162;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+32;technician;married;high.school;no;yes;no;cellular;aug;wed;30;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+48;blue-collar;married;basic.4y;unknown;yes;no;cellular;aug;wed;89;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+33;admin.;married;university.degree;no;yes;no;cellular;aug;wed;81;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+53;management;married;university.degree;no;no;no;cellular;aug;wed;50;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+33;admin.;single;university.degree;no;yes;no;cellular;aug;wed;134;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+33;technician;married;university.degree;no;yes;no;cellular;aug;wed;86;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+51;retired;married;university.degree;no;no;no;cellular;aug;wed;142;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+49;admin.;married;university.degree;no;no;no;cellular;aug;wed;64;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+46;admin.;single;university.degree;no;no;no;cellular;aug;wed;377;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+32;housemaid;married;university.degree;no;yes;yes;cellular;aug;wed;73;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+32;services;married;high.school;no;no;no;cellular;aug;wed;55;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+36;technician;divorced;professional.course;no;yes;no;cellular;aug;wed;76;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;admin.;married;university.degree;no;yes;no;cellular;aug;wed;240;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+58;services;married;high.school;unknown;no;no;cellular;aug;wed;153;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+32;admin.;single;university.degree;no;no;no;cellular;aug;wed;160;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+43;unemployed;married;professional.course;no;no;yes;cellular;aug;wed;120;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+56;technician;married;professional.course;no;no;no;cellular;aug;wed;68;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+43;management;married;university.degree;no;no;no;cellular;aug;wed;104;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+49;admin.;married;university.degree;no;yes;no;cellular;aug;wed;87;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+29;admin.;single;university.degree;no;no;no;cellular;aug;wed;256;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+32;technician;single;university.degree;unknown;yes;no;cellular;aug;wed;322;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+42;admin.;single;university.degree;unknown;no;no;cellular;aug;wed;156;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+54;blue-collar;married;basic.4y;no;no;no;cellular;aug;wed;50;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+32;technician;single;university.degree;no;no;no;cellular;aug;wed;132;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+55;services;married;basic.4y;no;no;yes;cellular;aug;wed;64;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+40;admin.;married;high.school;no;yes;yes;cellular;aug;wed;18;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+42;admin.;single;university.degree;unknown;no;no;cellular;aug;wed;483;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+55;services;married;basic.4y;no;yes;no;cellular;aug;wed;212;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+33;admin.;single;university.degree;no;no;no;cellular;aug;wed;64;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+48;blue-collar;married;basic.9y;no;no;no;cellular;aug;wed;329;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;technician;married;university.degree;no;yes;no;cellular;aug;wed;239;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;technician;married;professional.course;no;no;yes;cellular;aug;wed;90;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+36;admin.;married;university.degree;no;yes;no;cellular;aug;wed;129;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+49;admin.;divorced;university.degree;unknown;no;no;cellular;aug;wed;150;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;admin.;single;university.degree;no;no;no;cellular;aug;wed;295;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;technician;single;university.degree;unknown;yes;no;cellular;aug;wed;60;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+33;admin.;single;university.degree;no;yes;no;cellular;aug;wed;25;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+29;admin.;single;university.degree;no;yes;no;cellular;aug;wed;133;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+42;admin.;single;high.school;no;no;no;cellular;aug;wed;127;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+42;admin.;single;high.school;no;yes;no;cellular;aug;wed;138;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+29;admin.;single;university.degree;no;no;no;cellular;aug;wed;391;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+45;management;married;high.school;unknown;yes;no;cellular;aug;wed;228;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+45;blue-collar;married;basic.6y;no;yes;no;cellular;aug;wed;128;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+33;admin.;married;university.degree;no;no;no;cellular;aug;wed;140;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+33;admin.;married;university.degree;no;no;no;cellular;aug;wed;88;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+29;admin.;single;university.degree;no;yes;no;cellular;aug;wed;243;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+33;admin.;single;university.degree;no;no;no;cellular;aug;wed;97;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+42;technician;married;professional.course;no;yes;no;cellular;aug;wed;192;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;admin.;single;university.degree;no;no;no;cellular;aug;wed;340;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+45;blue-collar;married;basic.6y;no;no;no;cellular;aug;wed;921;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;yes
+36;self-employed;divorced;professional.course;no;yes;no;cellular;aug;wed;157;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+40;technician;single;professional.course;no;yes;no;cellular;aug;wed;142;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+40;technician;single;professional.course;no;yes;no;cellular;aug;wed;84;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+40;technician;single;professional.course;no;no;no;cellular;aug;wed;113;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+32;management;married;university.degree;no;no;no;cellular;aug;wed;500;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+40;technician;single;professional.course;no;yes;no;cellular;aug;wed;179;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+29;admin.;single;university.degree;no;no;no;cellular;aug;wed;53;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+29;admin.;single;university.degree;no;yes;no;cellular;aug;wed;195;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+36;admin.;married;university.degree;no;no;no;cellular;aug;wed;155;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+50;blue-collar;married;basic.9y;no;yes;no;cellular;aug;wed;72;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+29;admin.;single;university.degree;no;yes;yes;cellular;aug;wed;467;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;yes
+36;technician;married;high.school;unknown;yes;no;cellular;aug;wed;112;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+56;technician;married;professional.course;unknown;yes;no;cellular;aug;wed;83;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+44;entrepreneur;married;high.school;no;no;no;cellular;aug;wed;70;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+36;technician;married;high.school;unknown;yes;no;cellular;aug;wed;231;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+44;entrepreneur;married;high.school;no;yes;no;cellular;aug;wed;312;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+42;technician;married;professional.course;no;yes;no;cellular;aug;wed;543;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;yes
+32;admin.;married;university.degree;no;yes;yes;cellular;aug;wed;152;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;admin.;single;university.degree;no;yes;no;cellular;aug;wed;124;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;technician;married;university.degree;no;yes;yes;cellular;aug;wed;158;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+46;blue-collar;married;basic.9y;no;yes;no;cellular;aug;wed;82;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+45;management;married;high.school;unknown;no;no;cellular;aug;wed;110;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;entrepreneur;single;university.degree;no;yes;yes;cellular;aug;wed;90;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+54;self-employed;married;professional.course;unknown;yes;no;cellular;aug;wed;104;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+59;retired;married;basic.9y;unknown;yes;no;cellular;aug;wed;80;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+32;admin.;married;university.degree;no;yes;no;cellular;aug;wed;428;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+37;admin.;married;university.degree;unknown;no;no;cellular;aug;wed;193;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+29;technician;single;high.school;unknown;yes;no;cellular;aug;wed;158;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;admin.;single;university.degree;no;no;no;cellular;aug;wed;97;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+59;retired;married;basic.9y;no;yes;yes;cellular;aug;wed;339;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+59;retired;married;basic.9y;no;no;no;cellular;aug;wed;351;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;admin.;single;university.degree;no;yes;no;cellular;aug;wed;202;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+57;housemaid;married;basic.4y;no;yes;no;cellular;aug;wed;153;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+54;blue-collar;married;basic.9y;no;no;no;cellular;aug;wed;203;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+56;admin.;married;university.degree;no;no;no;cellular;aug;wed;552;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;yes
+57;blue-collar;married;basic.4y;unknown;no;no;cellular;aug;wed;106;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+36;technician;divorced;professional.course;no;yes;no;cellular;aug;wed;79;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+33;admin.;married;university.degree;no;yes;no;cellular;aug;wed;117;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+57;blue-collar;married;basic.4y;unknown;yes;no;cellular;aug;wed;89;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+32;admin.;married;university.degree;no;yes;no;cellular;aug;wed;322;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;technician;married;university.degree;no;no;no;cellular;aug;wed;60;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+50;blue-collar;married;basic.9y;no;no;no;cellular;aug;wed;93;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+57;housemaid;married;basic.4y;no;no;no;cellular;aug;wed;1044;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;yes
+30;technician;single;professional.course;no;no;no;cellular;aug;wed;387;6;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+37;admin.;single;university.degree;no;no;yes;cellular;aug;wed;162;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+29;admin.;single;university.degree;no;yes;no;cellular;aug;wed;875;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;yes
+53;blue-collar;married;basic.4y;no;yes;no;cellular;aug;wed;108;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+46;blue-collar;married;basic.4y;no;no;yes;cellular;aug;wed;414;8;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+49;technician;married;university.degree;no;yes;no;cellular;aug;wed;552;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;admin.;married;university.degree;no;no;no;cellular;aug;wed;209;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;admin.;single;university.degree;no;no;no;cellular;aug;wed;263;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+47;technician;married;professional.course;no;yes;no;cellular;aug;wed;185;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+42;technician;married;professional.course;unknown;no;no;cellular;aug;wed;71;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;admin.;single;university.degree;no;yes;no;cellular;aug;wed;105;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+33;admin.;single;professional.course;no;yes;no;cellular;aug;wed;75;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+48;blue-collar;married;basic.9y;no;yes;no;cellular;aug;wed;360;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;blue-collar;single;basic.9y;no;no;no;cellular;aug;wed;219;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+50;blue-collar;married;basic.4y;unknown;no;no;cellular;aug;wed;157;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+32;admin.;divorced;university.degree;no;no;no;cellular;aug;wed;102;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+40;technician;single;professional.course;no;no;no;cellular;aug;wed;113;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;admin.;married;university.degree;no;no;no;cellular;aug;wed;196;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+43;management;married;university.degree;no;yes;no;cellular;aug;wed;118;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+43;management;married;university.degree;no;no;no;cellular;aug;wed;94;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;admin.;single;university.degree;no;yes;no;cellular;aug;wed;138;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+43;management;married;university.degree;no;no;no;cellular;aug;wed;204;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+43;management;married;university.degree;no;yes;no;cellular;aug;wed;535;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;technician;single;university.degree;unknown;yes;no;cellular;aug;wed;136;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+44;technician;single;professional.course;no;yes;no;cellular;aug;wed;112;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+53;admin.;married;university.degree;no;no;no;cellular;aug;wed;107;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+57;services;married;professional.course;no;yes;no;cellular;aug;wed;160;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+53;admin.;married;university.degree;no;no;no;cellular;aug;wed;103;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+44;blue-collar;married;basic.4y;unknown;yes;no;cellular;aug;wed;359;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+36;technician;single;university.degree;no;yes;no;cellular;aug;wed;123;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+53;admin.;married;university.degree;no;yes;yes;cellular;aug;wed;277;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+45;management;married;university.degree;no;yes;no;cellular;aug;wed;88;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;admin.;married;university.degree;no;no;no;telephone;aug;wed;588;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;yes
+60;retired;married;university.degree;no;no;no;cellular;aug;wed;332;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+48;admin.;married;high.school;no;no;no;cellular;aug;wed;184;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;admin.;single;university.degree;no;yes;no;cellular;aug;wed;237;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+47;technician;married;professional.course;no;yes;no;cellular;aug;wed;49;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+51;admin.;married;university.degree;no;yes;no;cellular;aug;wed;122;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;technician;single;university.degree;no;yes;no;cellular;aug;wed;215;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+32;technician;single;university.degree;no;yes;no;cellular;aug;wed;25;13;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+36;blue-collar;single;high.school;no;no;no;cellular;aug;wed;211;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+35;management;married;university.degree;no;unknown;unknown;cellular;aug;wed;233;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+57;services;divorced;high.school;unknown;no;no;cellular;aug;wed;71;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+32;admin.;single;university.degree;no;no;no;cellular;aug;wed;172;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+45;services;married;high.school;unknown;yes;no;cellular;aug;wed;100;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+33;management;married;university.degree;no;yes;no;cellular;aug;wed;113;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+50;technician;divorced;professional.course;unknown;no;no;cellular;aug;wed;119;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;admin.;single;university.degree;unknown;yes;no;cellular;aug;wed;87;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+29;technician;single;professional.course;no;no;no;cellular;aug;wed;111;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+48;technician;divorced;professional.course;unknown;yes;no;cellular;aug;wed;200;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;technician;single;professional.course;no;yes;no;cellular;aug;wed;214;5;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;unemployed;married;university.degree;no;yes;no;cellular;aug;wed;763;9;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;yes
+36;technician;single;university.degree;no;unknown;unknown;cellular;aug;wed;889;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+29;technician;single;university.degree;no;no;no;cellular;aug;wed;95;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;technician;married;university.degree;no;no;no;cellular;aug;wed;195;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+29;technician;single;university.degree;no;no;no;cellular;aug;wed;210;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+39;admin.;single;university.degree;unknown;yes;no;cellular;aug;wed;413;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+37;technician;married;professional.course;no;yes;no;cellular;aug;wed;97;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+29;technician;single;professional.course;no;yes;no;cellular;aug;wed;472;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+43;management;married;university.degree;no;no;no;cellular;aug;wed;157;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+32;admin.;single;university.degree;no;no;no;cellular;aug;wed;352;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+38;management;married;high.school;no;no;no;cellular;aug;wed;171;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;technician;married;high.school;no;yes;no;cellular;aug;wed;78;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+32;technician;married;university.degree;unknown;no;no;cellular;aug;wed;212;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+32;admin.;single;university.degree;no;yes;yes;cellular;aug;wed;72;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+48;blue-collar;married;basic.9y;no;no;yes;cellular;aug;wed;76;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;admin.;married;university.degree;no;yes;yes;cellular;aug;wed;112;6;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+37;admin.;married;university.degree;no;yes;no;cellular;aug;wed;161;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+40;technician;married;university.degree;no;yes;no;cellular;aug;wed;140;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+37;technician;married;high.school;no;yes;no;cellular;aug;wed;599;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+41;admin.;divorced;university.degree;no;yes;no;cellular;aug;wed;536;5;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;yes
+35;technician;single;professional.course;no;yes;no;cellular;aug;wed;75;6;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+51;technician;single;professional.course;no;no;no;cellular;aug;wed;1740;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+54;admin.;married;university.degree;unknown;no;no;cellular;aug;wed;56;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+36;admin.;married;university.degree;no;yes;no;cellular;aug;wed;513;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+43;technician;married;professional.course;no;yes;yes;cellular;aug;wed;744;5;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+53;admin.;married;university.degree;no;no;no;cellular;aug;wed;177;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+53;admin.;married;university.degree;no;no;no;cellular;aug;wed;184;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+36;technician;married;university.degree;no;no;yes;cellular;aug;wed;62;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+37;technician;single;university.degree;no;yes;no;cellular;aug;wed;194;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+29;technician;married;university.degree;no;yes;yes;cellular;aug;wed;94;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;technician;married;university.degree;no;unknown;unknown;cellular;aug;wed;88;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+43;management;married;university.degree;no;no;no;cellular;aug;wed;398;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+33;admin.;divorced;university.degree;no;no;no;cellular;aug;wed;259;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+59;management;married;university.degree;no;yes;no;cellular;aug;wed;77;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+58;admin.;divorced;professional.course;no;no;no;cellular;aug;wed;329;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+59;management;married;university.degree;no;yes;no;cellular;aug;wed;239;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+59;management;married;university.degree;no;no;no;cellular;aug;wed;414;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+36;technician;married;professional.course;no;no;no;cellular;aug;wed;252;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+36;technician;married;professional.course;no;yes;no;cellular;aug;wed;90;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+41;admin.;divorced;university.degree;no;yes;no;cellular;aug;wed;116;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+45;management;married;university.degree;no;yes;no;cellular;aug;wed;113;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+36;housemaid;single;university.degree;no;no;yes;cellular;aug;wed;127;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+29;admin.;single;university.degree;no;no;yes;cellular;aug;wed;447;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+42;technician;married;professional.course;unknown;no;no;cellular;aug;wed;88;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;technician;married;university.degree;no;yes;no;cellular;aug;wed;157;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+34;admin.;married;university.degree;no;no;yes;cellular;aug;wed;15;11;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+55;services;married;basic.4y;no;yes;no;cellular;aug;wed;173;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+32;admin.;divorced;university.degree;no;no;yes;cellular;aug;wed;203;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+56;admin.;married;university.degree;no;yes;no;cellular;aug;wed;471;5;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+34;technician;single;university.degree;no;yes;no;cellular;aug;wed;82;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+34;technician;single;university.degree;no;yes;no;cellular;aug;wed;162;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+34;technician;single;university.degree;no;yes;no;cellular;aug;wed;174;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+41;admin.;divorced;university.degree;no;yes;no;cellular;aug;wed;188;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+36;admin.;single;university.degree;no;yes;no;cellular;aug;wed;1408;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;yes
+39;technician;married;professional.course;unknown;yes;no;cellular;aug;wed;132;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+52;blue-collar;married;basic.9y;no;unknown;unknown;cellular;aug;wed;70;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+46;blue-collar;married;basic.4y;no;no;no;cellular;aug;wed;293;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+35;technician;single;university.degree;no;yes;no;cellular;aug;wed;102;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+35;technician;single;university.degree;no;no;no;cellular;aug;wed;118;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+44;blue-collar;married;basic.9y;no;no;no;cellular;aug;wed;584;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+29;admin.;married;university.degree;no;yes;no;cellular;aug;wed;718;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;yes
+35;technician;single;university.degree;no;no;yes;cellular;aug;wed;174;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;technician;married;university.degree;no;no;yes;cellular;aug;wed;58;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;admin.;single;university.degree;no;no;yes;cellular;aug;wed;69;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+29;technician;single;university.degree;no;no;no;cellular;aug;wed;797;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;technician;married;university.degree;no;yes;no;cellular;aug;wed;95;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+36;technician;married;professional.course;no;no;no;cellular;aug;wed;94;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+29;technician;single;high.school;unknown;no;no;cellular;aug;wed;921;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;yes
+31;technician;single;university.degree;unknown;no;no;cellular;aug;wed;605;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+36;technician;married;professional.course;no;yes;no;cellular;aug;wed;174;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+40;admin.;divorced;university.degree;unknown;yes;no;cellular;aug;wed;111;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+53;admin.;married;high.school;no;no;no;cellular;aug;wed;245;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;technician;single;professional.course;no;no;yes;cellular;aug;wed;443;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+41;technician;divorced;professional.course;no;yes;no;cellular;aug;wed;176;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+34;entrepreneur;married;basic.9y;unknown;yes;no;cellular;aug;wed;156;10;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+53;admin.;married;high.school;no;no;no;cellular;aug;wed;552;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+32;admin.;married;university.degree;no;no;yes;cellular;aug;wed;280;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+29;admin.;single;university.degree;no;yes;yes;cellular;aug;wed;243;5;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+34;admin.;married;university.degree;no;no;no;cellular;aug;wed;358;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+57;blue-collar;married;basic.4y;no;no;no;cellular;aug;wed;430;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;technician;married;university.degree;unknown;no;no;cellular;aug;wed;132;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+43;admin.;divorced;university.degree;no;no;yes;cellular;aug;wed;380;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+32;admin.;single;university.degree;no;no;no;cellular;aug;wed;327;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+48;blue-collar;married;basic.9y;unknown;no;no;cellular;aug;wed;627;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;yes
+37;admin.;married;university.degree;no;yes;no;cellular;aug;wed;251;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+47;housemaid;divorced;basic.9y;no;yes;no;cellular;aug;wed;175;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+56;retired;married;basic.4y;unknown;no;no;cellular;aug;wed;687;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+45;blue-collar;married;basic.4y;unknown;yes;no;cellular;aug;wed;395;6;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+46;self-employed;married;university.degree;no;no;no;cellular;aug;wed;696;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+47;technician;married;professional.course;no;yes;no;cellular;aug;wed;175;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+32;self-employed;married;high.school;no;yes;no;cellular;aug;wed;304;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+33;technician;married;high.school;no;yes;no;cellular;aug;wed;129;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+48;services;married;high.school;no;yes;no;cellular;aug;wed;132;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+43;admin.;married;university.degree;no;no;yes;cellular;aug;wed;291;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+43;admin.;married;university.degree;no;no;no;cellular;aug;wed;420;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+35;management;married;university.degree;unknown;yes;yes;cellular;aug;wed;216;7;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+39;housemaid;married;basic.4y;no;no;no;cellular;aug;wed;975;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+56;retired;married;basic.4y;unknown;no;no;cellular;aug;wed;881;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+32;admin.;married;university.degree;no;yes;no;cellular;aug;wed;157;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+50;admin.;married;university.degree;no;no;yes;cellular;aug;wed;92;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+34;technician;married;high.school;no;yes;no;cellular;aug;wed;135;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+55;blue-collar;married;professional.course;no;yes;no;cellular;aug;wed;252;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;technician;married;university.degree;unknown;no;no;cellular;aug;wed;93;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+45;unemployed;married;basic.9y;no;yes;no;cellular;aug;wed;68;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+54;admin.;married;university.degree;no;no;no;cellular;aug;wed;174;5;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+45;technician;divorced;professional.course;unknown;unknown;unknown;cellular;aug;wed;170;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+46;self-employed;married;university.degree;no;yes;no;cellular;aug;wed;165;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+41;technician;married;professional.course;no;yes;no;cellular;aug;wed;89;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+36;admin.;married;university.degree;no;yes;no;cellular;aug;wed;141;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+50;admin.;married;university.degree;no;no;no;telephone;aug;wed;237;12;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+32;technician;married;professional.course;no;no;no;cellular;aug;wed;67;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+56;retired;married;basic.4y;unknown;no;no;cellular;aug;wed;116;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+29;technician;single;university.degree;no;no;no;cellular;aug;wed;896;6;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+36;technician;married;high.school;no;yes;no;cellular;aug;wed;53;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+59;retired;married;high.school;no;yes;no;cellular;aug;wed;625;5;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;yes
+31;unemployed;married;university.degree;no;no;no;cellular;aug;wed;147;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+35;technician;single;professional.course;no;yes;yes;cellular;aug;wed;63;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+55;services;married;basic.9y;no;no;no;cellular;aug;wed;76;13;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;technician;single;high.school;no;yes;yes;cellular;aug;wed;79;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+51;admin.;married;university.degree;no;yes;no;cellular;aug;wed;113;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+48;services;married;high.school;no;no;no;cellular;aug;wed;133;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;technician;single;university.degree;no;no;no;cellular;aug;wed;559;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+42;admin.;married;university.degree;no;no;no;cellular;aug;wed;273;6;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;housemaid;married;university.degree;no;yes;no;cellular;aug;wed;83;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;admin.;married;university.degree;no;yes;yes;cellular;aug;wed;37;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+34;admin.;single;university.degree;no;yes;no;cellular;aug;wed;113;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+33;admin.;married;university.degree;no;yes;no;cellular;aug;wed;50;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+46;services;married;basic.9y;unknown;yes;yes;cellular;aug;wed;66;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+53;admin.;divorced;university.degree;no;yes;no;cellular;aug;wed;209;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+48;services;married;high.school;no;yes;no;cellular;aug;wed;703;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;yes
+30;admin.;married;university.degree;no;no;no;cellular;aug;wed;345;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+52;admin.;single;university.degree;unknown;unknown;unknown;cellular;aug;wed;138;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+55;services;married;unknown;unknown;yes;no;cellular;aug;wed;341;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+42;admin.;married;university.degree;no;yes;no;cellular;aug;wed;78;8;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+53;admin.;married;high.school;no;no;yes;cellular;aug;wed;210;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+56;self-employed;married;basic.9y;no;yes;no;telephone;aug;wed;41;7;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+36;admin.;married;university.degree;no;yes;no;cellular;aug;wed;134;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+36;technician;single;university.degree;no;no;no;cellular;aug;wed;208;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+52;technician;married;high.school;no;no;yes;cellular;aug;wed;109;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+49;admin.;married;university.degree;no;no;no;cellular;aug;wed;66;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+49;technician;married;professional.course;no;no;no;cellular;aug;wed;125;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+36;admin.;single;university.degree;no;no;no;cellular;aug;wed;173;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+45;housemaid;married;basic.4y;no;no;no;cellular;aug;wed;188;5;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+29;admin.;single;university.degree;no;yes;no;cellular;aug;wed;160;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;unemployed;married;university.degree;no;no;no;cellular;aug;wed;124;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+34;technician;married;high.school;no;yes;no;cellular;aug;wed;99;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+44;technician;divorced;professional.course;unknown;no;no;cellular;aug;wed;196;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+47;admin.;divorced;university.degree;no;no;no;cellular;aug;wed;381;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+58;retired;married;basic.4y;no;yes;no;cellular;aug;wed;83;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+34;admin.;married;university.degree;no;no;no;cellular;aug;wed;126;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+37;self-employed;married;professional.course;no;yes;no;cellular;aug;wed;181;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+43;admin.;married;university.degree;no;yes;no;cellular;aug;wed;221;8;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;housemaid;married;university.degree;no;yes;no;cellular;aug;wed;195;7;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+46;services;married;basic.9y;unknown;yes;no;cellular;aug;wed;226;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;technician;married;university.degree;no;yes;yes;cellular;aug;wed;678;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+45;blue-collar;married;high.school;no;no;no;cellular;aug;wed;44;6;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;technician;single;professional.course;unknown;yes;no;cellular;aug;wed;46;9;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+56;retired;married;basic.4y;unknown;no;yes;cellular;aug;wed;278;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+29;technician;single;professional.course;no;yes;yes;cellular;aug;wed;162;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;technician;single;professional.course;no;yes;no;cellular;aug;wed;225;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+29;admin.;single;university.degree;no;yes;yes;cellular;aug;wed;153;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;admin.;single;university.degree;no;yes;no;cellular;aug;wed;77;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+49;blue-collar;divorced;basic.4y;no;no;no;cellular;aug;wed;96;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+58;retired;married;professional.course;no;no;no;cellular;aug;wed;135;7;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+54;blue-collar;married;unknown;no;yes;no;cellular;aug;wed;99;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+55;admin.;married;university.degree;unknown;no;no;cellular;aug;wed;96;6;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;admin.;married;university.degree;no;yes;yes;cellular;aug;wed;1464;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;technician;married;university.degree;unknown;yes;no;cellular;aug;wed;111;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;technician;single;university.degree;no;yes;no;cellular;aug;wed;320;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+29;admin.;married;university.degree;no;no;yes;cellular;aug;thu;220;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;housemaid;married;university.degree;no;yes;no;cellular;aug;thu;111;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+41;technician;married;university.degree;no;yes;yes;cellular;aug;thu;462;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;technician;single;high.school;no;yes;no;cellular;aug;thu;92;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+46;self-employed;married;university.degree;no;no;yes;cellular;aug;thu;432;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+34;technician;married;professional.course;no;yes;no;cellular;aug;thu;286;9;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+44;unknown;married;professional.course;unknown;no;yes;telephone;aug;thu;169;9;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+41;self-employed;divorced;university.degree;no;no;no;cellular;aug;thu;182;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+48;services;married;high.school;no;no;no;cellular;aug;thu;96;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+43;admin.;married;university.degree;no;yes;yes;cellular;aug;thu;398;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+48;services;married;high.school;no;no;no;cellular;aug;thu;163;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+43;admin.;married;university.degree;no;yes;yes;cellular;aug;thu;444;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+48;services;married;high.school;no;yes;no;cellular;aug;thu;310;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+55;technician;married;professional.course;no;no;yes;cellular;aug;thu;209;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+49;blue-collar;married;high.school;unknown;no;no;cellular;aug;thu;189;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+49;blue-collar;married;high.school;unknown;no;yes;cellular;aug;thu;147;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+36;technician;single;high.school;no;no;no;cellular;aug;thu;444;7;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+49;blue-collar;married;high.school;unknown;yes;no;cellular;aug;thu;199;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+32;self-employed;married;high.school;no;yes;no;cellular;aug;thu;151;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+35;services;divorced;professional.course;no;no;yes;cellular;aug;thu;66;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;technician;married;high.school;no;yes;no;cellular;aug;thu;115;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+51;technician;married;professional.course;no;yes;yes;cellular;aug;thu;246;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+44;blue-collar;married;basic.4y;unknown;yes;no;cellular;aug;thu;63;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+36;technician;single;high.school;unknown;yes;yes;cellular;aug;thu;971;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+44;blue-collar;married;basic.4y;unknown;yes;no;cellular;aug;thu;210;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+44;blue-collar;married;basic.4y;unknown;yes;no;cellular;aug;thu;79;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+44;blue-collar;married;basic.4y;unknown;no;yes;cellular;aug;thu;311;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+42;technician;divorced;high.school;unknown;yes;no;cellular;aug;thu;140;7;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+41;self-employed;married;basic.6y;no;no;no;cellular;aug;thu;137;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+35;technician;single;professional.course;no;yes;no;cellular;aug;thu;98;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+41;self-employed;married;basic.6y;no;no;no;cellular;aug;thu;218;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+35;technician;single;professional.course;no;no;no;cellular;aug;thu;152;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+53;admin.;married;university.degree;no;no;no;cellular;aug;thu;102;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+55;services;married;basic.9y;no;no;no;cellular;aug;thu;211;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+52;admin.;married;unknown;no;no;no;cellular;aug;thu;331;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+53;admin.;married;university.degree;no;yes;no;cellular;aug;thu;238;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+44;housemaid;married;basic.4y;no;yes;no;cellular;aug;thu;164;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+43;admin.;married;university.degree;no;no;yes;cellular;aug;thu;250;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+44;housemaid;married;basic.4y;no;yes;no;cellular;aug;thu;150;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+34;technician;married;professional.course;no;yes;no;cellular;aug;thu;82;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;technician;married;professional.course;no;no;no;cellular;aug;thu;396;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+52;technician;married;professional.course;unknown;no;no;cellular;aug;thu;351;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+50;self-employed;married;university.degree;no;no;no;cellular;aug;thu;273;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+35;technician;married;university.degree;unknown;no;no;cellular;aug;thu;246;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+34;admin.;married;high.school;no;yes;no;cellular;aug;thu;103;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+42;admin.;married;university.degree;no;yes;no;cellular;aug;thu;121;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+47;admin.;single;university.degree;no;no;no;cellular;aug;thu;429;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;admin.;single;university.degree;no;no;yes;cellular;aug;thu;167;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+29;admin.;single;university.degree;no;no;no;cellular;aug;thu;139;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+29;admin.;divorced;university.degree;no;yes;yes;cellular;aug;thu;120;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+38;admin.;single;university.degree;no;yes;no;cellular;aug;thu;118;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;admin.;single;university.degree;no;no;no;cellular;aug;thu;101;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;admin.;single;university.degree;no;yes;no;cellular;aug;thu;133;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;admin.;single;university.degree;no;no;no;cellular;aug;thu;180;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+47;services;married;basic.9y;no;yes;no;cellular;aug;thu;676;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+32;technician;single;professional.course;no;yes;yes;cellular;aug;thu;84;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;admin.;single;university.degree;no;no;no;cellular;aug;thu;40;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+34;admin.;married;high.school;no;yes;no;cellular;aug;thu;1503;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;yes
+48;admin.;married;high.school;no;yes;no;cellular;aug;thu;62;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+56;retired;married;professional.course;no;yes;no;cellular;aug;thu;384;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+46;admin.;single;university.degree;no;yes;no;cellular;aug;thu;82;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+29;admin.;single;university.degree;no;no;no;cellular;aug;thu;134;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+34;technician;married;professional.course;unknown;yes;no;cellular;aug;thu;292;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+37;technician;single;professional.course;no;no;no;cellular;aug;thu;120;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+37;technician;single;professional.course;no;yes;no;cellular;aug;thu;115;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+35;technician;single;professional.course;no;yes;no;cellular;aug;thu;234;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+39;technician;married;professional.course;no;no;no;cellular;aug;thu;129;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+48;services;married;high.school;unknown;no;no;cellular;aug;thu;135;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+48;services;married;high.school;unknown;yes;yes;cellular;aug;thu;101;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;admin.;single;university.degree;no;yes;no;cellular;aug;thu;126;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+51;management;married;university.degree;no;no;no;cellular;aug;thu;644;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;yes
+42;technician;married;university.degree;no;no;no;cellular;aug;thu;161;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+42;technician;married;university.degree;no;yes;no;cellular;aug;thu;139;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+42;technician;married;university.degree;no;no;yes;cellular;aug;thu;168;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+42;technician;married;university.degree;no;yes;yes;cellular;aug;thu;111;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+48;services;married;high.school;unknown;no;no;cellular;aug;thu;776;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+29;admin.;single;university.degree;no;yes;no;cellular;aug;thu;173;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+54;blue-collar;married;basic.4y;unknown;no;no;cellular;aug;thu;65;6;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+50;blue-collar;married;basic.4y;no;yes;no;cellular;aug;thu;93;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+43;admin.;single;university.degree;no;no;no;cellular;aug;thu;153;5;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+39;housemaid;married;basic.4y;unknown;yes;no;cellular;aug;thu;223;6;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+53;services;married;high.school;no;no;no;cellular;aug;thu;62;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+34;housemaid;single;university.degree;no;yes;no;cellular;aug;thu;159;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+56;self-employed;married;basic.9y;no;unknown;unknown;cellular;aug;thu;141;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;admin.;married;university.degree;no;yes;no;cellular;aug;thu;104;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;admin.;married;university.degree;no;yes;no;cellular;aug;thu;136;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;admin.;divorced;university.degree;no;no;yes;cellular;aug;thu;376;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+34;admin.;married;university.degree;no;yes;no;cellular;aug;thu;140;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+56;retired;married;basic.4y;unknown;yes;no;cellular;aug;thu;119;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+29;admin.;single;university.degree;no;no;no;cellular;aug;thu;117;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+32;admin.;single;university.degree;no;yes;no;cellular;aug;thu;126;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+42;entrepreneur;married;university.degree;unknown;yes;yes;cellular;aug;thu;148;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+52;blue-collar;married;basic.4y;no;no;no;telephone;aug;thu;4199;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;yes
+30;technician;single;professional.course;no;no;no;cellular;aug;thu;65;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;technician;single;professional.course;no;yes;no;cellular;aug;thu;76;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+32;technician;single;university.degree;no;yes;no;cellular;aug;thu;588;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;technician;single;professional.course;no;yes;no;cellular;aug;thu;121;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;technician;single;professional.course;no;yes;no;cellular;aug;thu;151;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;technician;married;high.school;no;no;no;cellular;aug;thu;913;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;yes
+48;blue-collar;married;basic.9y;unknown;no;no;cellular;aug;thu;1111;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+47;services;married;basic.9y;no;unknown;unknown;cellular;aug;thu;282;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;technician;single;professional.course;no;no;no;cellular;aug;thu;656;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+49;services;married;basic.4y;no;yes;no;cellular;aug;thu;265;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+51;admin.;married;university.degree;no;yes;no;cellular;aug;thu;119;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+32;admin.;married;university.degree;no;no;no;cellular;aug;thu;97;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+51;admin.;married;university.degree;no;yes;no;cellular;aug;thu;76;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+54;housemaid;married;professional.course;no;yes;yes;cellular;aug;thu;243;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;housemaid;divorced;professional.course;no;yes;no;cellular;aug;thu;321;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;admin.;single;university.degree;no;yes;no;cellular;aug;thu;162;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+39;housemaid;married;basic.4y;no;no;no;cellular;aug;thu;183;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+58;management;married;university.degree;unknown;yes;yes;cellular;aug;thu;299;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+39;housemaid;married;basic.4y;no;no;no;cellular;aug;thu;179;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+46;unemployed;married;basic.9y;no;yes;no;cellular;aug;thu;64;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+60;self-employed;married;university.degree;no;no;no;cellular;aug;thu;124;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+51;admin.;married;university.degree;no;no;no;cellular;aug;thu;335;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+60;self-employed;married;university.degree;no;no;no;cellular;aug;thu;115;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+54;blue-collar;married;basic.4y;unknown;yes;no;cellular;aug;thu;169;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+46;self-employed;married;professional.course;no;no;no;cellular;aug;thu;90;5;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;admin.;single;university.degree;no;yes;no;cellular;aug;thu;244;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+58;retired;married;high.school;unknown;yes;no;cellular;aug;thu;194;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+47;services;divorced;high.school;unknown;no;no;cellular;aug;thu;819;6;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;yes
+57;blue-collar;married;basic.4y;no;no;no;cellular;aug;thu;134;9;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+49;blue-collar;married;basic.6y;no;no;no;cellular;aug;thu;139;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+36;admin.;married;university.degree;unknown;yes;no;cellular;aug;thu;120;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+29;admin.;single;university.degree;no;yes;no;cellular;aug;thu;104;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+54;housemaid;married;university.degree;unknown;yes;no;cellular;aug;thu;297;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+29;admin.;single;university.degree;no;yes;yes;cellular;aug;thu;91;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+47;housemaid;married;basic.9y;no;no;no;cellular;aug;thu;135;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+56;retired;married;basic.4y;no;no;no;cellular;aug;thu;123;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+44;technician;divorced;university.degree;no;yes;no;cellular;aug;thu;136;5;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+56;admin.;married;basic.9y;unknown;no;yes;cellular;aug;thu;59;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;management;married;university.degree;no;no;yes;cellular;aug;thu;166;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+45;technician;single;university.degree;no;no;no;cellular;aug;thu;545;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+35;management;married;university.degree;unknown;no;yes;cellular;aug;thu;137;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+37;admin.;married;university.degree;no;no;yes;cellular;aug;thu;1505;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;yes
+51;technician;married;professional.course;unknown;no;yes;cellular;aug;thu;58;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+29;admin.;single;high.school;no;yes;no;cellular;aug;thu;788;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;yes
+30;technician;single;high.school;no;yes;no;cellular;aug;thu;230;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+55;technician;married;professional.course;no;yes;no;cellular;aug;thu;86;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+46;self-employed;married;university.degree;no;yes;no;cellular;aug;thu;140;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+55;admin.;married;university.degree;unknown;no;yes;cellular;aug;thu;212;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+42;admin.;married;university.degree;no;yes;no;cellular;aug;thu;168;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+41;technician;married;professional.course;no;no;yes;cellular;aug;thu;898;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+38;technician;married;professional.course;unknown;no;yes;cellular;aug;thu;318;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+56;housemaid;married;basic.9y;unknown;no;no;cellular;aug;thu;180;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;technician;single;professional.course;no;yes;no;cellular;aug;thu;241;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+49;blue-collar;married;high.school;unknown;yes;no;cellular;aug;thu;238;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+56;self-employed;married;basic.9y;no;yes;no;cellular;aug;thu;176;7;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+56;retired;married;basic.4y;unknown;no;no;cellular;aug;thu;97;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+47;blue-collar;married;basic.6y;no;yes;no;cellular;aug;thu;43;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+50;admin.;married;basic.9y;unknown;yes;no;cellular;aug;thu;122;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+29;admin.;single;university.degree;no;no;no;cellular;aug;thu;12;15;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+29;admin.;divorced;high.school;no;yes;no;cellular;aug;thu;119;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+32;technician;married;professional.course;no;no;no;cellular;aug;thu;172;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;admin.;single;university.degree;no;no;no;cellular;aug;thu;419;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+49;services;married;basic.4y;no;no;no;cellular;aug;thu;575;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+51;admin.;married;university.degree;no;yes;no;cellular;aug;thu;238;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+45;housemaid;married;basic.4y;no;no;no;cellular;aug;thu;76;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+56;self-employed;married;basic.9y;no;yes;no;cellular;aug;thu;107;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+42;technician;divorced;high.school;unknown;yes;no;cellular;aug;thu;82;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+51;management;married;university.degree;no;yes;no;cellular;aug;thu;175;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+40;technician;married;professional.course;no;yes;no;cellular;aug;thu;156;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+49;admin.;unknown;university.degree;no;yes;no;cellular;aug;thu;89;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;admin.;single;university.degree;no;yes;no;cellular;aug;thu;188;5;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+34;housemaid;married;university.degree;no;no;no;cellular;aug;thu;181;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+45;services;married;high.school;no;yes;no;cellular;aug;thu;660;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;admin.;single;university.degree;unknown;yes;no;cellular;aug;thu;111;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;technician;married;professional.course;no;unknown;unknown;cellular;aug;thu;946;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;yes
+30;admin.;married;university.degree;no;unknown;unknown;cellular;aug;thu;55;5;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+49;admin.;unknown;university.degree;no;no;no;cellular;aug;thu;1532;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;yes
+29;admin.;single;university.degree;no;yes;no;cellular;aug;thu;435;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+44;blue-collar;married;basic.4y;unknown;yes;no;cellular;aug;thu;283;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;admin.;single;university.degree;no;yes;no;cellular;aug;thu;202;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+56;blue-collar;married;basic.9y;no;yes;no;cellular;aug;thu;120;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+52;technician;married;professional.course;no;no;no;cellular;aug;thu;67;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+44;admin.;divorced;university.degree;unknown;yes;yes;cellular;aug;thu;394;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+45;services;married;high.school;no;no;no;cellular;aug;thu;1026;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+49;blue-collar;married;basic.9y;unknown;yes;no;cellular;aug;thu;114;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+35;technician;single;professional.course;no;yes;no;cellular;aug;thu;93;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+34;technician;married;professional.course;no;no;no;cellular;aug;thu;88;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+56;admin.;married;high.school;unknown;no;no;cellular;aug;thu;87;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+52;admin.;married;unknown;no;yes;no;cellular;aug;thu;140;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+50;admin.;married;university.degree;no;yes;yes;cellular;aug;thu;508;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+52;housemaid;married;university.degree;no;yes;no;cellular;aug;thu;91;15;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+44;technician;divorced;professional.course;unknown;yes;no;cellular;aug;thu;239;6;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+32;technician;married;university.degree;no;yes;no;cellular;aug;thu;719;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;unemployed;married;university.degree;no;yes;no;cellular;aug;thu;71;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+38;admin.;married;university.degree;no;no;no;cellular;aug;thu;177;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+39;admin.;married;university.degree;unknown;yes;yes;cellular;aug;thu;381;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;admin.;single;high.school;unknown;unknown;unknown;cellular;aug;thu;381;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+56;self-employed;married;basic.9y;no;yes;no;cellular;aug;thu;793;5;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;yes
+44;admin.;divorced;university.degree;unknown;yes;no;cellular;aug;thu;191;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+48;blue-collar;married;basic.6y;unknown;yes;yes;cellular;aug;thu;45;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+35;technician;single;professional.course;no;yes;yes;cellular;aug;thu;133;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+29;technician;single;high.school;no;yes;no;cellular;aug;thu;144;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;admin.;single;university.degree;no;yes;no;cellular;aug;thu;114;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+50;technician;married;professional.course;no;yes;yes;cellular;aug;thu;870;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;technician;single;professional.course;no;yes;no;cellular;aug;thu;70;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+29;technician;single;professional.course;no;yes;no;cellular;aug;thu;87;6;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;housemaid;divorced;professional.course;no;no;no;cellular;aug;thu;129;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;technician;single;professional.course;no;no;no;cellular;aug;thu;511;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;technician;single;professional.course;no;no;no;cellular;aug;thu;500;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+48;blue-collar;married;basic.6y;no;yes;no;cellular;aug;thu;48;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+48;blue-collar;married;basic.6y;no;no;no;cellular;aug;thu;362;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+54;technician;divorced;professional.course;unknown;yes;no;cellular;aug;thu;121;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+45;services;married;high.school;unknown;yes;no;cellular;aug;thu;127;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;technician;divorced;university.degree;no;yes;no;cellular;aug;thu;132;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;technician;single;professional.course;unknown;yes;no;cellular;aug;thu;161;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+35;technician;single;university.degree;no;yes;no;cellular;aug;thu;154;5;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;admin.;married;university.degree;no;no;no;cellular;aug;thu;190;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+32;technician;married;professional.course;unknown;no;no;cellular;aug;thu;68;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+32;technician;married;professional.course;unknown;no;yes;cellular;aug;thu;81;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+47;technician;single;professional.course;no;yes;no;cellular;aug;thu;396;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+47;blue-collar;married;basic.4y;no;no;yes;cellular;aug;thu;274;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;technician;single;professional.course;no;yes;no;cellular;aug;thu;151;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+54;blue-collar;married;basic.4y;no;yes;no;cellular;aug;thu;150;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+47;services;married;high.school;unknown;yes;no;cellular;aug;thu;227;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+45;technician;married;professional.course;unknown;yes;yes;cellular;aug;thu;242;5;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+32;housemaid;married;basic.4y;no;no;no;cellular;aug;thu;200;9;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+45;technician;married;professional.course;unknown;yes;no;cellular;aug;thu;360;5;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+29;technician;single;professional.course;no;yes;no;cellular;aug;thu;126;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+37;technician;married;professional.course;no;yes;no;cellular;aug;thu;224;7;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+48;services;married;basic.4y;unknown;yes;yes;cellular;aug;thu;271;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+49;blue-collar;married;basic.4y;no;yes;yes;cellular;aug;thu;256;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;admin.;single;university.degree;no;yes;no;cellular;aug;thu;686;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;yes
+54;admin.;divorced;university.degree;no;yes;no;cellular;aug;thu;415;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+48;management;married;university.degree;unknown;no;no;cellular;aug;thu;165;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;technician;single;university.degree;no;no;no;cellular;aug;thu;183;7;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;technician;single;professional.course;no;yes;no;cellular;aug;thu;301;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+55;blue-collar;married;basic.4y;no;no;no;cellular;aug;thu;94;13;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+55;blue-collar;married;basic.4y;unknown;yes;no;cellular;aug;thu;176;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+47;services;married;high.school;unknown;no;no;cellular;aug;thu;42;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+37;technician;married;high.school;no;no;no;cellular;aug;thu;294;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+55;blue-collar;married;basic.4y;no;yes;no;cellular;aug;thu;764;10;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+59;services;married;basic.4y;unknown;no;no;cellular;aug;thu;93;7;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+34;technician;married;professional.course;unknown;yes;no;cellular;aug;thu;239;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+55;blue-collar;married;basic.9y;unknown;unknown;unknown;cellular;aug;thu;159;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;technician;single;professional.course;no;no;no;cellular;aug;thu;231;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+49;blue-collar;married;basic.9y;unknown;yes;no;cellular;aug;thu;1877;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;yes
+40;management;married;university.degree;no;yes;no;cellular;aug;thu;77;6;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+47;admin.;single;university.degree;no;no;no;cellular;aug;thu;310;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+34;technician;married;professional.course;unknown;yes;no;cellular;aug;thu;140;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;technician;divorced;university.degree;no;yes;no;cellular;aug;thu;142;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+29;admin.;single;university.degree;no;yes;no;cellular;aug;thu;184;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+48;technician;married;high.school;no;yes;no;cellular;aug;thu;102;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;technician;married;professional.course;no;yes;no;cellular;aug;thu;169;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+29;technician;single;professional.course;no;no;no;cellular;aug;thu;120;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+54;blue-collar;married;basic.4y;no;no;no;cellular;aug;thu;314;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+34;technician;married;professional.course;unknown;yes;yes;cellular;aug;thu;189;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;technician;single;professional.course;no;yes;no;cellular;aug;thu;126;10;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+55;blue-collar;married;basic.9y;no;yes;yes;cellular;aug;thu;142;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+32;self-employed;single;university.degree;no;yes;no;cellular;aug;thu;148;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+29;admin.;single;university.degree;no;yes;yes;cellular;aug;thu;368;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+29;admin.;single;university.degree;no;yes;no;cellular;aug;thu;299;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+59;retired;married;basic.4y;unknown;yes;no;cellular;aug;thu;196;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+54;technician;divorced;professional.course;unknown;yes;no;cellular;aug;thu;1117;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;yes
+31;admin.;married;university.degree;no;yes;no;cellular;aug;thu;280;7;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+36;admin.;single;university.degree;no;no;no;cellular;aug;thu;42;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+36;admin.;single;university.degree;no;yes;no;cellular;aug;thu;300;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+32;services;married;professional.course;unknown;yes;no;cellular;aug;thu;160;7;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+55;management;married;university.degree;no;no;no;cellular;aug;thu;122;5;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+50;admin.;married;unknown;no;yes;no;cellular;aug;thu;162;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+36;admin.;single;university.degree;no;yes;no;cellular;aug;thu;379;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+53;blue-collar;married;basic.4y;no;yes;no;cellular;aug;thu;195;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;technician;divorced;high.school;no;no;no;cellular;aug;thu;494;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+50;admin.;divorced;university.degree;no;yes;no;cellular;aug;thu;129;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+41;housemaid;married;university.degree;no;yes;no;cellular;aug;thu;163;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+50;admin.;married;unknown;no;yes;no;cellular;aug;thu;794;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+41;housemaid;married;university.degree;no;yes;no;cellular;aug;thu;36;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+41;housemaid;married;university.degree;no;yes;no;cellular;aug;thu;46;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;technician;single;professional.course;unknown;no;no;telephone;aug;thu;331;14;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+35;technician;single;professional.course;no;no;no;cellular;aug;thu;153;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+36;blue-collar;married;professional.course;no;yes;no;cellular;aug;thu;269;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+57;technician;married;university.degree;no;no;no;cellular;aug;thu;159;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+57;technician;married;university.degree;no;yes;no;cellular;aug;thu;202;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+57;retired;married;high.school;no;no;no;cellular;aug;fri;92;9;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;admin.;divorced;university.degree;no;unknown;unknown;cellular;aug;fri;351;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+58;retired;married;basic.4y;no;yes;no;cellular;aug;fri;239;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+33;admin.;single;university.degree;no;yes;yes;cellular;aug;fri;64;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+33;admin.;single;university.degree;no;no;no;cellular;aug;fri;82;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+36;admin.;married;university.degree;unknown;yes;yes;cellular;aug;fri;97;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+29;technician;single;professional.course;no;yes;yes;cellular;aug;fri;202;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;technician;single;university.degree;no;yes;no;cellular;aug;fri;242;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;technician;single;university.degree;no;no;no;cellular;aug;fri;360;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+34;technician;married;professional.course;no;yes;no;cellular;aug;fri;168;8;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+39;admin.;married;university.degree;no;yes;no;cellular;aug;fri;169;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+50;blue-collar;married;basic.6y;unknown;yes;no;cellular;aug;fri;118;5;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;technician;divorced;university.degree;no;yes;no;cellular;aug;fri;152;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+29;admin.;single;university.degree;no;yes;yes;cellular;aug;fri;203;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+57;retired;married;high.school;no;no;no;cellular;aug;fri;136;6;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+35;technician;single;university.degree;no;yes;no;cellular;aug;fri;974;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;yes
+31;technician;single;professional.course;no;yes;no;cellular;aug;fri;122;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+54;technician;divorced;professional.course;unknown;yes;no;cellular;aug;fri;343;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;admin.;single;university.degree;no;yes;no;cellular;aug;fri;76;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;technician;single;university.degree;no;yes;yes;cellular;aug;fri;142;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+45;housemaid;married;unknown;unknown;yes;yes;cellular;aug;fri;93;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+55;retired;married;professional.course;no;yes;no;cellular;aug;fri;122;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+51;blue-collar;married;basic.4y;unknown;no;no;cellular;aug;fri;99;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+42;services;married;high.school;unknown;yes;yes;cellular;aug;fri;41;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+42;services;married;high.school;unknown;yes;no;cellular;aug;fri;154;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+51;blue-collar;married;basic.4y;unknown;yes;no;cellular;aug;fri;586;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;technician;single;university.degree;unknown;yes;no;cellular;aug;fri;1123;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;yes
+45;blue-collar;married;illiterate;no;yes;no;cellular;aug;fri;127;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;technician;single;university.degree;no;yes;no;cellular;aug;fri;87;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+35;self-employed;married;basic.9y;no;yes;no;cellular;aug;fri;57;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+47;blue-collar;married;basic.6y;no;yes;no;cellular;aug;fri;167;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+32;admin.;married;university.degree;unknown;yes;no;cellular;aug;fri;138;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+32;admin.;married;university.degree;unknown;yes;no;cellular;aug;fri;491;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+44;admin.;married;high.school;no;yes;no;cellular;aug;fri;111;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+37;self-employed;married;basic.9y;no;yes;no;cellular;aug;fri;78;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+32;technician;married;high.school;unknown;no;no;cellular;aug;fri;40;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+59;admin.;married;professional.course;no;yes;no;cellular;aug;fri;34;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+44;services;married;basic.9y;no;yes;yes;cellular;aug;fri;83;6;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+46;technician;married;high.school;no;yes;no;cellular;aug;fri;306;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+40;admin.;single;professional.course;unknown;yes;no;cellular;aug;fri;95;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+33;admin.;married;university.degree;no;no;no;cellular;aug;fri;67;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+34;technician;divorced;professional.course;no;yes;no;cellular;aug;fri;644;8;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+33;admin.;married;university.degree;no;unknown;unknown;cellular;aug;fri;57;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+59;retired;married;university.degree;unknown;no;yes;cellular;aug;fri;140;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+56;admin.;married;unknown;unknown;unknown;unknown;cellular;aug;fri;119;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+33;admin.;married;university.degree;no;yes;no;cellular;aug;fri;576;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;yes
+33;admin.;married;university.degree;no;yes;no;cellular;aug;fri;579;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;yes
+53;technician;married;professional.course;no;no;no;cellular;aug;fri;136;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+48;technician;married;professional.course;no;yes;no;cellular;aug;fri;336;8;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;yes
+41;self-employed;married;basic.9y;no;yes;no;cellular;aug;fri;313;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+59;admin.;married;professional.course;no;yes;yes;cellular;aug;fri;1241;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+46;services;married;unknown;no;yes;yes;cellular;aug;fri;147;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+34;technician;divorced;professional.course;no;yes;no;cellular;aug;fri;136;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;technician;single;professional.course;no;no;no;cellular;aug;fri;73;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+38;admin.;divorced;university.degree;no;yes;no;cellular;aug;fri;119;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+46;services;married;unknown;no;yes;no;cellular;aug;fri;134;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+46;services;married;unknown;no;no;no;cellular;aug;fri;109;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+46;services;married;unknown;no;no;no;cellular;aug;fri;739;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;yes
+29;admin.;single;university.degree;no;yes;no;cellular;aug;fri;65;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+41;self-employed;married;professional.course;no;yes;no;cellular;aug;fri;326;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+34;housemaid;married;unknown;no;yes;no;cellular;aug;fri;314;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+39;housemaid;married;professional.course;no;yes;no;cellular;aug;fri;80;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+47;admin.;married;unknown;no;no;no;cellular;aug;fri;252;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+33;admin.;married;university.degree;no;unknown;unknown;cellular;aug;fri;227;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+39;housemaid;married;professional.course;no;no;no;cellular;aug;fri;158;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+29;admin.;single;university.degree;no;no;yes;cellular;aug;fri;164;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+54;admin.;divorced;university.degree;no;no;no;cellular;aug;fri;86;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+51;blue-collar;married;basic.6y;no;yes;no;cellular;aug;fri;246;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+29;admin.;single;university.degree;no;no;no;cellular;aug;fri;77;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+51;blue-collar;married;basic.6y;no;no;no;cellular;aug;fri;393;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+29;admin.;single;university.degree;no;yes;no;cellular;aug;fri;296;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+45;blue-collar;married;basic.9y;no;no;yes;cellular;aug;fri;234;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;admin.;single;high.school;no;yes;no;cellular;aug;fri;90;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+34;admin.;married;university.degree;unknown;no;no;cellular;aug;fri;305;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;admin.;single;high.school;no;no;no;cellular;aug;fri;82;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;admin.;single;high.school;no;no;no;cellular;aug;fri;54;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;admin.;single;high.school;no;no;no;cellular;aug;fri;254;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+29;admin.;single;university.degree;no;yes;no;cellular;aug;fri;520;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;yes
+56;admin.;married;unknown;no;yes;no;cellular;aug;fri;157;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+48;services;married;basic.4y;unknown;yes;no;cellular;aug;fri;119;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+48;blue-collar;married;basic.9y;no;yes;no;cellular;aug;fri;192;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+46;services;married;unknown;no;no;no;cellular;aug;fri;229;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+35;self-employed;married;basic.9y;no;no;no;telephone;aug;fri;16;9;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+47;technician;married;university.degree;unknown;no;no;cellular;aug;fri;215;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+34;technician;married;high.school;no;yes;no;cellular;aug;fri;107;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+49;unemployed;married;high.school;unknown;no;no;cellular;aug;fri;125;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+51;blue-collar;married;basic.4y;no;no;no;cellular;aug;fri;146;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;admin.;married;university.degree;no;no;no;cellular;aug;fri;705;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+29;admin.;single;university.degree;no;yes;yes;cellular;aug;fri;33;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+42;services;married;high.school;unknown;no;no;cellular;aug;fri;205;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+47;admin.;divorced;university.degree;no;yes;no;cellular;aug;fri;94;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+59;retired;married;unknown;no;yes;no;cellular;aug;fri;73;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+35;technician;single;high.school;unknown;yes;yes;cellular;aug;fri;107;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+47;blue-collar;married;basic.4y;no;no;no;cellular;aug;fri;77;5;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+37;self-employed;married;university.degree;no;yes;no;cellular;aug;fri;177;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+34;admin.;married;university.degree;no;no;yes;cellular;aug;fri;944;7;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+37;self-employed;married;university.degree;no;yes;yes;cellular;aug;fri;139;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+50;technician;married;university.degree;unknown;yes;no;cellular;aug;fri;119;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+59;technician;divorced;professional.course;no;yes;no;cellular;aug;fri;492;5;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+50;technician;married;university.degree;unknown;yes;no;cellular;aug;fri;213;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+34;admin.;single;university.degree;no;yes;no;cellular;aug;fri;82;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+37;management;married;high.school;no;yes;no;cellular;aug;fri;125;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+56;retired;married;unknown;no;no;no;cellular;aug;fri;83;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+56;retired;married;unknown;no;no;yes;cellular;aug;fri;115;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+35;technician;single;high.school;unknown;no;no;cellular;aug;fri;1258;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;yes
+51;blue-collar;married;basic.4y;unknown;no;no;cellular;aug;fri;80;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+29;admin.;married;university.degree;no;no;no;cellular;aug;fri;190;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+55;blue-collar;married;basic.4y;no;no;no;cellular;aug;fri;188;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+37;admin.;married;university.degree;no;no;no;cellular;aug;fri;82;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+33;unemployed;married;university.degree;no;no;no;cellular;aug;fri;115;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+33;unemployed;married;university.degree;no;yes;yes;cellular;aug;fri;78;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+47;services;married;high.school;unknown;no;no;cellular;aug;fri;362;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+47;services;married;high.school;unknown;yes;no;cellular;aug;fri;528;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;yes
+31;technician;single;professional.course;no;yes;yes;cellular;aug;fri;73;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+32;admin.;single;high.school;no;yes;no;cellular;aug;fri;136;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+46;blue-collar;married;basic.6y;no;yes;no;cellular;aug;fri;119;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+46;blue-collar;married;basic.6y;no;yes;no;cellular;aug;fri;314;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+54;blue-collar;married;unknown;unknown;yes;yes;cellular;aug;fri;150;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+59;retired;married;unknown;no;yes;yes;cellular;aug;fri;79;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+54;blue-collar;married;unknown;unknown;yes;no;cellular;aug;fri;257;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+59;retired;married;unknown;no;no;no;cellular;aug;fri;69;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;technician;single;professional.course;no;yes;no;cellular;aug;fri;129;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+38;self-employed;married;basic.9y;unknown;no;no;cellular;aug;fri;1329;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;yes
+49;blue-collar;married;basic.6y;unknown;no;no;cellular;aug;fri;66;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;technician;single;professional.course;no;yes;no;cellular;aug;fri;358;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+29;technician;single;university.degree;no;yes;yes;cellular;aug;fri;73;9;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;technician;single;university.degree;no;yes;no;cellular;aug;fri;55;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+29;admin.;single;university.degree;no;yes;no;cellular;aug;fri;268;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+29;admin.;married;university.degree;no;yes;no;cellular;aug;fri;63;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;admin.;single;high.school;no;no;no;cellular;aug;fri;111;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;admin.;single;high.school;no;no;no;cellular;aug;fri;72;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+38;self-employed;married;basic.9y;unknown;yes;no;cellular;aug;fri;73;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+57;technician;married;professional.course;no;yes;no;cellular;aug;fri;160;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+48;blue-collar;married;basic.9y;no;yes;no;telephone;aug;fri;67;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+35;technician;single;university.degree;no;yes;no;cellular;aug;fri;65;13;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+58;blue-collar;married;unknown;unknown;yes;no;cellular;aug;fri;101;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+39;housemaid;married;professional.course;no;yes;no;cellular;aug;fri;192;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+58;blue-collar;married;unknown;unknown;yes;no;cellular;aug;fri;286;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+49;unemployed;married;high.school;unknown;yes;no;cellular;aug;fri;109;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+40;technician;single;high.school;no;yes;no;cellular;aug;fri;73;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+40;technician;single;high.school;no;no;no;cellular;aug;fri;85;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+52;admin.;divorced;university.degree;no;yes;no;cellular;aug;fri;78;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+34;technician;single;high.school;no;no;no;cellular;aug;fri;64;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;technician;single;university.degree;no;no;yes;cellular;aug;fri;197;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+33;admin.;married;university.degree;no;yes;no;cellular;aug;fri;64;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+45;technician;married;professional.course;unknown;no;no;cellular;aug;fri;46;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+33;admin.;married;university.degree;no;yes;no;cellular;aug;fri;278;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;technician;single;university.degree;no;no;yes;cellular;aug;fri;1197;6;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+29;technician;single;high.school;no;yes;no;cellular;aug;fri;164;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+36;admin.;married;high.school;no;yes;no;cellular;aug;fri;171;11;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;technician;married;university.degree;no;no;no;cellular;aug;fri;168;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+34;admin.;single;university.degree;no;no;no;cellular;aug;fri;114;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+54;blue-collar;married;unknown;no;no;no;cellular;aug;fri;220;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+34;admin.;single;university.degree;no;yes;yes;cellular;aug;fri;72;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+59;retired;married;basic.4y;unknown;yes;no;cellular;aug;fri;92;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+53;blue-collar;married;basic.9y;no;yes;no;cellular;aug;fri;58;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+38;technician;single;university.degree;no;yes;no;cellular;aug;fri;131;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+38;technician;single;university.degree;no;yes;no;cellular;aug;fri;80;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+54;admin.;married;high.school;no;yes;no;cellular;aug;fri;92;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+32;technician;married;university.degree;no;yes;no;cellular;aug;fri;205;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+34;technician;divorced;professional.course;no;yes;no;cellular;aug;fri;168;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+53;blue-collar;married;basic.9y;no;yes;no;cellular;aug;fri;565;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;yes
+38;technician;single;university.degree;no;yes;yes;cellular;aug;fri;572;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+34;technician;divorced;professional.course;no;no;no;telephone;aug;fri;336;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+48;technician;married;university.degree;no;no;no;cellular;aug;fri;232;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+48;technician;married;university.degree;no;no;no;cellular;aug;fri;251;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+52;housemaid;married;unknown;no;yes;no;cellular;aug;fri;239;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;technician;married;university.degree;no;no;no;cellular;aug;fri;243;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;technician;single;university.degree;no;no;no;cellular;aug;fri;147;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+53;admin.;married;basic.4y;no;no;no;cellular;aug;fri;91;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+59;retired;married;university.degree;unknown;no;no;cellular;aug;fri;217;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+56;services;married;high.school;no;no;no;cellular;aug;fri;149;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+32;technician;married;professional.course;no;no;no;cellular;aug;fri;128;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+49;unemployed;married;high.school;unknown;yes;no;cellular;aug;fri;112;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;blue-collar;married;basic.4y;no;no;no;cellular;aug;fri;742;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+32;admin.;married;university.degree;unknown;yes;no;cellular;aug;fri;200;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;technician;single;professional.course;no;yes;no;cellular;aug;fri;55;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+29;admin.;married;university.degree;no;no;no;cellular;aug;fri;604;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;yes
+30;technician;single;professional.course;no;yes;yes;cellular;aug;fri;22;13;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+45;services;married;high.school;no;no;no;cellular;aug;fri;239;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+29;admin.;married;university.degree;no;yes;no;cellular;aug;fri;137;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;technician;single;professional.course;no;yes;no;cellular;aug;fri;119;5;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+32;technician;married;professional.course;unknown;yes;no;cellular;aug;fri;1809;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+32;admin.;single;university.degree;no;no;no;cellular;aug;fri;47;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+58;blue-collar;married;unknown;unknown;yes;yes;cellular;aug;fri;48;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;technician;married;university.degree;no;no;no;cellular;aug;fri;65;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+33;admin.;single;university.degree;no;no;no;cellular;aug;fri;102;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+37;technician;single;university.degree;no;no;no;cellular;aug;fri;180;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+37;technician;married;professional.course;no;no;no;cellular;aug;fri;243;10;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+52;services;married;high.school;unknown;yes;no;cellular;aug;fri;79;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;admin.;single;university.degree;no;no;yes;cellular;aug;fri;187;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+59;services;married;basic.4y;unknown;yes;no;cellular;aug;fri;120;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+56;blue-collar;married;basic.9y;unknown;no;no;cellular;aug;fri;142;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+29;admin.;single;university.degree;no;yes;no;cellular;aug;fri;101;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+36;management;married;university.degree;unknown;yes;yes;cellular;aug;fri;508;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+37;self-employed;married;basic.9y;no;yes;no;cellular;aug;fri;163;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+47;blue-collar;married;basic.9y;no;no;no;cellular;aug;fri;27;11;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+48;admin.;married;university.degree;no;yes;no;cellular;aug;fri;651;9;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+36;admin.;single;university.degree;no;no;no;cellular;aug;fri;71;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+56;retired;married;unknown;no;no;no;cellular;aug;fri;233;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+49;admin.;divorced;university.degree;unknown;yes;yes;cellular;aug;fri;557;5;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+33;unemployed;married;university.degree;no;no;no;cellular;aug;fri;247;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+36;management;married;university.degree;unknown;no;no;telephone;aug;fri;208;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;technician;married;university.degree;no;no;no;cellular;aug;fri;379;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;blue-collar;married;basic.4y;no;yes;no;telephone;aug;fri;295;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+37;admin.;single;university.degree;no;yes;no;cellular;aug;fri;212;7;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+39;admin.;married;university.degree;no;no;no;cellular;aug;fri;115;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+52;technician;married;professional.course;no;no;no;cellular;aug;fri;77;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;technician;married;university.degree;no;no;no;cellular;aug;fri;238;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;technician;single;university.degree;no;no;yes;cellular;aug;fri;81;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+47;admin.;married;unknown;no;yes;no;cellular;aug;fri;251;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+33;admin.;married;university.degree;no;yes;yes;cellular;aug;fri;374;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+45;services;married;basic.4y;unknown;no;no;cellular;aug;fri;117;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+32;technician;single;professional.course;unknown;unknown;unknown;cellular;aug;fri;73;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+42;admin.;single;university.degree;no;no;no;cellular;aug;fri;361;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+32;technician;married;professional.course;unknown;yes;no;cellular;aug;fri;107;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+32;technician;divorced;high.school;no;no;no;cellular;aug;fri;72;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;technician;married;high.school;no;no;no;cellular;aug;fri;171;7;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+36;technician;single;professional.course;no;no;yes;cellular;aug;fri;66;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+57;technician;married;professional.course;unknown;no;no;cellular;aug;fri;199;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+48;technician;married;university.degree;no;no;no;cellular;aug;fri;209;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+48;technician;married;university.degree;no;no;no;cellular;aug;fri;239;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+52;blue-collar;married;basic.4y;unknown;no;no;cellular;aug;fri;69;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+29;technician;single;professional.course;no;no;no;cellular;aug;fri;152;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+29;technician;single;professional.course;no;no;no;cellular;aug;fri;198;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+57;technician;married;professional.course;unknown;yes;no;cellular;aug;fri;195;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+52;admin.;married;unknown;unknown;no;no;cellular;aug;fri;234;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+55;blue-collar;married;basic.9y;unknown;no;no;cellular;aug;fri;385;6;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+48;admin.;single;university.degree;no;unknown;unknown;cellular;aug;fri;371;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+34;admin.;divorced;high.school;no;unknown;unknown;cellular;aug;fri;50;15;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;admin.;single;university.degree;unknown;no;no;cellular;aug;fri;714;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+55;admin.;married;high.school;no;yes;no;cellular;aug;fri;629;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+53;admin.;divorced;university.degree;no;unknown;unknown;cellular;aug;fri;91;10;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+35;management;married;university.degree;no;no;yes;cellular;aug;fri;10;9;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+37;management;married;high.school;no;no;no;cellular;aug;fri;132;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+60;retired;married;basic.4y;unknown;yes;no;cellular;aug;fri;155;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+53;self-employed;married;basic.9y;no;yes;yes;cellular;aug;fri;1241;7;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;yes
+30;admin.;single;university.degree;no;yes;no;cellular;aug;fri;217;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+32;technician;married;professional.course;no;no;yes;cellular;aug;fri;219;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+33;admin.;married;university.degree;no;yes;yes;telephone;aug;fri;28;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+53;admin.;divorced;university.degree;no;yes;no;cellular;aug;fri;61;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+59;retired;married;unknown;no;no;no;cellular;aug;fri;80;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+40;management;married;university.degree;no;yes;no;cellular;aug;fri;117;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+48;technician;married;university.degree;no;no;no;cellular;aug;fri;607;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+59;blue-collar;married;basic.9y;unknown;no;no;cellular;aug;fri;186;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+47;blue-collar;married;basic.9y;unknown;no;no;cellular;aug;fri;538;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+39;technician;married;professional.course;no;no;no;cellular;aug;fri;337;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+60;management;married;university.degree;no;yes;no;cellular;aug;fri;527;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+59;admin.;married;university.degree;no;yes;no;cellular;aug;fri;73;5;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;admin.;single;university.degree;no;yes;no;cellular;aug;fri;173;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+51;unemployed;married;basic.9y;no;no;no;cellular;aug;fri;81;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;technician;divorced;high.school;no;yes;no;cellular;aug;fri;291;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+60;management;married;university.degree;no;no;no;cellular;aug;fri;222;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+42;entrepreneur;married;high.school;no;no;no;cellular;aug;fri;277;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+48;self-employed;married;high.school;no;yes;no;cellular;aug;fri;175;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+32;admin.;single;university.degree;no;yes;yes;cellular;aug;fri;309;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+41;self-employed;married;university.degree;no;yes;no;cellular;aug;fri;97;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+59;management;married;university.degree;no;no;no;cellular;aug;fri;511;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+39;technician;married;professional.course;no;no;yes;cellular;aug;fri;55;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+41;self-employed;married;basic.9y;no;no;yes;cellular;aug;fri;173;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+40;technician;married;professional.course;no;no;yes;cellular;aug;fri;82;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+34;technician;divorced;professional.course;no;yes;no;cellular;aug;fri;346;5;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+39;housemaid;married;basic.4y;no;yes;yes;cellular;aug;fri;215;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+39;housemaid;married;basic.4y;no;yes;yes;cellular;aug;fri;347;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+60;management;married;university.degree;no;unknown;unknown;cellular;aug;fri;154;5;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+43;housemaid;married;basic.6y;no;no;no;cellular;aug;fri;618;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+55;technician;divorced;professional.course;no;no;no;cellular;aug;fri;203;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+44;blue-collar;married;illiterate;no;no;no;cellular;aug;fri;460;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+40;technician;married;high.school;no;yes;yes;cellular;aug;fri;105;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+33;admin.;married;university.degree;no;no;no;cellular;aug;fri;157;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;management;married;university.degree;no;no;no;cellular;aug;fri;122;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;technician;divorced;high.school;no;no;no;cellular;aug;fri;129;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+33;admin.;married;university.degree;no;yes;yes;cellular;aug;fri;661;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+36;admin.;married;university.degree;no;no;no;cellular;aug;fri;296;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+39;admin.;married;professional.course;no;no;yes;cellular;aug;fri;323;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+39;admin.;married;professional.course;no;yes;yes;cellular;aug;fri;112;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+47;technician;married;professional.course;no;yes;yes;cellular;aug;fri;78;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+44;technician;single;professional.course;no;yes;yes;cellular;aug;fri;79;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+35;technician;single;professional.course;no;no;yes;cellular;aug;fri;30;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+29;admin.;single;university.degree;no;yes;no;cellular;aug;fri;602;7;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+58;technician;divorced;professional.course;no;no;no;cellular;aug;fri;75;7;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+42;entrepreneur;married;high.school;no;no;no;cellular;aug;fri;332;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+36;technician;married;professional.course;unknown;yes;no;cellular;aug;fri;314;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;technician;married;professional.course;no;no;no;cellular;aug;fri;121;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+52;admin.;single;university.degree;no;yes;no;cellular;aug;fri;436;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;admin.;married;university.degree;no;no;no;cellular;aug;fri;186;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;technician;married;professional.course;no;yes;no;cellular;aug;fri;270;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+39;housemaid;married;basic.4y;no;yes;yes;cellular;aug;fri;123;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+36;technician;married;professional.course;unknown;yes;no;cellular;aug;fri;215;7;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+45;admin.;married;unknown;no;no;no;telephone;aug;fri;105;5;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;admin.;single;university.degree;no;no;no;cellular;aug;fri;192;5;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+56;blue-collar;married;basic.4y;no;no;no;cellular;aug;fri;263;7;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;technician;married;professional.course;no;yes;yes;cellular;aug;fri;143;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+36;admin.;married;professional.course;no;yes;yes;cellular;aug;fri;153;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+34;technician;married;university.degree;no;yes;yes;cellular;aug;fri;289;5;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+57;blue-collar;married;basic.4y;unknown;no;no;cellular;aug;fri;34;6;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+37;admin.;married;university.degree;no;yes;yes;cellular;aug;fri;239;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+34;admin.;single;university.degree;no;no;yes;cellular;aug;fri;78;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+32;technician;single;professional.course;no;no;no;cellular;aug;fri;309;5;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;admin.;single;university.degree;no;yes;no;cellular;aug;fri;353;10;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+49;management;married;university.degree;unknown;no;no;telephone;aug;fri;145;6;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+48;admin.;married;unknown;no;yes;yes;cellular;aug;fri;246;7;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;technician;divorced;high.school;no;no;no;cellular;aug;fri;101;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+35;technician;married;professional.course;no;no;no;cellular;aug;fri;222;6;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+35;admin.;married;university.degree;no;no;no;cellular;aug;fri;166;5;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+45;unemployed;married;professional.course;no;yes;yes;cellular;aug;fri;98;5;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+40;technician;single;university.degree;no;no;yes;cellular;aug;fri;140;7;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;management;married;university.degree;no;no;no;cellular;aug;fri;58;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+51;services;married;unknown;no;no;no;cellular;aug;fri;547;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;self-employed;married;professional.course;no;no;no;cellular;aug;fri;132;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+39;housemaid;married;basic.4y;no;no;no;cellular;aug;fri;155;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+33;admin.;single;university.degree;unknown;no;no;cellular;aug;fri;120;9;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+57;blue-collar;married;basic.4y;unknown;no;no;cellular;aug;fri;379;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+32;technician;single;university.degree;no;no;no;cellular;aug;fri;182;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+46;housemaid;married;basic.4y;no;yes;no;cellular;aug;fri;195;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+46;housemaid;married;basic.4y;no;no;no;cellular;aug;fri;177;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+48;self-employed;married;high.school;no;no;no;cellular;aug;fri;90;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+36;admin.;divorced;high.school;no;no;yes;cellular;aug;fri;263;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+33;admin.;single;university.degree;no;no;no;cellular;aug;fri;398;5;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+32;management;married;high.school;no;no;no;cellular;aug;fri;160;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+32;technician;single;professional.course;no;no;yes;cellular;aug;fri;82;5;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+54;blue-collar;married;basic.9y;unknown;no;no;cellular;aug;fri;207;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+53;blue-collar;married;basic.9y;no;yes;no;cellular;aug;fri;160;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;technician;single;professional.course;no;no;no;cellular;aug;fri;109;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;technician;single;professional.course;no;no;yes;cellular;aug;fri;142;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+32;admin.;divorced;university.degree;no;no;no;cellular;aug;fri;197;5;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+32;technician;married;professional.course;no;unknown;unknown;telephone;aug;fri;9;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+36;technician;single;university.degree;no;no;no;cellular;aug;fri;148;5;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+54;admin.;divorced;university.degree;no;no;no;cellular;aug;fri;209;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+45;technician;married;professional.course;unknown;yes;no;cellular;aug;fri;94;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+32;admin.;married;university.degree;no;yes;no;cellular;aug;fri;1366;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+32;admin.;single;university.degree;no;yes;no;cellular;aug;fri;124;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+32;admin.;single;university.degree;no;no;no;cellular;aug;fri;121;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+39;admin.;married;professional.course;no;no;no;cellular;aug;fri;306;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;technician;divorced;professional.course;no;yes;no;cellular;aug;fri;173;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+52;housemaid;married;basic.6y;no;yes;no;cellular;aug;fri;268;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+58;services;married;high.school;no;no;no;cellular;aug;fri;155;5;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+35;admin.;single;university.degree;no;yes;no;cellular;aug;fri;176;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+48;technician;married;university.degree;no;yes;no;cellular;aug;fri;112;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+35;management;married;university.degree;no;no;yes;cellular;aug;fri;873;5;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;yes
+51;services;married;unknown;no;no;yes;cellular;aug;fri;135;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+52;housemaid;married;basic.6y;no;yes;no;cellular;aug;fri;208;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;technician;divorced;high.school;no;yes;no;cellular;aug;fri;138;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+60;housemaid;married;basic.4y;no;no;no;cellular;aug;fri;148;8;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+45;blue-collar;married;basic.6y;no;no;no;cellular;aug;fri;200;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+45;blue-collar;married;basic.6y;no;no;no;cellular;aug;fri;311;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+36;admin.;married;professional.course;no;yes;no;cellular;aug;fri;56;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+52;services;married;high.school;unknown;unknown;unknown;cellular;aug;mon;116;5;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+47;technician;married;professional.course;no;yes;no;cellular;aug;mon;139;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+35;housemaid;married;basic.4y;no;yes;no;cellular;aug;mon;87;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+33;technician;married;professional.course;unknown;yes;no;cellular;aug;mon;61;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+46;blue-collar;married;basic.4y;no;yes;no;cellular;aug;mon;626;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;yes
+47;blue-collar;married;basic.6y;unknown;yes;no;cellular;aug;mon;103;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+35;management;divorced;university.degree;no;no;yes;cellular;aug;mon;116;7;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+29;admin.;single;university.degree;no;no;no;cellular;aug;mon;162;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+29;admin.;single;university.degree;no;yes;no;cellular;aug;mon;109;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+30;technician;single;professional.course;no;no;no;cellular;aug;mon;48;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+50;admin.;married;university.degree;no;yes;no;cellular;aug;mon;540;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+31;technician;single;professional.course;no;no;no;cellular;aug;mon;122;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+40;technician;married;university.degree;no;no;no;cellular;aug;mon;342;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+33;management;married;university.degree;no;no;no;cellular;aug;mon;191;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+35;management;divorced;university.degree;no;no;no;cellular;aug;mon;288;7;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+39;technician;married;professional.course;no;yes;no;cellular;aug;mon;209;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+42;admin.;divorced;university.degree;no;yes;no;cellular;aug;mon;91;5;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+31;technician;single;professional.course;no;no;no;cellular;aug;mon;196;10;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+48;admin.;single;university.degree;no;yes;no;cellular;aug;mon;110;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+41;admin.;divorced;university.degree;no;no;no;cellular;aug;mon;115;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+42;technician;divorced;university.degree;no;yes;no;cellular;aug;mon;57;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+57;self-employed;married;university.degree;unknown;no;no;cellular;aug;mon;102;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+57;blue-collar;married;basic.9y;no;yes;no;cellular;aug;mon;88;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+30;admin.;single;university.degree;no;no;no;cellular;aug;mon;68;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+32;admin.;single;university.degree;no;no;yes;cellular;aug;mon;78;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+40;admin.;single;university.degree;no;yes;no;cellular;aug;mon;160;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+36;admin.;married;professional.course;no;yes;no;cellular;aug;mon;472;7;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+37;admin.;single;university.degree;no;no;yes;cellular;aug;mon;205;8;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+33;admin.;married;university.degree;no;yes;no;cellular;aug;mon;63;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+35;technician;married;professional.course;no;yes;no;cellular;aug;mon;132;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+33;technician;married;high.school;no;yes;yes;cellular;aug;mon;85;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+33;self-employed;married;university.degree;no;no;no;cellular;aug;mon;425;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+31;technician;married;professional.course;no;yes;no;cellular;aug;mon;50;10;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+44;blue-collar;married;basic.4y;unknown;no;no;cellular;aug;mon;363;5;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;yes
+29;admin.;single;university.degree;unknown;yes;no;cellular;aug;mon;129;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+30;technician;divorced;university.degree;no;no;no;cellular;aug;mon;66;5;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+37;admin.;married;university.degree;no;yes;no;cellular;aug;mon;121;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+46;admin.;married;university.degree;unknown;no;no;cellular;aug;mon;143;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+41;admin.;married;university.degree;no;yes;no;cellular;aug;mon;145;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+31;technician;married;university.degree;no;no;no;cellular;aug;mon;99;7;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+45;technician;divorced;professional.course;no;yes;no;cellular;aug;mon;112;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+59;retired;married;basic.9y;no;yes;no;cellular;aug;mon;337;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+35;management;divorced;university.degree;no;yes;no;cellular;aug;mon;961;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;yes
+32;housemaid;married;basic.4y;no;yes;no;cellular;aug;mon;87;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+50;technician;divorced;professional.course;no;no;no;cellular;aug;mon;73;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+35;technician;married;professional.course;no;no;yes;cellular;aug;mon;463;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+30;admin.;single;university.degree;no;no;yes;cellular;aug;mon;67;8;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+37;admin.;single;university.degree;no;no;yes;cellular;aug;mon;103;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+49;services;married;high.school;no;yes;no;cellular;aug;mon;234;8;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+58;admin.;divorced;university.degree;unknown;no;no;cellular;aug;mon;74;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+37;admin.;single;university.degree;no;no;yes;cellular;aug;mon;220;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+58;admin.;divorced;university.degree;unknown;no;yes;cellular;aug;mon;75;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+50;blue-collar;married;basic.4y;no;no;no;cellular;aug;mon;79;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+47;blue-collar;married;basic.9y;no;no;no;cellular;aug;mon;80;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+29;technician;single;professional.course;unknown;no;no;cellular;aug;mon;48;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+35;management;divorced;university.degree;no;no;no;cellular;aug;mon;83;7;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+44;self-employed;married;basic.9y;unknown;no;no;cellular;aug;mon;136;10;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+33;technician;married;professional.course;no;yes;no;cellular;aug;mon;417;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+58;admin.;divorced;university.degree;unknown;no;no;cellular;aug;mon;129;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+50;housemaid;married;basic.4y;no;no;no;cellular;aug;mon;343;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+50;housemaid;married;basic.4y;no;no;no;cellular;aug;mon;119;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+60;retired;married;unknown;no;yes;no;cellular;aug;mon;600;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;yes
+47;blue-collar;divorced;basic.4y;no;yes;no;cellular;aug;mon;149;7;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+58;admin.;married;university.degree;no;no;no;cellular;aug;mon;129;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+57;self-employed;married;university.degree;unknown;yes;no;cellular;aug;mon;932;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;yes
+60;blue-collar;married;unknown;no;no;no;cellular;aug;mon;93;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+56;blue-collar;married;unknown;no;no;no;cellular;aug;mon;160;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+30;admin.;single;university.degree;no;yes;no;cellular;aug;mon;113;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+39;unemployed;married;university.degree;unknown;no;yes;cellular;aug;mon;84;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+56;retired;married;professional.course;no;yes;no;cellular;aug;mon;147;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+37;technician;single;professional.course;no;yes;no;cellular;aug;mon;101;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+39;admin.;divorced;university.degree;no;no;no;cellular;aug;mon;125;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+52;services;married;high.school;unknown;no;no;cellular;aug;mon;97;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+35;technician;married;professional.course;no;no;no;cellular;aug;mon;90;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+30;admin.;single;university.degree;no;no;no;cellular;aug;mon;167;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+47;blue-collar;married;basic.9y;no;no;no;cellular;aug;mon;96;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+35;management;divorced;university.degree;no;unknown;unknown;cellular;aug;mon;123;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+53;housemaid;married;unknown;no;no;no;cellular;aug;mon;106;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+35;technician;married;professional.course;no;no;no;cellular;aug;mon;91;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+58;admin.;divorced;university.degree;unknown;yes;no;cellular;aug;mon;26;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+57;blue-collar;married;basic.9y;no;yes;no;cellular;aug;mon;84;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+53;management;married;university.degree;no;yes;no;cellular;aug;mon;342;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+35;management;divorced;university.degree;no;no;no;cellular;aug;mon;472;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;yes
+37;admin.;single;university.degree;no;yes;no;cellular;aug;mon;108;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+53;blue-collar;married;basic.6y;no;yes;no;cellular;aug;mon;62;6;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+35;management;married;university.degree;no;no;yes;telephone;aug;mon;67;5;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+32;unemployed;married;university.degree;no;yes;no;cellular;aug;mon;143;5;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+53;housemaid;married;unknown;no;yes;no;cellular;aug;mon;152;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+48;services;married;basic.9y;no;yes;no;cellular;aug;mon;104;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+47;blue-collar;married;basic.9y;no;yes;no;cellular;aug;mon;110;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+40;technician;married;professional.course;no;no;no;cellular;aug;mon;40;9;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+30;technician;single;high.school;no;yes;no;telephone;aug;mon;176;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+59;admin.;divorced;university.degree;unknown;yes;no;cellular;aug;mon;272;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+29;admin.;single;university.degree;no;no;no;cellular;aug;mon;122;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+58;management;married;university.degree;no;yes;no;cellular;aug;mon;59;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+58;admin.;divorced;university.degree;unknown;yes;no;cellular;aug;mon;57;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+45;housemaid;married;basic.4y;unknown;no;no;cellular;aug;mon;463;14;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+38;admin.;married;university.degree;no;yes;no;cellular;aug;mon;301;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+53;admin.;divorced;university.degree;no;yes;no;cellular;aug;mon;343;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+32;technician;single;university.degree;no;yes;yes;cellular;aug;mon;508;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+37;admin.;single;university.degree;no;no;no;cellular;aug;mon;102;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+42;technician;divorced;professional.course;no;yes;no;cellular;aug;mon;72;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+47;admin.;married;high.school;no;yes;no;cellular;aug;mon;1152;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;yes
+59;retired;married;unknown;no;no;no;cellular;aug;mon;284;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+53;management;married;university.degree;no;yes;no;cellular;aug;mon;14;12;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+44;blue-collar;married;basic.4y;unknown;no;no;cellular;aug;mon;425;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+47;blue-collar;married;basic.9y;no;yes;no;cellular;aug;mon;157;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+39;admin.;married;university.degree;no;yes;yes;cellular;aug;mon;116;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+47;blue-collar;married;university.degree;no;no;no;cellular;aug;mon;115;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+29;admin.;single;university.degree;no;no;yes;cellular;aug;mon;146;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+54;housemaid;married;basic.4y;no;no;no;cellular;aug;mon;72;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+50;housemaid;married;basic.4y;no;no;no;cellular;aug;mon;72;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+48;services;married;high.school;unknown;yes;yes;cellular;aug;mon;72;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+54;blue-collar;married;basic.9y;unknown;yes;no;cellular;aug;mon;140;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+55;retired;married;high.school;unknown;no;no;cellular;aug;mon;88;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+43;technician;divorced;professional.course;unknown;no;yes;cellular;aug;mon;90;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+49;services;married;high.school;no;no;no;cellular;aug;mon;150;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+42;admin.;divorced;university.degree;no;yes;yes;cellular;aug;mon;159;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+32;technician;single;high.school;no;yes;no;cellular;aug;mon;606;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;yes
+33;admin.;married;university.degree;no;no;no;cellular;aug;mon;177;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+56;technician;married;university.degree;no;no;no;cellular;aug;mon;250;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+48;housemaid;married;basic.4y;no;no;no;cellular;aug;mon;248;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+48;housemaid;married;basic.4y;no;yes;no;cellular;aug;mon;132;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+59;retired;married;basic.9y;no;yes;no;cellular;aug;mon;93;6;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+37;technician;married;university.degree;no;yes;no;cellular;aug;mon;121;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+40;technician;married;professional.course;no;no;no;cellular;aug;mon;94;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+31;admin.;single;university.degree;no;no;no;cellular;aug;mon;65;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+51;services;married;high.school;no;yes;no;cellular;aug;mon;201;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+51;blue-collar;married;basic.4y;unknown;yes;no;cellular;aug;mon;324;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+57;blue-collar;married;basic.9y;no;yes;no;cellular;aug;mon;154;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+47;blue-collar;married;university.degree;no;yes;yes;cellular;aug;mon;362;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+38;admin.;married;university.degree;no;yes;no;cellular;aug;mon;124;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+44;self-employed;married;basic.9y;no;no;yes;cellular;aug;mon;140;5;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+42;admin.;single;university.degree;no;no;no;cellular;aug;mon;14;11;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+42;technician;married;professional.course;no;yes;no;cellular;aug;mon;386;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+56;admin.;married;unknown;no;yes;no;cellular;aug;mon;476;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+52;blue-collar;married;basic.9y;no;yes;no;cellular;aug;mon;42;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+40;admin.;married;university.degree;no;yes;no;cellular;aug;mon;366;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;yes
+31;admin.;married;university.degree;no;no;no;cellular;aug;mon;74;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+40;admin.;married;university.degree;no;no;no;cellular;aug;mon;23;12;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+56;technician;married;university.degree;no;no;no;cellular;aug;mon;228;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+33;self-employed;married;university.degree;no;yes;no;cellular;aug;mon;112;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+52;services;married;high.school;unknown;yes;yes;cellular;aug;mon;115;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+47;management;married;university.degree;no;yes;yes;cellular;aug;mon;57;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+37;technician;married;university.degree;no;yes;no;cellular;aug;mon;15;11;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+29;admin.;single;university.degree;no;yes;no;cellular;aug;mon;728;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+35;management;divorced;university.degree;no;unknown;unknown;cellular;aug;mon;66;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+45;blue-collar;married;basic.4y;unknown;yes;yes;cellular;aug;mon;262;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+51;services;married;high.school;no;no;no;cellular;aug;mon;72;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+48;blue-collar;married;basic.9y;no;yes;no;cellular;aug;mon;9;6;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+30;entrepreneur;married;university.degree;no;no;no;cellular;aug;mon;99;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+32;housemaid;married;basic.4y;no;yes;no;cellular;aug;mon;11;9;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+29;admin.;single;university.degree;no;no;no;cellular;aug;mon;9;7;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+45;services;married;high.school;unknown;yes;yes;cellular;aug;mon;213;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+49;housemaid;married;basic.4y;no;yes;no;cellular;aug;mon;211;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+33;technician;married;professional.course;no;yes;no;cellular;aug;mon;422;5;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+34;self-employed;married;basic.9y;unknown;yes;no;cellular;aug;mon;68;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+59;retired;married;basic.9y;no;no;no;cellular;aug;mon;105;9;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+32;technician;married;professional.course;no;yes;yes;cellular;aug;mon;69;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+31;technician;married;university.degree;no;yes;no;cellular;aug;mon;111;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+49;blue-collar;married;unknown;unknown;yes;no;cellular;aug;mon;36;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+42;management;married;university.degree;no;no;no;cellular;aug;mon;169;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+30;technician;divorced;high.school;no;no;no;cellular;aug;mon;205;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+44;blue-collar;married;basic.4y;no;no;yes;cellular;aug;mon;734;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+44;blue-collar;married;basic.4y;no;no;no;cellular;aug;mon;484;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+30;technician;single;university.degree;no;yes;no;cellular;aug;mon;14;13;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+29;admin.;married;university.degree;no;no;no;cellular;aug;mon;235;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+40;technician;married;professional.course;no;yes;no;cellular;aug;mon;256;6;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+35;management;married;university.degree;no;yes;no;cellular;aug;mon;69;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+50;blue-collar;married;basic.4y;no;yes;yes;cellular;aug;mon;69;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+42;technician;divorced;professional.course;no;yes;yes;cellular;aug;mon;692;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+40;admin.;married;university.degree;no;yes;no;cellular;aug;mon;296;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+55;housemaid;married;basic.4y;no;yes;no;cellular;aug;mon;232;5;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+32;admin.;single;university.degree;no;yes;no;cellular;aug;mon;151;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+58;management;married;university.degree;no;no;no;cellular;aug;mon;164;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+33;technician;single;university.degree;no;no;no;cellular;aug;mon;198;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+58;retired;married;basic.4y;unknown;no;no;cellular;aug;mon;454;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+41;admin.;married;university.degree;no;no;yes;cellular;aug;mon;114;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+53;blue-collar;married;basic.6y;no;yes;no;cellular;aug;mon;64;5;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+52;services;married;professional.course;unknown;yes;yes;cellular;aug;mon;84;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+35;technician;single;professional.course;no;no;no;cellular;aug;mon;203;6;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+34;self-employed;married;basic.9y;unknown;no;no;cellular;aug;mon;81;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+30;technician;divorced;university.degree;no;no;no;cellular;aug;mon;731;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;yes
+46;admin.;married;university.degree;unknown;no;yes;cellular;aug;mon;184;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+32;technician;single;high.school;no;yes;no;cellular;aug;mon;433;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+45;management;married;university.degree;no;no;no;cellular;aug;mon;361;5;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+55;blue-collar;married;basic.9y;unknown;yes;no;cellular;aug;mon;304;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+52;housemaid;married;basic.4y;unknown;yes;yes;cellular;aug;mon;160;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+57;admin.;married;unknown;no;yes;no;cellular;aug;mon;101;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+54;housemaid;married;basic.4y;unknown;yes;no;cellular;aug;mon;53;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+59;admin.;divorced;university.degree;unknown;yes;yes;cellular;aug;mon;323;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+37;technician;married;professional.course;no;yes;no;cellular;aug;mon;97;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+32;admin.;single;university.degree;no;yes;no;cellular;aug;mon;340;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+50;services;married;high.school;no;yes;no;cellular;aug;mon;54;15;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+46;blue-collar;married;basic.4y;no;no;no;cellular;aug;mon;251;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+35;technician;single;high.school;no;yes;no;cellular;aug;mon;87;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+52;services;married;high.school;unknown;yes;yes;cellular;aug;mon;454;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+52;blue-collar;married;basic.4y;no;yes;no;cellular;aug;mon;171;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+47;blue-collar;married;basic.4y;no;no;no;cellular;aug;mon;134;5;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+47;blue-collar;divorced;basic.4y;no;yes;no;cellular;aug;mon;265;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+55;blue-collar;married;unknown;no;yes;no;cellular;aug;mon;280;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+29;admin.;single;university.degree;no;no;no;cellular;aug;mon;62;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+57;services;married;high.school;unknown;yes;no;telephone;aug;mon;41;9;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+35;technician;married;university.degree;no;yes;no;cellular;aug;mon;318;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+57;self-employed;married;university.degree;unknown;no;yes;cellular;aug;mon;131;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+57;blue-collar;married;basic.9y;no;yes;no;cellular;aug;mon;365;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+47;technician;married;high.school;unknown;yes;yes;cellular;aug;mon;89;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+33;admin.;single;university.degree;no;yes;no;cellular;aug;mon;207;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+45;management;married;university.degree;no;no;no;cellular;aug;mon;105;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+45;blue-collar;married;basic.9y;no;yes;no;cellular;aug;mon;99;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+51;blue-collar;married;basic.4y;no;yes;no;cellular;aug;mon;197;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+54;blue-collar;married;basic.4y;no;yes;yes;cellular;aug;mon;484;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+39;technician;divorced;professional.course;unknown;no;no;cellular;aug;mon;93;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+57;services;married;professional.course;unknown;no;no;cellular;aug;mon;153;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+36;technician;married;high.school;no;yes;no;cellular;aug;mon;630;6;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;yes
+31;technician;divorced;high.school;no;yes;no;cellular;aug;mon;81;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+45;admin.;divorced;university.degree;no;yes;no;cellular;aug;mon;141;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+43;technician;married;professional.course;unknown;no;no;cellular;aug;mon;67;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+36;housemaid;married;basic.4y;no;no;no;cellular;aug;mon;73;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+55;management;married;university.degree;no;no;no;cellular;aug;mon;106;6;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+49;admin.;single;university.degree;no;yes;no;cellular;aug;mon;160;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+31;technician;divorced;high.school;no;no;no;cellular;aug;mon;50;5;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+59;management;married;university.degree;no;no;no;cellular;aug;mon;163;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+36;admin.;single;university.degree;no;yes;no;cellular;aug;mon;770;7;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+53;management;married;university.degree;no;no;no;cellular;aug;mon;313;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+48;blue-collar;married;basic.9y;no;no;no;cellular;aug;mon;348;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+50;blue-collar;married;basic.9y;unknown;no;no;cellular;aug;mon;106;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+43;technician;married;professional.course;unknown;yes;no;cellular;aug;mon;648;7;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+34;technician;married;high.school;no;no;no;cellular;aug;mon;256;8;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+32;technician;divorced;high.school;no;yes;yes;cellular;aug;mon;56;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+41;technician;divorced;university.degree;no;yes;no;cellular;aug;mon;335;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+57;retired;married;basic.9y;no;yes;no;cellular;aug;mon;342;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+38;technician;single;university.degree;no;yes;no;cellular;aug;mon;109;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+40;management;married;university.degree;no;yes;no;cellular;aug;mon;159;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+41;technician;married;university.degree;unknown;yes;no;cellular;aug;mon;124;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+46;blue-collar;married;basic.9y;no;yes;no;cellular;aug;mon;378;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+41;admin.;single;professional.course;no;no;no;cellular;aug;mon;139;6;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+37;admin.;single;university.degree;unknown;yes;yes;cellular;aug;mon;170;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+53;unknown;married;unknown;unknown;no;no;cellular;aug;mon;51;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+59;retired;married;basic.4y;no;yes;no;cellular;aug;mon;68;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+54;blue-collar;married;basic.4y;no;yes;no;cellular;aug;mon;56;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+60;retired;married;basic.4y;unknown;yes;yes;cellular;aug;mon;115;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+39;technician;divorced;professional.course;unknown;yes;no;cellular;aug;mon;714;5;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;yes
+54;blue-collar;married;basic.4y;no;yes;no;cellular;aug;mon;43;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+59;management;married;university.degree;no;no;yes;cellular;aug;mon;168;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+53;admin.;married;university.degree;no;yes;no;cellular;aug;mon;67;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+47;self-employed;married;university.degree;no;no;no;cellular;aug;mon;36;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+31;admin.;married;university.degree;no;no;no;cellular;aug;mon;119;9;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+38;admin.;married;university.degree;no;yes;yes;cellular;aug;mon;153;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+59;retired;married;basic.4y;unknown;no;no;cellular;aug;mon;431;5;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+57;admin.;married;high.school;unknown;yes;yes;cellular;aug;mon;127;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+29;admin.;single;high.school;no;yes;yes;cellular;aug;mon;63;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+59;housemaid;married;basic.4y;unknown;yes;no;cellular;aug;mon;618;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+56;retired;married;professional.course;no;yes;no;cellular;aug;mon;202;5;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+40;technician;married;university.degree;unknown;yes;no;cellular;aug;mon;392;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+59;technician;married;high.school;no;yes;no;cellular;aug;mon;226;5;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+59;retired;married;basic.4y;unknown;yes;no;cellular;aug;mon;144;13;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+44;admin.;married;university.degree;no;no;no;cellular;aug;mon;56;5;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+45;admin.;divorced;university.degree;no;yes;no;cellular;aug;mon;121;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+45;admin.;divorced;university.degree;no;yes;no;cellular;aug;mon;390;5;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+56;services;married;high.school;no;no;no;cellular;aug;mon;75;7;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+43;admin.;single;university.degree;no;no;no;cellular;aug;mon;99;5;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+43;technician;married;professional.course;no;no;yes;cellular;aug;mon;108;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+56;services;married;high.school;no;no;no;cellular;aug;mon;153;5;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+53;admin.;married;university.degree;unknown;yes;no;cellular;aug;mon;358;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+44;technician;married;professional.course;no;yes;no;cellular;aug;mon;63;6;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+50;management;married;university.degree;no;yes;no;cellular;aug;mon;308;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+37;technician;married;professional.course;no;no;no;cellular;aug;mon;163;5;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+50;blue-collar;married;professional.course;no;yes;no;cellular;aug;mon;45;8;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+47;self-employed;married;university.degree;no;no;no;cellular;aug;mon;230;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+38;admin.;married;high.school;no;yes;yes;cellular;aug;mon;90;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+50;admin.;married;university.degree;no;no;no;cellular;aug;mon;98;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+34;technician;married;high.school;no;yes;no;cellular;aug;mon;83;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+46;technician;married;professional.course;no;no;no;cellular;aug;mon;194;5;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+59;housemaid;married;basic.4y;unknown;yes;yes;cellular;aug;mon;56;5;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+38;technician;married;university.degree;no;yes;no;cellular;aug;mon;1374;6;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;yes
+55;management;married;university.degree;no;no;no;cellular;aug;mon;372;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;yes
+47;unknown;married;unknown;unknown;yes;no;cellular;aug;tue;104;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+58;retired;married;university.degree;no;yes;no;cellular;aug;tue;90;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+38;admin.;married;university.degree;no;yes;no;cellular;aug;tue;19;11;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+51;admin.;married;university.degree;no;no;no;cellular;aug;tue;69;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+41;admin.;single;university.degree;no;no;no;cellular;aug;tue;127;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+38;admin.;married;university.degree;no;no;no;cellular;aug;tue;122;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+51;admin.;single;university.degree;no;yes;no;cellular;aug;tue;179;11;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+46;admin.;married;basic.9y;no;yes;yes;cellular;aug;tue;160;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+55;retired;married;high.school;no;yes;no;cellular;aug;tue;106;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+60;management;married;university.degree;unknown;yes;no;cellular;aug;tue;66;14;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+36;housemaid;married;basic.4y;no;unknown;unknown;cellular;aug;tue;23;14;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+40;technician;divorced;professional.course;no;unknown;unknown;cellular;aug;tue;69;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+48;housemaid;married;basic.9y;no;yes;no;cellular;aug;tue;137;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+47;self-employed;married;university.degree;no;no;no;cellular;aug;tue;109;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+40;admin.;married;university.degree;no;yes;no;cellular;aug;tue;435;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+55;services;married;high.school;unknown;yes;no;cellular;aug;tue;209;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+49;admin.;married;university.degree;no;no;no;cellular;aug;tue;958;5;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;yes
+54;blue-collar;married;basic.9y;no;yes;no;cellular;aug;tue;110;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+56;services;married;high.school;no;yes;no;cellular;aug;tue;170;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+47;self-employed;married;university.degree;no;unknown;unknown;cellular;aug;tue;95;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+33;technician;married;professional.course;unknown;yes;no;cellular;aug;tue;731;7;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;yes
+50;admin.;divorced;high.school;no;no;no;cellular;aug;tue;664;9;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;yes
+56;admin.;divorced;university.degree;no;yes;no;cellular;aug;tue;479;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+31;technician;divorced;high.school;no;yes;no;cellular;aug;tue;254;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+38;admin.;married;university.degree;no;yes;no;cellular;aug;tue;427;12;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+59;housemaid;married;basic.4y;unknown;no;no;cellular;aug;tue;77;6;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+50;blue-collar;married;basic.9y;unknown;yes;no;cellular;aug;tue;60;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+49;services;married;high.school;no;yes;no;cellular;aug;tue;49;9;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+38;technician;married;university.degree;no;yes;no;cellular;aug;tue;102;5;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+49;admin.;married;university.degree;no;yes;no;cellular;aug;tue;62;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+50;admin.;divorced;university.degree;no;yes;no;cellular;aug;tue;73;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+40;technician;divorced;professional.course;no;yes;no;cellular;aug;tue;109;8;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+59;management;married;university.degree;no;yes;no;cellular;aug;tue;0;10;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+57;retired;married;basic.9y;no;no;no;cellular;aug;tue;388;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;yes
+38;admin.;married;university.degree;no;no;no;cellular;aug;tue;85;5;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+47;self-employed;married;university.degree;no;no;no;cellular;aug;tue;42;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+50;admin.;divorced;university.degree;no;yes;no;cellular;aug;tue;23;9;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+47;self-employed;married;university.degree;no;yes;no;cellular;aug;tue;146;7;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+48;blue-collar;married;basic.9y;no;yes;no;cellular;aug;tue;100;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+46;admin.;married;university.degree;unknown;no;no;cellular;aug;tue;55;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+48;technician;married;professional.course;no;no;no;cellular;aug;tue;67;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+37;housemaid;married;basic.4y;unknown;no;yes;cellular;aug;tue;235;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+45;technician;divorced;professional.course;no;no;no;cellular;aug;tue;94;10;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+57;admin.;married;high.school;unknown;no;no;cellular;aug;tue;135;15;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+32;technician;single;professional.course;no;yes;no;cellular;aug;tue;60;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+49;blue-collar;married;basic.4y;unknown;no;yes;cellular;aug;tue;276;5;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+48;housemaid;married;basic.9y;no;yes;no;cellular;aug;tue;159;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+48;technician;married;university.degree;no;yes;no;cellular;aug;tue;64;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+48;technician;married;university.degree;no;yes;no;cellular;aug;tue;247;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+44;admin.;married;university.degree;no;no;no;cellular;aug;tue;102;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+41;technician;single;university.degree;no;yes;no;cellular;aug;tue;87;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+32;technician;single;high.school;no;no;no;cellular;aug;tue;106;5;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+47;self-employed;married;university.degree;no;no;no;cellular;aug;tue;108;5;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+44;admin.;married;university.degree;no;no;no;cellular;aug;tue;312;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+36;technician;married;professional.course;no;yes;no;cellular;aug;tue;92;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+38;admin.;married;university.degree;no;no;no;cellular;aug;tue;178;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+55;technician;divorced;professional.course;unknown;yes;no;cellular;aug;tue;80;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+55;technician;divorced;professional.course;unknown;no;no;cellular;aug;tue;169;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+45;blue-collar;married;basic.4y;no;no;no;telephone;aug;tue;81;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+46;admin.;married;basic.9y;no;no;no;cellular;aug;tue;317;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+42;management;married;university.degree;unknown;no;no;cellular;aug;tue;217;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+42;management;married;university.degree;unknown;yes;no;cellular;aug;tue;196;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+34;technician;single;professional.course;no;yes;no;cellular;aug;tue;221;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+38;technician;single;high.school;no;yes;yes;cellular;aug;tue;97;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+42;management;married;university.degree;unknown;yes;yes;cellular;aug;tue;634;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+55;technician;divorced;professional.course;unknown;no;no;cellular;aug;tue;700;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+31;technician;divorced;high.school;no;no;no;cellular;aug;tue;67;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+41;self-employed;married;professional.course;no;no;no;cellular;aug;tue;80;11;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+32;technician;married;professional.course;no;yes;no;cellular;aug;tue;185;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+60;self-employed;married;basic.9y;no;no;no;cellular;aug;tue;17;13;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+46;admin.;married;university.degree;unknown;yes;no;cellular;aug;tue;165;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+46;admin.;married;university.degree;unknown;yes;no;cellular;aug;tue;210;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+50;admin.;married;university.degree;no;yes;no;cellular;aug;tue;76;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+35;admin.;single;university.degree;no;no;yes;cellular;aug;tue;64;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+35;admin.;single;university.degree;no;no;no;cellular;aug;tue;131;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+50;admin.;married;university.degree;no;yes;yes;cellular;aug;tue;252;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+48;housemaid;married;basic.9y;no;yes;no;cellular;aug;tue;155;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+50;blue-collar;married;professional.course;no;yes;yes;cellular;aug;tue;14;8;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+59;management;married;university.degree;no;yes;no;cellular;aug;tue;92;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+38;admin.;married;university.degree;no;yes;no;cellular;aug;tue;748;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+55;technician;divorced;university.degree;no;no;no;cellular;aug;tue;104;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+37;technician;divorced;professional.course;no;no;no;cellular;aug;tue;65;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+55;technician;divorced;university.degree;no;no;no;cellular;aug;tue;181;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+42;housemaid;married;high.school;no;yes;no;cellular;aug;tue;176;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+47;self-employed;married;university.degree;no;yes;no;cellular;aug;tue;28;13;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+55;technician;divorced;university.degree;no;yes;no;cellular;aug;tue;610;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+40;technician;divorced;professional.course;no;no;no;cellular;aug;tue;279;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+38;management;divorced;university.degree;no;yes;no;cellular;aug;tue;345;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+39;technician;married;university.degree;no;no;no;cellular;aug;tue;191;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+55;admin.;married;university.degree;no;yes;no;cellular;aug;tue;82;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+53;admin.;married;university.degree;unknown;no;no;cellular;aug;tue;18;11;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+50;technician;married;university.degree;no;yes;no;cellular;aug;tue;541;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+35;technician;single;professional.course;no;yes;no;cellular;aug;tue;67;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+35;technician;single;professional.course;no;yes;no;cellular;aug;tue;137;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+45;unknown;married;high.school;unknown;yes;no;cellular;aug;tue;94;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+35;technician;single;professional.course;no;yes;yes;cellular;aug;tue;259;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+40;admin.;single;high.school;no;yes;no;cellular;aug;tue;87;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+47;blue-collar;married;high.school;no;unknown;unknown;cellular;aug;tue;153;10;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+45;unknown;married;high.school;unknown;yes;no;cellular;aug;tue;142;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+37;technician;married;professional.course;no;no;no;cellular;aug;tue;103;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+41;technician;single;professional.course;no;yes;no;cellular;aug;tue;179;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+41;technician;single;professional.course;no;unknown;unknown;cellular;aug;tue;123;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+41;technician;single;professional.course;no;yes;no;cellular;aug;tue;239;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+41;technician;single;professional.course;no;no;no;cellular;aug;tue;358;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+48;admin.;married;university.degree;unknown;yes;no;cellular;aug;tue;286;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+37;technician;divorced;professional.course;no;no;no;cellular;aug;tue;312;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+37;technician;divorced;professional.course;no;no;no;cellular;aug;tue;80;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+33;management;married;university.degree;no;yes;no;cellular;aug;tue;126;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+37;technician;divorced;professional.course;no;unknown;unknown;cellular;aug;tue;417;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+33;management;married;university.degree;no;no;no;cellular;aug;tue;85;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+50;admin.;married;high.school;no;no;no;cellular;aug;tue;131;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+30;technician;married;professional.course;no;no;no;cellular;aug;tue;392;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+37;admin.;married;university.degree;no;no;no;cellular;aug;tue;85;12;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+32;admin.;married;university.degree;no;yes;yes;cellular;aug;tue;24;12;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+54;admin.;married;university.degree;no;no;no;cellular;aug;tue;119;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+32;admin.;married;university.degree;no;yes;no;telephone;aug;tue;66;7;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+56;services;married;high.school;no;yes;no;cellular;aug;tue;460;5;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+36;housemaid;married;basic.4y;no;yes;no;cellular;aug;tue;183;7;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+48;technician;married;university.degree;no;yes;no;cellular;aug;tue;189;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+47;technician;married;high.school;no;no;no;cellular;aug;tue;73;9;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+29;technician;single;high.school;no;yes;no;cellular;aug;tue;130;6;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+56;retired;married;professional.course;no;no;no;cellular;aug;tue;139;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+40;admin.;single;high.school;no;yes;no;cellular;aug;tue;168;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+52;unemployed;divorced;high.school;no;yes;yes;cellular;aug;tue;99;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+33;technician;married;professional.course;unknown;yes;no;cellular;aug;tue;97;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+47;blue-collar;married;basic.4y;unknown;no;no;cellular;aug;tue;80;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+50;blue-collar;married;basic.4y;unknown;yes;no;cellular;aug;tue;204;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+56;services;married;high.school;no;yes;no;cellular;aug;tue;43;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+57;technician;married;professional.course;unknown;no;no;telephone;aug;tue;15;7;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+56;services;married;high.school;no;no;no;cellular;aug;tue;173;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+37;housemaid;married;basic.4y;unknown;yes;no;cellular;aug;tue;176;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+45;blue-collar;married;basic.9y;no;no;no;cellular;aug;tue;260;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+58;self-employed;married;basic.9y;no;no;no;cellular;aug;tue;83;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+50;blue-collar;married;basic.4y;unknown;yes;no;cellular;aug;tue;164;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+38;technician;married;university.degree;no;yes;no;cellular;aug;tue;95;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+38;technician;married;university.degree;no;no;no;cellular;aug;tue;264;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+48;technician;married;university.degree;no;no;no;cellular;aug;tue;124;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+50;technician;married;university.degree;no;unknown;unknown;cellular;aug;tue;107;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+50;admin.;divorced;university.degree;no;no;no;cellular;aug;tue;130;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+32;technician;single;professional.course;no;yes;no;cellular;aug;tue;128;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+47;self-employed;married;university.degree;no;yes;no;cellular;aug;tue;484;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+38;admin.;married;university.degree;no;no;no;cellular;aug;tue;80;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+48;technician;married;university.degree;no;yes;no;cellular;aug;tue;174;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+33;admin.;divorced;university.degree;no;yes;no;cellular;aug;tue;249;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+48;services;married;basic.4y;unknown;yes;no;cellular;aug;tue;240;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+33;admin.;divorced;university.degree;no;no;no;cellular;aug;tue;384;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+32;technician;single;professional.course;no;yes;no;cellular;aug;tue;71;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+30;technician;divorced;professional.course;unknown;yes;no;cellular;aug;tue;210;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+47;technician;married;high.school;no;no;no;cellular;aug;tue;111;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+33;technician;married;professional.course;no;yes;no;cellular;aug;tue;211;6;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+48;services;married;basic.4y;unknown;yes;no;cellular;aug;tue;436;1;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+57;retired;married;basic.9y;no;no;no;cellular;aug;tue;22;27;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+55;management;married;university.degree;no;yes;no;cellular;aug;tue;101;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+38;admin.;married;university.degree;no;yes;no;cellular;aug;tue;194;5;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+29;admin.;married;university.degree;no;no;no;cellular;aug;tue;124;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+39;technician;divorced;professional.course;unknown;yes;no;cellular;aug;tue;41;7;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+52;blue-collar;married;basic.4y;no;no;no;cellular;aug;tue;31;6;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+40;management;married;university.degree;no;no;no;cellular;aug;tue;17;11;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+32;admin.;married;university.degree;no;no;yes;cellular;aug;tue;301;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+57;retired;married;basic.9y;no;yes;yes;cellular;aug;tue;1223;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;yes
+35;technician;married;university.degree;no;yes;no;cellular;aug;tue;12;12;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+48;services;married;basic.4y;unknown;yes;no;cellular;aug;tue;1000;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;yes
+35;technician;married;professional.course;no;yes;no;cellular;aug;tue;333;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+54;admin.;married;university.degree;no;no;no;cellular;aug;tue;219;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+35;technician;married;university.degree;no;no;no;cellular;aug;tue;241;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+43;technician;married;professional.course;unknown;no;no;cellular;aug;tue;471;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+35;technician;married;university.degree;no;yes;no;cellular;aug;tue;55;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+32;admin.;divorced;university.degree;no;no;no;cellular;aug;tue;74;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+35;technician;single;professional.course;no;yes;no;cellular;aug;tue;300;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+37;technician;divorced;professional.course;no;yes;no;cellular;aug;tue;520;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+60;unknown;married;unknown;unknown;yes;no;cellular;aug;tue;130;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+52;unemployed;divorced;high.school;no;no;no;cellular;aug;tue;96;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+46;admin.;married;university.degree;unknown;yes;no;cellular;aug;tue;66;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+47;self-employed;married;university.degree;no;no;no;cellular;aug;tue;320;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+51;blue-collar;married;basic.4y;no;no;no;cellular;aug;tue;36;19;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+52;blue-collar;married;basic.4y;no;yes;no;cellular;aug;tue;234;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+32;technician;divorced;high.school;no;unknown;unknown;cellular;aug;tue;301;10;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+33;admin.;married;university.degree;no;no;no;cellular;aug;tue;75;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+29;admin.;single;high.school;no;no;no;cellular;aug;tue;78;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+32;technician;single;high.school;no;no;no;cellular;aug;tue;162;10;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+59;housemaid;married;unknown;unknown;yes;no;cellular;aug;tue;72;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+41;unemployed;divorced;professional.course;no;unknown;unknown;cellular;aug;tue;271;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+40;technician;single;high.school;no;yes;no;cellular;aug;tue;76;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+50;services;married;high.school;unknown;no;no;cellular;aug;tue;10;13;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+50;blue-collar;married;basic.4y;no;no;no;telephone;aug;tue;39;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+53;unknown;married;unknown;unknown;no;no;cellular;aug;tue;12;9;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+33;technician;married;professional.course;unknown;yes;no;cellular;aug;tue;30;14;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+44;technician;married;professional.course;no;no;no;cellular;aug;tue;59;6;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+50;housemaid;married;unknown;no;no;no;cellular;aug;tue;287;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+58;blue-collar;married;basic.6y;no;yes;no;cellular;aug;tue;140;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+35;admin.;single;university.degree;no;yes;no;cellular;aug;tue;63;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+55;admin.;married;university.degree;no;yes;no;cellular;aug;tue;358;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+54;admin.;married;university.degree;no;yes;no;cellular;aug;tue;120;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+60;technician;married;university.degree;no;yes;no;cellular;aug;tue;11;8;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+48;technician;single;university.degree;unknown;no;no;cellular;aug;tue;532;8;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+43;management;married;university.degree;no;no;no;cellular;aug;tue;175;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+31;admin.;married;university.degree;no;yes;no;cellular;aug;tue;157;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+51;admin.;married;university.degree;no;yes;no;cellular;aug;tue;112;7;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+47;admin.;divorced;university.degree;no;no;yes;cellular;aug;tue;264;19;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+42;admin.;married;university.degree;no;yes;no;cellular;aug;tue;172;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+46;entrepreneur;married;high.school;no;yes;no;cellular;aug;tue;435;5;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+42;admin.;married;university.degree;no;yes;no;cellular;aug;tue;84;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+47;admin.;married;university.degree;no;yes;no;cellular;aug;tue;653;5;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+36;technician;married;professional.course;no;no;no;cellular;aug;tue;205;5;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+47;blue-collar;married;basic.4y;unknown;no;no;cellular;aug;tue;110;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+38;technician;married;high.school;no;no;no;cellular;aug;tue;100;5;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+47;management;married;university.degree;no;yes;no;cellular;aug;tue;133;8;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+37;technician;single;university.degree;no;no;no;cellular;aug;tue;277;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+47;entrepreneur;married;high.school;no;yes;yes;cellular;aug;tue;303;5;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+52;technician;married;high.school;no;yes;yes;cellular;aug;tue;263;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+42;technician;divorced;professional.course;no;yes;no;cellular;aug;tue;265;11;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+53;unknown;married;basic.4y;unknown;no;no;cellular;aug;tue;107;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+42;admin.;married;university.degree;no;no;no;cellular;aug;tue;77;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+42;management;married;university.degree;no;no;yes;cellular;aug;tue;130;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+37;services;married;high.school;no;no;no;cellular;aug;tue;377;7;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+29;admin.;single;university.degree;no;yes;no;cellular;aug;tue;155;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+52;blue-collar;married;high.school;no;yes;no;cellular;aug;tue;454;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+57;admin.;married;university.degree;unknown;yes;yes;cellular;aug;tue;61;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+46;services;married;high.school;no;yes;no;cellular;aug;tue;183;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+57;technician;single;professional.course;no;yes;yes;cellular;aug;tue;218;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+55;management;married;university.degree;no;yes;yes;cellular;aug;tue;384;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+31;management;married;university.degree;no;yes;no;cellular;aug;tue;57;6;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+55;blue-collar;married;basic.9y;no;yes;no;cellular;aug;tue;209;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+38;technician;married;high.school;no;no;no;cellular;aug;tue;89;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+29;admin.;single;university.degree;no;no;no;cellular;aug;tue;82;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+47;admin.;married;university.degree;no;unknown;unknown;cellular;aug;tue;225;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+44;technician;married;professional.course;no;no;no;cellular;aug;tue;168;6;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+45;services;married;basic.6y;unknown;no;no;cellular;aug;tue;98;5;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+57;blue-collar;married;basic.4y;unknown;no;no;cellular;aug;tue;366;9;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+29;services;married;professional.course;unknown;yes;no;cellular;aug;tue;2089;6;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;yes
+54;admin.;married;high.school;no;no;no;cellular;aug;tue;84;5;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+48;admin.;married;professional.course;no;no;no;cellular;aug;tue;369;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+56;admin.;married;university.degree;unknown;yes;no;cellular;aug;tue;125;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+37;blue-collar;single;professional.course;no;no;no;cellular;aug;tue;109;11;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+48;admin.;divorced;university.degree;unknown;no;no;cellular;aug;tue;58;5;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+38;admin.;married;university.degree;no;yes;no;cellular;aug;tue;35;6;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+58;retired;married;basic.4y;no;no;no;cellular;aug;tue;556;6;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;yes
+47;admin.;married;university.degree;no;yes;no;cellular;aug;tue;100;3;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+51;services;married;high.school;unknown;no;yes;cellular;aug;tue;20;5;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+42;self-employed;single;university.degree;no;yes;no;cellular;aug;tue;133;6;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+57;admin.;married;university.degree;unknown;no;no;cellular;aug;tue;101;2;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+46;housemaid;married;basic.4y;no;no;no;cellular;aug;tue;240;4;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+56;services;divorced;high.school;unknown;yes;no;cellular;aug;tue;59;5;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+46;admin.;married;university.degree;unknown;no;no;cellular;aug;tue;515;9;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+59;retired;married;university.degree;no;yes;no;cellular;aug;tue;130;10;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+55;blue-collar;married;basic.9y;no;no;no;telephone;aug;tue;361;10;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+36;technician;married;university.degree;no;no;no;cellular;aug;tue;99;5;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+58;blue-collar;divorced;basic.6y;unknown;no;no;cellular;aug;tue;272;7;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+58;housemaid;married;professional.course;no;yes;no;cellular;aug;tue;98;10;999;0;nonexistent;1.4;93.444;-36.1;4.965;5228.1;no
+47;technician;married;professional.course;no;yes;no;cellular;aug;wed;58;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+55;management;married;university.degree;no;yes;no;cellular;aug;wed;52;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+44;technician;divorced;professional.course;no;no;no;cellular;aug;wed;157;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+40;technician;married;professional.course;no;yes;no;cellular;aug;wed;609;8;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;yes
+37;blue-collar;single;professional.course;no;no;no;cellular;aug;wed;94;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+41;admin.;married;university.degree;no;no;no;cellular;aug;wed;108;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+33;admin.;single;university.degree;no;yes;no;cellular;aug;wed;116;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+48;admin.;married;university.degree;no;yes;yes;cellular;aug;wed;87;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+48;blue-collar;married;high.school;no;yes;no;cellular;aug;wed;128;6;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+39;admin.;married;university.degree;no;yes;no;cellular;aug;wed;581;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;yes
+52;housemaid;married;basic.4y;no;yes;no;cellular;aug;wed;20;24;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+48;admin.;married;university.degree;no;yes;no;cellular;aug;wed;113;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+44;admin.;divorced;university.degree;no;yes;no;cellular;aug;wed;18;11;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+45;admin.;married;basic.9y;no;yes;yes;cellular;aug;wed;106;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+40;admin.;married;university.degree;no;no;no;cellular;aug;wed;154;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+29;admin.;single;university.degree;no;no;no;cellular;aug;wed;130;6;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+43;technician;married;professional.course;no;no;no;cellular;aug;wed;146;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+47;technician;divorced;high.school;no;yes;no;cellular;aug;wed;56;5;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+29;technician;single;professional.course;no;no;no;cellular;aug;wed;185;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;technician;single;high.school;no;no;no;cellular;aug;wed;1033;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;yes
+37;blue-collar;single;professional.course;no;yes;no;cellular;aug;wed;503;8;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+36;technician;married;professional.course;no;yes;no;cellular;aug;wed;95;5;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+59;admin.;divorced;professional.course;unknown;yes;no;cellular;aug;wed;87;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;technician;single;professional.course;no;no;no;cellular;aug;wed;105;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+57;retired;married;basic.4y;unknown;yes;no;cellular;aug;wed;57;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+53;unknown;married;basic.4y;unknown;no;no;cellular;aug;wed;124;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+52;unknown;married;unknown;unknown;no;no;cellular;aug;wed;52;11;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+41;technician;single;high.school;no;yes;no;cellular;aug;wed;219;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+43;admin.;married;university.degree;no;yes;no;cellular;aug;wed;281;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+48;entrepreneur;married;high.school;no;no;no;cellular;aug;wed;57;5;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+59;retired;married;university.degree;no;no;no;cellular;aug;wed;97;7;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+36;admin.;married;university.degree;unknown;yes;no;cellular;aug;wed;155;11;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+41;technician;married;professional.course;no;yes;no;cellular;aug;wed;84;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+52;technician;married;high.school;no;yes;no;cellular;aug;wed;13;14;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+55;management;married;university.degree;no;yes;no;cellular;aug;wed;130;7;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+45;technician;married;professional.course;no;yes;yes;cellular;aug;wed;136;6;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+46;admin.;married;university.degree;unknown;no;no;telephone;aug;wed;39;5;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+51;technician;married;high.school;no;yes;no;cellular;aug;wed;360;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+50;blue-collar;married;basic.9y;no;yes;no;cellular;aug;wed;68;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+50;blue-collar;married;basic.4y;no;no;no;cellular;aug;wed;153;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+57;retired;married;professional.course;no;yes;no;cellular;aug;wed;156;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+60;retired;married;professional.course;no;no;no;cellular;aug;wed;199;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+53;unknown;married;basic.4y;unknown;yes;no;cellular;aug;wed;23;6;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;management;married;university.degree;no;yes;no;cellular;aug;wed;181;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+44;technician;married;professional.course;no;no;no;cellular;aug;wed;39;9;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+34;admin.;married;university.degree;no;yes;no;cellular;aug;wed;147;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+58;admin.;single;university.degree;no;no;no;cellular;aug;wed;113;5;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+51;admin.;married;university.degree;no;yes;no;cellular;aug;wed;519;9;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;yes
+57;retired;married;high.school;unknown;yes;yes;cellular;aug;wed;223;8;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+57;blue-collar;married;basic.4y;unknown;no;no;cellular;aug;wed;243;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+57;blue-collar;married;basic.4y;unknown;no;yes;cellular;aug;wed;203;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+52;admin.;divorced;university.degree;unknown;no;no;cellular;aug;wed;191;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+45;technician;single;professional.course;no;yes;no;cellular;aug;wed;105;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+46;admin.;married;university.degree;unknown;yes;no;cellular;aug;wed;116;9;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+47;technician;divorced;high.school;no;yes;no;cellular;aug;wed;87;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+44;technician;married;professional.course;no;yes;no;cellular;aug;wed;114;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+40;admin.;married;university.degree;no;yes;no;cellular;aug;wed;219;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+51;technician;married;university.degree;no;yes;no;cellular;aug;wed;512;5;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;yes
+44;technician;married;professional.course;no;yes;yes;cellular;aug;wed;236;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+37;housemaid;married;basic.4y;no;yes;no;cellular;aug;wed;130;6;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+60;retired;married;professional.course;no;no;no;cellular;aug;wed;111;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+57;retired;married;professional.course;unknown;no;no;cellular;aug;wed;80;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+39;technician;married;professional.course;no;no;no;cellular;aug;wed;85;14;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+47;admin.;divorced;university.degree;no;no;yes;cellular;aug;wed;69;6;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+57;retired;married;basic.4y;unknown;yes;no;cellular;aug;wed;78;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;admin.;single;university.degree;no;no;no;cellular;aug;wed;134;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+55;services;married;high.school;no;yes;no;cellular;aug;wed;63;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+52;admin.;married;high.school;no;yes;yes;cellular;aug;wed;352;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+44;technician;married;university.degree;no;yes;no;cellular;aug;wed;127;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+48;admin.;married;university.degree;no;yes;yes;cellular;aug;wed;254;5;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+49;admin.;married;basic.9y;no;no;yes;cellular;aug;wed;100;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+41;technician;single;high.school;no;yes;no;cellular;aug;wed;88;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+54;technician;married;professional.course;unknown;yes;no;cellular;aug;wed;121;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+48;admin.;married;university.degree;no;no;no;cellular;aug;wed;91;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+43;self-employed;married;university.degree;no;yes;no;cellular;aug;wed;217;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+41;technician;married;professional.course;no;yes;no;cellular;aug;wed;164;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+54;admin.;divorced;university.degree;no;no;yes;cellular;aug;wed;121;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+57;blue-collar;married;basic.4y;unknown;no;no;cellular;aug;wed;125;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+57;blue-collar;married;basic.4y;unknown;yes;no;cellular;aug;wed;109;1;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+42;management;married;university.degree;no;yes;no;telephone;aug;wed;220;11;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+41;technician;single;high.school;no;yes;no;telephone;aug;wed;9;13;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+54;admin.;married;high.school;no;yes;no;cellular;aug;wed;82;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+44;technician;single;university.degree;no;yes;no;cellular;aug;wed;763;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;yes
+31;management;married;university.degree;no;no;no;cellular;aug;wed;129;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+55;technician;married;professional.course;no;no;no;cellular;aug;wed;976;7;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;yes
+51;technician;married;high.school;no;yes;no;cellular;aug;wed;549;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+41;admin.;married;university.degree;no;yes;no;cellular;aug;wed;342;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+44;technician;single;university.degree;no;yes;no;cellular;aug;wed;79;6;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+47;admin.;married;university.degree;no;no;no;cellular;aug;wed;63;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+45;admin.;married;university.degree;unknown;yes;no;cellular;aug;wed;119;8;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+52;technician;married;university.degree;no;no;no;cellular;aug;wed;15;7;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+46;technician;divorced;professional.course;no;no;no;cellular;aug;wed;308;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+54;admin.;married;professional.course;no;yes;no;cellular;aug;wed;103;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+48;blue-collar;married;high.school;no;no;no;cellular;aug;wed;312;9;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+60;retired;married;high.school;no;unknown;unknown;cellular;aug;wed;590;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+53;unknown;married;basic.4y;unknown;no;no;cellular;aug;wed;116;5;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+47;admin.;married;university.degree;no;yes;no;cellular;aug;wed;129;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+54;admin.;married;high.school;no;no;no;cellular;aug;wed;28;10;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+57;retired;married;basic.4y;no;no;no;cellular;aug;wed;50;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+57;blue-collar;married;basic.4y;unknown;no;no;cellular;aug;wed;97;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+53;blue-collar;married;unknown;no;yes;no;cellular;aug;wed;94;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+57;retired;married;professional.course;no;no;no;cellular;aug;wed;508;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+58;blue-collar;married;basic.4y;unknown;yes;no;telephone;aug;wed;29;21;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+48;admin.;married;university.degree;no;yes;no;cellular;aug;wed;116;5;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+57;admin.;married;university.degree;unknown;yes;no;cellular;aug;wed;247;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+56;admin.;married;university.degree;unknown;yes;no;cellular;aug;wed;66;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+40;admin.;married;university.degree;no;yes;no;cellular;aug;wed;335;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+47;admin.;married;university.degree;no;yes;no;cellular;aug;wed;38;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+51;technician;married;professional.course;no;unknown;unknown;cellular;aug;wed;89;16;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+47;admin.;married;university.degree;no;yes;no;cellular;aug;wed;1129;10;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;yes
+54;technician;married;professional.course;no;yes;no;cellular;aug;wed;14;10;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+53;unknown;married;basic.4y;unknown;no;no;cellular;aug;wed;49;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;technician;married;professional.course;no;no;no;telephone;aug;wed;645;7;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;yes
+47;admin.;married;university.degree;no;yes;no;cellular;aug;wed;176;5;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;self-employed;married;university.degree;no;yes;no;cellular;aug;wed;15;10;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+46;housemaid;married;basic.4y;no;no;yes;cellular;aug;wed;10;14;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+52;admin.;married;high.school;no;no;no;cellular;aug;wed;114;6;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+43;management;married;university.degree;no;no;no;cellular;aug;wed;13;11;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+57;retired;married;professional.course;no;yes;no;telephone;aug;wed;96;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+54;technician;married;professional.course;unknown;yes;no;cellular;aug;wed;511;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+48;technician;divorced;university.degree;no;yes;yes;cellular;aug;wed;86;7;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+46;technician;divorced;professional.course;no;no;no;cellular;aug;wed;516;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+51;technician;married;professional.course;no;yes;no;cellular;aug;wed;300;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+40;technician;single;professional.course;unknown;yes;yes;cellular;aug;wed;94;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+47;technician;divorced;high.school;no;yes;no;cellular;aug;wed;125;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+37;admin.;single;university.degree;no;no;no;cellular;aug;wed;125;11;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+44;admin.;divorced;university.degree;no;no;yes;cellular;aug;wed;12;14;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+47;technician;divorced;professional.course;unknown;yes;yes;cellular;aug;wed;212;9;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;technician;single;professional.course;no;yes;no;cellular;aug;wed;178;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+48;admin.;divorced;university.degree;unknown;yes;no;cellular;aug;wed;67;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+54;admin.;married;high.school;no;yes;yes;cellular;aug;wed;19;13;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+44;technician;married;professional.course;no;no;yes;cellular;aug;wed;85;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+41;technician;divorced;professional.course;no;yes;no;cellular;aug;wed;122;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+33;admin.;single;university.degree;no;no;no;cellular;aug;wed;27;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+37;technician;single;university.degree;no;yes;no;cellular;aug;wed;60;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+52;admin.;married;university.degree;no;yes;no;cellular;aug;wed;34;11;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+54;management;married;university.degree;no;no;no;cellular;aug;wed;561;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+29;admin.;single;university.degree;no;yes;no;cellular;aug;wed;120;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+38;technician;single;high.school;no;no;no;cellular;aug;wed;74;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+40;admin.;married;university.degree;no;no;no;cellular;aug;wed;214;5;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+54;housemaid;married;basic.4y;unknown;yes;no;cellular;aug;wed;523;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;yes
+37;technician;married;university.degree;no;no;no;cellular;aug;wed;107;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+59;retired;married;university.degree;no;yes;no;cellular;aug;wed;160;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+41;technician;divorced;professional.course;no;no;no;cellular;aug;wed;16;13;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+47;technician;married;university.degree;no;yes;no;cellular;aug;wed;184;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+56;retired;divorced;university.degree;unknown;no;no;cellular;aug;wed;168;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+49;technician;married;professional.course;unknown;yes;no;cellular;aug;wed;76;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+56;admin.;married;university.degree;unknown;yes;no;cellular;aug;wed;120;6;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+37;technician;married;university.degree;no;yes;no;cellular;aug;wed;138;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+52;technician;divorced;professional.course;no;no;no;cellular;aug;wed;79;6;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+43;technician;married;professional.course;no;yes;no;cellular;aug;wed;78;7;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+58;technician;divorced;professional.course;unknown;no;no;cellular;aug;wed;36;6;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+39;admin.;married;university.degree;unknown;yes;no;cellular;aug;wed;117;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+38;unknown;married;unknown;no;yes;yes;cellular;aug;wed;60;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+42;management;married;university.degree;no;yes;yes;cellular;aug;wed;89;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+29;admin.;single;university.degree;no;yes;no;cellular;aug;wed;88;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+32;technician;divorced;professional.course;no;yes;yes;cellular;aug;wed;11;12;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+47;technician;married;professional.course;unknown;no;no;cellular;aug;wed;18;15;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;technician;single;university.degree;no;no;no;cellular;aug;wed;157;8;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;unemployed;married;university.degree;no;yes;no;cellular;aug;wed;186;11;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+58;admin.;married;high.school;no;no;no;cellular;aug;wed;569;13;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+44;admin.;married;basic.9y;unknown;yes;no;cellular;aug;wed;77;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+44;admin.;married;basic.9y;unknown;no;no;cellular;aug;wed;19;17;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;technician;single;professional.course;no;no;no;cellular;aug;wed;218;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+33;admin.;single;university.degree;no;yes;no;cellular;aug;wed;43;13;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+39;admin.;married;professional.course;no;no;no;cellular;aug;wed;37;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+47;technician;married;university.degree;no;no;no;cellular;aug;wed;1642;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;yes
+44;technician;married;professional.course;no;no;no;cellular;aug;wed;85;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+44;technician;married;professional.course;no;no;no;cellular;aug;wed;202;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+33;admin.;single;university.degree;no;no;no;cellular;aug;wed;316;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+43;admin.;married;university.degree;no;yes;no;cellular;aug;wed;35;10;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+29;technician;single;professional.course;no;no;no;cellular;aug;wed;26;10;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+46;services;married;basic.9y;unknown;yes;no;cellular;aug;wed;59;5;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;management;married;university.degree;no;yes;no;cellular;aug;wed;118;6;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;technician;single;professional.course;no;yes;no;cellular;aug;wed;72;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+33;self-employed;married;basic.4y;no;no;no;cellular;aug;wed;106;7;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+33;self-employed;married;basic.4y;no;no;no;cellular;aug;wed;263;7;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+47;admin.;married;high.school;unknown;yes;no;cellular;aug;wed;93;7;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+55;admin.;married;high.school;no;no;no;cellular;aug;wed;231;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+37;technician;single;professional.course;no;yes;no;cellular;aug;wed;101;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+37;technician;married;university.degree;no;no;no;cellular;aug;wed;141;5;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+32;unemployed;married;university.degree;no;yes;no;cellular;aug;wed;97;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+58;housemaid;married;basic.9y;no;no;no;cellular;aug;wed;88;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+50;unemployed;married;basic.9y;unknown;no;yes;cellular;aug;wed;88;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+46;technician;divorced;professional.course;no;yes;yes;cellular;aug;wed;22;5;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+46;technician;divorced;professional.course;no;no;no;cellular;aug;wed;101;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+43;technician;married;professional.course;no;no;no;cellular;aug;wed;78;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+40;admin.;divorced;high.school;no;yes;no;cellular;aug;wed;293;6;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+56;retired;married;basic.6y;unknown;yes;no;cellular;aug;wed;39;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+39;technician;married;high.school;no;yes;no;cellular;aug;wed;67;5;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+45;admin.;single;university.degree;no;yes;no;cellular;aug;wed;25;12;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+38;admin.;divorced;university.degree;no;no;no;cellular;aug;wed;145;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+41;technician;divorced;professional.course;no;no;no;cellular;aug;wed;167;7;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+43;admin.;single;university.degree;no;yes;no;cellular;aug;wed;126;5;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+47;admin.;single;university.degree;no;no;no;cellular;aug;wed;267;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;admin.;single;university.degree;no;yes;no;cellular;aug;wed;23;17;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+47;unknown;married;unknown;no;no;yes;cellular;aug;wed;111;5;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+47;technician;married;university.degree;no;yes;no;cellular;aug;wed;206;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;unemployed;married;university.degree;no;no;no;cellular;aug;wed;95;5;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+47;technician;married;university.degree;no;yes;no;cellular;aug;wed;345;7;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+41;technician;married;professional.course;no;no;yes;cellular;aug;wed;81;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+36;management;married;university.degree;no;no;no;cellular;aug;wed;46;7;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+41;technician;married;professional.course;no;no;no;cellular;aug;wed;154;7;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+41;admin.;married;university.degree;no;no;no;cellular;aug;wed;85;5;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+35;admin.;single;university.degree;no;no;yes;cellular;aug;wed;448;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+50;management;married;professional.course;unknown;no;no;cellular;aug;wed;165;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+40;admin.;married;university.degree;no;no;no;cellular;aug;wed;53;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;admin.;married;university.degree;no;no;no;telephone;aug;wed;296;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+30;technician;single;university.degree;no;no;no;cellular;aug;wed;202;5;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+49;unemployed;married;basic.4y;no;yes;no;cellular;aug;wed;155;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+54;housemaid;married;basic.4y;unknown;no;no;telephone;aug;wed;23;6;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+38;admin.;divorced;university.degree;no;no;no;cellular;aug;wed;70;9;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+33;admin.;married;university.degree;no;no;no;cellular;aug;wed;787;9;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+44;technician;married;professional.course;no;yes;no;cellular;aug;wed;27;9;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+40;admin.;single;university.degree;no;no;no;cellular;aug;wed;183;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+43;admin.;married;university.degree;no;yes;no;cellular;aug;wed;115;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+33;admin.;married;university.degree;no;yes;no;cellular;aug;wed;62;4;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+40;technician;single;university.degree;no;yes;no;telephone;aug;wed;554;5;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+53;technician;married;professional.course;unknown;yes;yes;cellular;aug;wed;276;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+39;technician;married;professional.course;unknown;yes;no;cellular;aug;wed;145;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+41;technician;married;professional.course;no;yes;no;cellular;aug;wed;112;8;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+43;admin.;divorced;university.degree;no;yes;yes;cellular;aug;wed;95;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+55;admin.;married;high.school;no;yes;yes;cellular;aug;wed;61;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+46;admin.;married;high.school;no;no;no;cellular;aug;wed;63;3;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+57;admin.;married;university.degree;unknown;no;no;cellular;aug;wed;104;5;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+51;technician;married;professional.course;no;yes;no;cellular;aug;wed;118;2;999;0;nonexistent;1.4;93.444;-36.1;4.964;5228.1;no
+31;technician;single;university.degree;no;yes;no;cellular;aug;thu;34;6;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+41;technician;divorced;high.school;no;no;no;cellular;aug;thu;82;2;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+33;services;married;university.degree;unknown;no;yes;cellular;aug;thu;149;8;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+41;admin.;married;university.degree;unknown;yes;no;cellular;aug;thu;583;11;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;yes
+51;technician;married;professional.course;no;yes;no;cellular;aug;thu;81;2;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+30;technician;single;professional.course;no;yes;no;cellular;aug;thu;55;4;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+30;technician;single;university.degree;no;yes;yes;cellular;aug;thu;73;3;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+33;technician;single;university.degree;no;yes;no;cellular;aug;thu;131;11;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+36;self-employed;single;university.degree;no;yes;yes;cellular;aug;thu;118;5;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+46;technician;divorced;professional.course;no;yes;no;cellular;aug;thu;81;6;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+33;admin.;single;university.degree;no;yes;yes;cellular;aug;thu;66;6;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+32;admin.;divorced;university.degree;no;yes;no;cellular;aug;thu;77;2;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+48;technician;married;university.degree;no;no;no;cellular;aug;thu;52;6;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+44;technician;married;professional.course;no;yes;no;cellular;aug;thu;236;7;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+43;technician;married;university.degree;no;yes;no;cellular;aug;thu;74;4;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+29;technician;single;professional.course;no;yes;no;cellular;aug;thu;94;4;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+43;technician;married;professional.course;no;no;no;cellular;aug;thu;211;3;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+44;technician;married;professional.course;no;no;no;cellular;aug;thu;536;3;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+56;self-employed;married;high.school;no;yes;no;cellular;aug;thu;210;2;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+39;admin.;married;university.degree;unknown;no;no;cellular;aug;thu;144;10;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+37;admin.;single;university.degree;no;yes;no;cellular;aug;thu;85;3;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+33;services;married;university.degree;unknown;no;no;cellular;aug;thu;74;8;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+40;admin.;married;university.degree;no;no;no;cellular;aug;thu;13;11;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+32;technician;married;professional.course;no;yes;no;cellular;aug;thu;192;6;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+57;management;married;university.degree;no;yes;no;cellular;aug;thu;17;11;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+31;admin.;single;university.degree;no;no;no;cellular;aug;thu;116;3;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+30;technician;single;university.degree;no;no;no;cellular;aug;thu;110;3;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+35;admin.;married;university.degree;no;yes;no;cellular;aug;thu;148;3;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+41;admin.;married;university.degree;no;no;no;cellular;aug;thu;67;13;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+37;technician;single;university.degree;no;no;no;cellular;aug;thu;146;2;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+30;technician;single;university.degree;no;yes;no;cellular;aug;thu;979;3;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;yes
+33;services;married;professional.course;no;yes;no;cellular;aug;thu;51;5;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+40;admin.;single;university.degree;no;no;no;cellular;aug;thu;101;7;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+36;admin.;single;university.degree;no;yes;no;cellular;aug;thu;107;3;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+32;admin.;single;university.degree;no;yes;no;cellular;aug;thu;65;2;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+32;technician;married;professional.course;unknown;no;no;cellular;aug;thu;78;7;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+29;technician;married;professional.course;no;yes;no;cellular;aug;thu;965;2;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;yes
+32;unemployed;married;university.degree;no;yes;no;cellular;aug;thu;85;8;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+41;technician;divorced;professional.course;no;yes;no;cellular;aug;thu;26;6;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+31;admin.;single;university.degree;no;no;no;cellular;aug;thu;13;9;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+51;technician;married;professional.course;no;yes;no;cellular;aug;thu;47;13;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+57;technician;married;university.degree;unknown;yes;yes;cellular;aug;thu;30;9;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+43;technician;married;university.degree;no;no;no;cellular;aug;thu;38;2;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+33;admin.;married;university.degree;no;no;no;cellular;aug;thu;137;5;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+41;admin.;married;university.degree;no;no;no;cellular;aug;thu;84;5;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+37;admin.;single;university.degree;no;yes;no;cellular;aug;thu;94;7;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+46;admin.;married;high.school;no;yes;no;cellular;aug;thu;91;11;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+55;technician;married;high.school;no;no;yes;cellular;aug;thu;71;2;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+37;technician;single;university.degree;no;yes;no;cellular;aug;thu;210;2;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+29;technician;single;professional.course;no;no;no;cellular;aug;thu;121;3;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+31;admin.;married;university.degree;no;yes;no;cellular;aug;thu;96;5;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+36;admin.;married;university.degree;no;yes;no;cellular;aug;thu;165;2;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+52;admin.;married;basic.9y;no;yes;no;cellular;aug;thu;82;6;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+41;technician;divorced;professional.course;no;yes;yes;cellular;aug;thu;100;2;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+34;technician;married;university.degree;no;unknown;unknown;cellular;aug;thu;81;2;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+31;admin.;married;university.degree;no;no;no;cellular;aug;thu;180;2;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+45;admin.;married;unknown;unknown;no;no;cellular;aug;thu;54;4;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+35;management;married;university.degree;no;yes;no;cellular;aug;thu;108;4;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+50;admin.;divorced;university.degree;no;no;no;cellular;aug;thu;84;11;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+42;management;married;university.degree;no;yes;no;cellular;aug;thu;161;2;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+33;services;married;university.degree;unknown;yes;no;cellular;aug;thu;198;3;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+40;admin.;married;university.degree;no;no;no;cellular;aug;thu;262;4;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+50;unemployed;married;basic.9y;unknown;no;no;cellular;aug;thu;74;4;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+37;admin.;single;university.degree;no;no;no;cellular;aug;thu;72;2;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+31;admin.;married;university.degree;no;no;no;cellular;aug;thu;23;8;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+32;technician;married;professional.course;unknown;yes;no;cellular;aug;thu;109;6;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+35;admin.;married;university.degree;no;yes;yes;cellular;aug;thu;125;7;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+32;admin.;single;university.degree;no;yes;no;cellular;aug;thu;12;15;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+41;admin.;married;university.degree;no;yes;no;cellular;aug;thu;12;10;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+37;technician;single;professional.course;no;yes;no;cellular;aug;thu;19;12;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+31;admin.;single;university.degree;no;yes;no;cellular;aug;thu;87;6;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+59;retired;married;university.degree;no;yes;no;cellular;aug;thu;17;18;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+33;services;married;professional.course;no;yes;no;cellular;aug;thu;56;1;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+33;technician;married;professional.course;no;no;no;cellular;aug;thu;80;3;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+31;admin.;married;university.degree;no;yes;no;cellular;aug;thu;80;1;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+37;admin.;single;university.degree;no;no;no;cellular;aug;thu;105;1;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+46;housemaid;married;basic.4y;unknown;yes;no;cellular;aug;thu;75;1;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+46;technician;married;professional.course;no;no;no;cellular;aug;thu;81;2;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+40;admin.;divorced;high.school;no;no;no;cellular;aug;thu;46;2;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+43;admin.;married;university.degree;unknown;yes;no;cellular;aug;thu;94;6;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+33;services;married;professional.course;no;yes;no;cellular;aug;thu;147;1;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+38;unknown;married;unknown;no;no;no;cellular;aug;thu;79;4;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+37;technician;single;university.degree;no;yes;yes;cellular;aug;thu;126;1;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+33;services;married;professional.course;no;yes;yes;cellular;aug;thu;331;1;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+46;technician;married;university.degree;no;yes;no;cellular;aug;thu;13;14;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+46;technician;divorced;university.degree;unknown;no;no;cellular;aug;thu;16;18;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+48;admin.;single;university.degree;no;yes;no;cellular;aug;thu;44;1;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+32;technician;single;university.degree;no;yes;no;cellular;aug;thu;271;2;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+36;admin.;married;university.degree;no;yes;no;cellular;aug;thu;86;5;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+50;unemployed;married;basic.9y;unknown;yes;no;telephone;aug;thu;192;1;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+46;admin.;married;high.school;no;unknown;unknown;cellular;aug;thu;180;2;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+58;housemaid;married;basic.9y;no;no;no;cellular;aug;thu;54;1;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+56;admin.;married;university.degree;unknown;yes;no;cellular;aug;thu;95;1;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+57;admin.;divorced;university.degree;unknown;yes;no;cellular;aug;thu;80;1;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+44;technician;married;professional.course;no;no;no;cellular;aug;thu;82;2;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+37;technician;married;university.degree;no;no;no;cellular;aug;thu;716;1;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;yes
+57;management;married;university.degree;no;yes;no;cellular;aug;thu;77;2;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+40;admin.;single;university.degree;no;no;yes;cellular;aug;thu;14;5;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+36;admin.;married;university.degree;no;no;no;cellular;aug;thu;63;1;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+48;services;married;basic.9y;no;no;no;cellular;aug;thu;110;1;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+47;admin.;married;high.school;no;yes;yes;cellular;aug;thu;59;6;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+37;admin.;married;university.degree;unknown;no;yes;cellular;aug;thu;192;1;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+58;self-employed;married;basic.6y;unknown;yes;no;cellular;aug;thu;157;5;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+37;admin.;married;university.degree;unknown;no;no;cellular;aug;thu;535;1;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;yes
+41;admin.;married;university.degree;unknown;yes;no;cellular;aug;thu;15;9;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+37;admin.;married;university.degree;unknown;no;yes;cellular;aug;thu;156;1;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+44;admin.;married;basic.9y;unknown;yes;yes;cellular;aug;thu;452;6;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;yes
+52;technician;divorced;professional.course;no;yes;no;cellular;aug;thu;205;1;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+40;technician;single;professional.course;unknown;yes;no;cellular;aug;thu;302;1;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+34;technician;married;university.degree;no;yes;no;cellular;aug;thu;99;4;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+32;technician;married;university.degree;no;yes;no;cellular;aug;thu;151;2;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+30;technician;single;professional.course;no;yes;no;cellular;aug;thu;56;5;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+49;admin.;married;university.degree;unknown;no;no;cellular;aug;thu;54;2;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+30;technician;married;high.school;no;yes;no;cellular;aug;thu;81;5;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+35;technician;married;university.degree;unknown;no;no;cellular;aug;thu;88;5;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+48;admin.;divorced;university.degree;no;yes;no;cellular;aug;thu;122;6;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+37;technician;married;university.degree;no;yes;yes;cellular;aug;thu;180;6;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+35;admin.;married;university.degree;no;yes;no;cellular;aug;thu;82;4;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+40;technician;divorced;professional.course;no;no;yes;cellular;aug;thu;49;22;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+29;management;single;university.degree;no;yes;no;cellular;aug;thu;82;2;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+37;admin.;single;university.degree;no;yes;yes;cellular;aug;thu;71;4;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+54;management;married;university.degree;no;yes;yes;cellular;aug;thu;121;11;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+30;technician;married;university.degree;no;no;no;cellular;aug;thu;66;2;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+53;technician;married;professional.course;unknown;yes;no;cellular;aug;thu;70;4;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+45;admin.;married;unknown;unknown;yes;yes;cellular;aug;thu;105;3;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+41;admin.;married;university.degree;no;no;no;cellular;aug;thu;12;13;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+47;technician;married;university.degree;no;yes;no;cellular;aug;thu;13;8;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+57;retired;divorced;university.degree;unknown;no;no;cellular;aug;thu;327;5;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+38;unknown;married;unknown;no;yes;no;cellular;aug;thu;44;3;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+32;technician;married;professional.course;no;yes;no;cellular;aug;thu;183;7;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+46;admin.;married;high.school;no;yes;no;cellular;aug;thu;82;3;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+32;unemployed;married;university.degree;no;no;no;cellular;aug;thu;72;2;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+46;services;married;basic.9y;unknown;no;no;cellular;aug;thu;70;6;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+50;housemaid;married;basic.9y;no;yes;no;cellular;aug;thu;20;12;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+57;technician;married;university.degree;unknown;no;no;cellular;aug;thu;23;7;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+30;admin.;single;university.degree;no;no;no;cellular;aug;thu;117;5;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+35;admin.;married;university.degree;no;yes;no;cellular;aug;thu;28;10;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+50;admin.;married;university.degree;no;yes;no;cellular;aug;thu;203;2;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+53;housemaid;married;basic.4y;unknown;yes;no;telephone;aug;thu;51;7;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+31;unemployed;married;university.degree;no;yes;no;cellular;aug;thu;22;4;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+30;technician;single;university.degree;no;yes;no;cellular;aug;thu;31;17;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+46;admin.;married;high.school;no;no;no;cellular;aug;thu;16;17;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+42;housemaid;married;university.degree;no;yes;yes;cellular;aug;thu;2372;3;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;yes
+39;admin.;married;university.degree;no;yes;no;cellular;aug;thu;86;2;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+30;management;married;university.degree;no;no;yes;cellular;aug;thu;308;3;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+46;technician;divorced;professional.course;no;no;no;cellular;aug;thu;93;15;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+57;management;married;university.degree;no;yes;no;cellular;aug;thu;203;17;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+41;technician;divorced;professional.course;no;yes;no;cellular;aug;thu;68;4;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+41;admin.;married;university.degree;no;yes;no;cellular;aug;thu;19;9;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+31;admin.;single;university.degree;no;yes;no;cellular;aug;thu;98;8;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+33;technician;single;university.degree;no;yes;no;cellular;aug;thu;9;14;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+54;management;married;university.degree;no;no;no;cellular;aug;thu;11;21;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+58;self-employed;married;basic.6y;unknown;yes;no;cellular;aug;thu;79;8;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+47;admin.;married;high.school;unknown;no;no;cellular;aug;thu;144;8;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+41;self-employed;married;basic.6y;no;yes;no;telephone;aug;thu;85;15;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+38;admin.;married;university.degree;no;no;no;cellular;aug;thu;1126;3;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;yes
+58;retired;married;university.degree;unknown;no;no;cellular;aug;thu;17;11;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+30;technician;single;professional.course;no;yes;no;cellular;aug;thu;16;12;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+39;admin.;single;university.degree;no;yes;no;cellular;aug;thu;276;3;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+31;admin.;single;university.degree;no;no;no;telephone;aug;thu;146;10;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+48;admin.;single;university.degree;no;no;no;cellular;aug;thu;183;4;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+58;retired;married;university.degree;unknown;no;no;cellular;aug;thu;156;5;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+31;admin.;married;university.degree;no;yes;no;cellular;aug;thu;1037;4;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+47;admin.;divorced;university.degree;no;yes;no;cellular;aug;thu;507;4;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+44;admin.;married;basic.9y;unknown;yes;yes;cellular;aug;thu;18;10;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+38;unknown;married;unknown;no;yes;no;cellular;aug;thu;27;10;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+37;technician;single;professional.course;no;yes;no;cellular;aug;thu;17;8;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+34;admin.;married;university.degree;no;yes;yes;telephone;aug;thu;19;10;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+32;technician;married;university.degree;no;no;no;cellular;aug;thu;12;8;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+35;admin.;married;university.degree;no;no;no;cellular;aug;thu;32;5;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+42;housemaid;married;university.degree;no;unknown;unknown;telephone;aug;thu;12;9;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+45;admin.;married;unknown;unknown;no;no;cellular;aug;thu;7;14;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+42;management;married;university.degree;no;yes;no;cellular;aug;thu;715;4;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+30;management;married;university.degree;no;no;no;cellular;aug;thu;56;4;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+32;technician;single;university.degree;no;yes;yes;cellular;aug;thu;195;3;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+50;admin.;married;high.school;no;yes;yes;cellular;aug;thu;95;4;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+32;technician;single;university.degree;no;no;no;cellular;aug;thu;83;3;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+32;admin.;married;university.degree;no;yes;no;cellular;aug;thu;66;8;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+34;technician;married;university.degree;no;no;no;cellular;aug;thu;8;8;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+50;blue-collar;married;basic.9y;no;yes;yes;cellular;aug;thu;46;5;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+38;admin.;married;university.degree;no;no;no;cellular;aug;thu;25;11;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+48;blue-collar;married;basic.9y;no;yes;yes;cellular;aug;thu;85;2;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+39;technician;married;university.degree;unknown;yes;no;cellular;aug;thu;76;1;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+45;management;married;university.degree;no;yes;no;cellular;aug;thu;26;15;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+31;technician;single;university.degree;no;yes;no;cellular;aug;thu;958;5;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+39;technician;married;university.degree;unknown;yes;no;cellular;aug;thu;88;18;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+29;admin.;single;university.degree;no;yes;no;cellular;aug;thu;20;20;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+30;admin.;single;university.degree;no;yes;yes;telephone;aug;thu;50;9;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+30;admin.;married;university.degree;no;no;no;cellular;aug;thu;45;17;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+35;technician;single;university.degree;no;yes;no;cellular;aug;thu;18;17;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+43;technician;divorced;high.school;unknown;yes;no;cellular;aug;thu;248;1;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+33;admin.;divorced;university.degree;no;no;no;cellular;aug;thu;49;1;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+45;services;married;professional.course;no;yes;no;cellular;aug;thu;16;11;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+40;technician;married;professional.course;no;yes;no;cellular;aug;thu;258;6;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+48;blue-collar;married;basic.9y;no;no;no;cellular;aug;thu;13;14;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+39;technician;married;university.degree;unknown;no;no;cellular;aug;thu;64;2;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+35;technician;single;university.degree;no;no;no;cellular;aug;thu;104;1;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+39;technician;divorced;professional.course;no;yes;no;cellular;aug;thu;23;17;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+35;technician;married;university.degree;no;yes;no;cellular;aug;thu;35;10;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+55;unknown;married;unknown;unknown;yes;no;cellular;aug;thu;16;16;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+53;technician;married;professional.course;unknown;yes;no;cellular;aug;thu;158;8;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+56;blue-collar;married;high.school;no;yes;no;cellular;aug;thu;69;11;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+45;admin.;married;university.degree;no;yes;no;cellular;aug;thu;77;9;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+45;services;married;professional.course;no;yes;yes;cellular;aug;thu;65;4;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+45;technician;divorced;professional.course;no;no;no;cellular;aug;thu;76;1;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+52;technician;married;professional.course;unknown;yes;no;cellular;aug;thu;31;9;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+39;technician;divorced;professional.course;no;yes;no;cellular;aug;thu;97;2;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+37;technician;married;professional.course;no;no;no;cellular;aug;thu;140;8;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+53;self-employed;married;university.degree;no;no;no;cellular;aug;thu;131;1;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+53;self-employed;married;university.degree;no;yes;no;cellular;aug;thu;171;1;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+60;admin.;married;basic.9y;no;no;no;cellular;aug;thu;162;1;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+33;admin.;single;university.degree;no;yes;no;cellular;aug;thu;289;1;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+50;management;married;university.degree;no;yes;no;cellular;aug;thu;77;2;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+33;technician;single;university.degree;no;no;no;cellular;aug;thu;68;9;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+48;technician;married;university.degree;no;no;no;cellular;aug;thu;42;7;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+29;admin.;single;university.degree;no;no;no;cellular;aug;thu;142;4;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+31;admin.;married;university.degree;no;yes;yes;cellular;aug;thu;12;5;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+33;admin.;single;university.degree;no;no;no;cellular;aug;thu;402;1;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+29;admin.;single;university.degree;no;yes;no;cellular;aug;thu;13;11;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+30;technician;single;high.school;no;yes;no;cellular;aug;thu;77;12;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+30;admin.;divorced;university.degree;no;yes;no;cellular;aug;thu;35;10;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+53;management;married;university.degree;no;no;no;cellular;aug;thu;88;4;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+59;retired;married;university.degree;no;yes;no;cellular;aug;thu;50;4;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+37;admin.;married;university.degree;no;yes;no;cellular;aug;thu;54;5;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+31;technician;married;professional.course;no;no;no;cellular;aug;thu;66;10;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+32;self-employed;married;high.school;no;yes;no;cellular;aug;thu;29;9;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+60;admin.;married;basic.9y;no;yes;no;cellular;aug;thu;259;1;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+30;admin.;single;university.degree;no;no;no;cellular;aug;thu;165;2;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+33;technician;single;professional.course;no;yes;no;cellular;aug;thu;74;2;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+33;admin.;single;university.degree;no;yes;yes;cellular;aug;thu;90;1;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+33;admin.;single;university.degree;no;yes;no;telephone;aug;thu;158;1;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+30;technician;married;professional.course;no;yes;yes;cellular;aug;thu;22;5;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+33;admin.;single;university.degree;no;yes;yes;cellular;aug;thu;44;1;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+35;services;married;university.degree;no;yes;no;cellular;aug;thu;122;1;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+53;technician;married;professional.course;unknown;yes;no;cellular;aug;thu;43;1;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+41;management;married;university.degree;unknown;yes;no;cellular;aug;thu;172;1;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+33;admin.;single;university.degree;no;yes;no;telephone;aug;thu;46;2;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+31;admin.;single;university.degree;no;yes;yes;cellular;aug;thu;140;3;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+32;admin.;single;university.degree;no;yes;no;cellular;aug;thu;59;9;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+35;technician;single;university.degree;no;no;no;cellular;aug;thu;26;17;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+59;retired;married;university.degree;no;yes;no;cellular;aug;thu;77;4;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+36;admin.;married;university.degree;no;yes;no;cellular;aug;thu;45;8;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+30;admin.;divorced;university.degree;no;no;no;cellular;aug;thu;103;7;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+44;blue-collar;married;unknown;unknown;yes;no;cellular;aug;thu;68;2;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+49;services;divorced;high.school;no;yes;no;cellular;aug;thu;99;17;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+36;admin.;divorced;university.degree;no;yes;no;cellular;aug;thu;270;10;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+53;technician;divorced;professional.course;no;no;yes;cellular;aug;thu;74;8;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+44;technician;married;university.degree;no;no;no;cellular;aug;thu;214;2;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+59;admin.;married;high.school;unknown;yes;no;cellular;aug;thu;147;2;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+44;admin.;married;university.degree;no;yes;no;cellular;aug;thu;460;4;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+34;admin.;married;university.degree;unknown;yes;no;cellular;aug;thu;114;5;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+31;admin.;single;university.degree;no;yes;yes;cellular;aug;thu;95;7;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+48;blue-collar;married;basic.9y;no;yes;no;cellular;aug;thu;602;3;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+30;admin.;married;university.degree;no;yes;no;cellular;aug;thu;13;23;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+35;management;married;university.degree;no;no;no;cellular;aug;thu;9;18;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+45;admin.;married;high.school;no;no;no;cellular;aug;thu;52;5;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+40;technician;married;professional.course;no;yes;no;cellular;aug;thu;142;8;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+33;unemployed;single;university.degree;no;no;no;cellular;aug;thu;126;2;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+51;blue-collar;married;professional.course;no;no;yes;cellular;aug;thu;17;5;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+50;admin.;married;basic.9y;no;yes;no;cellular;aug;thu;15;5;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+55;blue-collar;married;basic.4y;no;yes;yes;cellular;aug;thu;21;4;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+41;technician;married;high.school;no;no;no;cellular;aug;thu;8;4;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+53;self-employed;married;university.degree;no;yes;yes;telephone;aug;thu;48;2;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+55;unknown;married;unknown;unknown;yes;no;cellular;aug;thu;60;4;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+34;technician;married;professional.course;no;yes;no;telephone;aug;thu;51;2;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+32;admin.;single;university.degree;no;yes;no;cellular;aug;thu;70;6;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+50;admin.;married;basic.9y;no;no;no;cellular;aug;thu;23;14;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+39;technician;single;professional.course;unknown;no;no;cellular;aug;thu;199;4;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+31;admin.;divorced;high.school;no;no;no;cellular;aug;thu;12;10;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+35;technician;single;university.degree;no;yes;yes;telephone;aug;thu;37;4;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+39;admin.;single;university.degree;no;yes;yes;cellular;aug;thu;48;8;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+32;management;single;university.degree;no;no;no;cellular;aug;thu;159;1;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+32;management;single;university.degree;no;yes;no;cellular;aug;thu;245;1;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+34;admin.;divorced;university.degree;no;yes;no;cellular;aug;thu;18;14;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+31;admin.;single;university.degree;no;yes;no;cellular;aug;thu;189;11;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+31;admin.;married;university.degree;no;no;no;cellular;aug;thu;36;5;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+60;retired;married;high.school;no;no;no;cellular;aug;thu;56;10;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+43;admin.;single;university.degree;no;yes;no;cellular;aug;thu;62;5;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+45;services;married;professional.course;no;no;no;telephone;aug;thu;64;18;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+32;admin.;married;university.degree;no;no;no;cellular;aug;thu;39;6;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+45;services;married;professional.course;no;yes;yes;cellular;aug;thu;133;9;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+49;services;married;basic.9y;no;yes;no;cellular;aug;thu;32;2;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+49;housemaid;married;basic.4y;unknown;yes;no;cellular;aug;thu;310;5;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+51;admin.;divorced;university.degree;unknown;yes;no;cellular;aug;thu;24;7;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+45;services;married;professional.course;no;yes;no;cellular;aug;thu;125;4;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+30;admin.;single;university.degree;no;yes;no;cellular;aug;thu;1109;11;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;yes
+53;self-employed;married;university.degree;no;yes;no;telephone;aug;thu;161;3;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+32;technician;married;university.degree;no;no;no;cellular;aug;thu;76;11;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+43;admin.;married;university.degree;no;yes;no;cellular;aug;thu;24;13;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+38;technician;divorced;professional.course;no;no;no;cellular;aug;thu;7;8;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+32;management;single;university.degree;no;yes;no;cellular;aug;thu;260;1;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+35;technician;married;high.school;no;yes;yes;cellular;aug;thu;136;1;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+45;admin.;married;university.degree;no;no;no;telephone;aug;thu;58;3;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+43;admin.;married;university.degree;no;yes;no;cellular;aug;thu;433;10;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+40;technician;divorced;professional.course;no;yes;no;cellular;aug;thu;247;1;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+35;technician;married;high.school;no;no;no;cellular;aug;thu;787;1;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+33;unemployed;single;university.degree;no;yes;yes;cellular;aug;thu;201;1;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+33;unemployed;single;university.degree;no;yes;no;cellular;aug;thu;89;2;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+37;technician;single;professional.course;no;no;no;cellular;aug;thu;19;13;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+29;admin.;single;university.degree;no;no;no;cellular;aug;thu;15;9;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+36;admin.;single;university.degree;no;yes;no;cellular;aug;thu;55;1;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+31;technician;married;professional.course;no;yes;no;cellular;aug;thu;58;1;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+58;admin.;divorced;university.degree;no;yes;no;telephone;aug;thu;688;6;999;0;nonexistent;1.4;93.444;-36.1;4.962;5228.1;no
+50;management;married;university.degree;no;no;no;cellular;aug;fri;160;6;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+41;management;married;university.degree;no;yes;no;cellular;aug;fri;193;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+34;technician;divorced;professional.course;no;yes;no;cellular;aug;fri;207;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+36;admin.;single;university.degree;no;yes;no;cellular;aug;fri;106;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+51;admin.;divorced;university.degree;unknown;no;no;cellular;aug;fri;80;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+55;admin.;married;basic.9y;unknown;yes;no;cellular;aug;fri;42;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+34;technician;married;university.degree;no;yes;yes;cellular;aug;fri;65;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+51;blue-collar;married;basic.9y;unknown;no;no;cellular;aug;fri;70;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+45;admin.;married;high.school;no;yes;no;cellular;aug;fri;45;8;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+53;entrepreneur;married;basic.4y;unknown;yes;no;cellular;aug;fri;150;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+37;technician;married;professional.course;no;yes;no;cellular;aug;fri;92;7;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+41;admin.;married;university.degree;no;yes;no;cellular;aug;fri;47;13;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+53;self-employed;married;university.degree;no;no;no;cellular;aug;fri;59;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+43;admin.;married;university.degree;no;no;yes;cellular;aug;fri;24;9;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;technician;divorced;university.degree;no;yes;no;cellular;aug;fri;56;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+35;technician;single;university.degree;no;yes;no;cellular;aug;fri;105;7;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+40;self-employed;married;university.degree;no;no;no;cellular;aug;fri;144;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+48;blue-collar;married;basic.6y;no;no;no;cellular;aug;fri;85;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;technician;single;university.degree;no;no;no;telephone;aug;fri;57;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;technician;single;professional.course;no;no;no;cellular;aug;fri;71;16;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+29;admin.;single;university.degree;no;no;no;cellular;aug;fri;82;7;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;technician;single;university.degree;no;no;no;cellular;aug;fri;162;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;technician;single;university.degree;no;no;no;cellular;aug;fri;120;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+50;blue-collar;married;basic.4y;unknown;yes;no;cellular;aug;fri;73;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+38;management;divorced;university.degree;no;no;no;telephone;aug;fri;247;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+38;technician;married;professional.course;no;yes;no;cellular;aug;fri;119;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+29;admin.;single;university.degree;no;yes;no;cellular;aug;fri;88;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+49;technician;married;high.school;unknown;no;no;cellular;aug;fri;114;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+37;technician;single;professional.course;no;yes;no;cellular;aug;fri;50;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;self-employed;married;university.degree;no;yes;no;cellular;aug;fri;73;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+38;admin.;married;university.degree;no;yes;yes;cellular;aug;fri;62;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+35;technician;married;high.school;no;unknown;unknown;cellular;aug;fri;171;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;admin.;married;university.degree;no;yes;no;cellular;aug;fri;24;10;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+48;admin.;married;university.degree;unknown;yes;yes;cellular;aug;fri;21;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+40;technician;married;professional.course;no;no;no;cellular;aug;fri;168;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+45;services;married;professional.course;no;unknown;unknown;cellular;aug;fri;133;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;admin.;married;university.degree;no;yes;no;cellular;aug;fri;183;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;technician;single;university.degree;no;no;no;cellular;aug;fri;25;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+45;technician;divorced;professional.course;no;yes;yes;cellular;aug;fri;83;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+29;technician;single;university.degree;no;yes;no;cellular;aug;fri;41;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+29;technician;single;university.degree;no;yes;no;cellular;aug;fri;204;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+48;services;married;basic.6y;unknown;no;no;cellular;aug;fri;164;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+51;blue-collar;married;professional.course;no;no;no;cellular;aug;fri;150;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+40;admin.;divorced;professional.course;no;yes;yes;cellular;aug;fri;90;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+34;technician;married;university.degree;no;yes;no;cellular;aug;fri;643;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+48;services;married;basic.6y;unknown;yes;no;cellular;aug;fri;131;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+42;admin.;divorced;university.degree;no;yes;yes;cellular;aug;fri;153;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+42;admin.;divorced;university.degree;no;yes;no;cellular;aug;fri;40;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+55;admin.;married;university.degree;unknown;no;yes;cellular;aug;fri;80;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+29;admin.;single;university.degree;no;yes;no;cellular;aug;fri;488;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+29;admin.;single;university.degree;no;yes;no;cellular;aug;fri;214;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+37;technician;married;professional.course;no;yes;no;cellular;aug;fri;204;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+36;admin.;single;university.degree;no;no;yes;cellular;aug;fri;69;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+34;technician;married;professional.course;no;yes;no;cellular;aug;fri;36;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+34;technician;married;professional.course;no;no;no;cellular;aug;fri;108;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+45;admin.;married;high.school;no;no;no;cellular;aug;fri;135;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+54;management;married;university.degree;unknown;yes;no;cellular;aug;fri;339;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+34;technician;married;professional.course;no;no;no;cellular;aug;fri;462;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+29;admin.;single;university.degree;no;no;no;cellular;aug;fri;97;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+59;retired;married;university.degree;no;yes;no;cellular;aug;fri;28;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+51;services;married;high.school;no;yes;no;cellular;aug;fri;179;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+38;technician;divorced;professional.course;no;yes;no;cellular;aug;fri;109;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+45;technician;married;professional.course;no;yes;no;cellular;aug;fri;139;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+42;admin.;married;university.degree;no;yes;no;telephone;aug;fri;103;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+55;unknown;married;unknown;unknown;no;no;cellular;aug;fri;105;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+43;admin.;single;university.degree;no;yes;no;cellular;aug;fri;213;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+52;blue-collar;married;basic.9y;no;no;yes;cellular;aug;fri;112;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+39;technician;divorced;high.school;no;yes;no;cellular;aug;fri;255;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+53;technician;married;professional.course;unknown;no;yes;cellular;aug;fri;225;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+52;admin.;married;high.school;no;yes;no;cellular;aug;fri;131;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+55;unknown;married;unknown;unknown;yes;no;cellular;aug;fri;103;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+32;technician;married;university.degree;no;yes;no;cellular;aug;fri;77;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+51;management;married;university.degree;no;no;no;cellular;aug;fri;159;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+38;admin.;married;university.degree;no;no;no;cellular;aug;fri;103;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+49;services;divorced;high.school;no;yes;no;cellular;aug;fri;156;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+42;admin.;married;university.degree;no;no;yes;cellular;aug;fri;81;7;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+52;admin.;married;university.degree;no;no;no;cellular;aug;fri;94;5;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+38;admin.;married;university.degree;no;yes;no;cellular;aug;fri;113;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;admin.;married;university.degree;unknown;yes;yes;cellular;aug;fri;94;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+58;retired;married;high.school;no;yes;no;cellular;aug;fri;35;10;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;admin.;married;university.degree;unknown;no;no;cellular;aug;fri;96;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+55;retired;married;basic.9y;no;yes;no;cellular;aug;fri;96;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+38;admin.;married;university.degree;no;yes;no;cellular;aug;fri;345;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+29;technician;single;professional.course;no;no;no;cellular;aug;fri;245;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+38;technician;divorced;professional.course;no;yes;no;cellular;aug;fri;79;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;admin.;married;university.degree;unknown;yes;yes;cellular;aug;fri;128;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;admin.;married;university.degree;unknown;no;no;cellular;aug;fri;204;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;admin.;married;university.degree;unknown;yes;no;cellular;aug;fri;156;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+32;technician;married;university.degree;no;no;no;cellular;aug;fri;67;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+59;admin.;married;high.school;no;yes;no;cellular;aug;fri;91;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+29;admin.;married;university.degree;no;yes;no;cellular;aug;fri;58;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+35;admin.;married;university.degree;no;no;no;cellular;aug;fri;245;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;admin.;single;university.degree;no;yes;no;cellular;aug;fri;141;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+42;admin.;married;university.degree;no;no;no;cellular;aug;fri;71;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+42;admin.;married;university.degree;no;yes;no;cellular;aug;fri;168;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+42;admin.;married;university.degree;no;unknown;unknown;cellular;aug;fri;235;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+32;admin.;divorced;university.degree;no;unknown;unknown;cellular;aug;fri;136;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+32;admin.;divorced;university.degree;no;no;no;cellular;aug;fri;63;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+44;admin.;married;professional.course;no;yes;no;cellular;aug;fri;122;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+51;admin.;divorced;university.degree;unknown;no;no;cellular;aug;fri;137;6;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+32;admin.;single;university.degree;no;yes;no;telephone;aug;fri;90;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;technician;single;professional.course;no;yes;no;cellular;aug;fri;141;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+32;admin.;single;university.degree;no;unknown;unknown;cellular;aug;fri;107;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;technician;divorced;university.degree;no;no;yes;cellular;aug;fri;180;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+46;technician;married;unknown;no;yes;no;cellular;aug;fri;70;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+34;admin.;married;high.school;unknown;yes;no;cellular;aug;fri;96;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+34;admin.;married;high.school;unknown;yes;no;cellular;aug;fri;398;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+43;technician;married;high.school;no;yes;no;cellular;aug;fri;60;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+45;admin.;married;high.school;no;yes;no;cellular;aug;fri;130;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+32;admin.;single;university.degree;unknown;yes;no;cellular;aug;fri;256;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+41;technician;married;professional.course;no;yes;yes;cellular;aug;fri;264;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+54;services;married;high.school;no;yes;no;cellular;aug;fri;95;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+41;technician;married;professional.course;no;yes;no;cellular;aug;fri;307;9;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+41;technician;married;high.school;no;no;yes;cellular;aug;fri;210;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+42;admin.;divorced;university.degree;no;yes;no;cellular;aug;fri;77;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+41;housemaid;married;basic.4y;no;yes;no;telephone;aug;fri;116;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+45;management;married;university.degree;no;yes;yes;cellular;aug;fri;186;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+37;admin.;married;university.degree;no;no;no;telephone;aug;fri;115;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+44;admin.;married;high.school;unknown;no;no;cellular;aug;fri;93;8;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+49;services;married;unknown;no;no;no;telephone;aug;fri;104;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+32;technician;single;high.school;no;yes;no;cellular;aug;fri;85;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+29;admin.;single;university.degree;no;yes;no;telephone;aug;fri;59;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+39;technician;married;university.degree;unknown;no;no;cellular;aug;fri;1028;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+29;admin.;single;university.degree;no;no;no;cellular;aug;fri;186;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+50;management;married;university.degree;no;no;no;cellular;aug;fri;299;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+45;blue-collar;married;basic.9y;no;yes;no;cellular;aug;fri;161;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+39;technician;married;university.degree;unknown;yes;no;cellular;aug;fri;207;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;technician;single;professional.course;no;yes;no;cellular;aug;fri;91;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+32;admin.;married;university.degree;no;no;no;cellular;aug;fri;133;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+54;services;married;high.school;no;yes;no;cellular;aug;fri;111;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+38;technician;single;university.degree;unknown;yes;no;cellular;aug;fri;239;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;admin.;single;university.degree;no;no;no;cellular;aug;fri;38;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+51;unknown;married;unknown;unknown;yes;no;cellular;aug;fri;165;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+32;entrepreneur;married;university.degree;no;yes;no;cellular;aug;fri;19;9;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;technician;single;professional.course;no;yes;no;cellular;aug;fri;436;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+50;admin.;married;basic.9y;no;unknown;unknown;cellular;aug;fri;49;9;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+38;technician;divorced;professional.course;no;yes;no;cellular;aug;fri;64;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+35;admin.;married;university.degree;no;yes;no;cellular;aug;fri;511;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;admin.;single;university.degree;no;yes;no;cellular;aug;fri;961;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+34;admin.;married;university.degree;no;yes;no;cellular;aug;fri;76;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+41;management;married;university.degree;no;no;no;cellular;aug;fri;124;7;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+41;technician;married;high.school;no;no;no;cellular;aug;fri;66;10;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;unemployed;married;university.degree;no;yes;no;cellular;aug;fri;54;8;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+45;technician;divorced;professional.course;unknown;yes;no;cellular;aug;fri;29;10;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;technician;married;professional.course;no;yes;no;cellular;aug;fri;56;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+32;admin.;single;university.degree;no;yes;yes;cellular;aug;fri;709;7;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+44;technician;single;professional.course;no;yes;no;cellular;aug;fri;95;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+43;technician;married;high.school;no;yes;no;telephone;aug;fri;251;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;unemployed;married;university.degree;no;yes;no;cellular;aug;fri;59;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;admin.;divorced;university.degree;no;yes;no;cellular;aug;fri;398;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+53;self-employed;married;university.degree;no;yes;no;cellular;aug;fri;47;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+38;admin.;married;university.degree;no;no;no;cellular;aug;fri;173;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;admin.;single;university.degree;no;no;no;cellular;aug;fri;69;14;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;admin.;divorced;university.degree;no;yes;no;cellular;aug;fri;77;9;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+53;self-employed;married;university.degree;no;yes;no;cellular;aug;fri;300;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+55;blue-collar;married;basic.4y;no;no;no;cellular;aug;fri;94;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+53;self-employed;married;university.degree;no;no;no;cellular;aug;fri;39;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+40;self-employed;married;university.degree;no;no;no;cellular;aug;fri;81;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+40;admin.;divorced;professional.course;no;yes;no;telephone;aug;fri;18;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+29;technician;single;university.degree;no;no;no;telephone;aug;fri;36;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+60;admin.;married;basic.9y;no;no;no;cellular;aug;fri;24;11;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+50;admin.;single;university.degree;unknown;no;yes;cellular;aug;fri;70;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+49;blue-collar;married;basic.4y;unknown;yes;no;cellular;aug;fri;21;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;admin.;married;university.degree;no;yes;yes;cellular;aug;fri;92;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+59;retired;married;basic.4y;no;yes;no;telephone;aug;fri;162;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+39;technician;married;university.degree;unknown;unknown;unknown;cellular;aug;fri;116;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+59;retired;married;basic.4y;no;yes;no;cellular;aug;fri;94;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;technician;married;professional.course;no;yes;no;telephone;aug;fri;58;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+58;admin.;married;university.degree;no;yes;no;cellular;aug;fri;76;5;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;technician;single;high.school;no;yes;no;cellular;aug;fri;90;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+38;admin.;married;university.degree;no;no;no;cellular;aug;fri;14;9;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+35;technician;married;high.school;no;yes;no;telephone;aug;fri;129;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+32;management;single;university.degree;no;no;no;cellular;aug;fri;157;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;unemployed;single;university.degree;no;yes;no;telephone;aug;fri;145;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+35;technician;divorced;professional.course;unknown;yes;yes;cellular;aug;fri;161;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+48;services;married;high.school;unknown;no;no;cellular;aug;fri;88;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+32;admin.;married;university.degree;no;yes;no;cellular;aug;fri;122;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+35;technician;married;high.school;no;no;no;cellular;aug;fri;133;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+35;technician;married;high.school;no;unknown;unknown;cellular;aug;fri;61;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+51;unknown;married;unknown;unknown;yes;no;cellular;aug;fri;10;5;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+29;admin.;single;university.degree;no;yes;yes;cellular;aug;fri;493;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+47;admin.;married;university.degree;no;no;no;cellular;aug;fri;451;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+51;admin.;divorced;university.degree;unknown;no;no;telephone;aug;fri;86;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+34;technician;married;university.degree;no;yes;no;cellular;aug;fri;168;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+29;technician;married;professional.course;no;no;yes;cellular;aug;fri;370;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+35;management;married;university.degree;no;yes;no;cellular;aug;fri;93;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+30;admin.;divorced;university.degree;no;yes;yes;cellular;aug;fri;201;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+51;admin.;divorced;university.degree;unknown;no;no;cellular;aug;fri;59;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+52;blue-collar;married;basic.9y;no;no;no;cellular;aug;fri;85;8;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+29;admin.;single;university.degree;no;yes;no;cellular;aug;fri;301;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+60;admin.;married;basic.9y;no;yes;no;cellular;aug;fri;60;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+45;admin.;married;university.degree;no;no;no;cellular;aug;fri;27;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+38;admin.;married;university.degree;no;yes;no;telephone;aug;fri;20;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+53;management;married;university.degree;no;yes;yes;telephone;aug;fri;81;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+53;management;married;university.degree;no;no;no;telephone;aug;fri;74;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;unemployed;married;university.degree;no;yes;no;cellular;aug;fri;53;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;admin.;single;university.degree;no;no;no;cellular;aug;fri;35;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+35;technician;divorced;high.school;unknown;yes;no;telephone;aug;fri;117;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+50;admin.;married;basic.9y;no;no;no;cellular;aug;fri;215;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;admin.;married;university.degree;no;yes;no;telephone;aug;fri;43;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+38;technician;divorced;professional.course;no;yes;no;cellular;aug;fri;73;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+41;admin.;married;university.degree;no;no;no;cellular;aug;fri;106;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;admin.;married;university.degree;no;no;no;telephone;aug;fri;120;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+41;admin.;married;university.degree;no;no;no;telephone;aug;fri;51;1;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+48;blue-collar;married;basic.4y;no;yes;no;cellular;aug;fri;669;6;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+45;technician;married;professional.course;no;no;yes;cellular;aug;fri;46;5;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+33;admin.;married;university.degree;no;no;no;cellular;aug;fri;127;5;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+39;housemaid;married;basic.4y;unknown;yes;no;telephone;aug;fri;158;4;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+45;technician;married;professional.course;no;no;no;cellular;aug;fri;17;10;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+58;retired;married;basic.4y;no;yes;no;cellular;aug;fri;68;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+45;technician;married;professional.course;no;yes;yes;cellular;aug;fri;215;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+41;admin.;married;university.degree;no;yes;no;telephone;aug;fri;63;9;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+31;technician;single;professional.course;unknown;yes;yes;cellular;aug;fri;27;7;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+59;retired;married;unknown;no;yes;yes;cellular;aug;fri;117;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+51;self-employed;married;high.school;no;yes;no;cellular;aug;fri;8;6;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+41;admin.;married;university.degree;no;yes;no;cellular;aug;fri;6;5;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+60;admin.;married;university.degree;no;no;no;cellular;aug;fri;515;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+59;retired;married;unknown;no;no;yes;cellular;aug;fri;88;2;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+58;retired;married;basic.4y;no;yes;yes;cellular;aug;fri;89;3;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+55;technician;married;professional.course;no;yes;no;telephone;aug;fri;77;7;999;0;nonexistent;1.4;93.444;-36.1;4.963;5228.1;no
+44;admin.;married;high.school;no;yes;no;telephone;oct;fri;159;1;999;0;nonexistent;-0.1;93.798;-40.4;5.045;5195.8;no
+42;admin.;married;high.school;no;yes;yes;telephone;oct;fri;103;1;999;0;nonexistent;-0.1;93.798;-40.4;5.045;5195.8;yes
+39;blue-collar;married;basic.9y;no;no;no;telephone;oct;fri;270;1;999;0;nonexistent;-0.1;93.798;-40.4;5.045;5195.8;yes
+56;unknown;married;unknown;no;no;no;telephone;oct;fri;235;1;999;0;nonexistent;-0.1;93.798;-40.4;5.045;5195.8;yes
+30;entrepreneur;married;university.degree;no;no;no;telephone;oct;fri;223;1;999;0;nonexistent;-0.1;93.798;-40.4;5.045;5195.8;yes
+43;technician;single;professional.course;no;no;no;telephone;oct;fri;147;1;999;0;nonexistent;-0.1;93.798;-40.4;5.045;5195.8;no
+27;self-employed;single;university.degree;no;no;no;telephone;oct;fri;24;1;999;0;nonexistent;-0.1;93.798;-40.4;5.045;5195.8;no
+46;admin.;divorced;high.school;no;yes;no;telephone;oct;fri;3253;1;999;0;nonexistent;-0.1;93.798;-40.4;5.045;5195.8;no
+42;self-employed;married;basic.4y;no;no;no;telephone;oct;fri;478;1;999;0;nonexistent;-0.1;93.798;-40.4;5.045;5195.8;yes
+52;technician;married;professional.course;no;yes;yes;telephone;oct;mon;164;1;999;0;nonexistent;-0.1;93.798;-40.4;5.0;5195.8;no
+35;management;married;university.degree;no;yes;no;telephone;oct;mon;309;1;999;0;nonexistent;-0.1;93.798;-40.4;5.0;5195.8;no
+35;entrepreneur;married;university.degree;no;yes;yes;telephone;oct;mon;2429;1;999;0;nonexistent;-0.1;93.798;-40.4;5.0;5195.8;no
+48;admin.;married;high.school;no;no;no;telephone;oct;mon;312;1;999;0;nonexistent;-0.1;93.798;-40.4;5.0;5195.8;yes
+41;technician;divorced;professional.course;no;unknown;unknown;telephone;oct;mon;73;1;999;0;nonexistent;-0.1;93.798;-40.4;5.0;5195.8;no
+30;admin.;single;university.degree;no;yes;yes;telephone;oct;mon;718;1;999;0;nonexistent;-0.1;93.798;-40.4;5.0;5195.8;yes
+39;technician;divorced;university.degree;no;no;yes;telephone;oct;mon;2016;1;999;0;nonexistent;-0.1;93.798;-40.4;5.0;5195.8;yes
+38;blue-collar;single;unknown;no;yes;no;telephone;oct;tue;39;1;999;1;failure;-0.1;93.798;-40.4;4.968;5195.8;no
+44;admin.;divorced;high.school;no;yes;no;telephone;oct;tue;294;1;999;0;nonexistent;-0.1;93.798;-40.4;4.968;5195.8;yes
+59;admin.;married;university.degree;no;no;no;telephone;oct;tue;85;1;999;0;nonexistent;-0.1;93.798;-40.4;4.968;5195.8;yes
+33;housemaid;married;high.school;no;no;no;telephone;oct;tue;37;1;999;0;nonexistent;-0.1;93.798;-40.4;4.968;5195.8;yes
+32;admin.;married;high.school;no;no;no;telephone;oct;tue;101;1;999;0;nonexistent;-0.1;93.798;-40.4;4.968;5195.8;yes
+59;blue-collar;married;professional.course;no;no;no;telephone;oct;tue;19;1;999;0;nonexistent;-0.1;93.798;-40.4;4.968;5195.8;no
+40;services;married;high.school;no;yes;no;telephone;oct;tue;144;1;999;1;failure;-0.1;93.798;-40.4;4.968;5195.8;yes
+35;blue-collar;married;basic.9y;no;yes;no;telephone;oct;tue;4;1;999;0;nonexistent;-0.1;93.798;-40.4;4.968;5195.8;no
+56;blue-collar;married;unknown;no;yes;no;telephone;oct;tue;54;1;999;0;nonexistent;-0.1;93.798;-40.4;4.968;5195.8;no
+27;student;single;high.school;no;no;no;telephone;oct;tue;187;1;999;0;nonexistent;-0.1;93.798;-40.4;4.968;5195.8;yes
+41;admin.;single;high.school;no;no;no;telephone;oct;tue;49;1;999;0;nonexistent;-0.1;93.798;-40.4;4.968;5195.8;no
+30;technician;single;university.degree;no;no;no;telephone;oct;wed;676;1;999;0;nonexistent;-0.1;93.798;-40.4;4.936;5195.8;yes
+36;technician;married;high.school;no;no;no;telephone;oct;wed;157;1;999;0;nonexistent;-0.1;93.798;-40.4;4.936;5195.8;yes
+56;technician;married;professional.course;no;no;no;telephone;oct;wed;73;1;999;0;nonexistent;-0.1;93.798;-40.4;4.936;5195.8;no
+43;self-employed;married;high.school;no;yes;no;telephone;oct;wed;181;1;999;0;nonexistent;-0.1;93.798;-40.4;4.936;5195.8;yes
+48;admin.;married;university.degree;no;no;no;telephone;oct;wed;98;1;999;0;nonexistent;-0.1;93.798;-40.4;4.936;5195.8;yes
+37;admin.;single;high.school;no;yes;no;telephone;oct;wed;313;1;999;0;nonexistent;-0.1;93.798;-40.4;4.936;5195.8;yes
+36;services;married;high.school;no;yes;no;telephone;oct;thu;41;1;999;0;nonexistent;-0.1;93.798;-40.4;4.921;5195.8;no
+25;services;single;high.school;no;yes;no;telephone;oct;thu;301;1;999;0;nonexistent;-0.1;93.798;-40.4;4.921;5195.8;yes
+39;technician;married;professional.course;no;no;no;telephone;oct;thu;171;1;999;0;nonexistent;-0.1;93.798;-40.4;4.921;5195.8;yes
+39;blue-collar;married;basic.9y;no;yes;no;telephone;oct;fri;112;1;999;0;nonexistent;-0.1;93.798;-40.4;4.918;5195.8;yes
+58;retired;married;university.degree;no;yes;no;telephone;oct;fri;12;1;999;0;nonexistent;-0.1;93.798;-40.4;4.918;5195.8;no
+38;admin.;married;high.school;no;yes;no;telephone;oct;fri;97;1;999;0;nonexistent;-0.1;93.798;-40.4;4.918;5195.8;yes
+26;entrepreneur;married;basic.9y;no;yes;no;telephone;oct;fri;5;1;999;0;nonexistent;-0.1;93.798;-40.4;4.918;5195.8;no
+46;admin.;divorced;university.degree;no;no;no;telephone;oct;mon;376;1;999;0;nonexistent;-0.1;93.798;-40.4;4.912;5195.8;yes
+29;technician;single;professional.course;no;yes;no;telephone;oct;mon;150;1;999;0;nonexistent;-0.1;93.798;-40.4;4.912;5195.8;yes
+32;admin.;married;university.degree;no;no;yes;telephone;oct;mon;27;1;999;0;nonexistent;-0.1;93.798;-40.4;4.912;5195.8;no
+31;admin.;married;university.degree;no;yes;no;telephone;oct;mon;131;1;999;0;nonexistent;-0.1;93.798;-40.4;4.912;5195.8;yes
+49;admin.;single;university.degree;no;yes;no;telephone;oct;mon;51;1;999;0;nonexistent;-0.1;93.798;-40.4;4.912;5195.8;no
+26;admin.;single;university.degree;no;yes;no;telephone;oct;mon;251;1;999;0;nonexistent;-0.1;93.798;-40.4;4.912;5195.8;yes
+27;blue-collar;single;professional.course;no;yes;no;telephone;oct;mon;3284;1;999;0;nonexistent;-0.1;93.798;-40.4;4.912;5195.8;no
+31;admin.;single;university.degree;no;yes;no;telephone;oct;tue;125;1;999;0;nonexistent;-0.1;93.798;-40.4;4.86;5195.8;yes
+43;blue-collar;married;basic.9y;no;no;no;telephone;oct;tue;10;1;999;0;nonexistent;-0.1;93.798;-40.4;4.86;5195.8;no
+45;technician;divorced;high.school;no;yes;no;telephone;oct;tue;141;1;999;0;nonexistent;-0.1;93.798;-40.4;4.86;5195.8;yes
+31;blue-collar;married;basic.6y;no;yes;no;telephone;oct;tue;154;1;999;0;nonexistent;-0.1;93.798;-40.4;4.86;5195.8;yes
+34;admin.;single;university.degree;no;no;no;telephone;oct;tue;135;1;999;0;nonexistent;-0.1;93.798;-40.4;4.86;5195.8;yes
+27;admin.;single;university.degree;no;no;no;telephone;oct;tue;540;1;999;0;nonexistent;-0.1;93.798;-40.4;4.86;5195.8;yes
+33;entrepreneur;married;university.degree;no;yes;no;telephone;oct;tue;454;1;999;0;nonexistent;-0.1;93.798;-40.4;4.86;5195.8;yes
+33;technician;married;professional.course;no;yes;no;telephone;oct;wed;171;1;999;0;nonexistent;-0.1;93.798;-40.4;4.827;5195.8;yes
+49;blue-collar;married;basic.6y;no;no;no;telephone;oct;wed;11;1;999;0;nonexistent;-0.1;93.798;-40.4;4.827;5195.8;no
+30;admin.;married;university.degree;no;no;no;telephone;oct;wed;313;1;999;0;nonexistent;-0.1;93.798;-40.4;4.827;5195.8;yes
+33;admin.;married;university.degree;no;no;no;telephone;oct;wed;167;1;999;0;nonexistent;-0.1;93.798;-40.4;4.827;5195.8;no
+34;blue-collar;single;high.school;no;yes;no;telephone;oct;wed;266;1;999;0;nonexistent;-0.1;93.798;-40.4;4.827;5195.8;yes
+36;self-employed;single;university.degree;no;yes;no;telephone;oct;thu;248;1;999;0;nonexistent;-0.1;93.798;-40.4;4.794;5195.8;yes
+56;technician;married;high.school;no;no;no;telephone;oct;thu;234;1;999;0;nonexistent;-0.1;93.798;-40.4;4.794;5195.8;yes
+31;technician;single;university.degree;no;no;no;telephone;oct;thu;154;1;999;0;nonexistent;-0.1;93.798;-40.4;4.794;5195.8;yes
+34;blue-collar;divorced;high.school;no;yes;no;telephone;oct;thu;160;1;999;0;nonexistent;-0.1;93.798;-40.4;4.794;5195.8;yes
+58;admin.;divorced;high.school;no;no;no;telephone;oct;thu;81;1;999;0;nonexistent;-0.1;93.798;-40.4;4.794;5195.8;no
+38;entrepreneur;married;basic.4y;no;no;no;telephone;oct;fri;227;1;999;0;nonexistent;-0.1;93.798;-40.4;4.76;5195.8;yes
+42;management;married;university.degree;no;no;no;telephone;oct;fri;615;1;999;0;nonexistent;-0.1;93.798;-40.4;4.76;5195.8;yes
+33;admin.;married;university.degree;no;no;no;cellular;oct;fri;18;1;999;0;nonexistent;-0.1;93.798;-40.4;4.76;5195.8;no
+31;admin.;married;university.degree;no;yes;no;telephone;nov;mon;44;1;999;0;nonexistent;-0.1;93.2;-42.0;4.733;5195.8;no
+33;admin.;married;university.degree;no;no;no;telephone;nov;mon;98;1;999;0;nonexistent;-0.1;93.2;-42.0;4.733;5195.8;no
+30;admin.;married;university.degree;no;no;no;cellular;nov;tue;95;1;999;0;nonexistent;-0.1;93.2;-42.0;4.7;5195.8;no
+25;admin.;single;university.degree;no;no;yes;telephone;nov;tue;5;1;999;0;nonexistent;-0.1;93.2;-42.0;4.7;5195.8;no
+32;technician;married;professional.course;no;yes;no;telephone;nov;tue;399;1;999;0;nonexistent;-0.1;93.2;-42.0;4.7;5195.8;yes
+32;management;married;university.degree;no;yes;yes;telephone;nov;tue;15;1;999;0;nonexistent;-0.1;93.2;-42.0;4.7;5195.8;no
+57;retired;divorced;university.degree;no;yes;no;telephone;nov;tue;21;1;999;0;nonexistent;-0.1;93.2;-42.0;4.7;5195.8;no
+48;admin.;married;high.school;no;yes;no;telephone;nov;tue;217;1;999;0;nonexistent;-0.1;93.2;-42.0;4.7;5195.8;no
+30;blue-collar;married;basic.9y;no;no;no;telephone;nov;tue;465;1;999;0;nonexistent;-0.1;93.2;-42.0;4.7;5195.8;yes
+50;entrepreneur;married;university.degree;no;no;no;telephone;nov;tue;209;1;999;0;nonexistent;-0.1;93.2;-42.0;4.7;5195.8;yes
+30;technician;married;professional.course;no;yes;no;telephone;nov;wed;6;1;999;0;nonexistent;-0.1;93.2;-42.0;4.663;5195.8;no
+45;unknown;married;unknown;no;no;no;telephone;nov;wed;169;1;999;0;nonexistent;-0.1;93.2;-42.0;4.663;5195.8;yes
+36;admin.;married;university.degree;no;yes;no;telephone;nov;wed;449;1;999;1;failure;-0.1;93.2;-42.0;4.663;5195.8;no
+57;admin.;divorced;university.degree;no;no;no;telephone;nov;wed;5;1;999;0;nonexistent;-0.1;93.2;-42.0;4.663;5195.8;no
+25;management;married;university.degree;no;yes;no;telephone;nov;wed;268;1;999;0;nonexistent;-0.1;93.2;-42.0;4.663;5195.8;yes
+39;management;married;university.degree;no;yes;no;telephone;nov;wed;204;1;999;0;nonexistent;-0.1;93.2;-42.0;4.663;5195.8;yes
+27;self-employed;married;professional.course;no;no;no;telephone;nov;wed;669;1;999;0;nonexistent;-0.1;93.2;-42.0;4.663;5195.8;yes
+33;blue-collar;married;basic.9y;no;yes;yes;telephone;nov;wed;68;1;999;0;nonexistent;-0.1;93.2;-42.0;4.663;5195.8;no
+47;admin.;married;university.degree;no;no;yes;telephone;nov;wed;23;1;999;0;nonexistent;-0.1;93.2;-42.0;4.663;5195.8;no
+41;admin.;single;high.school;no;yes;no;telephone;nov;thu;234;1;999;0;nonexistent;-0.1;93.2;-42.0;4.592;5195.8;yes
+30;admin.;married;high.school;no;yes;no;telephone;nov;thu;26;1;999;0;nonexistent;-0.1;93.2;-42.0;4.592;5195.8;no
+29;technician;married;university.degree;no;yes;no;cellular;nov;thu;150;1;999;0;nonexistent;-0.1;93.2;-42.0;4.592;5195.8;yes
+32;admin.;married;university.degree;no;no;no;telephone;nov;thu;132;1;999;0;nonexistent;-0.1;93.2;-42.0;4.592;5195.8;no
+31;blue-collar;married;basic.9y;no;yes;no;telephone;nov;fri;115;1;999;0;nonexistent;-0.1;93.2;-42.0;4.474;5195.8;yes
+29;admin.;married;basic.9y;no;yes;no;telephone;nov;fri;453;1;999;0;nonexistent;-0.1;93.2;-42.0;4.474;5195.8;yes
+43;retired;married;high.school;no;yes;no;cellular;nov;fri;83;1;999;0;nonexistent;-0.1;93.2;-42.0;4.474;5195.8;no
+32;admin.;single;university.degree;no;no;no;telephone;nov;mon;1239;1;999;0;nonexistent;-0.1;93.2;-42.0;4.406;5195.8;no
+33;technician;single;professional.course;no;yes;no;telephone;nov;mon;4918;1;999;0;nonexistent;-0.1;93.2;-42.0;4.406;5195.8;no
+27;student;single;university.degree;no;yes;no;telephone;nov;mon;125;1;999;0;nonexistent;-0.1;93.2;-42.0;4.406;5195.8;no
+24;management;single;university.degree;no;no;yes;telephone;nov;mon;107;1;999;0;nonexistent;-0.1;93.2;-42.0;4.406;5195.8;no
+47;student;single;unknown;no;unknown;unknown;telephone;nov;mon;145;1;999;0;nonexistent;-0.1;93.2;-42.0;4.406;5195.8;yes
+46;technician;married;professional.course;no;no;no;telephone;nov;mon;98;1;999;0;nonexistent;-0.1;93.2;-42.0;4.406;5195.8;no
+58;retired;divorced;basic.9y;no;yes;no;telephone;nov;mon;248;1;999;0;nonexistent;-0.1;93.2;-42.0;4.406;5195.8;yes
+47;management;divorced;university.degree;no;no;no;telephone;nov;tue;74;1;999;0;nonexistent;-0.1;93.2;-42.0;4.343;5195.8;no
+43;services;married;basic.6y;no;no;no;telephone;nov;tue;133;1;999;0;nonexistent;-0.1;93.2;-42.0;4.343;5195.8;no
+57;admin.;divorced;university.degree;no;no;no;telephone;nov;tue;119;1;999;0;nonexistent;-0.1;93.2;-42.0;4.343;5195.8;no
+32;unemployed;married;professional.course;no;yes;no;telephone;nov;tue;486;1;999;0;nonexistent;-0.1;93.2;-42.0;4.343;5195.8;yes
+33;services;married;high.school;no;no;no;telephone;nov;tue;158;1;999;0;nonexistent;-0.1;93.2;-42.0;4.343;5195.8;yes
+36;admin.;married;high.school;no;yes;no;telephone;nov;wed;114;1;999;1;failure;-0.1;93.2;-42.0;4.286;5195.8;yes
+58;management;divorced;university.degree;no;no;no;telephone;nov;wed;139;1;999;0;nonexistent;-0.1;93.2;-42.0;4.286;5195.8;yes
+53;technician;divorced;professional.course;no;yes;no;cellular;nov;wed;320;1;999;0;nonexistent;-0.1;93.2;-42.0;4.286;5195.8;no
+37;housemaid;married;university.degree;no;yes;no;telephone;nov;wed;129;1;999;0;nonexistent;-0.1;93.2;-42.0;4.286;5195.8;no
+48;admin.;married;high.school;no;no;no;telephone;nov;wed;24;1;999;0;nonexistent;-0.1;93.2;-42.0;4.286;5195.8;no
+46;blue-collar;married;professional.course;no;yes;no;telephone;nov;wed;238;1;999;0;nonexistent;-0.1;93.2;-42.0;4.286;5195.8;no
+37;admin.;married;university.degree;no;yes;no;telephone;nov;wed;119;1;6;1;success;-0.1;93.2;-42.0;4.286;5195.8;no
+33;admin.;single;university.degree;no;no;no;telephone;nov;thu;109;1;999;0;nonexistent;-0.1;93.2;-42.0;4.245;5195.8;no
+18;student;single;high.school;no;no;no;telephone;nov;thu;75;1;999;0;nonexistent;-0.1;93.2;-42.0;4.245;5195.8;no
+33;self-employed;single;university.degree;no;no;no;telephone;nov;thu;168;1;999;0;nonexistent;-0.1;93.2;-42.0;4.245;5195.8;no
+27;student;single;professional.course;no;no;no;telephone;nov;thu;72;1;999;0;nonexistent;-0.1;93.2;-42.0;4.245;5195.8;no
+29;self-employed;married;university.degree;no;yes;no;telephone;nov;thu;86;1;999;1;failure;-0.1;93.2;-42.0;4.245;5195.8;no
+50;admin.;single;basic.9y;no;unknown;unknown;telephone;nov;thu;45;1;999;0;nonexistent;-0.1;93.2;-42.0;4.245;5195.8;no
+42;admin.;married;professional.course;no;yes;no;telephone;nov;thu;90;1;999;0;nonexistent;-0.1;93.2;-42.0;4.245;5195.8;yes
+40;blue-collar;married;basic.9y;no;unknown;unknown;telephone;nov;thu;160;1;999;0;nonexistent;-0.1;93.2;-42.0;4.245;5195.8;yes
+39;admin.;single;high.school;no;no;no;telephone;nov;thu;51;1;999;0;nonexistent;-0.1;93.2;-42.0;4.245;5195.8;no
+37;admin.;divorced;university.degree;no;no;yes;cellular;nov;fri;132;1;999;0;nonexistent;-0.1;93.2;-42.0;4.223;5195.8;yes
+35;technician;single;professional.course;no;yes;no;telephone;nov;fri;160;1;999;0;nonexistent;-0.1;93.2;-42.0;4.223;5195.8;yes
+35;management;married;university.degree;no;yes;no;telephone;nov;fri;24;1;999;0;nonexistent;-0.1;93.2;-42.0;4.223;5195.8;no
+34;management;married;university.degree;no;no;no;telephone;nov;fri;179;1;999;0;nonexistent;-0.1;93.2;-42.0;4.223;5195.8;yes
+57;management;married;university.degree;no;yes;no;telephone;nov;mon;76;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+34;technician;single;unknown;no;no;no;telephone;nov;mon;101;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+42;technician;divorced;professional.course;no;no;no;cellular;nov;mon;200;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+42;technician;married;professional.course;unknown;no;no;cellular;nov;mon;212;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+56;services;married;high.school;no;no;no;telephone;nov;mon;92;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+56;services;married;high.school;no;no;no;cellular;nov;mon;156;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+40;admin.;married;high.school;no;no;no;cellular;nov;mon;53;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+52;technician;divorced;university.degree;no;no;no;cellular;nov;mon;215;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+50;self-employed;married;university.degree;no;no;no;telephone;nov;mon;238;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+42;management;married;university.degree;no;yes;yes;cellular;nov;mon;128;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+55;blue-collar;divorced;basic.4y;no;no;no;cellular;nov;mon;98;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+41;blue-collar;married;basic.9y;no;yes;no;cellular;nov;mon;238;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+48;self-employed;divorced;high.school;no;yes;no;cellular;nov;mon;82;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+34;admin.;single;high.school;no;no;no;cellular;nov;mon;303;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+48;services;married;unknown;no;no;no;cellular;nov;mon;51;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+57;blue-collar;divorced;basic.9y;no;yes;no;cellular;nov;mon;221;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+32;management;single;university.degree;no;yes;no;cellular;nov;mon;80;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+44;management;married;university.degree;no;yes;no;cellular;nov;mon;130;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+51;technician;married;unknown;no;no;no;cellular;nov;mon;324;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+35;admin.;single;high.school;no;yes;no;cellular;nov;mon;139;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+44;management;married;high.school;no;yes;no;cellular;nov;mon;669;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+52;admin.;married;university.degree;no;yes;yes;cellular;nov;mon;161;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+49;blue-collar;married;high.school;unknown;yes;no;cellular;nov;mon;80;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+49;blue-collar;married;high.school;unknown;yes;no;cellular;nov;mon;108;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+41;entrepreneur;married;university.degree;no;yes;no;cellular;nov;mon;163;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+52;retired;married;university.degree;no;no;no;cellular;nov;mon;147;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+42;services;married;high.school;no;yes;no;cellular;nov;mon;252;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+35;management;married;university.degree;no;yes;no;cellular;nov;mon;113;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+54;management;married;university.degree;no;yes;no;cellular;nov;mon;375;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+35;management;married;university.degree;no;yes;no;cellular;nov;mon;121;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+40;admin.;married;university.degree;no;no;no;telephone;nov;mon;52;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+51;technician;divorced;high.school;no;yes;no;cellular;nov;mon;81;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+58;admin.;divorced;university.degree;no;yes;no;cellular;nov;mon;70;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+37;admin.;single;university.degree;no;yes;no;cellular;nov;mon;64;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+41;blue-collar;married;basic.9y;unknown;yes;no;cellular;nov;mon;176;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+44;retired;single;basic.9y;no;no;no;cellular;nov;mon;115;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+40;technician;married;professional.course;no;no;no;cellular;nov;mon;550;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+45;unemployed;married;basic.9y;no;yes;no;cellular;nov;mon;75;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+36;unemployed;divorced;high.school;no;no;yes;cellular;nov;mon;57;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+36;unemployed;divorced;high.school;no;yes;yes;cellular;nov;mon;68;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+36;unemployed;divorced;high.school;no;no;no;cellular;nov;mon;59;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+36;unemployed;divorced;high.school;no;yes;no;cellular;nov;mon;55;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+38;technician;married;professional.course;no;yes;no;cellular;nov;mon;61;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+38;technician;married;professional.course;no;no;no;cellular;nov;mon;113;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+50;entrepreneur;married;university.degree;no;no;no;cellular;nov;mon;134;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+46;management;married;university.degree;no;yes;no;cellular;nov;mon;123;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+41;admin.;married;high.school;no;no;no;cellular;nov;mon;297;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+41;admin.;married;high.school;no;yes;no;cellular;nov;mon;353;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+40;blue-collar;married;basic.9y;no;yes;no;cellular;nov;mon;146;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+57;admin.;married;university.degree;no;no;yes;cellular;nov;mon;59;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+46;management;divorced;university.degree;no;yes;no;cellular;nov;mon;210;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+50;blue-collar;married;basic.6y;unknown;no;yes;cellular;nov;mon;120;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+34;admin.;married;university.degree;no;yes;no;cellular;nov;mon;92;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+46;management;married;university.degree;no;no;no;cellular;nov;mon;595;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+35;unemployed;married;basic.4y;no;yes;no;cellular;nov;mon;57;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+43;services;married;high.school;no;no;no;cellular;nov;mon;118;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+54;technician;married;professional.course;no;no;no;cellular;nov;mon;78;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+52;admin.;married;basic.4y;no;yes;no;cellular;nov;mon;74;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+46;admin.;married;high.school;unknown;yes;no;cellular;nov;mon;219;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+42;management;married;university.degree;no;no;no;cellular;nov;mon;93;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+37;admin.;single;high.school;unknown;yes;no;cellular;nov;mon;387;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+42;management;married;university.degree;no;yes;no;cellular;nov;mon;178;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+37;admin.;single;high.school;unknown;yes;no;cellular;nov;mon;433;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+51;blue-collar;married;high.school;no;yes;no;cellular;nov;mon;69;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+50;self-employed;married;university.degree;no;no;no;cellular;nov;mon;223;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+54;admin.;married;university.degree;no;no;no;cellular;nov;mon;178;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+43;services;married;basic.4y;no;no;no;cellular;nov;mon;75;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+43;services;married;basic.4y;no;yes;no;cellular;nov;mon;92;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+31;technician;single;university.degree;no;yes;no;cellular;nov;mon;396;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+47;services;divorced;high.school;no;yes;no;cellular;nov;mon;334;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+38;blue-collar;married;unknown;no;no;no;cellular;nov;mon;64;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+55;blue-collar;married;basic.9y;no;no;no;cellular;nov;mon;236;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+55;admin.;single;university.degree;unknown;no;no;cellular;nov;mon;142;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+44;management;married;high.school;no;yes;no;cellular;nov;mon;231;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+39;admin.;married;university.degree;no;yes;no;cellular;nov;mon;44;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+38;blue-collar;married;unknown;no;yes;no;cellular;nov;mon;376;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+39;self-employed;married;university.degree;no;no;no;cellular;nov;mon;85;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+40;management;married;basic.6y;no;no;no;cellular;nov;mon;56;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+55;admin.;single;university.degree;unknown;yes;no;cellular;nov;mon;389;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+53;unemployed;married;university.degree;no;yes;no;cellular;nov;mon;64;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+42;management;married;university.degree;no;no;no;cellular;nov;mon;44;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+53;unemployed;married;university.degree;no;unknown;unknown;cellular;nov;mon;126;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+51;blue-collar;married;high.school;no;no;yes;cellular;nov;mon;65;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+49;admin.;married;basic.9y;no;no;no;cellular;nov;mon;265;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+41;management;married;university.degree;no;yes;no;cellular;nov;mon;49;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+48;blue-collar;divorced;professional.course;no;yes;no;cellular;nov;mon;219;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+41;management;married;university.degree;no;yes;no;cellular;nov;mon;155;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+55;management;married;university.degree;no;yes;yes;cellular;nov;mon;81;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+45;self-employed;divorced;university.degree;no;no;no;cellular;nov;mon;89;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+55;blue-collar;married;basic.9y;no;no;no;cellular;nov;mon;1077;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;yes
+49;blue-collar;divorced;high.school;no;no;no;telephone;nov;mon;192;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+55;blue-collar;married;basic.9y;no;no;no;cellular;nov;mon;1303;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;yes
+48;blue-collar;divorced;professional.course;no;no;no;cellular;nov;mon;564;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;yes
+52;management;divorced;university.degree;unknown;no;no;cellular;nov;mon;79;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+55;admin.;divorced;university.degree;no;yes;no;cellular;nov;mon;288;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+38;technician;married;basic.9y;no;no;no;cellular;nov;mon;99;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+39;management;single;basic.9y;no;no;yes;telephone;nov;mon;33;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+39;management;single;basic.9y;no;yes;no;cellular;nov;mon;125;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+33;blue-collar;single;basic.9y;no;yes;no;cellular;nov;mon;214;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+40;entrepreneur;divorced;university.degree;no;no;no;cellular;nov;mon;121;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+52;services;married;high.school;no;no;no;cellular;nov;mon;40;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+41;admin.;divorced;university.degree;no;no;no;cellular;nov;mon;57;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+48;admin.;single;university.degree;no;no;no;cellular;nov;mon;76;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+40;entrepreneur;divorced;university.degree;no;no;no;cellular;nov;mon;364;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+39;unemployed;married;basic.9y;no;yes;no;cellular;nov;mon;63;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+29;self-employed;single;university.degree;no;no;yes;telephone;nov;mon;378;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+39;unemployed;married;basic.9y;no;yes;no;cellular;nov;mon;151;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+51;entrepreneur;married;university.degree;no;no;no;telephone;nov;mon;81;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+51;entrepreneur;married;university.degree;no;yes;no;cellular;nov;mon;89;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+41;admin.;divorced;university.degree;no;yes;no;cellular;nov;mon;479;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+38;technician;single;professional.course;no;yes;no;cellular;nov;mon;68;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+41;technician;single;professional.course;no;unknown;unknown;cellular;nov;mon;108;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+30;services;married;university.degree;no;yes;no;cellular;nov;mon;135;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+32;unknown;single;basic.9y;no;yes;no;telephone;nov;mon;302;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+31;services;divorced;high.school;no;yes;yes;cellular;nov;mon;90;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+35;admin.;divorced;high.school;no;yes;no;cellular;nov;mon;38;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+54;admin.;married;basic.9y;no;yes;no;cellular;nov;mon;77;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+35;self-employed;married;university.degree;no;no;no;telephone;nov;mon;81;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+42;entrepreneur;married;basic.4y;no;yes;no;cellular;nov;mon;127;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+58;management;married;unknown;no;no;no;cellular;nov;mon;114;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+55;blue-collar;married;basic.4y;unknown;yes;no;cellular;nov;mon;70;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+43;management;married;university.degree;no;no;no;cellular;nov;mon;55;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+37;technician;married;professional.course;no;yes;yes;cellular;nov;mon;79;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+54;admin.;married;basic.9y;no;no;no;cellular;nov;mon;238;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+43;management;married;university.degree;no;no;no;cellular;nov;mon;179;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+55;retired;married;professional.course;no;yes;yes;cellular;nov;mon;120;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+36;management;married;university.degree;no;no;no;cellular;nov;mon;84;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+48;admin.;divorced;high.school;no;yes;no;cellular;nov;mon;309;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+39;housemaid;married;basic.9y;no;yes;no;cellular;nov;mon;130;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+36;technician;married;high.school;no;yes;no;cellular;nov;mon;38;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+40;blue-collar;married;basic.9y;no;yes;no;cellular;nov;mon;70;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+47;retired;married;basic.4y;no;unknown;unknown;telephone;nov;mon;70;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+34;admin.;single;university.degree;no;no;no;cellular;nov;mon;110;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+36;technician;married;high.school;no;yes;no;telephone;nov;mon;206;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+36;entrepreneur;divorced;university.degree;no;yes;no;cellular;nov;mon;160;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+42;housemaid;married;university.degree;no;no;no;cellular;nov;mon;176;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+42;housemaid;married;university.degree;no;yes;no;telephone;nov;mon;85;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+39;unemployed;married;professional.course;no;yes;no;cellular;nov;mon;483;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+36;entrepreneur;divorced;university.degree;no;yes;no;cellular;nov;mon;292;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+31;services;single;high.school;unknown;no;no;cellular;nov;mon;68;2;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+50;blue-collar;married;basic.6y;unknown;yes;no;telephone;nov;mon;105;3;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+39;blue-collar;married;basic.9y;no;yes;no;cellular;nov;mon;107;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+48;management;married;university.degree;no;yes;no;cellular;nov;mon;112;1;4;1;success;-0.1;93.2;-42.0;4.191;5195.8;no
+35;admin.;married;university.degree;unknown;no;no;cellular;nov;mon;70;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+45;admin.;married;high.school;no;yes;no;cellular;nov;mon;58;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+39;admin.;married;university.degree;no;yes;no;cellular;nov;mon;97;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+54;retired;married;professional.course;no;yes;no;cellular;nov;mon;55;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+45;admin.;married;high.school;no;no;no;cellular;nov;mon;150;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+45;admin.;married;high.school;no;yes;no;cellular;nov;mon;149;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+37;entrepreneur;married;university.degree;no;yes;no;cellular;nov;mon;96;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+39;housemaid;married;basic.9y;no;yes;yes;cellular;nov;mon;112;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+57;retired;married;basic.4y;unknown;no;no;telephone;nov;mon;40;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+50;admin.;married;university.degree;no;no;no;cellular;nov;mon;58;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+49;technician;married;professional.course;no;yes;no;cellular;nov;mon;259;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+46;blue-collar;married;basic.9y;no;yes;no;cellular;nov;mon;119;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+40;admin.;married;university.degree;unknown;no;no;telephone;nov;mon;16;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+45;admin.;married;high.school;no;yes;no;cellular;nov;mon;527;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+42;technician;married;professional.course;unknown;yes;no;cellular;nov;mon;94;1;4;1;success;-0.1;93.2;-42.0;4.191;5195.8;no
+30;services;single;high.school;no;no;no;cellular;nov;mon;88;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+42;technician;married;professional.course;no;yes;no;cellular;nov;mon;140;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+42;technician;married;professional.course;no;yes;no;cellular;nov;mon;149;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+42;technician;married;professional.course;no;yes;no;telephone;nov;mon;76;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+44;admin.;single;university.degree;no;yes;no;telephone;nov;mon;124;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+46;unemployed;married;university.degree;no;no;no;cellular;nov;mon;90;2;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+51;management;married;basic.4y;no;no;no;cellular;nov;mon;96;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+42;blue-collar;married;basic.4y;unknown;yes;no;cellular;nov;mon;109;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+45;admin.;married;basic.9y;no;yes;no;cellular;nov;mon;591;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+38;admin.;married;basic.9y;unknown;yes;no;cellular;nov;mon;508;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+38;management;married;university.degree;no;yes;no;telephone;nov;mon;99;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+49;entrepreneur;married;university.degree;no;yes;no;telephone;nov;mon;118;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+40;blue-collar;married;professional.course;no;no;yes;cellular;nov;mon;80;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+49;entrepreneur;married;university.degree;no;yes;no;cellular;nov;mon;165;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+50;technician;married;high.school;no;no;no;cellular;nov;mon;93;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+41;technician;single;professional.course;no;no;no;cellular;nov;mon;64;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+53;blue-collar;married;basic.4y;no;no;no;cellular;nov;mon;545;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+48;admin.;single;university.degree;no;yes;no;cellular;nov;mon;434;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;yes
+51;blue-collar;married;basic.4y;no;yes;no;cellular;nov;mon;346;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+42;entrepreneur;married;high.school;no;yes;no;telephone;nov;mon;164;2;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+39;admin.;married;university.degree;no;yes;no;cellular;nov;mon;407;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+46;technician;married;professional.course;no;yes;no;cellular;nov;mon;61;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+48;admin.;divorced;high.school;no;yes;no;cellular;nov;mon;191;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+46;technician;married;professional.course;no;yes;no;cellular;nov;mon;110;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+54;services;married;high.school;no;yes;no;telephone;nov;mon;56;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+31;self-employed;single;university.degree;no;yes;no;cellular;nov;mon;412;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+54;services;married;high.school;no;no;no;cellular;nov;mon;193;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+44;unemployed;married;basic.9y;no;yes;no;telephone;nov;mon;180;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+51;management;married;university.degree;no;yes;no;cellular;nov;mon;1070;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+45;management;married;university.degree;no;yes;no;cellular;nov;mon;349;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+31;services;divorced;high.school;no;yes;no;cellular;nov;mon;266;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+55;management;married;basic.4y;no;no;no;cellular;nov;mon;330;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+54;management;married;university.degree;no;no;no;cellular;nov;mon;59;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+46;blue-collar;married;basic.9y;no;yes;no;cellular;nov;mon;132;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+53;self-employed;divorced;university.degree;no;yes;no;cellular;nov;mon;125;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+38;technician;married;basic.9y;no;yes;no;telephone;nov;mon;435;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+42;technician;married;professional.course;unknown;yes;no;telephone;nov;mon;1606;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+54;management;married;university.degree;no;yes;no;cellular;nov;mon;216;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+41;unemployed;married;basic.4y;no;yes;no;cellular;nov;mon;59;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+35;management;single;university.degree;no;no;yes;cellular;nov;mon;214;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+46;technician;married;professional.course;no;yes;no;cellular;nov;mon;78;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+45;technician;married;university.degree;no;yes;no;telephone;nov;mon;275;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+36;blue-collar;married;basic.4y;no;yes;no;cellular;nov;mon;279;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+46;technician;married;professional.course;no;no;yes;cellular;nov;mon;173;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+51;admin.;married;high.school;no;yes;no;cellular;nov;mon;89;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+40;blue-collar;married;basic.9y;no;no;no;cellular;nov;mon;215;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+47;management;married;basic.9y;no;no;no;telephone;nov;mon;53;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+40;admin.;married;university.degree;unknown;no;no;cellular;nov;mon;890;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;yes
+52;management;divorced;university.degree;no;yes;no;cellular;nov;mon;161;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+47;management;married;basic.9y;no;no;no;cellular;nov;mon;97;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+45;services;divorced;high.school;no;yes;no;cellular;nov;mon;581;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+46;management;married;basic.6y;no;no;no;cellular;nov;mon;116;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+34;unemployed;married;university.degree;no;yes;no;telephone;nov;mon;155;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+37;technician;single;professional.course;no;yes;no;cellular;nov;mon;70;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+36;entrepreneur;married;high.school;no;no;yes;cellular;nov;mon;41;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+36;entrepreneur;married;high.school;no;yes;no;telephone;nov;mon;104;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+49;technician;married;professional.course;unknown;yes;no;telephone;nov;mon;27;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+52;management;divorced;university.degree;no;no;no;cellular;nov;mon;578;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+52;management;divorced;university.degree;no;yes;no;cellular;nov;mon;534;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+56;management;married;university.degree;no;no;no;cellular;nov;mon;52;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+53;self-employed;married;basic.9y;no;yes;no;cellular;nov;mon;62;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+53;self-employed;married;basic.9y;no;yes;no;cellular;nov;mon;169;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+40;management;married;university.degree;no;yes;yes;cellular;nov;mon;52;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+39;admin.;married;unknown;no;no;no;cellular;nov;mon;66;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+54;entrepreneur;married;basic.4y;unknown;yes;no;cellular;nov;mon;310;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+43;management;married;university.degree;no;no;no;cellular;nov;mon;150;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+58;retired;married;high.school;no;no;no;cellular;nov;mon;34;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+58;retired;married;high.school;no;yes;no;cellular;nov;mon;49;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+31;blue-collar;married;basic.9y;no;no;yes;cellular;nov;mon;213;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+30;services;single;high.school;no;no;no;cellular;nov;mon;104;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+37;admin.;married;university.degree;no;yes;no;cellular;nov;mon;386;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+58;entrepreneur;married;basic.4y;no;yes;no;telephone;nov;mon;73;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+47;admin.;married;university.degree;no;yes;no;cellular;nov;mon;58;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+47;admin.;married;university.degree;no;yes;no;cellular;nov;mon;138;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+38;blue-collar;married;basic.4y;no;yes;no;cellular;nov;mon;64;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+38;blue-collar;married;basic.4y;no;no;no;cellular;nov;mon;112;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+38;blue-collar;married;basic.4y;no;yes;no;cellular;nov;mon;80;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+35;entrepreneur;single;basic.9y;no;yes;no;cellular;nov;mon;42;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+56;management;married;professional.course;no;no;no;cellular;nov;mon;74;2;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+37;admin.;married;high.school;no;no;no;cellular;nov;mon;148;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+44;services;divorced;high.school;no;yes;yes;cellular;nov;mon;164;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+52;entrepreneur;married;basic.9y;no;yes;no;cellular;nov;mon;67;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+52;entrepreneur;married;basic.9y;no;unknown;unknown;telephone;nov;mon;147;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+43;technician;married;professional.course;no;yes;no;cellular;nov;mon;190;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+43;technician;married;professional.course;no;yes;no;cellular;nov;mon;294;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+45;services;divorced;high.school;no;yes;no;cellular;nov;mon;86;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+45;services;divorced;high.school;no;yes;yes;cellular;nov;mon;96;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+51;management;married;unknown;no;no;no;telephone;nov;mon;113;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+37;services;married;basic.6y;unknown;yes;no;cellular;nov;mon;372;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+35;admin.;divorced;high.school;no;no;no;cellular;nov;mon;49;3;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+55;blue-collar;married;basic.4y;unknown;no;yes;cellular;nov;mon;68;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+54;admin.;married;basic.9y;no;no;no;cellular;nov;mon;94;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+42;technician;married;high.school;no;no;no;cellular;nov;mon;103;2;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+39;admin.;married;unknown;no;yes;yes;cellular;nov;mon;60;2;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+31;blue-collar;married;basic.9y;no;yes;yes;cellular;nov;mon;257;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+52;management;divorced;university.degree;no;yes;no;cellular;nov;mon;89;2;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+39;blue-collar;divorced;high.school;no;no;yes;cellular;nov;mon;190;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+36;entrepreneur;married;high.school;no;no;no;cellular;nov;mon;77;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+58;entrepreneur;married;basic.4y;no;no;no;cellular;nov;mon;104;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+42;admin.;married;high.school;no;no;no;cellular;nov;mon;651;2;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;yes
+52;management;married;university.degree;no;yes;no;cellular;nov;mon;68;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+40;admin.;married;university.degree;unknown;yes;yes;cellular;nov;mon;205;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+43;blue-collar;single;basic.4y;no;yes;no;cellular;nov;mon;42;2;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+52;management;married;university.degree;no;yes;yes;cellular;nov;mon;98;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+42;self-employed;single;university.degree;no;yes;no;cellular;nov;mon;73;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+42;admin.;married;unknown;no;no;no;cellular;nov;mon;55;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+50;blue-collar;married;basic.9y;no;yes;yes;cellular;nov;mon;186;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+33;technician;single;university.degree;no;no;no;cellular;nov;mon;69;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+41;blue-collar;married;high.school;unknown;yes;no;cellular;nov;mon;121;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+50;blue-collar;married;basic.9y;no;yes;no;cellular;nov;mon;249;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+50;blue-collar;married;basic.9y;no;no;no;cellular;nov;mon;336;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+45;management;married;basic.9y;no;yes;no;cellular;nov;mon;73;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+37;unemployed;married;high.school;no;no;no;cellular;nov;mon;55;2;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+42;admin.;married;unknown;no;no;no;cellular;nov;mon;657;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+35;blue-collar;married;professional.course;no;yes;no;cellular;nov;mon;345;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+43;management;married;university.degree;no;yes;no;cellular;nov;mon;65;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+57;management;married;university.degree;no;no;no;cellular;nov;mon;62;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+50;entrepreneur;married;university.degree;unknown;yes;no;cellular;nov;mon;77;1;3;1;success;-0.1;93.2;-42.0;4.191;5195.8;no
+50;entrepreneur;married;university.degree;unknown;no;no;cellular;nov;mon;102;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+32;admin.;single;university.degree;no;no;no;cellular;nov;mon;137;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+34;entrepreneur;married;university.degree;unknown;yes;no;cellular;nov;mon;2462;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;yes
+30;services;single;high.school;no;no;no;cellular;nov;mon;213;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+45;blue-collar;married;basic.6y;unknown;yes;no;cellular;nov;mon;696;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;yes
+50;blue-collar;married;basic.9y;no;no;no;cellular;nov;mon;1449;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+45;blue-collar;divorced;basic.9y;unknown;yes;no;cellular;nov;mon;188;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+36;unemployed;married;basic.9y;no;yes;no;cellular;nov;mon;391;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+54;technician;married;university.degree;no;unknown;unknown;cellular;nov;mon;56;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+46;management;divorced;university.degree;no;unknown;unknown;telephone;nov;mon;77;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+32;blue-collar;married;basic.9y;no;yes;no;cellular;nov;mon;160;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+39;blue-collar;married;professional.course;no;no;no;cellular;nov;mon;407;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+36;self-employed;single;university.degree;no;no;no;cellular;nov;mon;406;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+47;admin.;divorced;professional.course;no;no;no;cellular;nov;mon;104;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+31;admin.;single;high.school;no;no;no;cellular;nov;mon;560;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+46;admin.;divorced;high.school;unknown;yes;no;cellular;nov;mon;168;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+54;admin.;married;basic.9y;no;yes;yes;cellular;nov;mon;167;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+45;entrepreneur;married;high.school;no;no;no;cellular;nov;mon;623;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+39;management;married;university.degree;no;no;no;cellular;nov;mon;102;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+39;management;married;university.degree;no;no;no;cellular;nov;mon;71;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+36;management;married;university.degree;no;no;no;cellular;nov;mon;264;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+50;technician;married;professional.course;no;yes;no;cellular;nov;mon;199;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+49;management;married;university.degree;no;no;no;cellular;nov;mon;96;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+52;admin.;divorced;high.school;no;no;no;cellular;nov;mon;529;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+36;admin.;married;high.school;no;no;no;cellular;nov;mon;64;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+46;admin.;married;high.school;no;yes;yes;cellular;nov;mon;165;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+46;admin.;married;high.school;no;no;no;cellular;nov;mon;141;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+33;blue-collar;married;basic.9y;no;yes;yes;cellular;nov;mon;94;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+36;blue-collar;married;basic.9y;unknown;yes;no;cellular;nov;mon;499;3;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+46;technician;married;professional.course;no;no;no;cellular;nov;mon;64;3;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+43;blue-collar;married;high.school;no;yes;no;cellular;nov;mon;107;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+56;management;married;university.degree;no;yes;no;cellular;nov;mon;76;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+38;admin.;single;basic.9y;no;yes;no;cellular;nov;mon;1081;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+36;technician;married;professional.course;no;no;no;cellular;nov;mon;251;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+33;blue-collar;single;basic.9y;no;yes;no;cellular;nov;mon;101;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+46;admin.;married;high.school;no;no;no;cellular;nov;mon;504;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+40;blue-collar;married;basic.9y;no;yes;no;cellular;nov;mon;111;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+42;technician;married;professional.course;no;yes;yes;telephone;nov;mon;215;3;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+46;admin.;married;high.school;no;yes;no;cellular;nov;mon;622;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+40;entrepreneur;divorced;university.degree;no;no;no;cellular;nov;mon;325;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+53;services;married;high.school;no;no;yes;cellular;nov;mon;181;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+53;services;married;high.school;no;no;no;cellular;nov;mon;166;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+34;blue-collar;married;basic.4y;no;no;no;cellular;nov;mon;105;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+34;blue-collar;married;basic.4y;no;yes;no;cellular;nov;mon;54;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+57;admin.;married;university.degree;no;yes;no;cellular;nov;mon;89;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+47;retired;married;high.school;no;yes;no;cellular;nov;mon;240;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+32;admin.;single;high.school;no;yes;no;cellular;nov;mon;92;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+42;admin.;single;high.school;no;yes;no;cellular;nov;mon;124;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+42;admin.;single;high.school;no;yes;no;cellular;nov;mon;86;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+40;blue-collar;married;basic.9y;no;yes;no;cellular;nov;mon;55;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+37;admin.;married;university.degree;no;no;no;cellular;nov;mon;52;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+32;technician;married;university.degree;no;yes;no;cellular;nov;mon;105;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+38;entrepreneur;married;high.school;no;yes;no;cellular;nov;mon;63;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+58;management;divorced;university.degree;no;yes;no;cellular;nov;mon;48;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+40;admin.;single;high.school;unknown;no;yes;telephone;nov;mon;14;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+54;admin.;married;high.school;no;yes;no;cellular;nov;mon;287;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+40;admin.;single;high.school;unknown;yes;no;cellular;nov;mon;120;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+38;technician;single;professional.course;no;yes;no;cellular;nov;mon;253;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+40;admin.;single;high.school;unknown;yes;no;cellular;nov;mon;158;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+29;admin.;married;university.degree;no;no;no;cellular;nov;mon;142;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+42;admin.;married;high.school;no;yes;no;cellular;nov;mon;131;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+46;admin.;married;university.degree;unknown;no;no;cellular;nov;mon;174;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+54;retired;divorced;professional.course;no;no;no;cellular;nov;mon;62;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+50;entrepreneur;married;university.degree;unknown;yes;no;cellular;nov;mon;209;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+53;technician;married;university.degree;no;yes;no;cellular;nov;mon;352;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+42;admin.;married;university.degree;no;no;no;cellular;nov;mon;62;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+40;blue-collar;married;basic.6y;no;no;no;cellular;nov;mon;128;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+42;admin.;married;university.degree;no;yes;no;cellular;nov;mon;120;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+42;admin.;married;high.school;unknown;no;no;cellular;nov;mon;119;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+38;technician;married;professional.course;no;yes;no;cellular;nov;mon;240;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+42;admin.;married;university.degree;no;yes;no;cellular;nov;mon;375;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+31;technician;single;university.degree;no;yes;no;cellular;nov;mon;984;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;yes
+37;management;divorced;unknown;no;no;yes;cellular;nov;mon;74;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+36;blue-collar;married;basic.9y;no;no;yes;cellular;nov;mon;131;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+38;blue-collar;married;basic.4y;no;yes;no;cellular;nov;mon;117;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+46;admin.;married;university.degree;unknown;yes;yes;cellular;nov;mon;947;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;yes
+44;services;divorced;high.school;no;yes;no;cellular;nov;mon;101;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+48;services;divorced;high.school;unknown;yes;no;cellular;nov;mon;90;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+44;management;married;university.degree;no;yes;no;cellular;nov;mon;114;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+33;management;married;university.degree;no;yes;no;cellular;nov;mon;318;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+33;admin.;divorced;university.degree;no;yes;no;cellular;nov;mon;76;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+57;technician;married;professional.course;no;no;no;cellular;nov;mon;168;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+32;blue-collar;married;high.school;no;no;no;cellular;nov;mon;348;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+47;admin.;divorced;university.degree;unknown;no;no;cellular;nov;mon;213;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+36;self-employed;single;university.degree;no;yes;no;cellular;nov;mon;200;2;4;1;success;-0.1;93.2;-42.0;4.191;5195.8;no
+47;management;married;university.degree;no;no;no;cellular;nov;mon;135;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+53;blue-collar;married;basic.9y;no;yes;yes;telephone;nov;mon;44;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+55;technician;single;professional.course;no;yes;no;cellular;nov;mon;165;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+38;technician;married;professional.course;no;yes;no;cellular;nov;mon;70;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+36;unemployed;divorced;high.school;no;no;no;cellular;nov;mon;166;2;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+32;blue-collar;married;high.school;no;yes;no;telephone;nov;mon;943;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;yes
+42;blue-collar;divorced;basic.9y;no;yes;no;cellular;nov;mon;191;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+32;admin.;divorced;high.school;no;yes;no;cellular;nov;mon;134;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+29;admin.;married;high.school;no;yes;yes;cellular;nov;mon;58;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+55;blue-collar;married;basic.9y;no;yes;no;cellular;nov;mon;277;3;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+29;admin.;married;high.school;no;yes;no;cellular;nov;mon;155;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+29;admin.;single;university.degree;no;yes;no;cellular;nov;mon;183;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+45;unemployed;married;basic.9y;no;yes;no;cellular;nov;mon;554;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+33;blue-collar;married;basic.9y;no;no;no;cellular;nov;mon;218;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+48;services;married;basic.4y;unknown;yes;no;cellular;nov;mon;218;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+29;self-employed;single;university.degree;no;yes;no;cellular;nov;mon;51;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+31;self-employed;single;university.degree;no;yes;yes;cellular;nov;mon;182;3;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+52;self-employed;married;university.degree;unknown;no;no;cellular;nov;mon;96;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+52;entrepreneur;single;university.degree;unknown;yes;no;cellular;nov;mon;472;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+35;blue-collar;married;high.school;no;no;no;cellular;nov;mon;540;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;yes
+48;management;married;unknown;no;yes;yes;cellular;nov;mon;323;3;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+39;unemployed;married;professional.course;no;yes;no;cellular;nov;mon;187;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+46;admin.;married;high.school;unknown;no;no;cellular;nov;mon;76;3;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+43;admin.;married;university.degree;no;yes;no;cellular;nov;mon;139;2;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+46;self-employed;married;university.degree;no;yes;no;cellular;nov;mon;581;3;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+41;admin.;married;high.school;no;yes;no;cellular;nov;mon;268;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+31;management;married;university.degree;no;yes;no;cellular;nov;mon;37;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+53;housemaid;married;university.degree;no;no;no;cellular;nov;mon;53;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+44;technician;single;university.degree;no;no;no;cellular;nov;mon;396;3;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+47;management;divorced;university.degree;no;yes;no;cellular;nov;mon;131;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+31;management;married;university.degree;no;no;no;cellular;nov;mon;369;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+32;services;married;basic.4y;no;no;no;cellular;nov;mon;161;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+32;services;married;basic.4y;no;yes;yes;cellular;nov;mon;111;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+39;blue-collar;single;basic.9y;no;yes;no;cellular;nov;mon;78;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+44;admin.;single;high.school;no;no;no;cellular;nov;mon;184;3;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+38;management;divorced;university.degree;no;no;no;cellular;nov;mon;136;2;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+31;technician;single;high.school;no;no;no;cellular;nov;mon;44;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+30;admin.;divorced;university.degree;no;no;no;telephone;nov;mon;48;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+35;self-employed;single;professional.course;no;yes;no;cellular;nov;mon;128;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+35;management;married;university.degree;no;no;no;cellular;nov;mon;146;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+29;blue-collar;married;basic.4y;no;yes;no;cellular;nov;mon;127;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+32;management;married;high.school;no;no;yes;cellular;nov;mon;256;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+39;unemployed;married;university.degree;unknown;yes;no;cellular;nov;mon;74;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+52;services;divorced;high.school;unknown;no;no;cellular;nov;mon;190;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+53;retired;married;basic.4y;unknown;yes;no;cellular;nov;mon;57;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+39;admin.;married;high.school;no;yes;no;cellular;nov;mon;58;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+32;self-employed;single;high.school;no;yes;no;cellular;nov;mon;223;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+46;entrepreneur;married;university.degree;no;unknown;unknown;cellular;nov;mon;254;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+48;entrepreneur;married;university.degree;unknown;yes;no;cellular;nov;mon;50;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+35;technician;married;professional.course;no;yes;no;cellular;nov;mon;115;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+40;blue-collar;married;basic.4y;no;no;yes;cellular;nov;mon;143;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+52;services;divorced;high.school;unknown;yes;no;cellular;nov;mon;734;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+31;self-employed;single;university.degree;no;yes;no;cellular;nov;mon;62;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+35;management;married;basic.9y;no;yes;no;cellular;nov;mon;171;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+48;technician;married;unknown;unknown;no;no;cellular;nov;mon;159;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+34;admin.;married;high.school;no;yes;yes;cellular;nov;mon;56;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+34;admin.;married;high.school;no;no;no;cellular;nov;mon;113;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+31;self-employed;married;university.degree;no;yes;no;telephone;nov;mon;69;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+54;housemaid;single;basic.9y;unknown;no;no;cellular;nov;mon;158;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+31;self-employed;married;university.degree;no;yes;yes;cellular;nov;mon;60;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+56;services;married;high.school;no;yes;no;cellular;nov;mon;578;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+34;admin.;married;high.school;no;yes;no;cellular;nov;mon;355;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+31;self-employed;married;university.degree;no;yes;no;cellular;nov;mon;332;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+45;admin.;married;high.school;no;no;no;cellular;nov;mon;113;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+55;admin.;married;high.school;unknown;yes;no;cellular;nov;mon;147;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+48;technician;married;professional.course;no;yes;no;cellular;nov;mon;52;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+48;technician;married;professional.course;no;no;no;telephone;nov;mon;106;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+45;management;married;university.degree;no;yes;yes;cellular;nov;mon;789;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;yes
+55;admin.;married;high.school;unknown;no;no;cellular;nov;mon;73;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+32;management;single;university.degree;no;yes;yes;cellular;nov;mon;66;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+50;blue-collar;married;basic.6y;no;yes;no;cellular;nov;mon;116;2;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+39;technician;married;professional.course;no;yes;yes;cellular;nov;mon;501;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+55;admin.;divorced;high.school;no;yes;no;cellular;nov;mon;179;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+55;services;married;high.school;no;yes;no;cellular;nov;mon;40;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+40;technician;single;basic.9y;unknown;yes;yes;cellular;nov;mon;99;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+40;technician;single;basic.9y;unknown;yes;yes;cellular;nov;mon;180;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+39;blue-collar;married;basic.9y;no;no;no;cellular;nov;mon;310;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+39;services;married;professional.course;no;no;no;cellular;nov;mon;148;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+36;admin.;married;high.school;no;yes;no;cellular;nov;mon;88;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+53;technician;married;university.degree;no;yes;no;cellular;nov;mon;158;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+42;admin.;married;university.degree;no;yes;no;cellular;nov;mon;65;2;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+42;admin.;divorced;university.degree;no;yes;no;cellular;nov;mon;199;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+46;entrepreneur;married;basic.4y;no;yes;no;cellular;nov;mon;48;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+30;admin.;single;university.degree;no;yes;no;cellular;nov;mon;711;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+46;self-employed;married;basic.9y;unknown;no;no;cellular;nov;mon;48;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+35;admin.;married;university.degree;no;no;no;cellular;nov;mon;747;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+35;admin.;married;university.degree;no;yes;no;cellular;nov;mon;690;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+36;services;married;high.school;no;yes;no;cellular;nov;mon;48;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+35;blue-collar;divorced;high.school;no;no;yes;cellular;nov;mon;159;2;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+30;blue-collar;single;basic.9y;no;yes;no;cellular;nov;mon;563;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+46;self-employed;married;basic.9y;unknown;yes;no;cellular;nov;mon;431;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+42;housemaid;married;university.degree;no;no;no;cellular;nov;mon;90;4;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+32;blue-collar;single;university.degree;no;yes;no;cellular;nov;mon;109;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+42;technician;married;basic.9y;no;no;no;cellular;nov;mon;295;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+34;self-employed;married;university.degree;no;yes;no;cellular;nov;mon;196;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+46;self-employed;married;basic.9y;unknown;no;yes;cellular;nov;mon;836;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+37;entrepreneur;married;university.degree;unknown;no;no;cellular;nov;mon;94;2;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+46;technician;married;high.school;no;yes;no;cellular;nov;mon;171;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+39;management;single;basic.9y;no;yes;no;cellular;nov;mon;590;3;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+38;entrepreneur;married;basic.9y;no;yes;no;cellular;nov;mon;136;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+34;entrepreneur;married;basic.6y;unknown;yes;no;cellular;nov;mon;788;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;yes
+46;technician;married;high.school;no;yes;no;cellular;nov;mon;569;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+42;admin.;divorced;high.school;no;yes;no;cellular;nov;mon;70;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+42;admin.;divorced;high.school;no;yes;no;telephone;nov;mon;124;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+38;entrepreneur;married;basic.9y;no;yes;no;cellular;nov;mon;555;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+44;retired;divorced;professional.course;no;yes;no;cellular;nov;mon;231;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+42;admin.;married;university.degree;no;no;no;cellular;nov;mon;226;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+52;management;married;university.degree;no;yes;yes;cellular;nov;mon;173;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+32;admin.;single;high.school;no;yes;no;cellular;nov;mon;333;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+35;entrepreneur;married;high.school;no;yes;no;cellular;nov;mon;131;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+43;admin.;divorced;high.school;no;no;no;cellular;nov;mon;92;3;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+31;technician;single;university.degree;no;yes;yes;cellular;nov;mon;118;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+58;self-employed;married;university.degree;no;no;no;cellular;nov;mon;224;2;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+37;services;single;basic.9y;no;yes;no;cellular;nov;mon;283;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+51;admin.;married;high.school;no;yes;no;cellular;nov;mon;326;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+40;admin.;single;high.school;unknown;unknown;unknown;cellular;nov;mon;421;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+31;services;single;high.school;unknown;yes;no;cellular;nov;mon;130;3;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+42;admin.;divorced;high.school;no;unknown;unknown;cellular;nov;mon;295;2;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+34;entrepreneur;single;university.degree;no;yes;no;cellular;nov;mon;113;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+35;blue-collar;married;basic.9y;no;yes;no;cellular;nov;mon;101;2;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+49;management;married;high.school;unknown;yes;no;cellular;nov;mon;79;2;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+41;technician;married;basic.6y;no;yes;no;telephone;nov;mon;60;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+48;entrepreneur;married;university.degree;unknown;yes;no;cellular;nov;mon;694;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+46;entrepreneur;married;university.degree;no;yes;yes;cellular;nov;mon;78;2;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+44;entrepreneur;married;professional.course;no;yes;no;telephone;nov;mon;291;3;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+50;technician;married;basic.9y;no;yes;no;telephone;nov;mon;55;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+50;admin.;divorced;university.degree;no;yes;no;telephone;nov;mon;609;2;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+40;blue-collar;married;basic.4y;no;no;no;cellular;nov;mon;1121;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+34;unemployed;married;high.school;no;yes;no;cellular;nov;mon;564;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+31;admin.;married;high.school;no;yes;no;telephone;nov;mon;673;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+32;blue-collar;married;basic.9y;no;no;no;cellular;nov;mon;1091;2;5;1;success;-0.1;93.2;-42.0;4.191;5195.8;yes
+34;services;single;high.school;no;no;no;telephone;nov;mon;62;2;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+33;technician;single;university.degree;no;no;no;cellular;nov;mon;98;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+32;blue-collar;single;university.degree;no;no;no;cellular;nov;mon;242;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+39;services;married;professional.course;no;yes;yes;cellular;nov;mon;148;2;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+38;admin.;married;basic.6y;no;no;yes;telephone;nov;mon;204;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+40;entrepreneur;divorced;university.degree;no;yes;no;cellular;nov;mon;124;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+36;technician;single;professional.course;no;no;no;cellular;nov;mon;85;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+31;housemaid;married;high.school;unknown;no;no;cellular;nov;mon;165;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+46;entrepreneur;married;basic.4y;no;no;no;cellular;nov;mon;148;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+36;services;married;high.school;no;yes;no;cellular;nov;mon;193;2;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+33;blue-collar;married;basic.9y;no;yes;no;telephone;nov;mon;309;3;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+53;blue-collar;married;professional.course;no;yes;no;cellular;nov;mon;242;3;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+43;services;married;high.school;no;yes;yes;cellular;nov;mon;170;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+46;blue-collar;married;basic.9y;no;yes;no;cellular;nov;mon;130;2;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+37;entrepreneur;married;university.degree;unknown;yes;no;cellular;nov;mon;151;2;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+38;management;married;university.degree;no;no;no;cellular;nov;mon;221;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+57;blue-collar;divorced;basic.9y;no;no;no;cellular;nov;mon;117;2;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+42;admin.;married;university.degree;no;yes;no;cellular;nov;mon;116;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+51;blue-collar;married;basic.4y;no;yes;yes;cellular;nov;mon;178;2;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+53;blue-collar;married;basic.4y;unknown;yes;no;cellular;nov;mon;228;4;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+43;management;divorced;high.school;no;yes;no;cellular;nov;mon;488;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+43;management;married;university.degree;no;yes;no;telephone;nov;mon;49;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+35;management;married;professional.course;no;yes;no;cellular;nov;mon;142;3;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+35;management;married;university.degree;no;yes;no;cellular;nov;mon;63;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+40;entrepreneur;married;basic.9y;no;yes;no;cellular;nov;mon;69;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+37;management;married;university.degree;no;yes;yes;cellular;nov;mon;176;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+43;admin.;single;university.degree;no;no;no;cellular;nov;mon;507;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+36;admin.;married;university.degree;no;yes;no;telephone;nov;mon;1735;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+49;admin.;married;university.degree;no;yes;yes;telephone;nov;mon;340;2;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+42;technician;married;professional.course;no;yes;yes;cellular;nov;mon;126;2;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+57;retired;married;university.degree;no;yes;yes;cellular;nov;mon;1132;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;yes
+38;admin.;single;basic.9y;no;yes;yes;cellular;nov;mon;501;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+55;technician;single;professional.course;no;yes;no;cellular;nov;mon;286;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+41;admin.;divorced;university.degree;no;yes;no;telephone;nov;mon;110;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+55;technician;single;professional.course;no;no;no;cellular;nov;mon;99;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+51;technician;married;high.school;no;no;no;cellular;nov;mon;198;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+41;blue-collar;married;basic.9y;unknown;yes;no;telephone;nov;mon;184;4;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+49;management;married;university.degree;no;yes;yes;cellular;nov;mon;308;3;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+48;technician;married;professional.course;no;yes;no;cellular;nov;mon;156;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+34;management;divorced;university.degree;no;no;no;cellular;nov;mon;212;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+50;blue-collar;married;basic.9y;no;yes;yes;cellular;nov;mon;35;3;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+46;admin.;married;university.degree;unknown;no;no;cellular;nov;mon;725;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+52;management;married;university.degree;no;no;no;telephone;nov;mon;127;4;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+43;management;married;high.school;no;yes;yes;cellular;nov;mon;70;3;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+35;blue-collar;married;high.school;no;yes;yes;cellular;nov;mon;330;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+39;housemaid;married;basic.9y;no;yes;yes;cellular;nov;mon;272;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+35;admin.;married;university.degree;no;no;no;cellular;nov;mon;397;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+43;admin.;married;university.degree;no;no;no;cellular;nov;mon;222;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+46;entrepreneur;married;basic.4y;no;yes;no;cellular;nov;mon;333;2;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+52;entrepreneur;single;university.degree;unknown;yes;no;cellular;nov;mon;77;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+53;blue-collar;married;professional.course;no;yes;yes;cellular;nov;mon;212;3;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+33;student;single;unknown;no;no;no;cellular;nov;mon;288;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+52;retired;married;university.degree;no;yes;yes;telephone;nov;mon;215;3;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+53;management;married;university.degree;unknown;yes;no;cellular;nov;mon;536;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+39;blue-collar;married;basic.9y;no;yes;no;cellular;nov;mon;57;4;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+41;self-employed;married;basic.9y;unknown;yes;no;cellular;nov;mon;145;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+31;self-employed;single;university.degree;no;yes;no;cellular;nov;mon;113;2;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+31;services;divorced;high.school;no;no;no;telephone;nov;mon;107;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+36;services;married;high.school;no;no;no;cellular;nov;mon;86;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+37;management;married;high.school;no;yes;no;telephone;nov;mon;188;2;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+52;entrepreneur;married;university.degree;no;yes;no;cellular;nov;mon;85;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+50;entrepreneur;married;university.degree;unknown;yes;no;cellular;nov;mon;595;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+35;admin.;married;high.school;no;yes;no;cellular;nov;mon;140;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+33;management;married;university.degree;no;yes;no;cellular;nov;mon;681;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+36;entrepreneur;married;high.school;no;yes;yes;cellular;nov;mon;139;3;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+45;blue-collar;single;basic.9y;no;yes;yes;cellular;nov;mon;61;2;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+41;technician;married;university.degree;no;no;no;cellular;nov;mon;149;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+41;entrepreneur;married;university.degree;unknown;yes;no;cellular;nov;mon;44;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+35;blue-collar;married;high.school;unknown;yes;no;cellular;nov;mon;273;2;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+52;admin.;married;basic.4y;no;yes;yes;cellular;nov;mon;102;3;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+37;blue-collar;married;basic.6y;no;yes;no;telephone;nov;mon;99;3;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+46;services;married;high.school;no;yes;no;cellular;nov;mon;966;3;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+39;services;married;high.school;no;yes;yes;cellular;nov;mon;49;3;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+40;blue-collar;married;basic.9y;no;yes;no;telephone;nov;mon;132;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+30;admin.;married;university.degree;no;no;no;cellular;nov;mon;329;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+52;management;married;university.degree;no;no;no;telephone;nov;mon;22;3;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+44;admin.;married;professional.course;no;no;no;cellular;nov;mon;200;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+53;entrepreneur;divorced;university.degree;no;no;no;cellular;nov;mon;179;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+53;entrepreneur;divorced;university.degree;no;no;no;cellular;nov;mon;93;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+53;entrepreneur;divorced;university.degree;no;yes;no;cellular;nov;mon;68;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+44;entrepreneur;married;university.degree;no;yes;no;cellular;nov;mon;1210;2;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;yes
+44;admin.;married;professional.course;no;no;no;cellular;nov;mon;353;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+53;entrepreneur;divorced;university.degree;no;yes;no;cellular;nov;mon;107;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+53;entrepreneur;divorced;university.degree;no;no;no;telephone;nov;mon;247;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+45;blue-collar;divorced;basic.9y;unknown;no;no;cellular;nov;mon;220;4;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+35;admin.;married;university.degree;no;yes;no;cellular;nov;mon;211;2;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+35;admin.;married;unknown;no;yes;no;cellular;nov;mon;960;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+44;admin.;married;professional.course;no;yes;no;telephone;nov;mon;762;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+57;technician;divorced;professional.course;no;yes;no;cellular;nov;mon;181;4;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+43;admin.;married;university.degree;no;yes;no;cellular;nov;mon;414;2;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+33;unemployed;married;basic.9y;unknown;yes;no;cellular;nov;mon;150;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+52;services;divorced;high.school;unknown;yes;yes;cellular;nov;mon;652;2;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;yes
+45;admin.;married;basic.9y;no;yes;no;cellular;nov;mon;446;3;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+30;services;married;basic.9y;unknown;yes;no;cellular;nov;mon;209;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+37;entrepreneur;married;basic.9y;unknown;no;no;telephone;nov;mon;210;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+48;services;married;basic.9y;unknown;yes;no;cellular;nov;mon;301;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+30;services;married;basic.9y;unknown;no;no;cellular;nov;mon;415;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+41;management;married;basic.6y;unknown;yes;no;cellular;nov;mon;264;4;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+42;self-employed;married;university.degree;unknown;no;no;cellular;nov;mon;81;4;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+51;self-employed;married;basic.4y;no;no;no;cellular;nov;mon;189;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+52;management;married;university.degree;no;yes;yes;cellular;nov;mon;172;3;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+42;blue-collar;divorced;basic.9y;no;yes;yes;cellular;nov;mon;151;3;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+45;self-employed;married;university.degree;no;yes;no;cellular;nov;mon;487;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+32;entrepreneur;married;university.degree;no;yes;yes;telephone;nov;mon;249;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+37;entrepreneur;married;university.degree;unknown;yes;no;telephone;nov;mon;215;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+40;blue-collar;married;basic.6y;no;yes;no;cellular;nov;mon;108;3;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+37;entrepreneur;married;university.degree;unknown;yes;no;telephone;nov;mon;17;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+41;admin.;married;university.degree;no;no;no;cellular;nov;mon;295;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+33;entrepreneur;married;basic.9y;unknown;yes;yes;telephone;nov;mon;292;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+37;entrepreneur;married;university.degree;unknown;no;no;cellular;nov;mon;454;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;yes
+50;entrepreneur;married;university.degree;no;yes;no;cellular;nov;mon;92;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+51;retired;divorced;basic.4y;no;yes;yes;cellular;nov;mon;94;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+31;management;single;university.degree;no;no;no;cellular;nov;mon;104;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+58;retired;married;professional.course;no;no;no;cellular;nov;mon;318;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+50;entrepreneur;married;university.degree;no;no;no;cellular;nov;mon;408;1;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+43;unemployed;married;basic.9y;unknown;yes;yes;cellular;nov;mon;252;3;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+33;technician;single;university.degree;no;no;no;telephone;nov;mon;293;5;999;1;failure;-0.1;93.2;-42.0;4.191;5195.8;no
+37;entrepreneur;married;university.degree;unknown;yes;no;cellular;nov;mon;1012;1;999;0;nonexistent;-0.1;93.2;-42.0;4.191;5195.8;no
+42;unemployed;married;high.school;no;yes;no;cellular;nov;tue;154;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+50;technician;married;professional.course;no;no;yes;cellular;nov;tue;166;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+43;admin.;married;high.school;no;no;no;cellular;nov;tue;127;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+50;technician;married;professional.course;no;unknown;unknown;cellular;nov;tue;336;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+36;admin.;single;university.degree;no;yes;no;cellular;nov;tue;82;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+55;admin.;married;professional.course;unknown;yes;yes;telephone;nov;tue;514;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;yes
+56;technician;married;professional.course;unknown;unknown;unknown;cellular;nov;tue;44;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+34;admin.;married;high.school;no;no;no;cellular;nov;tue;105;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+31;management;married;university.degree;no;yes;yes;cellular;nov;tue;41;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+51;admin.;married;university.degree;no;no;no;cellular;nov;tue;143;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+44;technician;married;professional.course;no;no;no;telephone;nov;tue;189;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+34;admin.;divorced;university.degree;no;no;no;cellular;nov;tue;41;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+35;technician;divorced;professional.course;unknown;no;no;cellular;nov;tue;143;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+34;admin.;divorced;university.degree;no;no;no;cellular;nov;tue;150;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+41;services;single;professional.course;no;yes;no;cellular;nov;tue;41;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+37;self-employed;divorced;basic.9y;no;yes;no;cellular;nov;tue;237;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+43;management;married;professional.course;no;no;no;cellular;nov;tue;42;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+43;management;married;professional.course;no;yes;no;cellular;nov;tue;99;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+50;technician;divorced;professional.course;no;no;no;cellular;nov;tue;46;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+55;blue-collar;single;basic.6y;no;yes;no;cellular;nov;tue;204;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+49;admin.;divorced;basic.6y;no;no;no;cellular;nov;tue;295;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+39;management;married;university.degree;no;no;no;cellular;nov;tue;88;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+56;retired;married;basic.4y;no;no;no;cellular;nov;tue;79;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+31;technician;married;university.degree;no;unknown;unknown;cellular;nov;tue;104;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+31;technician;married;university.degree;no;unknown;unknown;cellular;nov;tue;102;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+31;admin.;married;university.degree;no;yes;yes;cellular;nov;tue;64;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+53;services;divorced;high.school;no;yes;no;cellular;nov;tue;233;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+47;unemployed;married;high.school;no;no;no;cellular;nov;tue;94;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+54;self-employed;married;basic.9y;no;yes;no;cellular;nov;tue;139;4;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+47;unemployed;married;high.school;no;yes;no;cellular;nov;tue;65;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+40;self-employed;married;basic.9y;no;no;no;cellular;nov;tue;55;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+47;management;married;university.degree;no;yes;no;cellular;nov;tue;283;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+43;blue-collar;married;basic.9y;no;yes;no;cellular;nov;tue;326;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+43;blue-collar;married;basic.9y;no;no;no;cellular;nov;tue;465;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+54;admin.;single;university.degree;no;no;no;cellular;nov;tue;67;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+54;admin.;single;university.degree;no;yes;no;cellular;nov;tue;119;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+41;services;married;university.degree;no;yes;no;cellular;nov;tue;140;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+34;entrepreneur;single;basic.9y;no;no;no;cellular;nov;tue;386;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+30;blue-collar;single;high.school;no;yes;yes;telephone;nov;tue;228;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+35;blue-collar;married;professional.course;no;yes;no;cellular;nov;tue;114;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+48;admin.;married;unknown;unknown;no;no;cellular;nov;tue;67;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+41;management;married;university.degree;no;yes;no;cellular;nov;tue;57;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+36;blue-collar;married;basic.9y;no;yes;yes;cellular;nov;tue;130;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+57;management;married;university.degree;no;yes;no;cellular;nov;tue;93;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+41;management;married;university.degree;no;yes;no;cellular;nov;tue;176;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+37;blue-collar;single;high.school;no;yes;no;cellular;nov;tue;79;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+50;technician;married;professional.course;no;yes;no;cellular;nov;tue;1978;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;yes
+36;blue-collar;married;basic.4y;no;no;no;cellular;nov;tue;101;5;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+56;admin.;married;high.school;unknown;yes;no;cellular;nov;tue;105;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+34;blue-collar;married;professional.course;no;no;no;cellular;nov;tue;95;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+34;blue-collar;married;professional.course;no;yes;yes;cellular;nov;tue;64;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+34;blue-collar;married;professional.course;no;no;yes;cellular;nov;tue;91;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+40;entrepreneur;married;basic.9y;no;no;no;telephone;nov;tue;40;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+34;blue-collar;married;professional.course;no;unknown;unknown;cellular;nov;tue;138;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+52;technician;married;basic.9y;no;yes;no;cellular;nov;tue;54;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+40;entrepreneur;married;basic.9y;no;yes;no;cellular;nov;tue;67;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+40;management;married;university.degree;no;no;no;cellular;nov;tue;1122;2;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;yes
+34;blue-collar;married;professional.course;no;no;no;cellular;nov;tue;164;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+35;admin.;married;high.school;no;no;no;cellular;nov;tue;95;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+35;admin.;married;high.school;no;no;no;cellular;nov;tue;72;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+41;entrepreneur;married;university.degree;no;yes;no;cellular;nov;tue;854;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;yes
+35;admin.;married;high.school;no;yes;no;cellular;nov;tue;114;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+49;management;married;university.degree;no;yes;no;cellular;nov;tue;116;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+32;services;married;high.school;no;yes;no;cellular;nov;tue;105;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+40;technician;married;professional.course;no;no;no;cellular;nov;tue;348;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+44;management;divorced;university.degree;unknown;no;no;cellular;nov;tue;365;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+44;technician;single;professional.course;no;yes;yes;cellular;nov;tue;155;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+31;entrepreneur;divorced;basic.4y;no;no;no;cellular;nov;tue;290;1;5;1;success;-0.1;93.2;-42.0;4.153;5195.8;no
+36;self-employed;single;basic.9y;no;no;no;cellular;nov;tue;94;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+40;self-employed;married;basic.9y;unknown;no;no;cellular;nov;tue;53;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+37;technician;married;high.school;no;no;no;cellular;nov;tue;39;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+53;self-employed;married;basic.4y;no;yes;no;cellular;nov;tue;76;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+32;admin.;single;university.degree;no;no;no;cellular;nov;tue;36;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+51;admin.;married;high.school;no;no;no;cellular;nov;tue;132;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+34;technician;married;professional.course;no;yes;no;cellular;nov;tue;333;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+35;entrepreneur;married;basic.9y;no;yes;no;cellular;nov;tue;155;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+35;admin.;single;high.school;no;yes;no;cellular;nov;tue;106;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+33;blue-collar;married;basic.9y;no;yes;no;cellular;nov;tue;184;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+51;admin.;married;high.school;no;no;yes;cellular;nov;tue;271;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+29;admin.;single;university.degree;no;yes;no;cellular;nov;tue;224;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+51;technician;married;unknown;no;no;no;cellular;nov;tue;144;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+30;admin.;single;university.degree;no;no;no;cellular;nov;tue;55;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+58;technician;married;unknown;no;no;no;cellular;nov;tue;82;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+36;admin.;married;high.school;no;yes;yes;telephone;nov;tue;52;3;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+33;management;married;university.degree;no;yes;no;cellular;nov;tue;341;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+32;blue-collar;married;basic.9y;no;yes;no;telephone;nov;tue;47;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+32;blue-collar;married;basic.9y;no;no;no;cellular;nov;tue;55;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+35;unemployed;single;basic.6y;unknown;yes;no;cellular;nov;tue;51;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+40;blue-collar;married;basic.9y;no;no;no;cellular;nov;tue;71;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+35;unemployed;single;basic.6y;unknown;yes;no;cellular;nov;tue;76;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+51;blue-collar;married;basic.9y;unknown;yes;no;cellular;nov;tue;62;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+33;admin.;married;university.degree;no;yes;no;cellular;nov;tue;52;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+39;services;divorced;high.school;no;yes;no;cellular;nov;tue;46;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+32;services;married;basic.6y;unknown;yes;no;telephone;nov;tue;368;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+50;housemaid;divorced;professional.course;no;yes;no;cellular;nov;tue;132;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+33;blue-collar;married;basic.9y;no;unknown;unknown;cellular;nov;tue;111;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+56;self-employed;divorced;high.school;no;no;no;cellular;nov;tue;79;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+29;blue-collar;married;basic.9y;no;yes;no;cellular;nov;tue;42;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+32;blue-collar;married;basic.9y;no;yes;yes;cellular;nov;tue;295;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+40;admin.;married;high.school;no;yes;no;cellular;nov;tue;134;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+38;technician;single;professional.course;no;no;yes;cellular;nov;tue;76;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+39;services;divorced;high.school;no;yes;no;cellular;nov;tue;194;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+33;blue-collar;married;basic.9y;no;no;no;cellular;nov;tue;214;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+31;admin.;divorced;university.degree;no;yes;no;telephone;nov;tue;51;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+42;self-employed;divorced;university.degree;no;yes;no;cellular;nov;tue;278;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+43;management;married;university.degree;no;no;no;cellular;nov;tue;188;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+38;blue-collar;married;basic.9y;no;yes;no;cellular;nov;tue;154;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+52;admin.;married;university.degree;no;yes;yes;cellular;nov;tue;79;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+43;technician;married;professional.course;no;yes;no;telephone;nov;tue;89;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+31;blue-collar;single;basic.9y;no;no;no;cellular;nov;tue;58;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+33;self-employed;married;university.degree;no;yes;no;cellular;nov;tue;84;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+43;entrepreneur;married;basic.4y;no;yes;no;cellular;nov;tue;145;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+31;admin.;divorced;university.degree;no;yes;no;cellular;nov;tue;346;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+52;management;married;high.school;no;yes;no;cellular;nov;tue;75;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+40;blue-collar;married;basic.4y;no;no;no;cellular;nov;tue;181;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+38;blue-collar;married;basic.9y;no;no;no;cellular;nov;tue;213;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+30;services;married;basic.6y;no;unknown;unknown;cellular;nov;tue;340;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+38;management;married;university.degree;no;yes;yes;cellular;nov;tue;353;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+51;admin.;married;university.degree;no;no;no;cellular;nov;tue;104;2;1;1;success;-0.1;93.2;-42.0;4.153;5195.8;no
+37;management;divorced;high.school;no;yes;no;cellular;nov;tue;1268;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+33;management;married;university.degree;no;yes;no;cellular;nov;tue;47;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+36;housemaid;divorced;basic.9y;no;yes;no;cellular;nov;tue;59;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+39;admin.;married;university.degree;no;no;no;cellular;nov;tue;108;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+36;technician;divorced;high.school;no;no;no;cellular;nov;tue;132;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+55;entrepreneur;married;university.degree;unknown;no;no;cellular;nov;tue;86;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+41;admin.;married;university.degree;unknown;yes;no;cellular;nov;tue;61;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+33;admin.;married;high.school;no;yes;no;cellular;nov;tue;273;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+32;services;married;high.school;unknown;yes;no;cellular;nov;tue;121;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+41;admin.;married;university.degree;unknown;yes;no;cellular;nov;tue;88;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+46;blue-collar;married;basic.9y;no;yes;no;cellular;nov;tue;50;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+29;admin.;single;university.degree;no;yes;no;cellular;nov;tue;636;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+31;management;single;university.degree;no;yes;no;cellular;nov;tue;466;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+31;housemaid;married;university.degree;unknown;no;no;cellular;nov;tue;110;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+44;entrepreneur;divorced;basic.6y;no;yes;no;cellular;nov;tue;132;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+31;unemployed;married;high.school;yes;no;no;cellular;nov;tue;111;2;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+34;blue-collar;married;professional.course;no;yes;no;cellular;nov;tue;135;3;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+46;blue-collar;married;basic.9y;no;no;no;cellular;nov;tue;281;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+35;management;married;basic.4y;no;no;no;cellular;nov;tue;276;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+43;entrepreneur;married;basic.9y;no;yes;yes;cellular;nov;tue;74;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+39;management;single;high.school;unknown;no;no;telephone;nov;tue;274;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+31;admin.;married;university.degree;no;yes;no;cellular;nov;tue;71;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+54;admin.;divorced;university.degree;no;yes;no;cellular;nov;tue;79;2;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+30;management;married;university.degree;no;yes;yes;cellular;nov;tue;196;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+43;blue-collar;single;basic.4y;no;yes;no;cellular;nov;tue;175;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+48;admin.;married;unknown;unknown;no;no;cellular;nov;tue;319;2;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+48;services;married;high.school;no;yes;no;cellular;nov;tue;71;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+39;management;single;high.school;unknown;no;no;cellular;nov;tue;714;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+52;management;married;university.degree;no;yes;no;cellular;nov;tue;67;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+54;technician;married;professional.course;no;yes;no;cellular;nov;tue;149;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+56;technician;single;professional.course;no;yes;no;cellular;nov;tue;635;5;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+39;admin.;single;high.school;no;yes;yes;cellular;nov;tue;95;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+32;blue-collar;single;university.degree;unknown;yes;no;cellular;nov;tue;63;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+51;admin.;married;high.school;no;yes;no;cellular;nov;tue;280;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+39;services;married;high.school;no;yes;no;cellular;nov;tue;107;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+39;services;married;basic.9y;no;yes;no;cellular;nov;tue;51;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+37;technician;married;professional.course;no;yes;no;cellular;nov;tue;850;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+52;management;married;university.degree;no;unknown;unknown;cellular;nov;tue;486;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;yes
+47;housemaid;divorced;professional.course;no;no;yes;cellular;nov;tue;253;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+37;blue-collar;married;high.school;no;no;no;cellular;nov;tue;118;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+49;entrepreneur;married;professional.course;unknown;no;no;cellular;nov;tue;132;3;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+36;admin.;married;high.school;no;no;no;cellular;nov;tue;141;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+35;blue-collar;married;basic.4y;no;no;no;cellular;nov;tue;169;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+48;services;married;high.school;no;yes;no;cellular;nov;tue;835;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+37;blue-collar;divorced;basic.6y;no;no;no;cellular;nov;tue;200;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+39;self-employed;married;university.degree;no;yes;no;cellular;nov;tue;95;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+39;self-employed;married;university.degree;no;yes;no;cellular;nov;tue;122;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+48;admin.;single;university.degree;no;no;no;cellular;nov;tue;148;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+33;admin.;married;university.degree;no;yes;no;cellular;nov;tue;51;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+32;blue-collar;married;basic.4y;no;no;no;cellular;nov;tue;132;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+38;blue-collar;married;basic.9y;no;no;no;cellular;nov;tue;180;2;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+30;technician;single;professional.course;no;no;yes;cellular;nov;tue;835;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;yes
+36;unemployed;married;basic.6y;no;yes;no;cellular;nov;tue;144;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+50;services;married;high.school;no;yes;no;cellular;nov;tue;90;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+50;services;married;high.school;no;yes;no;cellular;nov;tue;129;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+34;blue-collar;married;basic.9y;no;no;no;cellular;nov;tue;54;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+30;technician;married;professional.course;no;yes;no;cellular;nov;tue;613;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+54;entrepreneur;married;basic.4y;no;yes;no;cellular;nov;tue;150;2;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+32;services;married;basic.6y;unknown;yes;no;telephone;nov;tue;162;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+52;admin.;single;basic.9y;no;yes;no;cellular;nov;tue;296;1;6;1;success;-0.1;93.2;-42.0;4.153;5195.8;no
+40;services;married;high.school;no;yes;no;cellular;nov;tue;66;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+30;unemployed;married;high.school;no;no;yes;cellular;nov;tue;155;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+30;unemployed;married;high.school;no;no;no;cellular;nov;tue;145;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+34;blue-collar;single;high.school;no;yes;no;cellular;nov;tue;117;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+33;entrepreneur;single;university.degree;no;yes;no;cellular;nov;tue;435;4;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+32;admin.;married;university.degree;no;yes;no;cellular;nov;tue;266;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+37;blue-collar;divorced;basic.6y;no;yes;yes;cellular;nov;tue;963;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+52;technician;married;high.school;no;yes;no;cellular;nov;tue;385;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+38;blue-collar;divorced;unknown;no;yes;no;telephone;nov;tue;125;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+34;blue-collar;single;high.school;no;yes;no;cellular;nov;tue;257;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+36;blue-collar;married;basic.9y;no;yes;no;cellular;nov;tue;99;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+36;blue-collar;married;basic.9y;no;unknown;unknown;cellular;nov;tue;95;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+34;technician;single;university.degree;no;yes;no;cellular;nov;tue;82;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+38;blue-collar;divorced;unknown;no;no;no;cellular;nov;tue;154;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+40;technician;married;professional.course;no;yes;no;cellular;nov;tue;130;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+29;technician;single;high.school;no;yes;no;cellular;nov;tue;127;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+39;management;married;high.school;no;yes;no;cellular;nov;tue;84;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+38;blue-collar;divorced;unknown;no;no;no;cellular;nov;tue;596;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;yes
+40;management;married;university.degree;no;no;no;cellular;nov;tue;131;2;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+30;unemployed;married;high.school;no;yes;yes;cellular;nov;tue;924;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;yes
+52;admin.;divorced;university.degree;no;yes;yes;cellular;nov;tue;183;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+30;admin.;divorced;university.degree;no;no;yes;cellular;nov;tue;198;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+49;management;married;university.degree;no;yes;no;cellular;nov;tue;37;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+49;management;married;university.degree;no;no;no;cellular;nov;tue;188;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+47;services;married;high.school;no;yes;no;cellular;nov;tue;99;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+49;management;married;university.degree;no;yes;no;cellular;nov;tue;197;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+30;admin.;divorced;university.degree;no;no;no;cellular;nov;tue;464;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+30;admin.;divorced;university.degree;no;no;no;cellular;nov;tue;453;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;yes
+39;entrepreneur;married;university.degree;unknown;no;no;cellular;nov;tue;54;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+36;housemaid;married;basic.4y;no;no;no;cellular;nov;tue;242;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+54;entrepreneur;married;professional.course;no;yes;yes;cellular;nov;tue;134;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+41;admin.;married;high.school;no;yes;no;cellular;nov;tue;62;4;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+36;technician;married;high.school;no;no;no;cellular;nov;tue;91;2;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+52;management;married;university.degree;unknown;yes;no;cellular;nov;tue;419;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;yes
+31;management;single;university.degree;no;no;no;cellular;nov;tue;82;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+50;admin.;divorced;basic.9y;no;yes;no;cellular;nov;tue;128;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+44;management;married;basic.9y;no;no;no;cellular;nov;tue;638;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+33;technician;single;university.degree;no;no;no;cellular;nov;tue;113;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+32;technician;divorced;professional.course;no;yes;no;cellular;nov;tue;78;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+43;blue-collar;married;basic.9y;no;no;yes;cellular;nov;tue;84;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+32;technician;divorced;professional.course;no;yes;no;cellular;nov;tue;250;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+32;technician;divorced;professional.course;no;no;no;cellular;nov;tue;288;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+57;retired;married;professional.course;no;unknown;unknown;cellular;nov;tue;193;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+49;blue-collar;married;basic.4y;no;no;no;cellular;nov;tue;34;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+47;admin.;divorced;high.school;no;no;no;cellular;nov;tue;352;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+51;services;divorced;high.school;no;no;no;cellular;nov;tue;119;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+43;management;married;university.degree;no;yes;no;cellular;nov;tue;89;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+41;admin.;single;university.degree;no;no;no;cellular;nov;tue;93;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+39;admin.;married;university.degree;no;yes;no;cellular;nov;tue;305;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+51;admin.;married;high.school;no;yes;no;cellular;nov;tue;109;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+38;technician;married;professional.course;no;yes;no;telephone;nov;tue;205;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+48;admin.;married;university.degree;no;yes;yes;cellular;nov;tue;122;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+31;student;single;high.school;no;yes;yes;cellular;nov;tue;107;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+35;admin.;married;high.school;no;yes;no;cellular;nov;tue;17;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+47;services;married;high.school;no;yes;no;cellular;nov;tue;103;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+29;blue-collar;divorced;basic.6y;no;yes;no;telephone;nov;tue;272;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+54;retired;married;high.school;no;yes;no;cellular;nov;tue;145;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+47;technician;married;professional.course;no;no;no;cellular;nov;tue;233;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+54;retired;married;high.school;no;no;no;cellular;nov;tue;172;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+49;management;married;basic.9y;no;unknown;unknown;cellular;nov;tue;336;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+30;services;married;basic.6y;no;no;no;cellular;nov;tue;154;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+39;services;married;basic.9y;no;no;no;cellular;nov;tue;109;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+50;self-employed;married;university.degree;no;no;no;telephone;nov;tue;103;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+39;admin.;married;high.school;no;yes;no;cellular;nov;tue;50;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+37;unemployed;single;university.degree;no;yes;yes;cellular;nov;tue;95;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+49;services;married;high.school;no;no;no;cellular;nov;tue;48;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+38;blue-collar;married;professional.course;no;yes;no;telephone;nov;tue;15;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+51;admin.;married;basic.6y;no;yes;no;cellular;nov;tue;122;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+53;self-employed;married;basic.4y;no;no;no;cellular;nov;tue;505;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+55;admin.;married;high.school;no;yes;no;cellular;nov;tue;106;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+51;entrepreneur;married;basic.9y;no;no;no;cellular;nov;tue;125;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+55;admin.;married;high.school;no;yes;no;cellular;nov;tue;191;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+44;technician;married;professional.course;no;yes;no;cellular;nov;tue;75;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+57;management;married;university.degree;no;yes;yes;cellular;nov;tue;609;2;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;yes
+54;entrepreneur;married;professional.course;no;no;no;cellular;nov;tue;1855;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;yes
+35;management;married;high.school;no;yes;no;telephone;nov;tue;159;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+49;admin.;married;basic.9y;no;yes;no;cellular;nov;tue;204;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+48;technician;married;university.degree;no;yes;no;cellular;nov;tue;82;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+50;management;married;basic.4y;no;yes;no;cellular;nov;tue;389;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+46;self-employed;married;basic.4y;no;yes;yes;cellular;nov;tue;162;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+31;entrepreneur;divorced;basic.4y;no;no;no;cellular;nov;tue;152;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+35;management;married;high.school;no;yes;no;cellular;nov;tue;417;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+48;technician;married;university.degree;no;yes;no;cellular;nov;tue;208;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+35;management;single;university.degree;no;no;no;telephone;nov;tue;52;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+50;entrepreneur;married;basic.9y;no;no;no;cellular;nov;tue;59;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+48;technician;married;university.degree;no;no;no;cellular;nov;tue;346;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+50;entrepreneur;married;basic.9y;no;yes;no;cellular;nov;tue;100;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+35;admin.;divorced;university.degree;no;no;no;cellular;nov;tue;35;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+50;entrepreneur;married;basic.9y;no;no;no;telephone;nov;tue;2;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+30;admin.;single;university.degree;no;yes;no;cellular;nov;tue;288;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+35;admin.;divorced;university.degree;no;yes;no;cellular;nov;tue;220;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+32;technician;single;university.degree;no;no;no;cellular;nov;tue;77;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+52;management;married;basic.6y;no;yes;no;cellular;nov;tue;97;3;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+51;admin.;married;high.school;no;no;yes;cellular;nov;tue;118;2;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+46;technician;married;basic.9y;no;no;no;cellular;nov;tue;530;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+32;management;married;university.degree;no;yes;no;cellular;nov;tue;118;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+53;admin.;divorced;university.degree;no;yes;no;cellular;nov;tue;69;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+32;services;married;high.school;no;no;no;cellular;nov;tue;91;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+35;management;single;high.school;no;yes;no;cellular;nov;tue;52;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+46;technician;married;basic.9y;no;yes;no;cellular;nov;tue;226;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+53;admin.;divorced;university.degree;no;no;yes;cellular;nov;tue;172;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+34;services;married;high.school;no;yes;no;cellular;nov;tue;78;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+38;admin.;single;high.school;no;yes;no;cellular;nov;tue;90;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+33;technician;divorced;high.school;no;no;no;cellular;nov;tue;70;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+46;technician;married;professional.course;no;yes;no;telephone;nov;tue;103;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+37;entrepreneur;single;university.degree;no;no;no;cellular;nov;tue;199;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+40;technician;married;professional.course;no;yes;no;cellular;nov;tue;110;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+30;admin.;married;high.school;no;yes;no;cellular;nov;tue;92;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+29;technician;single;high.school;no;no;yes;cellular;nov;tue;206;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+46;admin.;divorced;high.school;no;no;no;cellular;nov;tue;91;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+57;self-employed;married;university.degree;no;yes;no;cellular;nov;tue;48;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+34;technician;married;university.degree;no;no;no;cellular;nov;tue;131;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+45;technician;married;high.school;no;yes;no;cellular;nov;tue;79;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+41;self-employed;divorced;university.degree;no;no;no;cellular;nov;tue;349;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+30;management;single;high.school;no;no;yes;cellular;nov;tue;322;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+56;management;married;university.degree;no;yes;no;cellular;nov;tue;125;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+33;services;single;high.school;no;no;no;cellular;nov;tue;105;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+39;management;married;high.school;no;no;no;cellular;nov;tue;328;2;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+38;admin.;married;high.school;no;yes;no;cellular;nov;tue;67;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+54;technician;married;university.degree;no;no;no;cellular;nov;tue;432;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+38;entrepreneur;married;basic.4y;no;yes;yes;cellular;nov;tue;224;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+31;management;single;high.school;no;no;no;cellular;nov;tue;74;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+50;housemaid;married;basic.4y;no;no;no;cellular;nov;tue;109;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+32;technician;single;professional.course;no;yes;yes;cellular;nov;tue;89;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+56;admin.;married;professional.course;no;yes;no;cellular;nov;tue;124;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+33;technician;single;basic.9y;no;no;no;telephone;nov;tue;117;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+31;services;divorced;professional.course;no;yes;no;cellular;nov;tue;61;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+58;retired;married;professional.course;no;yes;no;cellular;nov;tue;191;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+33;admin.;single;high.school;unknown;yes;no;cellular;nov;tue;215;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+31;services;divorced;professional.course;no;no;no;cellular;nov;tue;68;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+31;technician;married;high.school;no;no;no;cellular;nov;tue;90;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+31;technician;married;high.school;no;no;yes;cellular;nov;tue;67;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+34;self-employed;married;basic.9y;no;yes;no;telephone;nov;tue;37;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+49;technician;married;professional.course;no;no;no;cellular;nov;tue;267;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+29;management;single;university.degree;no;no;yes;cellular;nov;tue;73;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+38;management;married;university.degree;no;no;no;cellular;nov;tue;61;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+53;management;married;university.degree;no;yes;yes;cellular;nov;tue;60;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+29;management;single;university.degree;no;no;no;cellular;nov;tue;232;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+41;admin.;single;high.school;no;no;no;cellular;nov;tue;143;3;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+52;services;married;high.school;no;yes;no;telephone;nov;tue;251;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+58;retired;married;university.degree;no;yes;no;cellular;nov;tue;90;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+29;technician;single;high.school;no;no;no;cellular;nov;tue;155;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+31;blue-collar;single;basic.9y;no;yes;no;cellular;nov;tue;65;1;4;1;success;-0.1;93.2;-42.0;4.153;5195.8;no
+32;unemployed;married;university.degree;no;no;no;cellular;nov;tue;329;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+49;admin.;single;unknown;unknown;no;no;cellular;nov;tue;74;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+56;retired;married;basic.4y;no;no;no;cellular;nov;tue;130;3;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+32;admin.;single;university.degree;no;no;no;cellular;nov;tue;398;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+36;technician;single;university.degree;no;no;no;telephone;nov;tue;18;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+29;management;single;university.degree;no;no;no;cellular;nov;tue;708;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+52;services;married;high.school;no;yes;no;cellular;nov;tue;655;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+33;admin.;single;university.degree;no;no;no;cellular;nov;tue;100;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+56;technician;married;professional.course;unknown;no;no;cellular;nov;tue;81;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+47;management;married;university.degree;no;no;no;cellular;nov;tue;126;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+46;management;married;high.school;no;yes;yes;cellular;nov;tue;140;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+53;admin.;married;professional.course;no;yes;yes;cellular;nov;tue;140;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+35;unemployed;single;university.degree;no;yes;yes;cellular;nov;tue;98;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+35;admin.;married;high.school;no;yes;no;cellular;nov;tue;84;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+53;management;married;university.degree;no;no;no;cellular;nov;tue;756;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+40;services;married;high.school;no;no;no;cellular;nov;tue;51;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+50;management;single;university.degree;no;yes;no;cellular;nov;tue;600;2;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+41;entrepreneur;married;high.school;no;yes;no;cellular;nov;tue;120;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+33;services;married;high.school;no;no;no;cellular;nov;tue;102;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+46;self-employed;married;basic.6y;unknown;yes;no;cellular;nov;tue;32;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+45;management;married;university.degree;no;no;no;cellular;nov;tue;69;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+37;retired;divorced;basic.9y;unknown;no;no;telephone;nov;tue;114;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+54;management;married;university.degree;no;no;no;cellular;nov;tue;53;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+35;services;married;basic.9y;no;no;no;cellular;nov;tue;281;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+37;retired;divorced;basic.9y;unknown;no;no;cellular;nov;tue;198;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+37;retired;divorced;basic.9y;unknown;yes;no;cellular;nov;tue;201;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+40;admin.;divorced;university.degree;no;no;no;cellular;nov;tue;72;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+37;retired;divorced;basic.9y;unknown;no;no;cellular;nov;tue;378;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+54;management;married;university.degree;no;no;no;cellular;nov;tue;339;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+36;admin.;married;professional.course;no;yes;no;cellular;nov;tue;201;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+35;blue-collar;divorced;basic.9y;no;yes;no;cellular;nov;tue;134;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+38;admin.;single;high.school;no;yes;no;cellular;nov;tue;133;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+50;unemployed;married;high.school;no;no;no;cellular;nov;tue;79;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+32;admin.;married;university.degree;no;yes;no;cellular;nov;tue;61;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+50;admin.;married;high.school;no;no;no;telephone;nov;tue;46;4;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+47;management;married;university.degree;no;yes;no;telephone;nov;tue;84;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+35;technician;married;university.degree;no;yes;no;cellular;nov;tue;63;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+37;admin.;single;university.degree;no;yes;no;cellular;nov;tue;95;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+44;blue-collar;single;basic.9y;no;yes;yes;cellular;nov;tue;182;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+43;management;married;professional.course;no;no;no;cellular;nov;tue;257;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+55;admin.;married;university.degree;no;no;no;cellular;nov;tue;71;3;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+33;entrepreneur;single;university.degree;no;yes;no;cellular;nov;tue;295;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+40;blue-collar;divorced;basic.9y;no;yes;no;cellular;nov;tue;67;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+45;management;married;university.degree;no;no;no;cellular;nov;tue;401;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+40;blue-collar;divorced;basic.9y;no;no;no;cellular;nov;tue;137;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+51;blue-collar;married;basic.4y;unknown;no;no;cellular;nov;tue;103;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+45;self-employed;married;basic.4y;no;unknown;unknown;cellular;nov;tue;121;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+38;unemployed;single;university.degree;no;yes;no;cellular;nov;tue;97;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+39;management;single;high.school;unknown;yes;no;cellular;nov;tue;68;3;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+55;blue-collar;married;basic.9y;unknown;no;no;cellular;nov;tue;63;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+32;services;divorced;high.school;no;no;yes;cellular;nov;tue;98;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+51;blue-collar;married;basic.4y;unknown;yes;no;cellular;nov;tue;271;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+39;management;married;university.degree;no;no;no;cellular;nov;tue;435;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+39;management;married;university.degree;no;no;no;cellular;nov;tue;368;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+44;management;single;university.degree;no;no;no;cellular;nov;tue;152;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+47;services;married;high.school;no;no;no;cellular;nov;tue;107;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+47;services;married;high.school;no;yes;no;cellular;nov;tue;97;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+44;blue-collar;married;basic.9y;no;yes;no;cellular;nov;tue;52;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+45;self-employed;married;basic.4y;no;yes;no;cellular;nov;tue;475;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+47;services;married;high.school;no;yes;no;cellular;nov;tue;164;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+47;services;married;high.school;no;unknown;unknown;cellular;nov;tue;125;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+48;technician;divorced;professional.course;no;unknown;unknown;cellular;nov;tue;83;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+48;technician;divorced;professional.course;no;yes;yes;cellular;nov;tue;86;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+36;management;married;professional.course;no;no;no;cellular;nov;tue;68;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+51;services;divorced;high.school;no;no;no;telephone;nov;tue;236;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+38;technician;married;basic.9y;no;no;no;cellular;nov;tue;142;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+30;admin.;married;high.school;no;no;no;cellular;nov;tue;157;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+36;services;divorced;high.school;no;no;no;cellular;nov;tue;87;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+52;blue-collar;single;basic.9y;unknown;yes;no;cellular;nov;tue;261;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+48;self-employed;married;university.degree;no;no;no;cellular;nov;tue;137;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+50;admin.;single;university.degree;no;yes;no;cellular;nov;tue;123;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+31;blue-collar;married;basic.9y;no;yes;no;cellular;nov;tue;60;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+41;services;married;university.degree;no;no;no;cellular;nov;tue;190;3;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+36;admin.;married;university.degree;no;no;no;cellular;nov;tue;51;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+37;blue-collar;single;high.school;unknown;no;no;cellular;nov;tue;588;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+30;self-employed;single;high.school;no;no;no;cellular;nov;tue;52;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+58;entrepreneur;married;basic.4y;no;no;yes;cellular;nov;tue;164;2;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+43;entrepreneur;married;professional.course;no;no;no;cellular;nov;tue;63;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+38;technician;single;university.degree;no;no;no;cellular;nov;tue;131;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+41;admin.;married;university.degree;unknown;yes;no;cellular;nov;tue;331;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+54;unemployed;married;basic.9y;no;yes;no;cellular;nov;tue;127;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+48;blue-collar;married;basic.4y;unknown;yes;no;cellular;nov;tue;84;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+32;entrepreneur;married;basic.9y;no;no;no;cellular;nov;tue;432;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+50;management;married;university.degree;no;yes;no;cellular;nov;tue;94;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+38;entrepreneur;married;basic.4y;no;yes;no;cellular;nov;tue;76;3;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+37;admin.;married;university.degree;no;no;no;cellular;nov;tue;475;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+35;blue-collar;married;basic.6y;no;no;no;cellular;nov;tue;348;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+30;entrepreneur;single;university.degree;no;yes;yes;cellular;nov;tue;309;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+35;admin.;married;university.degree;no;no;no;cellular;nov;tue;112;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+50;management;married;university.degree;no;no;no;cellular;nov;tue;66;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+35;self-employed;married;professional.course;no;yes;no;cellular;nov;tue;91;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+54;self-employed;married;basic.9y;no;no;yes;cellular;nov;tue;72;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+32;entrepreneur;married;university.degree;no;no;no;cellular;nov;tue;73;3;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+56;services;divorced;basic.6y;no;yes;no;cellular;nov;tue;199;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+31;technician;single;professional.course;no;no;no;cellular;nov;tue;165;2;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+49;admin.;married;university.degree;no;no;no;cellular;nov;tue;163;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+45;technician;divorced;professional.course;no;yes;yes;cellular;nov;tue;124;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+45;technician;divorced;professional.course;no;yes;yes;cellular;nov;tue;178;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+41;blue-collar;married;professional.course;unknown;no;no;cellular;nov;tue;124;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+51;services;married;basic.9y;no;no;no;cellular;nov;tue;93;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+32;services;married;professional.course;no;yes;yes;cellular;nov;tue;265;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+41;blue-collar;married;high.school;no;yes;no;cellular;nov;tue;77;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+37;management;married;university.degree;no;no;no;cellular;nov;tue;96;2;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+35;admin.;married;high.school;no;no;yes;cellular;nov;tue;140;2;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+40;admin.;divorced;basic.9y;no;no;no;cellular;nov;tue;179;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+36;management;married;university.degree;no;yes;no;telephone;nov;tue;155;4;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+30;admin.;divorced;university.degree;no;yes;yes;cellular;nov;tue;384;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+35;technician;married;professional.course;no;no;no;cellular;nov;tue;98;3;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+35;technician;married;university.degree;no;no;no;cellular;nov;tue;90;2;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+47;services;married;high.school;no;no;no;cellular;nov;tue;110;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+47;entrepreneur;divorced;university.degree;no;no;no;cellular;nov;tue;62;2;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+34;blue-collar;married;basic.4y;no;no;no;cellular;nov;tue;120;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+43;entrepreneur;married;basic.4y;no;yes;no;cellular;nov;tue;154;3;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+37;services;married;high.school;no;yes;no;cellular;nov;tue;157;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+50;technician;married;professional.course;no;unknown;unknown;cellular;nov;tue;319;2;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+46;technician;divorced;basic.4y;unknown;yes;no;cellular;nov;tue;262;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+35;services;single;professional.course;unknown;yes;no;cellular;nov;tue;114;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+36;unemployed;married;basic.6y;no;no;no;cellular;nov;tue;177;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+49;blue-collar;married;basic.6y;unknown;no;no;cellular;nov;tue;157;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+38;admin.;married;high.school;unknown;yes;yes;cellular;nov;tue;65;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+36;blue-collar;single;basic.9y;no;yes;no;cellular;nov;tue;82;2;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+57;blue-collar;married;professional.course;no;no;no;cellular;nov;tue;244;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+41;blue-collar;married;basic.6y;no;yes;yes;telephone;nov;tue;137;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+51;admin.;married;basic.9y;no;no;yes;cellular;nov;tue;110;5;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+48;admin.;married;unknown;unknown;no;yes;cellular;nov;tue;63;3;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+33;technician;single;professional.course;no;no;no;cellular;nov;tue;125;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+43;entrepreneur;married;basic.4y;no;yes;no;cellular;nov;tue;40;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+46;blue-collar;married;basic.6y;no;no;yes;cellular;nov;tue;97;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+30;technician;single;professional.course;no;yes;yes;cellular;nov;tue;69;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+39;admin.;married;university.degree;no;no;no;cellular;nov;tue;123;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+35;admin.;divorced;university.degree;no;yes;no;cellular;nov;tue;188;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+35;blue-collar;married;professional.course;no;yes;no;cellular;nov;tue;172;2;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+48;admin.;married;university.degree;unknown;yes;no;telephone;nov;tue;82;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+37;management;married;university.degree;no;no;no;cellular;nov;tue;114;5;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+51;self-employed;married;university.degree;no;yes;yes;cellular;nov;tue;55;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+41;management;married;university.degree;no;yes;no;cellular;nov;tue;54;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+44;management;single;university.degree;no;yes;no;cellular;nov;tue;120;2;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+50;management;married;high.school;no;yes;yes;cellular;nov;tue;174;3;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+35;admin.;divorced;high.school;no;yes;no;cellular;nov;tue;250;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+33;technician;married;professional.course;no;no;no;cellular;nov;tue;45;2;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+39;admin.;married;university.degree;no;no;no;cellular;nov;tue;251;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+50;blue-collar;married;basic.4y;no;yes;yes;telephone;nov;tue;234;3;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+39;services;married;basic.9y;no;yes;no;cellular;nov;tue;219;3;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+58;management;married;university.degree;no;yes;yes;cellular;nov;tue;240;2;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+41;blue-collar;divorced;basic.9y;no;yes;no;telephone;nov;tue;32;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+36;admin.;married;high.school;no;yes;no;cellular;nov;tue;94;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+47;management;married;university.degree;no;no;no;cellular;nov;tue;139;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+55;entrepreneur;married;university.degree;unknown;yes;yes;cellular;nov;tue;157;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+49;self-employed;single;professional.course;unknown;yes;no;telephone;nov;tue;126;4;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+44;blue-collar;married;professional.course;unknown;no;no;cellular;nov;tue;214;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+34;management;single;university.degree;no;yes;yes;cellular;nov;tue;79;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+46;admin.;married;high.school;no;yes;no;cellular;nov;tue;107;3;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+54;admin.;married;university.degree;no;yes;yes;cellular;nov;tue;399;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+35;blue-collar;married;basic.9y;no;yes;no;cellular;nov;tue;231;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+40;unemployed;married;professional.course;no;no;no;telephone;nov;tue;129;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+53;self-employed;divorced;university.degree;no;no;no;cellular;nov;tue;597;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+30;admin.;single;high.school;no;unknown;unknown;cellular;nov;tue;229;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+53;self-employed;married;basic.4y;no;yes;yes;cellular;nov;tue;464;2;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+42;technician;married;basic.6y;no;no;no;cellular;nov;tue;166;2;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+58;housemaid;married;basic.4y;unknown;no;no;cellular;nov;tue;91;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+47;blue-collar;married;basic.9y;no;yes;yes;cellular;nov;tue;196;3;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+37;management;married;university.degree;no;yes;yes;telephone;nov;tue;71;4;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+53;entrepreneur;married;basic.9y;no;yes;no;cellular;nov;tue;146;2;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+39;admin.;married;university.degree;no;no;no;cellular;nov;tue;123;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+32;student;single;university.degree;no;yes;no;cellular;nov;tue;203;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+41;technician;married;basic.9y;no;yes;no;telephone;nov;tue;102;2;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+39;admin.;married;university.degree;no;yes;yes;cellular;nov;tue;175;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+35;blue-collar;married;basic.6y;no;no;no;cellular;nov;tue;86;2;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+50;admin.;married;high.school;no;no;no;cellular;nov;tue;87;3;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+36;management;divorced;professional.course;no;no;no;cellular;nov;tue;75;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+53;management;married;university.degree;no;yes;no;cellular;nov;tue;313;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+53;management;married;university.degree;no;yes;no;cellular;nov;tue;244;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+54;admin.;divorced;university.degree;no;yes;yes;cellular;nov;tue;355;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+32;services;divorced;high.school;no;yes;no;cellular;nov;tue;74;2;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+32;admin.;single;university.degree;no;yes;no;cellular;nov;tue;145;2;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+47;management;married;university.degree;no;no;no;cellular;nov;tue;141;3;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+43;management;married;university.degree;no;yes;no;cellular;nov;tue;51;4;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+57;admin.;married;university.degree;no;no;yes;cellular;nov;tue;192;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+32;admin.;married;high.school;no;no;no;cellular;nov;tue;464;3;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+33;admin.;married;high.school;no;yes;no;cellular;nov;tue;125;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+36;blue-collar;single;basic.9y;no;yes;no;cellular;nov;tue;67;2;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+36;self-employed;married;university.degree;no;yes;no;cellular;nov;tue;79;3;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+45;management;married;university.degree;no;no;no;cellular;nov;tue;72;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+55;management;married;university.degree;no;yes;no;telephone;nov;tue;47;3;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+36;admin.;married;high.school;no;yes;no;cellular;nov;tue;722;3;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+39;technician;married;university.degree;no;no;yes;cellular;nov;tue;1437;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;yes
+50;management;single;university.degree;no;no;no;cellular;nov;tue;175;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+34;blue-collar;married;basic.9y;no;yes;yes;cellular;nov;tue;133;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+46;technician;married;professional.course;no;yes;no;cellular;nov;tue;163;2;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+30;self-employed;married;professional.course;unknown;yes;no;cellular;nov;tue;273;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+56;admin.;married;university.degree;no;yes;yes;cellular;nov;tue;147;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+44;management;married;university.degree;no;yes;no;cellular;nov;tue;170;2;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+46;unemployed;married;high.school;unknown;yes;no;cellular;nov;tue;81;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+43;entrepreneur;married;basic.4y;no;yes;no;cellular;nov;tue;727;4;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+47;admin.;divorced;university.degree;no;no;yes;cellular;nov;tue;96;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+47;services;single;basic.9y;no;no;no;cellular;nov;tue;187;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+37;unemployed;single;university.degree;no;yes;no;cellular;nov;tue;135;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+45;management;married;university.degree;no;no;no;cellular;nov;tue;633;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+43;admin.;divorced;professional.course;no;yes;no;telephone;nov;tue;55;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+44;technician;married;high.school;no;no;no;cellular;nov;tue;231;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+31;management;married;university.degree;no;yes;no;cellular;nov;tue;715;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+46;technician;married;professional.course;no;yes;no;cellular;nov;tue;135;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+45;entrepreneur;married;basic.4y;no;unknown;unknown;telephone;nov;tue;67;7;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+40;blue-collar;married;basic.9y;unknown;no;no;cellular;nov;tue;113;3;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+56;technician;single;professional.course;no;yes;no;cellular;nov;tue;116;6;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+45;unemployed;single;professional.course;no;no;no;cellular;nov;tue;191;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+40;blue-collar;married;basic.4y;no;no;no;cellular;nov;tue;103;6;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+36;technician;married;high.school;no;no;no;cellular;nov;tue;255;3;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+41;blue-collar;married;professional.course;unknown;yes;no;cellular;nov;tue;190;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+31;admin.;married;high.school;no;no;no;cellular;nov;tue;204;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+46;self-employed;married;basic.4y;no;no;no;cellular;nov;tue;354;2;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+33;technician;single;basic.9y;no;no;no;cellular;nov;tue;61;3;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+46;entrepreneur;married;university.degree;no;yes;no;cellular;nov;tue;148;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+50;housemaid;married;basic.4y;no;no;no;cellular;nov;tue;878;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+32;admin.;married;university.degree;no;no;no;cellular;nov;tue;138;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+30;management;married;university.degree;no;no;yes;cellular;nov;tue;89;2;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+35;self-employed;divorced;university.degree;no;no;no;cellular;nov;tue;271;3;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+31;technician;single;university.degree;no;no;no;cellular;nov;tue;171;2;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+39;management;married;high.school;no;no;no;cellular;nov;tue;361;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+54;management;married;university.degree;no;no;no;cellular;nov;tue;244;3;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+34;services;married;basic.9y;no;no;no;cellular;nov;tue;218;2;4;1;success;-0.1;93.2;-42.0;4.153;5195.8;no
+44;services;married;high.school;unknown;no;no;cellular;nov;tue;43;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+37;management;married;university.degree;no;no;no;cellular;nov;tue;658;3;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+30;blue-collar;married;basic.9y;no;yes;no;cellular;nov;tue;136;2;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+54;admin.;married;basic.4y;unknown;yes;no;cellular;nov;tue;127;4;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+29;technician;married;professional.course;no;yes;no;cellular;nov;tue;54;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+29;technician;married;professional.course;no;no;no;cellular;nov;tue;154;3;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+37;management;single;university.degree;no;yes;no;cellular;nov;tue;242;2;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+51;admin.;married;university.degree;no;yes;no;cellular;nov;tue;275;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+42;admin.;married;university.degree;no;yes;no;telephone;nov;tue;217;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+31;admin.;single;university.degree;no;yes;no;cellular;nov;tue;84;4;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+31;technician;single;university.degree;no;no;no;cellular;nov;tue;110;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+48;technician;married;university.degree;no;no;no;cellular;nov;tue;373;4;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+32;admin.;divorced;high.school;no;no;no;cellular;nov;tue;115;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+31;technician;single;university.degree;no;no;no;cellular;nov;tue;259;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+34;services;single;high.school;no;no;no;cellular;nov;tue;202;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+50;entrepreneur;married;basic.4y;no;yes;no;cellular;nov;tue;286;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+54;admin.;married;university.degree;no;no;yes;cellular;nov;tue;98;4;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+31;admin.;married;high.school;no;yes;no;cellular;nov;tue;97;2;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+41;technician;single;professional.course;unknown;yes;no;cellular;nov;tue;68;2;4;1;success;-0.1;93.2;-42.0;4.153;5195.8;no
+29;unemployed;married;professional.course;no;yes;no;cellular;nov;tue;170;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+31;management;single;university.degree;no;yes;no;cellular;nov;tue;129;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+34;management;single;professional.course;no;yes;no;cellular;nov;tue;400;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+35;unemployed;divorced;professional.course;no;no;no;cellular;nov;tue;282;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+38;self-employed;married;high.school;unknown;yes;no;cellular;nov;tue;126;3;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+50;entrepreneur;married;basic.9y;no;yes;no;cellular;nov;tue;241;2;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+36;management;married;university.degree;no;yes;no;cellular;nov;tue;267;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+38;self-employed;married;professional.course;no;no;no;cellular;nov;tue;1788;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;yes
+56;retired;divorced;university.degree;no;yes;no;cellular;nov;tue;972;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+32;blue-collar;married;basic.4y;no;no;no;telephone;nov;tue;194;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+34;blue-collar;married;basic.4y;no;yes;no;cellular;nov;tue;87;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+33;entrepreneur;married;high.school;no;no;no;cellular;nov;tue;143;2;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+35;blue-collar;married;basic.6y;no;yes;no;cellular;nov;tue;372;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+33;admin.;single;university.degree;no;yes;yes;cellular;nov;tue;86;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+39;technician;single;professional.course;no;yes;no;cellular;nov;tue;58;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+32;blue-collar;single;university.degree;unknown;yes;yes;cellular;nov;tue;119;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+30;management;single;high.school;no;no;yes;cellular;nov;tue;117;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+48;management;married;basic.9y;no;unknown;unknown;cellular;nov;tue;373;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+49;entrepreneur;married;high.school;no;no;no;telephone;nov;tue;177;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+36;housemaid;divorced;basic.4y;no;no;no;cellular;nov;tue;84;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+50;housemaid;married;basic.4y;no;yes;no;telephone;nov;tue;150;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;yes
+36;housemaid;divorced;basic.4y;no;yes;no;cellular;nov;tue;171;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+34;technician;single;professional.course;no;yes;no;cellular;nov;tue;131;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+39;self-employed;married;university.degree;no;no;no;cellular;nov;tue;115;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+42;entrepreneur;married;university.degree;unknown;no;no;cellular;nov;tue;283;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+54;retired;married;high.school;unknown;yes;no;cellular;nov;tue;121;3;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+31;admin.;married;university.degree;no;yes;no;telephone;nov;tue;174;3;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+37;technician;married;professional.course;no;yes;no;cellular;nov;tue;238;3;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+32;blue-collar;married;basic.9y;no;yes;no;cellular;nov;tue;61;2;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+40;blue-collar;single;high.school;no;yes;no;cellular;nov;tue;139;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+54;technician;married;university.degree;no;no;no;cellular;nov;tue;810;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+42;blue-collar;married;basic.4y;unknown;yes;no;cellular;nov;tue;586;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+40;services;married;high.school;unknown;no;no;cellular;nov;tue;80;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+32;blue-collar;married;basic.9y;no;no;no;telephone;nov;tue;296;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+57;management;married;university.degree;no;no;yes;cellular;nov;tue;218;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+38;management;married;basic.9y;no;yes;no;cellular;nov;tue;390;3;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+40;admin.;married;professional.course;no;yes;no;cellular;nov;tue;271;5;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+47;management;married;university.degree;no;no;no;telephone;nov;tue;195;3;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+52;entrepreneur;married;basic.4y;no;no;no;cellular;nov;tue;173;7;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+42;self-employed;single;basic.4y;no;yes;no;cellular;nov;tue;100;2;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+38;admin.;married;high.school;no;yes;no;cellular;nov;tue;192;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+58;entrepreneur;married;basic.4y;unknown;yes;no;cellular;nov;tue;185;4;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+34;management;married;university.degree;no;yes;yes;cellular;nov;tue;411;3;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+30;entrepreneur;single;basic.9y;no;yes;no;cellular;nov;tue;108;5;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+36;housemaid;divorced;basic.4y;no;yes;no;cellular;nov;tue;163;2;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+45;entrepreneur;married;basic.4y;no;yes;no;cellular;nov;tue;167;5;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+47;admin.;married;university.degree;no;no;no;cellular;nov;tue;1014;3;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+57;retired;married;high.school;no;no;no;cellular;nov;tue;486;2;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+34;admin.;married;university.degree;no;no;no;cellular;nov;tue;140;2;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+36;blue-collar;married;basic.9y;no;no;yes;cellular;nov;tue;160;3;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+38;technician;single;basic.9y;no;yes;no;cellular;nov;tue;425;2;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+40;technician;married;basic.6y;unknown;yes;no;cellular;nov;tue;353;3;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+37;management;married;university.degree;no;yes;yes;cellular;nov;tue;84;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+35;admin.;married;university.degree;no;no;yes;telephone;nov;tue;79;4;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+29;admin.;divorced;high.school;no;yes;no;cellular;nov;tue;920;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+36;blue-collar;married;basic.9y;no;yes;no;cellular;nov;tue;893;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+36;management;single;university.degree;no;yes;no;cellular;nov;tue;240;3;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+40;technician;married;professional.course;no;yes;no;telephone;nov;tue;33;4;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+52;blue-collar;single;basic.9y;unknown;yes;no;cellular;nov;tue;77;3;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+32;blue-collar;married;basic.6y;no;yes;no;cellular;nov;tue;203;3;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+42;blue-collar;married;basic.6y;unknown;no;no;cellular;nov;tue;364;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+40;management;married;high.school;unknown;no;no;cellular;nov;tue;825;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+58;management;married;university.degree;unknown;yes;no;cellular;nov;tue;233;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+40;admin.;divorced;basic.9y;no;yes;no;cellular;nov;tue;394;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+51;admin.;married;basic.9y;no;no;yes;cellular;nov;tue;515;3;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+52;technician;married;professional.course;no;yes;yes;telephone;nov;tue;285;2;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+30;services;married;high.school;no;yes;no;cellular;nov;tue;65;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+35;services;divorced;basic.9y;no;yes;yes;cellular;nov;tue;62;6;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+30;services;married;high.school;no;no;no;cellular;nov;tue;200;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+29;technician;divorced;professional.course;no;no;no;cellular;nov;tue;55;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+43;blue-collar;married;basic.4y;unknown;yes;yes;telephone;nov;tue;249;3;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+31;technician;married;university.degree;no;yes;no;cellular;nov;tue;39;2;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+30;services;married;high.school;no;yes;no;cellular;nov;tue;493;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+50;admin.;married;university.degree;no;no;no;telephone;nov;tue;40;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+50;admin.;married;university.degree;no;no;no;cellular;nov;tue;99;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+39;blue-collar;married;basic.9y;no;yes;no;cellular;nov;tue;741;4;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;yes
+50;admin.;married;university.degree;no;no;yes;cellular;nov;tue;189;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+34;self-employed;single;high.school;no;yes;no;cellular;nov;tue;581;4;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+42;technician;single;unknown;no;yes;no;telephone;nov;tue;115;4;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+46;admin.;married;high.school;no;yes;no;cellular;nov;tue;154;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+43;technician;married;professional.course;no;yes;no;cellular;nov;tue;166;3;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+41;admin.;single;university.degree;no;yes;no;cellular;nov;tue;105;5;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+33;housemaid;married;high.school;no;no;no;cellular;nov;tue;188;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+42;self-employed;divorced;professional.course;no;yes;no;cellular;nov;tue;491;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+35;admin.;single;university.degree;no;yes;no;telephone;nov;tue;263;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+58;blue-collar;married;basic.9y;no;no;no;cellular;nov;tue;64;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+35;blue-collar;married;professional.course;no;yes;no;cellular;nov;tue;139;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+53;services;divorced;university.degree;no;yes;yes;cellular;nov;tue;105;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+58;blue-collar;married;basic.9y;no;yes;no;cellular;nov;tue;80;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+58;blue-collar;married;basic.9y;no;yes;no;cellular;nov;tue;180;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+58;blue-collar;married;basic.9y;no;yes;no;cellular;nov;tue;158;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+35;admin.;single;university.degree;no;no;no;cellular;nov;tue;898;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;yes
+36;blue-collar;married;basic.6y;no;no;no;cellular;nov;tue;111;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+36;blue-collar;married;basic.6y;no;no;no;cellular;nov;tue;246;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+39;unemployed;married;basic.9y;unknown;no;no;cellular;nov;tue;149;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+34;technician;divorced;professional.course;no;yes;no;cellular;nov;tue;83;2;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+32;blue-collar;married;basic.9y;no;yes;no;cellular;nov;tue;247;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+43;housemaid;single;basic.9y;no;no;no;cellular;nov;tue;173;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+48;technician;single;university.degree;no;yes;yes;cellular;nov;tue;193;4;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+48;self-employed;married;university.degree;no;yes;no;cellular;nov;tue;141;2;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+39;unemployed;married;basic.9y;unknown;yes;no;cellular;nov;tue;467;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+31;self-employed;single;university.degree;no;yes;no;telephone;nov;tue;176;4;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+34;technician;married;basic.9y;no;no;no;cellular;nov;tue;106;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+34;technician;married;basic.9y;no;yes;no;cellular;nov;tue;66;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+39;unemployed;married;basic.9y;unknown;no;yes;cellular;nov;tue;530;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+34;technician;married;basic.9y;no;no;no;cellular;nov;tue;110;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+34;admin.;married;high.school;no;no;no;cellular;nov;tue;201;3;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+29;unemployed;divorced;university.degree;no;yes;no;telephone;nov;tue;366;3;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+43;admin.;married;high.school;no;yes;no;telephone;nov;tue;82;6;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+44;management;married;basic.9y;no;yes;no;cellular;nov;tue;129;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+36;admin.;married;high.school;no;yes;no;cellular;nov;tue;136;5;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+34;technician;single;high.school;no;yes;no;telephone;nov;tue;251;4;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+42;admin.;married;high.school;no;no;no;cellular;nov;tue;203;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+45;services;married;high.school;unknown;no;no;cellular;nov;tue;75;5;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+37;entrepreneur;married;university.degree;no;no;no;cellular;nov;tue;543;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;yes
+36;technician;single;professional.course;no;yes;no;telephone;nov;tue;34;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+33;technician;single;high.school;no;yes;no;telephone;nov;tue;1476;3;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+36;technician;single;professional.course;no;yes;no;cellular;nov;tue;216;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+37;technician;married;professional.course;no;yes;no;cellular;nov;tue;252;2;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+33;admin.;single;high.school;no;no;no;cellular;nov;tue;436;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+42;blue-collar;married;basic.6y;no;yes;yes;cellular;nov;tue;288;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+56;blue-collar;single;basic.4y;unknown;no;yes;cellular;nov;tue;307;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+37;technician;married;professional.course;no;yes;no;telephone;nov;tue;164;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+37;technician;married;professional.course;no;no;no;cellular;nov;tue;91;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+30;technician;married;professional.course;no;no;no;cellular;nov;tue;679;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+37;technician;married;professional.course;no;yes;no;cellular;nov;tue;400;1;999;0;nonexistent;-0.1;93.2;-42.0;4.153;5195.8;no
+36;technician;single;professional.course;no;yes;no;cellular;nov;tue;1132;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;yes
+37;technician;married;professional.course;no;no;no;cellular;nov;tue;372;1;999;1;failure;-0.1;93.2;-42.0;4.153;5195.8;no
+56;management;divorced;university.degree;no;no;no;cellular;nov;wed;90;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+30;blue-collar;married;basic.4y;no;yes;no;cellular;nov;wed;77;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+34;entrepreneur;single;basic.9y;no;no;yes;cellular;nov;wed;139;3;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+38;technician;divorced;high.school;no;no;no;telephone;nov;wed;59;5;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+31;blue-collar;married;basic.9y;no;yes;no;cellular;nov;wed;167;3;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+35;technician;married;professional.course;no;no;no;cellular;nov;wed;427;3;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+35;admin.;single;university.degree;no;no;no;cellular;nov;wed;187;5;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+30;blue-collar;married;basic.9y;no;no;no;cellular;nov;wed;308;5;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+40;blue-collar;married;basic.4y;no;yes;no;telephone;nov;wed;178;5;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+43;self-employed;married;basic.4y;no;no;yes;cellular;nov;wed;206;5;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+29;management;single;university.degree;no;no;no;cellular;nov;wed;89;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+29;management;single;university.degree;no;no;no;cellular;nov;wed;62;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+29;admin.;single;university.degree;no;no;no;cellular;nov;wed;308;4;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+32;entrepreneur;married;basic.6y;no;yes;yes;cellular;nov;wed;56;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+29;management;single;university.degree;no;no;no;cellular;nov;wed;209;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+29;management;single;university.degree;no;yes;no;telephone;nov;wed;103;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+31;blue-collar;married;basic.4y;no;yes;yes;cellular;nov;wed;98;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+31;blue-collar;single;high.school;no;yes;no;cellular;nov;wed;180;3;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+38;admin.;divorced;university.degree;unknown;yes;no;cellular;nov;wed;697;2;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+33;admin.;married;university.degree;no;yes;yes;cellular;nov;wed;84;3;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+33;management;married;university.degree;no;no;yes;cellular;nov;wed;113;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+41;admin.;married;basic.9y;no;yes;no;cellular;nov;wed;135;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+36;management;married;university.degree;no;yes;no;cellular;nov;wed;157;4;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+33;management;married;university.degree;no;yes;yes;cellular;nov;wed;299;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+33;services;divorced;high.school;no;yes;no;cellular;nov;wed;100;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+35;technician;single;high.school;no;yes;yes;cellular;nov;wed;819;3;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;yes
+34;admin.;single;high.school;no;no;no;cellular;nov;wed;347;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+31;admin.;single;high.school;no;no;no;cellular;nov;wed;511;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;yes
+32;blue-collar;single;high.school;no;yes;yes;cellular;nov;wed;126;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+32;blue-collar;single;high.school;no;yes;no;cellular;nov;wed;108;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+45;self-employed;married;basic.6y;unknown;yes;no;cellular;nov;wed;101;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+34;admin.;single;high.school;no;no;no;cellular;nov;wed;740;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+49;management;divorced;university.degree;no;no;no;cellular;nov;wed;364;2;6;1;success;-0.1;93.2;-42.0;4.12;5195.8;no
+30;entrepreneur;married;high.school;no;no;no;cellular;nov;wed;706;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+48;blue-collar;single;basic.9y;no;yes;no;cellular;nov;wed;43;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+33;management;married;high.school;no;no;yes;cellular;nov;wed;375;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+55;admin.;divorced;high.school;no;unknown;unknown;cellular;nov;wed;370;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+33;services;single;high.school;no;yes;yes;cellular;nov;wed;125;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+30;technician;married;professional.course;unknown;yes;no;cellular;nov;wed;242;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+40;technician;married;professional.course;unknown;yes;no;cellular;nov;wed;147;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+38;blue-collar;married;basic.9y;no;yes;no;cellular;nov;wed;112;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+46;admin.;divorced;university.degree;no;yes;yes;cellular;nov;wed;184;2;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+39;self-employed;married;basic.4y;unknown;no;no;cellular;nov;wed;159;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+39;self-employed;married;university.degree;unknown;no;no;cellular;nov;wed;199;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+41;management;married;university.degree;no;no;no;cellular;nov;wed;140;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+58;retired;married;professional.course;no;no;no;cellular;nov;wed;189;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+41;management;married;university.degree;no;no;no;cellular;nov;wed;192;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+44;services;single;high.school;no;no;no;cellular;nov;wed;305;4;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+48;housemaid;married;basic.6y;no;no;no;cellular;nov;wed;167;4;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+48;admin.;single;professional.course;no;no;no;cellular;nov;wed;207;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+32;blue-collar;married;high.school;no;yes;no;cellular;nov;wed;104;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+30;blue-collar;single;basic.9y;no;no;no;cellular;nov;wed;30;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+35;housemaid;single;basic.4y;unknown;unknown;unknown;cellular;nov;wed;316;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+29;blue-collar;married;basic.9y;no;yes;yes;cellular;nov;wed;133;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+58;retired;married;professional.course;no;no;no;cellular;nov;wed;577;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+38;admin.;single;university.degree;no;yes;no;cellular;nov;wed;305;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+30;blue-collar;single;basic.9y;no;no;no;cellular;nov;wed;204;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+40;self-employed;married;university.degree;no;no;no;cellular;nov;wed;210;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+47;admin.;married;basic.9y;no;yes;no;cellular;nov;wed;126;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+38;technician;divorced;high.school;no;yes;no;telephone;nov;wed;137;4;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+48;admin.;single;professional.course;no;yes;no;cellular;nov;wed;530;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+35;management;married;university.degree;no;yes;no;cellular;nov;wed;400;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+32;technician;single;professional.course;no;no;no;cellular;nov;wed;295;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+36;technician;married;university.degree;no;no;no;cellular;nov;wed;221;4;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+39;blue-collar;married;basic.9y;no;yes;no;cellular;nov;wed;158;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+32;technician;single;university.degree;no;yes;no;cellular;nov;wed;58;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+45;technician;married;professional.course;no;no;no;cellular;nov;wed;193;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+31;management;single;university.degree;no;no;no;cellular;nov;wed;187;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+46;management;divorced;high.school;no;no;no;cellular;nov;wed;499;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+33;technician;single;unknown;no;no;no;cellular;nov;wed;313;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+38;admin.;married;high.school;no;yes;no;telephone;nov;wed;125;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+44;services;single;high.school;no;yes;yes;cellular;nov;wed;277;4;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+32;unemployed;divorced;high.school;no;no;no;cellular;nov;wed;194;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+48;admin.;single;university.degree;no;yes;no;cellular;nov;wed;210;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+39;technician;married;professional.course;no;no;no;telephone;nov;wed;70;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+31;unemployed;single;professional.course;no;yes;no;cellular;nov;wed;192;1;0;1;success;-0.1;93.2;-42.0;4.12;5195.8;no
+31;admin.;married;university.degree;no;yes;no;cellular;nov;wed;162;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+37;management;married;university.degree;no;yes;no;cellular;nov;wed;140;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+29;admin.;divorced;basic.9y;no;yes;no;cellular;nov;wed;134;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+30;self-employed;married;high.school;no;no;no;cellular;nov;wed;67;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+32;unemployed;divorced;high.school;no;yes;no;cellular;nov;wed;351;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+33;management;married;university.degree;no;no;no;cellular;nov;wed;143;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+35;self-employed;single;university.degree;no;no;yes;cellular;nov;wed;197;1;3;1;success;-0.1;93.2;-42.0;4.12;5195.8;no
+34;technician;married;professional.course;no;yes;no;cellular;nov;wed;82;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+41;admin.;single;university.degree;no;yes;no;cellular;nov;wed;369;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+44;entrepreneur;married;high.school;no;no;no;cellular;nov;wed;130;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+35;admin.;married;university.degree;no;yes;no;cellular;nov;wed;114;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+35;admin.;married;university.degree;no;yes;no;cellular;nov;wed;112;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+45;technician;divorced;professional.course;unknown;yes;yes;cellular;nov;wed;136;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+44;entrepreneur;married;high.school;no;no;no;cellular;nov;wed;289;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+34;technician;married;university.degree;no;yes;no;cellular;nov;wed;36;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+34;technician;married;university.degree;no;no;no;cellular;nov;wed;145;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+30;admin.;divorced;university.degree;no;yes;no;cellular;nov;wed;589;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+58;management;divorced;university.degree;no;yes;no;cellular;nov;wed;168;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+30;management;single;university.degree;no;no;no;cellular;nov;wed;493;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+35;management;married;university.degree;no;yes;no;cellular;nov;wed;265;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+34;self-employed;married;university.degree;no;yes;no;cellular;nov;wed;905;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+58;management;divorced;university.degree;no;no;no;cellular;nov;wed;418;1;5;1;success;-0.1;93.2;-42.0;4.12;5195.8;yes
+43;admin.;married;university.degree;no;no;no;cellular;nov;wed;97;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+35;admin.;married;university.degree;no;no;no;cellular;nov;wed;682;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+33;blue-collar;married;basic.9y;no;yes;no;cellular;nov;wed;244;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+36;housemaid;divorced;basic.9y;unknown;yes;no;cellular;nov;wed;107;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+51;housemaid;married;high.school;no;no;no;cellular;nov;wed;355;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+29;technician;single;professional.course;no;yes;yes;telephone;nov;wed;161;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+41;services;divorced;high.school;no;yes;no;cellular;nov;wed;296;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+32;technician;married;professional.course;no;yes;yes;cellular;nov;wed;1554;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;yes
+35;admin.;married;university.degree;no;yes;no;cellular;nov;wed;820;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;yes
+34;technician;married;university.degree;no;yes;no;cellular;nov;wed;686;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;yes
+45;technician;married;university.degree;no;yes;no;cellular;nov;wed;278;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+40;technician;married;professional.course;unknown;no;no;cellular;nov;wed;291;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+51;admin.;married;high.school;no;no;no;cellular;nov;wed;286;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+29;technician;single;basic.9y;no;no;yes;cellular;nov;wed;224;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+31;technician;single;professional.course;no;no;no;cellular;nov;wed;215;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+29;admin.;married;high.school;no;yes;yes;cellular;nov;wed;155;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+30;admin.;single;high.school;no;yes;yes;cellular;nov;wed;236;3;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+38;technician;divorced;high.school;no;yes;no;cellular;nov;wed;110;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+45;technician;married;university.degree;no;yes;no;cellular;nov;wed;770;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+29;blue-collar;married;basic.4y;no;no;yes;cellular;nov;wed;441;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+32;management;divorced;university.degree;no;no;no;cellular;nov;wed;77;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+38;management;married;professional.course;unknown;yes;no;cellular;nov;wed;58;3;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+50;blue-collar;married;basic.4y;no;yes;no;cellular;nov;wed;139;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+29;technician;single;basic.9y;no;yes;no;cellular;nov;wed;648;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+33;entrepreneur;married;high.school;no;yes;no;cellular;nov;wed;902;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+35;technician;married;high.school;no;no;yes;cellular;nov;wed;470;2;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+36;admin.;single;university.degree;no;no;no;cellular;nov;wed;106;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+36;admin.;single;university.degree;no;yes;yes;cellular;nov;wed;89;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+36;admin.;single;university.degree;no;yes;no;telephone;nov;wed;72;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+48;admin.;married;university.degree;no;yes;no;cellular;nov;wed;288;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+32;technician;single;professional.course;no;yes;no;cellular;nov;wed;140;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+42;entrepreneur;single;university.degree;no;yes;no;cellular;nov;wed;61;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+29;entrepreneur;married;basic.9y;no;yes;no;cellular;nov;wed;202;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+37;admin.;married;professional.course;unknown;yes;no;cellular;nov;wed;37;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+38;management;married;university.degree;no;yes;no;cellular;nov;wed;64;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+30;admin.;single;high.school;no;yes;no;cellular;nov;wed;109;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+29;entrepreneur;married;basic.9y;no;yes;no;cellular;nov;wed;336;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+35;admin.;married;university.degree;no;yes;no;cellular;nov;wed;925;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;yes
+43;blue-collar;married;basic.9y;no;yes;no;cellular;nov;wed;239;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+48;admin.;single;university.degree;no;yes;no;cellular;nov;wed;473;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+36;admin.;divorced;high.school;no;no;no;cellular;nov;wed;424;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+31;technician;married;university.degree;no;no;no;cellular;nov;wed;298;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+34;admin.;married;high.school;no;no;no;cellular;nov;wed;183;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+36;blue-collar;married;basic.6y;no;yes;no;cellular;nov;wed;70;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+36;blue-collar;married;basic.6y;no;yes;no;cellular;nov;wed;169;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+48;admin.;single;university.degree;no;no;no;cellular;nov;wed;808;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+36;admin.;divorced;high.school;no;yes;no;cellular;nov;wed;862;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;yes
+29;housemaid;single;high.school;no;no;no;cellular;nov;wed;786;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;yes
+49;technician;married;professional.course;no;yes;no;cellular;nov;wed;298;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+31;blue-collar;married;high.school;no;no;no;cellular;nov;wed;436;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+56;self-employed;married;university.degree;no;yes;no;cellular;nov;wed;108;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+30;blue-collar;single;university.degree;no;yes;no;cellular;nov;wed;225;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+32;technician;married;university.degree;no;yes;no;cellular;nov;wed;86;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+36;blue-collar;married;basic.6y;no;yes;no;cellular;nov;wed;723;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+34;blue-collar;married;basic.9y;unknown;no;yes;cellular;nov;wed;104;3;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+29;housemaid;single;high.school;no;yes;no;cellular;nov;wed;993;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;yes
+47;services;married;high.school;no;yes;no;cellular;nov;wed;311;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+33;admin.;married;university.degree;no;no;no;cellular;nov;wed;122;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+34;admin.;married;university.degree;no;no;no;cellular;nov;wed;85;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+46;blue-collar;married;basic.9y;no;yes;yes;cellular;nov;wed;814;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;yes
+30;technician;married;university.degree;no;yes;no;cellular;nov;wed;154;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+46;blue-collar;single;basic.4y;unknown;no;no;cellular;nov;wed;584;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+54;housemaid;married;basic.9y;no;yes;yes;cellular;nov;wed;133;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+29;management;married;basic.9y;no;yes;no;cellular;nov;wed;103;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+59;housemaid;single;professional.course;no;no;no;cellular;nov;wed;69;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+33;technician;single;professional.course;no;unknown;unknown;cellular;nov;wed;401;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+33;admin.;single;high.school;no;no;no;cellular;nov;wed;578;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+36;blue-collar;married;basic.4y;no;no;yes;cellular;nov;wed;217;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+36;self-employed;divorced;university.degree;no;yes;no;cellular;nov;wed;177;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+49;management;married;high.school;no;yes;no;cellular;nov;wed;182;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+34;entrepreneur;married;professional.course;no;yes;no;cellular;nov;wed;203;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+50;entrepreneur;married;basic.4y;unknown;yes;no;telephone;nov;wed;53;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+33;technician;single;high.school;no;yes;no;cellular;nov;wed;375;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+38;blue-collar;married;basic.4y;no;yes;no;cellular;nov;wed;157;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+35;admin.;married;university.degree;no;no;no;cellular;nov;wed;630;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+32;technician;married;university.degree;no;no;no;cellular;nov;wed;223;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+32;blue-collar;single;high.school;no;no;no;cellular;nov;wed;361;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+32;admin.;single;university.degree;no;no;no;telephone;nov;wed;125;3;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+38;services;married;high.school;no;no;no;cellular;nov;wed;426;2;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+29;admin.;married;university.degree;no;yes;no;cellular;nov;wed;117;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+35;admin.;married;university.degree;no;yes;no;cellular;nov;wed;185;2;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+49;management;married;high.school;no;no;no;cellular;nov;wed;582;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+43;services;divorced;high.school;no;no;no;cellular;nov;wed;466;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+33;admin.;single;high.school;no;yes;no;cellular;nov;wed;222;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+43;management;married;university.degree;no;yes;yes;cellular;nov;wed;1084;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;yes
+32;services;married;high.school;no;no;no;cellular;nov;wed;44;4;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+40;services;married;basic.9y;no;no;no;cellular;nov;wed;76;6;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+32;student;married;university.degree;no;no;no;cellular;nov;wed;154;3;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+48;management;married;university.degree;unknown;no;no;cellular;nov;wed;51;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+53;management;married;basic.4y;no;no;no;cellular;nov;wed;164;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+34;admin.;married;basic.6y;no;yes;yes;cellular;nov;wed;102;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+49;blue-collar;married;basic.9y;unknown;no;no;cellular;nov;wed;227;4;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+34;management;single;university.degree;no;yes;no;telephone;nov;wed;111;2;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+47;unemployed;married;professional.course;no;no;no;cellular;nov;wed;98;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+52;blue-collar;married;professional.course;unknown;yes;no;cellular;nov;wed;442;2;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+36;management;married;university.degree;no;no;no;cellular;nov;wed;226;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+48;admin.;married;university.degree;no;yes;no;cellular;nov;wed;256;3;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+33;services;single;high.school;no;yes;no;cellular;nov;wed;210;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+38;unemployed;married;university.degree;no;yes;no;cellular;nov;wed;233;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+47;unemployed;married;professional.course;no;yes;no;cellular;nov;wed;211;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+36;blue-collar;married;basic.6y;no;no;no;cellular;nov;wed;130;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+47;unemployed;married;professional.course;no;yes;no;cellular;nov;wed;248;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+34;admin.;single;university.degree;no;yes;no;cellular;nov;wed;52;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+56;services;divorced;high.school;unknown;yes;yes;cellular;nov;wed;457;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+34;admin.;single;university.degree;no;yes;no;cellular;nov;wed;249;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+33;blue-collar;married;basic.4y;no;no;no;cellular;nov;wed;419;5;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+30;blue-collar;single;basic.9y;no;no;yes;telephone;nov;wed;117;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+44;blue-collar;single;unknown;no;yes;no;cellular;nov;wed;198;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+47;blue-collar;married;basic.4y;no;no;no;cellular;nov;wed;202;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+50;blue-collar;married;basic.6y;no;yes;no;cellular;nov;wed;206;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+35;management;single;university.degree;no;no;no;cellular;nov;wed;201;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+37;unemployed;married;professional.course;no;no;no;cellular;nov;wed;144;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+45;services;divorced;basic.9y;no;no;no;cellular;nov;wed;137;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+38;technician;married;professional.course;unknown;no;no;telephone;nov;wed;100;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+44;services;single;high.school;no;no;no;cellular;nov;wed;75;2;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+53;blue-collar;single;basic.4y;no;no;no;cellular;nov;wed;140;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+43;services;divorced;high.school;no;no;no;cellular;nov;wed;1015;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;yes
+30;entrepreneur;single;university.degree;no;yes;no;cellular;nov;wed;489;3;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;yes
+31;technician;married;professional.course;no;no;no;cellular;nov;wed;212;3;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+29;blue-collar;married;basic.4y;no;no;no;cellular;nov;wed;219;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+38;management;married;university.degree;no;yes;no;cellular;nov;wed;122;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+36;management;married;university.degree;no;yes;no;cellular;nov;wed;20;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+36;management;married;university.degree;no;no;no;cellular;nov;wed;75;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+36;management;married;university.degree;no;yes;no;cellular;nov;wed;94;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+41;blue-collar;married;basic.6y;no;yes;no;cellular;nov;wed;264;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+40;technician;married;high.school;no;yes;no;cellular;nov;wed;118;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+54;technician;married;professional.course;no;yes;yes;cellular;nov;wed;46;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+40;admin.;single;high.school;no;no;no;cellular;nov;wed;59;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+35;admin.;married;university.degree;no;yes;no;cellular;nov;wed;94;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+32;services;married;high.school;no;no;no;cellular;nov;wed;79;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+31;admin.;single;high.school;no;yes;no;cellular;nov;wed;79;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+31;admin.;single;high.school;no;yes;no;cellular;nov;wed;66;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+35;technician;married;university.degree;unknown;no;no;cellular;nov;wed;698;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+35;technician;married;university.degree;unknown;yes;no;cellular;nov;wed;108;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+33;services;married;high.school;no;yes;no;cellular;nov;wed;694;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;yes
+45;management;married;basic.9y;no;yes;no;cellular;nov;wed;363;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+31;admin.;single;high.school;no;yes;no;cellular;nov;wed;242;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+47;housemaid;married;unknown;no;yes;no;cellular;nov;wed;87;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+49;blue-collar;married;basic.9y;unknown;yes;no;cellular;nov;wed;52;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+28;self-employed;married;university.degree;no;yes;no;telephone;nov;wed;20;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+35;technician;married;university.degree;unknown;yes;no;cellular;nov;wed;337;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+58;management;divorced;high.school;no;yes;no;cellular;nov;wed;308;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+37;admin.;married;university.degree;no;no;no;telephone;nov;wed;274;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+30;services;married;professional.course;no;no;no;cellular;nov;wed;84;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+40;admin.;single;high.school;no;no;no;cellular;nov;wed;631;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+33;services;single;high.school;no;no;no;cellular;nov;wed;244;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+36;services;married;university.degree;no;yes;no;cellular;nov;wed;86;3;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+55;admin.;married;university.degree;no;no;no;cellular;nov;wed;123;2;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+29;management;married;basic.9y;no;yes;no;cellular;nov;wed;117;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+40;admin.;married;basic.9y;no;yes;no;cellular;nov;wed;186;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+32;technician;married;high.school;no;yes;no;cellular;nov;wed;352;4;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+32;management;single;professional.course;no;yes;no;cellular;nov;wed;39;4;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+36;blue-collar;married;basic.9y;no;yes;yes;cellular;nov;wed;325;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+51;self-employed;divorced;university.degree;no;yes;no;cellular;nov;wed;670;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;yes
+48;admin.;single;basic.4y;unknown;no;no;cellular;nov;wed;340;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+42;entrepreneur;single;university.degree;no;yes;no;cellular;nov;wed;145;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+32;entrepreneur;married;high.school;no;yes;no;cellular;nov;wed;100;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+42;admin.;single;university.degree;no;no;no;cellular;nov;wed;72;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+34;technician;married;high.school;no;yes;no;telephone;nov;wed;53;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+32;entrepreneur;married;high.school;no;yes;no;cellular;nov;wed;190;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+33;technician;married;university.degree;no;no;no;cellular;nov;wed;200;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+35;admin.;married;basic.9y;no;yes;yes;cellular;nov;wed;47;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+38;entrepreneur;married;professional.course;no;yes;no;cellular;nov;wed;388;3;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+36;management;married;university.degree;no;no;no;cellular;nov;wed;498;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+34;services;single;high.school;no;yes;no;cellular;nov;wed;149;2;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+37;management;single;university.degree;no;yes;no;cellular;nov;wed;171;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+34;technician;married;high.school;no;no;yes;cellular;nov;wed;561;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;yes
+33;entrepreneur;married;basic.9y;unknown;no;no;cellular;nov;wed;636;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+37;blue-collar;married;basic.9y;no;yes;no;cellular;nov;wed;357;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+39;admin.;married;high.school;no;no;no;cellular;nov;wed;138;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+36;admin.;single;university.degree;no;yes;yes;cellular;nov;wed;118;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+36;admin.;single;university.degree;no;no;no;cellular;nov;wed;149;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+43;admin.;single;high.school;no;no;no;cellular;nov;wed;1011;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;yes
+29;services;single;high.school;no;yes;no;cellular;nov;wed;402;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+36;admin.;single;university.degree;no;no;no;cellular;nov;wed;154;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+56;retired;single;university.degree;no;yes;no;cellular;nov;wed;68;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+46;blue-collar;married;basic.9y;no;no;no;telephone;nov;wed;66;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+38;blue-collar;married;professional.course;no;yes;yes;cellular;nov;wed;87;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+45;housemaid;married;high.school;unknown;no;no;cellular;nov;wed;289;3;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+35;blue-collar;married;high.school;no;yes;no;cellular;nov;wed;661;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+36;entrepreneur;single;university.degree;no;yes;no;cellular;nov;wed;95;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+35;services;married;university.degree;no;no;no;cellular;nov;wed;270;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+36;entrepreneur;single;university.degree;no;yes;no;cellular;nov;wed;142;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+32;services;married;high.school;no;yes;no;cellular;nov;wed;74;1;5;1;success;-0.1;93.2;-42.0;4.12;5195.8;no
+44;admin.;single;university.degree;no;no;no;cellular;nov;wed;60;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+47;technician;married;university.degree;no;no;no;cellular;nov;wed;258;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+32;services;married;high.school;no;no;yes;cellular;nov;wed;222;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+44;admin.;single;university.degree;no;yes;no;cellular;nov;wed;132;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+34;self-employed;married;professional.course;no;yes;no;cellular;nov;wed;103;3;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+46;management;divorced;high.school;no;yes;yes;cellular;nov;wed;122;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+51;admin.;married;university.degree;no;yes;no;cellular;nov;wed;93;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+31;technician;single;university.degree;no;yes;no;cellular;nov;wed;133;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+36;blue-collar;married;high.school;no;yes;no;cellular;nov;wed;40;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+34;management;single;high.school;no;no;no;cellular;nov;wed;292;3;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+35;admin.;married;university.degree;no;yes;no;cellular;nov;wed;654;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;yes
+41;admin.;married;university.degree;no;yes;no;cellular;nov;wed;58;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+30;blue-collar;married;basic.9y;no;yes;no;cellular;nov;wed;63;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+31;management;single;university.degree;no;yes;no;cellular;nov;wed;424;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;yes
+54;technician;married;basic.9y;no;no;no;cellular;nov;wed;198;3;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+55;admin.;married;university.degree;no;yes;yes;cellular;nov;wed;63;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+35;blue-collar;single;professional.course;no;yes;yes;cellular;nov;wed;51;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+36;entrepreneur;single;university.degree;no;yes;no;cellular;nov;wed;911;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;yes
+41;admin.;married;university.degree;no;no;no;cellular;nov;wed;392;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+38;admin.;married;basic.9y;no;yes;yes;cellular;nov;wed;122;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+36;entrepreneur;single;university.degree;no;yes;no;cellular;nov;wed;998;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;yes
+32;technician;married;university.degree;no;yes;no;cellular;nov;wed;405;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+38;blue-collar;divorced;high.school;no;yes;yes;cellular;nov;wed;291;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+53;blue-collar;married;basic.9y;no;no;no;cellular;nov;wed;137;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+45;admin.;married;high.school;no;yes;no;cellular;nov;wed;90;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+39;self-employed;married;basic.9y;no;no;no;cellular;nov;wed;46;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+32;blue-collar;single;high.school;no;unknown;unknown;cellular;nov;wed;77;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+29;management;single;university.degree;no;no;no;cellular;nov;wed;802;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;yes
+40;blue-collar;married;basic.6y;no;yes;no;cellular;nov;wed;1057;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;yes
+36;admin.;married;university.degree;no;no;no;cellular;nov;wed;64;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+51;entrepreneur;married;university.degree;no;no;no;cellular;nov;wed;87;2;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+31;management;married;university.degree;no;yes;no;cellular;nov;wed;196;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+32;blue-collar;married;basic.9y;no;no;no;cellular;nov;wed;161;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+34;management;married;university.degree;no;yes;no;cellular;nov;wed;96;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+56;retired;married;basic.9y;no;no;no;cellular;nov;wed;75;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+35;housemaid;divorced;basic.9y;no;no;no;cellular;nov;wed;60;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+35;housemaid;divorced;basic.9y;no;yes;no;cellular;nov;wed;69;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+33;unemployed;married;basic.9y;no;yes;no;telephone;nov;wed;41;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+34;unemployed;married;basic.4y;unknown;yes;no;cellular;nov;wed;98;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+40;management;married;professional.course;no;yes;no;cellular;nov;wed;162;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+58;retired;married;basic.9y;no;yes;no;cellular;nov;wed;341;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+30;blue-collar;married;professional.course;no;no;no;cellular;nov;wed;332;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+34;self-employed;married;university.degree;no;no;no;cellular;nov;wed;126;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+49;management;divorced;university.degree;no;no;yes;cellular;nov;wed;187;5;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+40;technician;single;university.degree;no;no;no;cellular;nov;wed;281;3;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+44;services;married;high.school;no;no;no;cellular;nov;wed;37;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+32;student;single;university.degree;no;no;no;cellular;nov;wed;138;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+48;blue-collar;single;basic.9y;no;no;no;cellular;nov;wed;141;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+32;student;single;university.degree;no;yes;no;cellular;nov;wed;135;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+31;entrepreneur;married;university.degree;no;yes;no;cellular;nov;wed;274;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+47;management;married;basic.9y;no;no;no;cellular;nov;wed;169;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+53;blue-collar;married;basic.9y;no;yes;no;cellular;nov;wed;205;2;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+36;blue-collar;married;basic.6y;unknown;no;no;cellular;nov;wed;83;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+30;admin.;divorced;high.school;no;no;no;cellular;nov;wed;113;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+30;admin.;divorced;high.school;no;yes;no;cellular;nov;wed;114;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+32;entrepreneur;married;high.school;no;yes;no;telephone;nov;wed;60;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+29;blue-collar;single;basic.9y;no;no;no;cellular;nov;wed;161;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+29;blue-collar;single;basic.9y;no;yes;no;cellular;nov;wed;128;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+36;technician;married;high.school;no;no;no;cellular;nov;wed;187;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+52;self-employed;married;university.degree;no;no;no;cellular;nov;wed;134;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+34;blue-collar;married;basic.6y;unknown;yes;yes;cellular;nov;wed;182;2;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+44;self-employed;married;university.degree;no;yes;no;cellular;nov;wed;87;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+46;management;married;unknown;no;yes;no;cellular;nov;wed;248;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+51;entrepreneur;divorced;university.degree;no;yes;no;cellular;nov;wed;133;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+52;entrepreneur;married;unknown;no;yes;no;cellular;nov;wed;149;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+36;admin.;single;university.degree;no;yes;no;cellular;nov;wed;152;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+29;services;married;high.school;no;no;no;cellular;nov;wed;133;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+31;technician;single;basic.9y;unknown;yes;yes;cellular;nov;wed;131;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+44;technician;married;professional.course;no;no;no;cellular;nov;wed;68;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+52;management;married;university.degree;no;yes;no;cellular;nov;wed;50;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+32;services;married;unknown;no;yes;yes;telephone;nov;wed;265;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+36;admin.;single;university.degree;no;yes;no;cellular;nov;wed;565;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+35;self-employed;married;university.degree;no;yes;no;cellular;nov;wed;405;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+39;technician;single;professional.course;no;yes;no;cellular;nov;wed;134;4;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+50;self-employed;unknown;basic.6y;no;no;no;cellular;nov;wed;968;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+31;services;married;high.school;unknown;yes;no;cellular;nov;wed;82;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+46;blue-collar;married;basic.4y;no;yes;no;cellular;nov;wed;416;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+31;technician;married;basic.9y;no;yes;no;cellular;nov;wed;17;5;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+52;technician;single;basic.4y;unknown;yes;no;cellular;nov;wed;208;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+48;technician;married;professional.course;no;no;no;cellular;nov;wed;201;3;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+34;technician;married;professional.course;no;yes;no;cellular;nov;wed;374;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+58;management;married;university.degree;no;yes;no;cellular;nov;wed;581;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+48;admin.;single;high.school;no;yes;no;cellular;nov;wed;105;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+55;technician;married;basic.9y;no;no;no;cellular;nov;wed;1548;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+54;management;divorced;university.degree;no;yes;no;cellular;nov;wed;150;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+52;admin.;married;high.school;no;yes;no;cellular;nov;wed;210;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+42;entrepreneur;single;university.degree;no;no;no;cellular;nov;wed;131;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+43;admin.;single;university.degree;no;no;no;cellular;nov;wed;97;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+30;admin.;divorced;high.school;no;yes;no;cellular;nov;wed;124;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+30;admin.;single;university.degree;no;yes;no;cellular;nov;wed;742;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+42;management;married;university.degree;no;yes;no;cellular;nov;wed;151;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+31;entrepreneur;married;high.school;no;yes;no;cellular;nov;wed;360;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+31;blue-collar;married;basic.9y;no;no;no;cellular;nov;wed;96;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+31;blue-collar;married;basic.9y;no;yes;yes;cellular;nov;wed;117;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+38;entrepreneur;divorced;basic.9y;no;yes;yes;cellular;nov;wed;70;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+47;management;married;basic.4y;unknown;no;no;cellular;nov;wed;57;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+52;blue-collar;married;professional.course;unknown;yes;no;cellular;nov;wed;85;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+30;admin.;married;university.degree;no;yes;yes;cellular;nov;wed;89;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+47;management;married;basic.4y;unknown;yes;no;cellular;nov;wed;117;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+33;services;married;high.school;no;yes;yes;cellular;nov;wed;69;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+35;self-employed;single;university.degree;no;yes;no;cellular;nov;wed;414;3;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+33;admin.;married;high.school;no;yes;no;cellular;nov;wed;323;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+47;management;married;university.degree;no;yes;no;cellular;nov;wed;168;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+38;technician;married;professional.course;no;yes;no;cellular;nov;wed;111;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+38;technician;married;professional.course;no;yes;no;cellular;nov;wed;227;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+30;management;married;university.degree;no;no;no;cellular;nov;wed;72;5;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+32;admin.;single;high.school;no;yes;yes;cellular;nov;wed;76;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+38;blue-collar;married;basic.6y;no;yes;no;cellular;nov;wed;448;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+47;management;married;basic.4y;unknown;no;no;cellular;nov;wed;755;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+39;admin.;single;university.degree;no;yes;no;cellular;nov;wed;514;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+30;services;married;professional.course;no;yes;no;cellular;nov;wed;482;3;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+33;admin.;divorced;high.school;no;no;no;telephone;nov;wed;50;4;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+30;services;married;high.school;no;no;no;cellular;nov;wed;101;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+35;blue-collar;single;high.school;no;no;no;cellular;nov;wed;77;2;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+29;blue-collar;married;basic.9y;unknown;no;no;cellular;nov;wed;85;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+36;management;married;university.degree;no;yes;no;cellular;nov;wed;638;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+40;technician;married;basic.9y;no;no;no;cellular;nov;wed;59;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+31;admin.;married;university.degree;no;yes;no;cellular;nov;wed;779;2;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+40;technician;married;basic.9y;no;no;no;cellular;nov;wed;198;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+31;services;married;high.school;no;no;no;cellular;nov;wed;190;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+34;management;married;university.degree;no;no;no;cellular;nov;wed;363;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+34;services;single;high.school;no;no;no;cellular;nov;wed;155;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+45;blue-collar;married;basic.4y;no;yes;yes;cellular;nov;wed;130;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+30;admin.;married;university.degree;no;yes;no;cellular;nov;wed;19;5;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+40;technician;married;basic.9y;no;no;no;telephone;nov;wed;319;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+44;services;single;high.school;no;yes;no;cellular;nov;wed;116;5;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+40;technician;married;professional.course;no;yes;no;cellular;nov;wed;1283;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+35;management;single;university.degree;no;yes;yes;cellular;nov;wed;293;2;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+30;services;married;professional.course;no;yes;no;cellular;nov;wed;622;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;yes
+32;entrepreneur;married;basic.4y;no;yes;no;telephone;nov;wed;62;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+30;services;single;high.school;no;no;no;cellular;nov;wed;148;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+32;entrepreneur;married;basic.4y;no;yes;no;cellular;nov;wed;111;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+52;retired;married;university.degree;unknown;no;no;cellular;nov;wed;172;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+32;services;married;professional.course;no;yes;no;cellular;nov;wed;186;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+38;technician;single;basic.6y;no;yes;no;cellular;nov;wed;164;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+35;blue-collar;married;basic.6y;no;no;no;cellular;nov;wed;220;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+38;technician;single;basic.6y;no;no;no;cellular;nov;wed;296;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+40;admin.;single;university.degree;no;no;no;cellular;nov;wed;267;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+36;technician;married;professional.course;no;yes;no;cellular;nov;wed;231;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+29;services;single;high.school;no;yes;no;cellular;nov;wed;178;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+32;entrepreneur;married;basic.4y;no;yes;no;cellular;nov;wed;547;7;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+35;technician;single;professional.course;no;no;no;cellular;nov;wed;161;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+30;admin.;divorced;high.school;no;no;no;cellular;nov;wed;59;2;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+51;admin.;married;high.school;no;yes;no;cellular;nov;wed;121;3;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+35;technician;single;professional.course;no;no;no;cellular;nov;wed;477;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+45;blue-collar;divorced;basic.9y;no;yes;no;cellular;nov;wed;384;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+44;admin.;single;high.school;no;yes;no;cellular;nov;wed;149;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+39;admin.;married;university.degree;no;yes;no;cellular;nov;wed;59;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+31;blue-collar;single;basic.4y;no;no;yes;cellular;nov;wed;125;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+31;blue-collar;single;high.school;no;yes;no;cellular;nov;wed;522;1;6;1;success;-0.1;93.2;-42.0;4.12;5195.8;yes
+31;blue-collar;single;high.school;no;no;no;telephone;nov;wed;201;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+31;blue-collar;single;high.school;no;no;no;cellular;nov;wed;230;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+39;technician;single;professional.course;no;yes;no;cellular;nov;wed;180;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+35;technician;divorced;professional.course;no;no;yes;cellular;nov;wed;98;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+34;unknown;divorced;basic.4y;no;no;no;cellular;nov;wed;73;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+45;management;married;university.degree;no;no;yes;cellular;nov;wed;391;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+30;admin.;divorced;high.school;no;no;no;cellular;nov;wed;131;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+34;admin.;married;university.degree;no;yes;no;cellular;nov;wed;174;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+34;admin.;married;university.degree;no;yes;yes;cellular;nov;wed;147;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+30;blue-collar;married;basic.4y;no;yes;no;cellular;nov;wed;126;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+32;services;single;high.school;no;no;no;cellular;nov;wed;265;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+55;admin.;divorced;high.school;no;no;no;cellular;nov;wed;67;3;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+50;housemaid;divorced;high.school;no;no;no;cellular;nov;wed;136;2;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+33;self-employed;single;basic.4y;no;no;no;cellular;nov;wed;174;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+47;unemployed;married;high.school;unknown;no;no;cellular;nov;wed;101;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+35;blue-collar;married;basic.9y;no;yes;no;cellular;nov;wed;299;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+32;admin.;married;university.degree;no;yes;no;cellular;nov;wed;392;3;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+31;blue-collar;single;high.school;no;yes;no;cellular;nov;wed;780;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+54;entrepreneur;married;university.degree;no;yes;no;cellular;nov;wed;159;2;4;1;success;-0.1;93.2;-42.0;4.12;5195.8;no
+40;admin.;married;university.degree;unknown;yes;no;cellular;nov;wed;562;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+34;blue-collar;single;basic.9y;no;no;no;cellular;nov;wed;127;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+33;management;married;university.degree;no;yes;no;cellular;nov;wed;418;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+37;management;divorced;university.degree;no;yes;no;cellular;nov;wed;259;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+37;management;divorced;university.degree;no;no;no;cellular;nov;wed;295;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+33;management;married;university.degree;no;yes;yes;cellular;nov;wed;138;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+31;technician;married;university.degree;no;yes;no;cellular;nov;wed;124;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+39;admin.;married;university.degree;no;no;no;cellular;nov;wed;146;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+31;blue-collar;single;high.school;no;no;no;cellular;nov;wed;145;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+43;management;married;university.degree;no;yes;no;cellular;nov;wed;57;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+29;management;married;basic.9y;no;no;no;cellular;nov;wed;69;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+42;unemployed;divorced;high.school;no;yes;no;cellular;nov;wed;166;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+49;blue-collar;divorced;basic.9y;no;yes;no;cellular;nov;wed;82;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+49;blue-collar;divorced;basic.9y;no;no;no;cellular;nov;wed;277;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+38;technician;married;professional.course;no;no;no;cellular;nov;wed;194;2;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+29;management;married;university.degree;no;no;no;cellular;nov;wed;138;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+43;admin.;divorced;university.degree;no;no;no;cellular;nov;wed;1502;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;yes
+34;management;single;high.school;no;yes;no;cellular;nov;wed;175;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+29;admin.;married;university.degree;no;no;no;cellular;nov;wed;117;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+38;technician;married;professional.course;unknown;no;no;cellular;nov;wed;1049;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;yes
+48;services;divorced;basic.4y;no;no;no;cellular;nov;wed;134;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+29;blue-collar;married;high.school;no;no;no;cellular;nov;wed;117;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+46;blue-collar;married;basic.9y;no;yes;no;cellular;nov;wed;187;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+29;technician;single;professional.course;no;yes;no;cellular;nov;wed;107;3;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+36;admin.;married;university.degree;no;yes;no;cellular;nov;wed;40;2;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+36;management;married;university.degree;no;yes;no;cellular;nov;wed;161;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+38;entrepreneur;divorced;basic.9y;no;yes;no;cellular;nov;wed;71;5;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+49;services;married;basic.6y;no;yes;no;cellular;nov;wed;772;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+48;admin.;married;university.degree;no;no;no;cellular;nov;wed;128;7;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+30;admin.;single;high.school;no;yes;no;cellular;nov;wed;195;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+38;entrepreneur;divorced;basic.9y;no;no;no;cellular;nov;wed;353;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+33;blue-collar;single;basic.9y;unknown;yes;no;cellular;nov;wed;25;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+30;blue-collar;married;basic.9y;no;yes;no;cellular;nov;wed;175;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+49;blue-collar;divorced;basic.6y;no;no;no;cellular;nov;wed;55;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+53;entrepreneur;divorced;university.degree;no;yes;no;cellular;nov;wed;137;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+35;admin.;married;university.degree;no;yes;no;cellular;nov;wed;631;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;yes
+56;management;married;university.degree;no;no;no;cellular;nov;wed;98;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+47;technician;married;basic.9y;no;no;yes;cellular;nov;wed;208;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+40;admin.;married;high.school;no;yes;no;cellular;nov;wed;131;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+39;management;married;high.school;no;no;no;telephone;nov;wed;47;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+37;management;married;university.degree;no;no;no;cellular;nov;wed;140;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+56;management;married;university.degree;no;yes;no;cellular;nov;wed;286;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+31;technician;married;university.degree;no;no;no;cellular;nov;wed;690;3;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+44;services;married;high.school;no;yes;no;telephone;nov;wed;102;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+47;admin.;married;university.degree;no;yes;no;cellular;nov;wed;93;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+42;services;married;professional.course;no;yes;yes;cellular;nov;wed;120;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+40;admin.;married;high.school;no;yes;no;cellular;nov;wed;570;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+31;technician;single;university.degree;no;yes;no;cellular;nov;wed;456;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+32;entrepreneur;married;university.degree;no;no;yes;cellular;nov;wed;49;2;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+41;admin.;married;university.degree;no;yes;no;cellular;nov;wed;54;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+37;admin.;single;university.degree;no;yes;yes;cellular;nov;wed;160;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+41;admin.;married;university.degree;no;yes;yes;telephone;nov;wed;385;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+37;admin.;single;university.degree;no;yes;no;cellular;nov;wed;250;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+30;entrepreneur;married;high.school;no;yes;no;cellular;nov;wed;164;3;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+32;technician;married;university.degree;no;no;yes;cellular;nov;wed;234;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+30;technician;divorced;basic.9y;no;yes;yes;cellular;nov;wed;177;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+44;admin.;single;university.degree;no;yes;no;cellular;nov;wed;50;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+39;admin.;single;university.degree;no;yes;yes;cellular;nov;wed;457;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+37;admin.;single;university.degree;no;no;no;telephone;nov;wed;623;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;yes
+42;entrepreneur;married;basic.4y;no;yes;yes;cellular;nov;wed;20;4;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+30;technician;married;high.school;no;no;no;cellular;nov;wed;1206;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+53;entrepreneur;married;unknown;no;yes;no;cellular;nov;wed;21;10;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+38;blue-collar;married;basic.9y;no;no;no;cellular;nov;wed;559;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+31;admin.;married;basic.9y;no;no;no;cellular;nov;wed;205;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+38;blue-collar;married;basic.9y;no;no;no;cellular;nov;wed;1065;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+43;blue-collar;single;basic.6y;no;yes;no;telephone;nov;wed;401;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+48;management;divorced;university.degree;no;yes;no;cellular;nov;wed;50;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+55;technician;married;basic.9y;no;no;yes;cellular;nov;wed;113;2;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+35;admin.;married;university.degree;no;yes;yes;cellular;nov;wed;1028;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;yes
+34;self-employed;married;university.degree;no;yes;no;cellular;nov;wed;213;5;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+42;admin.;married;university.degree;no;yes;no;cellular;nov;wed;340;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+33;entrepreneur;married;basic.6y;no;no;no;cellular;nov;wed;90;2;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+31;admin.;single;high.school;no;yes;no;cellular;nov;wed;286;3;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+43;technician;divorced;university.degree;no;yes;no;cellular;nov;wed;342;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+58;management;married;university.degree;no;yes;no;cellular;nov;wed;394;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+53;management;married;basic.4y;no;yes;no;cellular;nov;wed;63;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+39;blue-collar;married;basic.9y;unknown;no;no;cellular;nov;wed;73;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+36;admin.;single;university.degree;no;yes;no;cellular;nov;wed;214;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+38;housemaid;married;basic.6y;unknown;no;no;cellular;nov;wed;76;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+36;admin.;single;university.degree;no;no;no;cellular;nov;wed;337;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;yes
+30;blue-collar;single;basic.9y;no;no;no;cellular;nov;wed;88;2;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+29;blue-collar;married;high.school;no;yes;no;cellular;nov;wed;96;3;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+39;admin.;married;university.degree;no;yes;no;cellular;nov;wed;171;2;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+39;blue-collar;married;basic.9y;unknown;no;yes;cellular;nov;wed;418;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+32;entrepreneur;married;university.degree;no;yes;yes;cellular;nov;wed;434;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+34;management;married;university.degree;no;yes;no;cellular;nov;wed;54;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+47;management;married;high.school;no;yes;no;cellular;nov;wed;86;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+56;blue-collar;divorced;basic.9y;no;yes;no;cellular;nov;wed;1265;3;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;yes
+56;management;married;university.degree;no;yes;yes;cellular;nov;wed;104;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+37;services;single;high.school;no;yes;no;cellular;nov;wed;485;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;yes
+31;blue-collar;single;high.school;no;yes;no;cellular;nov;wed;251;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+38;blue-collar;single;basic.6y;no;yes;no;cellular;nov;wed;328;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+40;admin.;married;university.degree;unknown;no;no;cellular;nov;wed;108;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+47;blue-collar;married;basic.9y;no;yes;no;cellular;nov;wed;88;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+31;technician;single;professional.course;no;no;no;cellular;nov;wed;220;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+31;self-employed;married;university.degree;no;yes;no;cellular;nov;wed;118;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+38;blue-collar;single;basic.6y;no;no;no;cellular;nov;wed;520;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+49;management;married;university.degree;no;no;no;cellular;nov;wed;139;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+56;entrepreneur;married;university.degree;no;yes;no;cellular;nov;wed;501;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+31;admin.;married;university.degree;no;yes;yes;cellular;nov;wed;408;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+39;unemployed;married;basic.9y;no;no;no;cellular;nov;wed;292;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+46;admin.;divorced;university.degree;no;yes;no;cellular;nov;wed;95;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+46;self-employed;divorced;basic.9y;no;yes;no;cellular;nov;wed;77;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+35;technician;single;basic.9y;no;yes;yes;cellular;nov;wed;62;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+51;blue-collar;married;basic.9y;no;yes;no;cellular;nov;wed;359;2;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+39;unemployed;married;basic.9y;no;yes;no;cellular;nov;wed;640;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+35;technician;single;basic.9y;no;no;no;cellular;nov;wed;178;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+35;technician;single;basic.9y;no;yes;no;cellular;nov;wed;112;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+57;management;married;university.degree;no;yes;no;cellular;nov;wed;589;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;yes
+35;technician;single;basic.9y;no;no;no;telephone;nov;wed;433;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+38;blue-collar;divorced;basic.6y;no;yes;no;cellular;nov;wed;122;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+34;services;divorced;basic.6y;unknown;no;no;cellular;nov;wed;254;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+50;technician;married;university.degree;no;yes;no;cellular;nov;wed;236;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+35;admin.;married;university.degree;no;yes;no;cellular;nov;wed;60;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+42;admin.;married;professional.course;no;yes;no;cellular;nov;wed;216;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+32;self-employed;married;university.degree;no;yes;no;cellular;nov;wed;70;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+32;management;single;university.degree;no;no;yes;cellular;nov;wed;541;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+32;self-employed;single;university.degree;no;yes;no;cellular;nov;wed;199;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+34;entrepreneur;single;basic.9y;no;no;no;cellular;nov;wed;191;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+34;services;single;basic.9y;no;yes;yes;cellular;nov;wed;300;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+54;housemaid;married;basic.9y;no;no;no;cellular;nov;wed;362;3;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+48;admin.;married;high.school;no;no;no;cellular;nov;wed;1061;4;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;yes
+33;self-employed;married;university.degree;no;yes;yes;cellular;nov;wed;208;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+35;management;married;university.degree;no;yes;yes;telephone;nov;wed;377;3;0;2;success;-0.1;93.2;-42.0;4.12;5195.8;no
+29;blue-collar;married;professional.course;no;no;no;cellular;nov;wed;54;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+34;admin.;married;university.degree;no;yes;no;cellular;nov;wed;157;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+49;admin.;divorced;high.school;no;yes;no;cellular;nov;wed;47;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+53;blue-collar;divorced;basic.9y;no;no;no;cellular;nov;wed;625;1;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+31;services;single;high.school;no;yes;no;telephone;nov;wed;88;1;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+51;unemployed;divorced;university.degree;unknown;yes;no;cellular;nov;wed;120;2;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+34;services;married;high.school;no;no;no;cellular;nov;wed;89;3;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+35;admin.;married;professional.course;no;no;no;cellular;nov;wed;616;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+35;entrepreneur;divorced;university.degree;no;no;no;cellular;nov;wed;56;4;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+42;self-employed;single;university.degree;no;no;no;cellular;nov;wed;238;4;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+31;entrepreneur;married;high.school;no;yes;yes;cellular;nov;wed;112;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+43;admin.;married;university.degree;no;no;no;cellular;nov;wed;748;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+37;entrepreneur;married;university.degree;no;no;no;cellular;nov;wed;184;4;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+37;entrepreneur;married;university.degree;no;no;no;telephone;nov;wed;202;2;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+35;admin.;single;university.degree;no;yes;no;cellular;nov;wed;273;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+38;admin.;married;university.degree;no;yes;no;cellular;nov;wed;223;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+43;management;married;university.degree;no;no;no;cellular;nov;wed;382;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+32;admin.;married;university.degree;no;yes;no;cellular;nov;wed;278;3;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+42;technician;married;basic.9y;no;no;no;cellular;nov;wed;294;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+52;management;married;university.degree;no;yes;no;cellular;nov;wed;783;3;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;yes
+31;admin.;married;basic.9y;no;yes;no;cellular;nov;wed;1662;3;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+38;admin.;single;university.degree;no;no;no;cellular;nov;wed;79;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+36;entrepreneur;single;university.degree;no;yes;no;cellular;nov;wed;115;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+33;admin.;single;university.degree;no;yes;no;cellular;nov;wed;101;2;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+55;management;married;professional.course;no;yes;no;cellular;nov;wed;223;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+42;management;married;university.degree;unknown;yes;no;cellular;nov;wed;126;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+43;management;married;university.degree;no;no;yes;cellular;nov;wed;73;2;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+32;management;single;university.degree;no;no;no;cellular;nov;wed;163;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+36;blue-collar;married;basic.6y;no;no;no;cellular;nov;wed;299;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+30;blue-collar;married;professional.course;no;yes;no;cellular;nov;wed;107;3;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+45;admin.;married;university.degree;no;yes;no;cellular;nov;wed;70;3;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+41;admin.;divorced;basic.9y;no;unknown;unknown;cellular;nov;wed;258;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+36;entrepreneur;single;university.degree;no;no;no;cellular;nov;wed;1120;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;yes
+46;blue-collar;married;basic.4y;no;yes;no;cellular;nov;wed;223;4;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+35;technician;married;university.degree;no;yes;yes;cellular;nov;wed;184;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+33;management;married;university.degree;no;no;no;cellular;nov;wed;523;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+31;technician;single;high.school;no;yes;no;cellular;nov;wed;77;4;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+54;blue-collar;married;basic.4y;no;yes;no;cellular;nov;wed;252;2;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+40;blue-collar;married;basic.6y;unknown;no;no;cellular;nov;wed;104;3;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+38;technician;married;professional.course;unknown;yes;no;cellular;nov;wed;433;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+51;management;married;high.school;unknown;no;no;cellular;nov;wed;178;3;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+34;services;single;high.school;no;no;no;cellular;nov;wed;174;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+46;technician;married;basic.9y;no;yes;no;cellular;nov;wed;354;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+40;technician;married;high.school;no;no;no;cellular;nov;wed;231;4;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+30;technician;single;professional.course;no;no;no;cellular;nov;wed;757;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;yes
+35;management;married;university.degree;no;yes;no;cellular;nov;wed;130;3;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+46;management;married;university.degree;no;yes;no;cellular;nov;wed;111;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+52;admin.;married;high.school;no;yes;no;cellular;nov;wed;130;2;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+31;blue-collar;married;basic.4y;no;no;no;cellular;nov;wed;374;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+53;blue-collar;divorced;basic.6y;no;yes;no;telephone;nov;wed;95;3;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+56;entrepreneur;married;basic.9y;no;no;yes;cellular;nov;wed;680;2;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;yes
+46;management;divorced;high.school;no;yes;no;cellular;nov;wed;191;2;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+30;admin.;married;high.school;no;yes;no;cellular;nov;wed;193;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+53;technician;single;professional.course;no;yes;no;cellular;nov;wed;1468;3;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;yes
+39;blue-collar;married;basic.6y;unknown;no;yes;cellular;nov;wed;188;5;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+45;technician;married;university.degree;no;no;no;cellular;nov;wed;221;2;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+36;admin.;single;university.degree;no;no;no;cellular;nov;wed;59;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+33;services;married;high.school;no;yes;yes;cellular;nov;wed;314;3;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+30;admin.;married;high.school;unknown;yes;no;cellular;nov;wed;246;3;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+31;blue-collar;single;high.school;no;yes;no;cellular;nov;wed;154;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+45;blue-collar;married;basic.9y;no;yes;no;cellular;nov;wed;432;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+37;services;married;high.school;no;yes;yes;cellular;nov;wed;584;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+42;blue-collar;married;basic.4y;no;yes;no;cellular;nov;wed;140;3;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+36;management;divorced;high.school;no;no;yes;cellular;nov;wed;709;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;yes
+44;services;married;high.school;no;no;no;cellular;nov;wed;635;3;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+48;housemaid;single;high.school;unknown;yes;no;cellular;nov;wed;449;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+55;management;married;university.degree;no;no;no;cellular;nov;wed;108;4;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+40;admin.;single;high.school;no;no;no;cellular;nov;wed;53;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+34;management;married;university.degree;no;unknown;unknown;cellular;nov;wed;151;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+56;management;divorced;university.degree;no;no;no;cellular;nov;wed;287;3;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+56;management;married;university.degree;no;no;no;cellular;nov;wed;266;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+41;housemaid;divorced;university.degree;no;no;no;cellular;nov;wed;105;2;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+36;admin.;divorced;high.school;no;yes;no;cellular;nov;wed;225;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+32;blue-collar;married;basic.6y;unknown;yes;no;cellular;nov;wed;154;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+40;blue-collar;married;basic.6y;no;unknown;unknown;cellular;nov;wed;172;3;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+50;management;married;basic.6y;no;no;no;cellular;nov;wed;221;5;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+43;admin.;married;university.degree;no;yes;no;cellular;nov;wed;209;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+36;management;married;high.school;no;no;no;cellular;nov;wed;356;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+49;admin.;single;basic.9y;no;yes;yes;cellular;nov;wed;259;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+33;technician;married;university.degree;no;no;no;telephone;nov;wed;91;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+38;services;married;high.school;no;yes;yes;cellular;nov;wed;729;3;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+32;services;divorced;high.school;no;no;no;cellular;nov;wed;744;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+39;services;divorced;high.school;no;yes;no;cellular;nov;wed;222;3;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+29;admin.;married;university.degree;no;no;no;cellular;nov;wed;406;3;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+33;services;married;high.school;no;yes;no;cellular;nov;wed;307;3;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+48;housemaid;married;basic.6y;no;yes;no;cellular;nov;wed;1337;4;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+35;blue-collar;married;basic.9y;no;yes;no;telephone;nov;wed;178;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+53;entrepreneur;married;unknown;no;no;no;cellular;nov;wed;304;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+32;admin.;single;university.degree;no;no;no;cellular;nov;wed;1307;3;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+50;admin.;married;high.school;no;no;no;cellular;nov;wed;93;3;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+49;technician;divorced;basic.9y;no;no;no;cellular;nov;wed;225;5;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+35;technician;single;high.school;no;no;no;cellular;nov;wed;515;5;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+44;blue-collar;married;basic.6y;no;no;no;cellular;nov;wed;312;3;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+40;technician;divorced;high.school;no;yes;yes;cellular;nov;wed;243;2;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+39;admin.;married;university.degree;no;no;no;cellular;nov;wed;117;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+46;admin.;single;high.school;no;yes;no;telephone;nov;wed;207;2;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+44;entrepreneur;married;university.degree;no;no;yes;cellular;nov;wed;67;2;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+33;services;married;high.school;no;no;no;cellular;nov;wed;581;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+44;entrepreneur;married;university.degree;no;yes;no;cellular;nov;wed;676;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+54;blue-collar;married;basic.6y;unknown;no;no;cellular;nov;wed;300;5;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+37;management;married;university.degree;no;no;yes;cellular;nov;wed;611;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+32;services;single;university.degree;no;yes;no;telephone;nov;wed;52;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+48;management;married;high.school;unknown;no;no;cellular;nov;wed;275;3;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+32;blue-collar;married;basic.6y;no;no;yes;cellular;nov;wed;188;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+56;management;married;university.degree;no;yes;no;cellular;nov;wed;130;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+36;technician;married;high.school;no;yes;no;telephone;nov;wed;46;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+31;technician;single;university.degree;no;yes;no;cellular;nov;wed;143;3;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+39;blue-collar;married;basic.6y;no;yes;yes;telephone;nov;wed;214;2;6;1;success;-0.1;93.2;-42.0;4.12;5195.8;no
+52;entrepreneur;married;university.degree;unknown;yes;yes;telephone;nov;wed;248;3;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+36;technician;married;professional.course;no;yes;no;telephone;nov;wed;159;7;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+37;management;married;university.degree;no;no;yes;cellular;nov;wed;307;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+36;services;married;university.degree;no;yes;no;cellular;nov;wed;37;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+30;blue-collar;married;basic.4y;no;yes;no;cellular;nov;wed;193;5;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+30;unemployed;single;unknown;no;yes;no;cellular;nov;wed;1271;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;yes
+30;blue-collar;married;basic.9y;no;no;no;cellular;nov;wed;167;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+47;housemaid;divorced;basic.4y;unknown;yes;yes;telephone;nov;wed;475;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+36;blue-collar;single;basic.9y;no;no;yes;telephone;nov;wed;590;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+32;technician;married;professional.course;no;yes;yes;telephone;nov;wed;196;3;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+34;management;married;high.school;no;yes;no;cellular;nov;wed;228;3;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+45;admin.;divorced;basic.9y;no;yes;no;cellular;nov;wed;575;9;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+40;entrepreneur;married;basic.4y;no;yes;yes;cellular;nov;wed;322;3;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+31;blue-collar;divorced;basic.9y;no;no;no;cellular;nov;wed;546;3;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+29;admin.;divorced;professional.course;no;no;yes;cellular;nov;wed;1435;3;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+50;admin.;married;university.degree;no;yes;yes;cellular;nov;wed;332;4;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+33;management;married;university.degree;no;yes;no;cellular;nov;wed;214;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+41;management;married;university.degree;no;yes;yes;cellular;nov;wed;501;4;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+55;technician;married;high.school;unknown;yes;no;cellular;nov;wed;285;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+36;blue-collar;married;basic.6y;unknown;yes;no;cellular;nov;wed;320;3;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+31;entrepreneur;married;university.degree;no;no;no;telephone;nov;wed;723;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+51;entrepreneur;divorced;university.degree;no;yes;no;telephone;nov;wed;89;3;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+31;technician;single;university.degree;unknown;no;no;cellular;nov;wed;193;3;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+43;blue-collar;married;basic.4y;no;yes;no;cellular;nov;wed;284;5;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+38;technician;married;professional.course;unknown;no;no;cellular;nov;wed;135;4;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+39;housemaid;divorced;high.school;no;no;no;cellular;nov;wed;214;3;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+45;blue-collar;married;basic.9y;unknown;yes;no;cellular;nov;wed;162;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+48;services;married;high.school;unknown;no;no;cellular;nov;wed;303;3;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+46;blue-collar;married;basic.9y;unknown;yes;yes;cellular;nov;wed;575;6;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+40;blue-collar;single;basic.9y;no;unknown;unknown;cellular;nov;wed;245;4;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+53;management;married;basic.4y;no;yes;no;cellular;nov;wed;64;7;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+29;services;single;high.school;no;yes;no;cellular;nov;wed;146;3;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+36;blue-collar;married;basic.6y;no;no;yes;cellular;nov;wed;281;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+29;technician;single;professional.course;no;yes;yes;cellular;nov;wed;182;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+53;admin.;married;high.school;no;no;no;cellular;nov;wed;291;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+54;management;married;basic.6y;no;yes;no;cellular;nov;wed;616;3;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+36;admin.;single;university.degree;no;no;no;cellular;nov;wed;186;5;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+53;unemployed;married;basic.9y;no;yes;no;cellular;nov;wed;248;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+33;entrepreneur;married;university.degree;no;yes;yes;cellular;nov;wed;380;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+29;services;married;basic.6y;no;no;no;cellular;nov;wed;314;2;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+30;unemployed;single;professional.course;no;no;no;cellular;nov;wed;206;3;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+38;entrepreneur;married;professional.course;no;yes;no;telephone;nov;wed;519;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+30;blue-collar;married;basic.4y;no;no;no;cellular;nov;wed;209;3;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+50;entrepreneur;married;university.degree;no;yes;no;cellular;nov;wed;185;2;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+38;blue-collar;single;basic.4y;no;no;no;cellular;nov;wed;335;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+30;services;married;high.school;no;no;no;cellular;nov;wed;131;3;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+36;admin.;single;university.degree;no;yes;no;cellular;nov;wed;71;4;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+52;technician;married;basic.9y;no;yes;yes;cellular;nov;wed;323;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+53;self-employed;married;university.degree;unknown;yes;no;cellular;nov;wed;70;4;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+38;technician;married;professional.course;no;no;no;cellular;nov;wed;62;3;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+31;admin.;married;university.degree;no;no;no;cellular;nov;wed;596;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+48;admin.;married;university.degree;no;yes;no;cellular;nov;wed;517;2;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+33;admin.;single;high.school;no;yes;no;cellular;nov;wed;208;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+38;blue-collar;married;basic.9y;unknown;no;no;cellular;nov;wed;145;3;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+48;management;married;university.degree;unknown;no;no;cellular;nov;wed;52;3;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+38;technician;married;professional.course;no;yes;yes;cellular;nov;wed;11;3;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+53;blue-collar;divorced;basic.4y;no;yes;no;cellular;nov;wed;206;5;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+34;technician;married;professional.course;no;yes;no;cellular;nov;wed;107;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+33;admin.;married;university.degree;no;yes;yes;cellular;nov;wed;54;7;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+53;management;married;basic.4y;no;yes;no;cellular;nov;wed;107;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+36;admin.;single;university.degree;no;no;no;cellular;nov;wed;102;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+34;management;single;high.school;no;yes;yes;cellular;nov;wed;201;2;6;1;success;-0.1;93.2;-42.0;4.12;5195.8;no
+37;admin.;single;university.degree;no;yes;yes;cellular;nov;wed;844;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+35;housemaid;single;basic.4y;unknown;yes;no;cellular;nov;wed;66;2;3;1;success;-0.1;93.2;-42.0;4.12;5195.8;no
+45;entrepreneur;married;university.degree;unknown;yes;no;telephone;nov;wed;278;7;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+32;admin.;single;university.degree;no;no;no;cellular;nov;wed;1311;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+38;admin.;single;university.degree;no;yes;no;cellular;nov;wed;255;6;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+30;services;married;high.school;no;yes;no;cellular;nov;wed;599;4;999;1;failure;-0.1;93.2;-42.0;4.12;5195.8;no
+38;services;married;unknown;no;yes;no;cellular;nov;wed;339;3;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+31;entrepreneur;married;basic.9y;no;no;no;cellular;nov;wed;558;3;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+36;blue-collar;married;basic.6y;no;yes;no;cellular;nov;wed;800;6;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+29;blue-collar;married;high.school;no;no;no;cellular;nov;wed;854;2;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+53;blue-collar;divorced;basic.6y;no;yes;no;cellular;nov;wed;635;6;999;0;nonexistent;-0.1;93.2;-42.0;4.12;5195.8;no
+29;blue-collar;married;high.school;no;yes;no;telephone;nov;thu;72;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+49;technician;married;university.degree;no;yes;no;telephone;nov;thu;14;7;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+30;admin.;divorced;high.school;no;yes;no;cellular;nov;thu;274;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+39;entrepreneur;married;professional.course;no;yes;no;cellular;nov;thu;291;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+36;blue-collar;single;basic.6y;no;yes;no;cellular;nov;thu;82;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+47;self-employed;single;professional.course;no;yes;no;cellular;nov;thu;97;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+34;management;married;university.degree;no;yes;no;cellular;nov;thu;130;6;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+33;management;single;university.degree;no;yes;no;telephone;nov;thu;88;2;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+41;blue-collar;married;basic.4y;no;yes;no;telephone;nov;thu;132;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+33;admin.;single;university.degree;no;no;no;telephone;nov;thu;36;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+41;technician;married;basic.9y;no;yes;no;cellular;nov;thu;348;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+39;services;married;professional.course;no;no;no;cellular;nov;thu;161;7;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+45;technician;divorced;professional.course;no;no;no;cellular;nov;thu;77;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+29;unemployed;married;basic.4y;unknown;no;no;cellular;nov;thu;143;6;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+49;admin.;divorced;professional.course;no;no;no;cellular;nov;thu;80;5;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+35;technician;married;professional.course;no;no;no;cellular;nov;thu;366;6;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+31;admin.;married;university.degree;no;yes;no;cellular;nov;thu;298;2;5;1;success;-0.1;93.2;-42.0;4.076;5195.8;no
+53;blue-collar;married;basic.9y;unknown;no;no;cellular;nov;thu;64;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+33;technician;married;professional.course;no;yes;no;cellular;nov;thu;51;7;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+42;admin.;married;university.degree;no;yes;no;cellular;nov;thu;75;2;4;1;success;-0.1;93.2;-42.0;4.076;5195.8;no
+53;housemaid;married;unknown;no;yes;no;cellular;nov;thu;65;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+39;entrepreneur;married;professional.course;no;yes;no;cellular;nov;thu;69;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+31;blue-collar;married;basic.4y;no;no;no;cellular;nov;thu;37;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+37;management;married;unknown;no;yes;no;cellular;nov;thu;632;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+30;admin.;divorced;high.school;no;yes;no;cellular;nov;thu;48;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+31;services;married;basic.9y;no;yes;no;cellular;nov;thu;57;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+48;services;single;unknown;no;yes;no;cellular;nov;thu;164;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+44;admin.;single;professional.course;no;no;no;cellular;nov;thu;48;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+34;technician;married;professional.course;no;yes;yes;cellular;nov;thu;42;7;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+37;management;married;unknown;no;no;no;cellular;nov;thu;171;2;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+31;unemployed;married;high.school;no;yes;yes;cellular;nov;thu;91;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+30;technician;single;university.degree;no;no;no;cellular;nov;thu;78;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+37;admin.;married;high.school;no;unknown;unknown;cellular;nov;thu;518;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+43;blue-collar;divorced;basic.9y;no;unknown;unknown;cellular;nov;thu;73;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+31;admin.;married;university.degree;no;no;no;telephone;nov;thu;105;6;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+30;blue-collar;married;basic.6y;no;no;no;cellular;nov;thu;340;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+36;blue-collar;married;high.school;no;yes;no;cellular;nov;thu;379;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+47;technician;married;professional.course;no;no;no;telephone;nov;thu;114;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+37;services;divorced;basic.6y;no;no;no;cellular;nov;thu;667;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+51;unemployed;divorced;university.degree;no;no;no;cellular;nov;thu;286;6;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+42;self-employed;married;high.school;unknown;yes;no;cellular;nov;thu;77;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+29;admin.;unknown;professional.course;no;yes;no;cellular;nov;thu;125;1;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+52;management;married;university.degree;no;no;no;telephone;nov;thu;21;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+52;management;married;university.degree;no;yes;no;cellular;nov;thu;104;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+53;management;married;university.degree;no;yes;no;cellular;nov;thu;186;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+53;management;married;university.degree;no;no;no;cellular;nov;thu;136;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+37;unemployed;single;university.degree;no;yes;no;cellular;nov;thu;145;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+29;technician;married;professional.course;no;no;no;cellular;nov;thu;179;1;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+46;management;married;university.degree;no;yes;no;cellular;nov;thu;466;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+45;blue-collar;married;basic.6y;no;no;no;cellular;nov;thu;834;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+52;self-employed;divorced;basic.9y;no;yes;no;cellular;nov;thu;26;5;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+32;entrepreneur;single;university.degree;no;no;no;cellular;nov;thu;459;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+46;unemployed;married;basic.6y;no;yes;no;cellular;nov;thu;113;4;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+39;entrepreneur;married;professional.course;no;yes;no;cellular;nov;thu;997;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+44;technician;single;university.degree;no;no;no;cellular;nov;thu;284;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+36;admin.;married;university.degree;no;no;no;telephone;nov;thu;281;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+40;services;single;basic.6y;no;no;no;cellular;nov;thu;107;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+55;admin.;married;basic.9y;no;no;no;cellular;nov;thu;209;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+58;retired;married;high.school;no;yes;no;cellular;nov;thu;125;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+38;management;divorced;high.school;no;yes;no;cellular;nov;thu;149;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+40;services;single;basic.6y;no;no;no;cellular;nov;thu;308;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+44;entrepreneur;married;university.degree;no;no;no;cellular;nov;thu;191;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+40;services;single;basic.6y;no;no;no;cellular;nov;thu;373;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+33;services;single;high.school;no;yes;no;cellular;nov;thu;100;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+42;technician;married;high.school;no;no;yes;telephone;nov;thu;66;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+56;entrepreneur;married;university.degree;unknown;no;no;cellular;nov;thu;392;2;3;1;success;-0.1;93.2;-42.0;4.076;5195.8;no
+58;retired;married;high.school;no;no;no;cellular;nov;thu;477;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;yes
+33;admin.;single;university.degree;no;no;no;cellular;nov;thu;291;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+32;blue-collar;single;basic.9y;no;yes;no;cellular;nov;thu;276;1;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;yes
+47;technician;married;professional.course;no;no;no;cellular;nov;thu;93;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+56;housemaid;married;basic.9y;no;no;no;cellular;nov;thu;86;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+37;entrepreneur;married;high.school;unknown;no;no;cellular;nov;thu;68;1;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+58;management;married;unknown;no;no;no;cellular;nov;thu;142;2;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+31;services;married;high.school;no;no;yes;cellular;nov;thu;49;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+30;entrepreneur;single;university.degree;no;no;no;cellular;nov;thu;251;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+35;blue-collar;single;basic.6y;no;no;no;cellular;nov;thu;137;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+32;admin.;single;high.school;no;yes;no;cellular;nov;thu;120;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+44;admin.;single;professional.course;no;yes;no;telephone;nov;thu;25;8;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+31;services;married;high.school;no;yes;no;cellular;nov;thu;220;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+36;technician;single;basic.9y;no;no;no;cellular;nov;thu;174;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+35;blue-collar;single;basic.6y;no;no;no;cellular;nov;thu;370;1;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+34;technician;married;high.school;no;yes;yes;cellular;nov;thu;116;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+40;blue-collar;married;basic.4y;unknown;yes;yes;cellular;nov;thu;74;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+55;entrepreneur;divorced;university.degree;no;yes;yes;cellular;nov;thu;68;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+34;management;single;university.degree;no;yes;yes;cellular;nov;thu;125;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+45;admin.;married;unknown;no;yes;yes;cellular;nov;thu;254;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+46;admin.;married;university.degree;no;no;no;cellular;nov;thu;358;1;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+29;student;single;high.school;no;yes;no;cellular;nov;thu;670;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;yes
+32;admin.;married;professional.course;no;unknown;unknown;cellular;nov;thu;68;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+36;admin.;single;university.degree;no;no;no;cellular;nov;thu;428;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+32;blue-collar;married;unknown;no;no;no;cellular;nov;thu;366;4;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+43;services;married;high.school;no;no;no;cellular;nov;thu;81;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+53;technician;married;professional.course;no;yes;no;cellular;nov;thu;322;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+31;management;single;university.degree;no;no;no;cellular;nov;thu;46;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+31;management;single;university.degree;no;yes;no;cellular;nov;thu;140;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+34;technician;married;high.school;no;no;no;cellular;nov;thu;732;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;yes
+29;housemaid;married;high.school;no;yes;no;cellular;nov;thu;408;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+46;self-employed;divorced;basic.9y;unknown;unknown;unknown;cellular;nov;thu;125;1;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+31;admin.;single;university.degree;no;no;no;cellular;nov;thu;68;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+47;blue-collar;married;basic.9y;unknown;yes;no;telephone;nov;thu;76;9;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+42;management;married;university.degree;no;no;no;cellular;nov;thu;110;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+31;blue-collar;married;basic.9y;no;yes;no;cellular;nov;thu;415;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+31;admin.;single;university.degree;no;no;no;cellular;nov;thu;166;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+46;self-employed;divorced;basic.9y;unknown;no;no;cellular;nov;thu;486;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+32;technician;married;university.degree;no;yes;no;cellular;nov;thu;245;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+36;admin.;single;university.degree;no;no;no;cellular;nov;thu;228;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+30;unemployed;married;basic.9y;no;yes;no;cellular;nov;thu;114;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+31;admin.;single;university.degree;no;yes;no;cellular;nov;thu;463;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+32;admin.;single;high.school;no;no;yes;telephone;nov;thu;329;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+48;admin.;married;university.degree;no;no;no;cellular;nov;thu;364;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+32;admin.;divorced;university.degree;no;yes;no;cellular;nov;thu;199;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+30;technician;married;university.degree;no;yes;no;telephone;nov;thu;145;5;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+56;admin.;divorced;university.degree;no;yes;no;cellular;nov;thu;110;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+30;blue-collar;single;university.degree;no;no;yes;cellular;nov;thu;52;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+30;admin.;divorced;high.school;no;yes;no;cellular;nov;thu;34;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+52;admin.;married;university.degree;no;no;yes;cellular;nov;thu;232;4;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+41;services;single;high.school;unknown;yes;no;cellular;nov;thu;530;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+32;admin.;divorced;university.degree;no;yes;no;cellular;nov;thu;505;1;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+34;management;married;university.degree;no;yes;no;cellular;nov;thu;140;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+46;management;married;university.degree;no;yes;yes;cellular;nov;thu;884;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+45;entrepreneur;married;university.degree;unknown;no;no;cellular;nov;thu;301;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+53;technician;divorced;high.school;no;yes;yes;cellular;nov;thu;319;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+45;blue-collar;single;high.school;no;no;no;cellular;nov;thu;71;1;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+31;admin.;married;university.degree;no;no;no;cellular;nov;thu;157;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+53;technician;divorced;high.school;no;no;no;cellular;nov;thu;405;1;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+29;technician;single;university.degree;no;yes;no;cellular;nov;thu;93;1;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+36;admin.;single;university.degree;no;yes;no;telephone;nov;thu;42;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+44;blue-collar;single;basic.6y;unknown;yes;no;cellular;nov;thu;39;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+36;admin.;married;high.school;no;yes;no;cellular;nov;thu;231;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+36;admin.;single;university.degree;no;yes;no;telephone;nov;thu;107;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+34;management;married;university.degree;no;yes;no;telephone;nov;thu;30;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+48;management;single;university.degree;no;yes;no;cellular;nov;thu;90;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+53;technician;divorced;high.school;no;no;no;cellular;nov;thu;531;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;yes
+30;admin.;single;basic.9y;no;no;no;cellular;nov;thu;106;2;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+38;entrepreneur;married;basic.9y;no;no;no;cellular;nov;thu;166;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+29;services;married;high.school;no;yes;no;cellular;nov;thu;114;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+30;technician;married;university.degree;no;no;no;cellular;nov;thu;85;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+32;blue-collar;divorced;university.degree;no;yes;no;telephone;nov;thu;59;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+30;technician;married;university.degree;no;no;yes;cellular;nov;thu;180;1;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+40;blue-collar;married;basic.4y;unknown;yes;no;cellular;nov;thu;628;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;yes
+43;management;married;university.degree;no;no;no;cellular;nov;thu;1192;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;yes
+31;admin.;single;university.degree;no;no;no;cellular;nov;thu;101;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+32;technician;married;professional.course;no;yes;no;cellular;nov;thu;370;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+35;entrepreneur;married;university.degree;unknown;yes;no;cellular;nov;thu;76;1;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+38;blue-collar;married;basic.4y;no;yes;no;cellular;nov;thu;103;2;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+50;entrepreneur;married;basic.4y;unknown;yes;no;cellular;nov;thu;217;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+35;entrepreneur;married;high.school;no;yes;no;cellular;nov;thu;566;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;yes
+33;services;married;high.school;no;yes;yes;cellular;nov;thu;422;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+29;admin.;single;high.school;no;yes;no;cellular;nov;thu;23;2;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+36;admin.;single;university.degree;no;yes;no;cellular;nov;thu;120;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+31;services;single;high.school;no;yes;no;cellular;nov;thu;45;1;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+34;technician;married;university.degree;no;unknown;unknown;cellular;nov;thu;48;4;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+40;admin.;married;university.degree;no;yes;no;cellular;nov;thu;20;6;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+49;unemployed;divorced;high.school;no;unknown;unknown;cellular;nov;thu;147;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+29;housemaid;married;high.school;no;no;no;cellular;nov;thu;99;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+31;services;single;high.school;no;yes;no;cellular;nov;thu;173;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+32;technician;single;university.degree;no;yes;no;telephone;nov;thu;47;1;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+32;entrepreneur;single;university.degree;no;no;yes;cellular;nov;thu;67;1;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+50;blue-collar;married;professional.course;unknown;no;no;cellular;nov;thu;283;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;yes
+32;entrepreneur;single;university.degree;no;no;yes;cellular;nov;thu;126;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+36;unemployed;married;basic.6y;no;yes;no;cellular;nov;thu;46;2;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+38;blue-collar;married;basic.4y;no;yes;no;cellular;nov;thu;163;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+44;unemployed;married;university.degree;no;yes;no;cellular;nov;thu;1058;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+32;technician;single;university.degree;no;no;no;cellular;nov;thu;485;1;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+32;technician;single;university.degree;no;no;no;cellular;nov;thu;454;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;yes
+44;management;married;university.degree;no;yes;no;cellular;nov;thu;176;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+29;admin.;single;university.degree;no;yes;no;cellular;nov;thu;103;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+44;management;married;university.degree;no;no;no;cellular;nov;thu;277;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+32;entrepreneur;single;university.degree;no;yes;yes;cellular;nov;thu;74;2;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+31;technician;single;university.degree;no;yes;no;cellular;nov;thu;137;5;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+56;admin.;divorced;university.degree;no;yes;no;cellular;nov;thu;88;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+38;entrepreneur;married;basic.9y;no;no;no;cellular;nov;thu;158;5;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+58;retired;married;professional.course;no;no;no;cellular;nov;thu;234;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+46;management;married;unknown;no;yes;no;cellular;nov;thu;121;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+38;management;married;university.degree;no;yes;no;cellular;nov;thu;258;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+29;admin.;married;high.school;no;no;no;cellular;nov;thu;523;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+32;unemployed;married;high.school;no;yes;no;cellular;nov;thu;640;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+32;admin.;married;high.school;no;yes;no;telephone;nov;thu;60;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+31;admin.;single;university.degree;no;yes;no;cellular;nov;thu;1816;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+32;management;married;university.degree;no;no;no;cellular;nov;thu;203;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+30;services;married;high.school;unknown;yes;no;cellular;nov;thu;73;1;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+32;unemployed;married;high.school;no;yes;no;cellular;nov;thu;728;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;yes
+30;admin.;married;university.degree;unknown;yes;no;cellular;nov;thu;157;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+30;services;married;high.school;unknown;yes;no;cellular;nov;thu;175;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+58;blue-collar;divorced;basic.4y;no;yes;no;cellular;nov;thu;63;5;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+45;management;married;professional.course;no;no;no;cellular;nov;thu;993;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;yes
+31;technician;single;professional.course;no;yes;no;cellular;nov;thu;155;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+50;management;married;university.degree;no;no;no;cellular;nov;thu;146;1;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+29;services;single;high.school;no;no;no;cellular;nov;thu;91;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+38;management;married;professional.course;no;no;no;cellular;nov;thu;112;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+35;admin.;married;university.degree;no;yes;no;cellular;nov;thu;333;2;3;1;success;-0.1;93.2;-42.0;4.076;5195.8;no
+38;management;married;professional.course;no;yes;no;cellular;nov;thu;124;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+38;management;married;professional.course;no;yes;no;telephone;nov;thu;172;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+30;admin.;single;university.degree;no;yes;no;cellular;nov;thu;34;1;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+37;unemployed;married;professional.course;no;yes;no;cellular;nov;thu;318;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+36;technician;married;professional.course;no;yes;no;cellular;nov;thu;1040;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+29;admin.;single;university.degree;no;no;no;cellular;nov;thu;103;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+33;management;single;professional.course;no;yes;no;cellular;nov;thu;8;6;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+32;admin.;married;professional.course;no;yes;no;cellular;nov;thu;88;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+29;blue-collar;married;high.school;no;yes;no;cellular;nov;thu;25;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+55;retired;married;high.school;no;no;yes;cellular;nov;thu;26;6;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+40;management;single;university.degree;no;no;no;cellular;nov;thu;549;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;yes
+29;blue-collar;married;high.school;no;yes;no;cellular;nov;thu;168;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+58;management;married;university.degree;no;yes;no;cellular;nov;thu;67;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+48;unemployed;married;university.degree;no;yes;no;cellular;nov;thu;60;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+30;admin.;married;high.school;no;yes;no;cellular;nov;thu;167;1;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+50;self-employed;divorced;university.degree;no;no;no;cellular;nov;thu;59;4;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+32;unemployed;single;high.school;no;yes;no;cellular;nov;thu;73;4;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+57;technician;married;professional.course;no;yes;no;cellular;nov;thu;302;4;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+40;management;single;high.school;no;yes;no;cellular;nov;thu;541;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+35;technician;married;university.degree;no;yes;no;cellular;nov;thu;92;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+49;admin.;married;basic.9y;no;yes;no;cellular;nov;thu;85;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+36;services;single;high.school;no;yes;no;cellular;nov;thu;128;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+30;admin.;single;university.degree;no;no;no;cellular;nov;thu;278;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+42;management;married;university.degree;no;no;no;cellular;nov;thu;316;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+52;admin.;married;university.degree;no;no;no;cellular;nov;thu;278;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+30;admin.;single;university.degree;no;yes;no;cellular;nov;thu;478;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;yes
+52;admin.;divorced;university.degree;no;yes;no;cellular;nov;thu;202;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+30;admin.;single;university.degree;no;yes;no;cellular;nov;thu;171;1;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+33;self-employed;divorced;university.degree;no;no;no;telephone;nov;thu;352;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+29;services;married;basic.9y;no;yes;no;cellular;nov;thu;755;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;yes
+38;entrepreneur;divorced;university.degree;no;yes;no;cellular;nov;thu;252;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+31;admin.;single;university.degree;no;yes;no;cellular;nov;thu;114;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+31;entrepreneur;single;university.degree;no;no;no;cellular;nov;thu;53;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+47;technician;married;basic.6y;no;yes;no;cellular;nov;thu;223;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+29;technician;single;university.degree;no;no;yes;cellular;nov;thu;57;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+49;technician;married;university.degree;no;yes;no;cellular;nov;thu;91;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+32;technician;single;university.degree;no;unknown;unknown;cellular;nov;thu;26;1;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+42;management;married;high.school;no;no;no;cellular;nov;thu;59;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+32;admin.;married;high.school;no;yes;no;cellular;nov;thu;90;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+31;entrepreneur;single;university.degree;no;yes;no;cellular;nov;thu;228;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+31;blue-collar;single;basic.4y;no;no;no;cellular;nov;thu;148;6;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+57;entrepreneur;married;high.school;no;no;no;cellular;nov;thu;199;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+30;technician;married;university.degree;no;no;no;cellular;nov;thu;1031;6;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+44;admin.;married;university.degree;no;yes;no;cellular;nov;thu;147;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+38;technician;married;university.degree;no;yes;no;cellular;nov;thu;82;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+46;admin.;divorced;university.degree;no;no;no;cellular;nov;thu;60;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+38;technician;married;university.degree;no;no;no;cellular;nov;thu;204;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+31;blue-collar;married;professional.course;unknown;no;no;cellular;nov;thu;230;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+29;self-employed;divorced;university.degree;no;unknown;unknown;cellular;nov;thu;173;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+38;admin.;married;high.school;no;unknown;unknown;cellular;nov;thu;309;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+36;management;married;high.school;unknown;yes;no;cellular;nov;thu;74;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+34;blue-collar;married;basic.9y;no;yes;no;cellular;nov;thu;500;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+33;blue-collar;divorced;basic.9y;no;yes;no;cellular;nov;thu;70;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+32;admin.;married;university.degree;no;no;no;cellular;nov;thu;18;6;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+37;technician;married;university.degree;no;no;no;cellular;nov;thu;174;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+31;entrepreneur;single;high.school;no;no;no;cellular;nov;thu;189;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+50;admin.;single;university.degree;no;yes;no;cellular;nov;thu;222;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+50;management;divorced;high.school;unknown;no;no;cellular;nov;thu;520;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+31;entrepreneur;single;high.school;no;no;no;cellular;nov;thu;290;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+33;blue-collar;divorced;basic.9y;no;yes;no;cellular;nov;thu;220;1;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+44;admin.;single;university.degree;no;yes;no;cellular;nov;thu;22;4;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+45;technician;married;professional.course;no;no;no;telephone;nov;thu;35;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+31;blue-collar;married;basic.9y;unknown;yes;no;cellular;nov;thu;157;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+31;admin.;single;university.degree;no;no;no;cellular;nov;thu;365;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+32;technician;married;professional.course;no;yes;no;telephone;nov;thu;106;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+31;admin.;single;university.degree;no;no;no;cellular;nov;thu;244;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+53;technician;divorced;high.school;no;no;no;cellular;nov;thu;290;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+31;management;single;high.school;no;yes;no;cellular;nov;thu;48;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+36;management;married;university.degree;no;yes;no;cellular;nov;thu;302;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+32;admin.;single;university.degree;no;no;no;cellular;nov;thu;151;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+31;technician;single;university.degree;no;yes;no;cellular;nov;thu;88;5;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+38;admin.;single;university.degree;no;yes;no;cellular;nov;thu;95;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+56;blue-collar;married;basic.9y;no;yes;no;cellular;nov;thu;994;1;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;yes
+43;technician;married;university.degree;no;no;yes;cellular;nov;thu;113;5;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+36;management;married;high.school;unknown;yes;no;cellular;nov;thu;371;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+36;technician;married;professional.course;no;no;no;cellular;nov;thu;70;1;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+46;management;married;unknown;no;yes;no;cellular;nov;thu;1503;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;yes
+58;technician;divorced;basic.9y;no;no;no;cellular;nov;thu;178;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+34;technician;married;professional.course;no;no;no;cellular;nov;thu;96;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+46;admin.;married;high.school;no;yes;no;cellular;nov;thu;308;1;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+34;management;married;university.degree;no;no;no;telephone;nov;thu;29;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+45;blue-collar;married;basic.9y;no;no;no;cellular;nov;thu;73;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+46;entrepreneur;divorced;high.school;no;yes;no;cellular;nov;thu;88;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+38;self-employed;married;professional.course;no;yes;no;cellular;nov;thu;86;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+38;management;married;professional.course;no;yes;yes;cellular;nov;thu;94;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+30;admin.;single;basic.9y;no;no;no;telephone;nov;thu;26;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+30;technician;single;professional.course;no;yes;no;cellular;nov;thu;78;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+38;management;single;university.degree;no;yes;yes;cellular;nov;thu;186;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+58;technician;married;professional.course;no;no;no;cellular;nov;thu;321;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+30;admin.;single;basic.9y;no;yes;no;cellular;nov;thu;220;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+33;admin.;single;university.degree;no;yes;no;cellular;nov;thu;77;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+53;technician;married;professional.course;no;no;no;cellular;nov;thu;81;2;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+39;unemployed;divorced;high.school;no;no;no;cellular;nov;thu;19;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+38;management;married;university.degree;no;yes;no;cellular;nov;thu;83;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+32;admin.;single;university.degree;no;no;no;cellular;nov;thu;40;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+34;services;married;high.school;no;yes;no;cellular;nov;thu;640;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+42;admin.;married;university.degree;no;yes;no;cellular;nov;thu;871;5;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;yes
+35;student;married;basic.9y;no;yes;no;cellular;nov;thu;371;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+30;self-employed;single;university.degree;no;yes;no;cellular;nov;thu;151;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+30;self-employed;single;university.degree;no;yes;no;cellular;nov;thu;88;1;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+32;entrepreneur;married;university.degree;no;no;no;cellular;nov;thu;73;4;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+47;technician;married;professional.course;no;yes;no;cellular;nov;thu;329;4;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;yes
+48;admin.;married;university.degree;no;yes;no;cellular;nov;thu;111;2;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+33;admin.;single;university.degree;no;no;no;cellular;nov;thu;757;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+31;services;married;high.school;no;no;no;cellular;nov;thu;62;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+31;technician;married;high.school;no;no;no;cellular;nov;thu;149;1;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+36;blue-collar;married;basic.9y;no;yes;no;cellular;nov;thu;164;4;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+56;housemaid;divorced;high.school;no;yes;no;cellular;nov;thu;67;6;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+31;technician;married;high.school;no;yes;yes;cellular;nov;thu;232;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+30;self-employed;single;university.degree;no;no;no;cellular;nov;thu;385;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+48;admin.;married;university.degree;no;no;no;cellular;nov;thu;301;1;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+34;entrepreneur;married;university.degree;no;yes;no;cellular;nov;thu;69;1;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+34;technician;married;university.degree;no;no;no;cellular;nov;thu;183;2;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+59;retired;married;professional.course;no;no;no;cellular;nov;thu;80;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+59;retired;married;professional.course;no;no;no;cellular;nov;thu;117;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+38;blue-collar;married;basic.9y;no;no;no;cellular;nov;thu;89;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+33;admin.;married;university.degree;no;yes;yes;cellular;nov;thu;49;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+38;self-employed;married;professional.course;no;no;no;cellular;nov;thu;24;1;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+56;technician;married;university.degree;no;no;no;cellular;nov;thu;162;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+34;management;married;university.degree;no;no;no;cellular;nov;thu;1256;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+34;management;married;university.degree;no;no;no;cellular;nov;thu;244;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+38;management;married;university.degree;no;yes;no;cellular;nov;thu;82;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+44;self-employed;married;university.degree;no;no;no;telephone;nov;thu;39;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+46;entrepreneur;married;unknown;unknown;yes;no;cellular;nov;thu;23;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+33;management;married;university.degree;no;no;no;cellular;nov;thu;133;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+55;entrepreneur;married;professional.course;no;yes;no;cellular;nov;thu;45;2;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+51;entrepreneur;single;university.degree;no;no;no;cellular;nov;thu;139;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+34;management;married;university.degree;no;no;yes;cellular;nov;thu;116;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+35;services;divorced;high.school;no;no;no;cellular;nov;thu;410;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+30;entrepreneur;single;university.degree;no;yes;no;cellular;nov;thu;45;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+32;entrepreneur;married;university.degree;no;no;no;telephone;nov;thu;125;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+34;services;married;basic.4y;no;yes;no;cellular;nov;thu;80;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+30;blue-collar;single;basic.9y;unknown;unknown;unknown;cellular;nov;thu;93;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+46;blue-collar;single;basic.4y;no;yes;yes;cellular;nov;thu;145;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+31;admin.;married;university.degree;no;yes;no;cellular;nov;thu;86;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+40;technician;married;professional.course;no;yes;no;cellular;nov;thu;180;1;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+36;blue-collar;single;basic.4y;no;yes;no;cellular;nov;thu;775;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+31;management;single;university.degree;no;yes;no;telephone;nov;thu;207;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+37;management;married;university.degree;no;no;no;cellular;nov;thu;89;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+36;management;married;university.degree;no;yes;yes;cellular;nov;thu;283;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+35;self-employed;unknown;university.degree;no;no;no;cellular;nov;thu;221;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+44;blue-collar;married;basic.4y;no;no;no;cellular;nov;thu;107;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+30;entrepreneur;single;university.degree;no;yes;no;cellular;nov;thu;531;1;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;yes
+36;admin.;married;high.school;no;no;no;cellular;nov;thu;59;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+30;admin.;single;university.degree;no;no;no;cellular;nov;thu;85;1;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+52;blue-collar;divorced;basic.4y;no;no;no;cellular;nov;thu;200;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+35;blue-collar;married;basic.9y;unknown;no;no;cellular;nov;thu;543;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;yes
+31;admin.;single;university.degree;no;yes;yes;telephone;nov;thu;90;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+53;management;married;high.school;no;no;no;cellular;nov;thu;227;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+40;admin.;single;high.school;no;yes;no;telephone;nov;thu;119;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+45;services;divorced;high.school;no;no;no;cellular;nov;thu;71;2;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+46;management;single;university.degree;no;yes;yes;cellular;nov;thu;292;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+38;management;single;university.degree;no;no;no;cellular;nov;thu;69;4;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+41;blue-collar;single;basic.9y;no;no;no;cellular;nov;thu;120;4;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+30;admin.;married;university.degree;no;yes;no;cellular;nov;thu;857;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;yes
+50;admin.;divorced;university.degree;no;no;no;cellular;nov;thu;160;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+43;blue-collar;married;basic.9y;no;yes;no;cellular;nov;thu;340;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+43;blue-collar;married;basic.9y;no;yes;no;cellular;nov;thu;352;1;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+31;services;single;high.school;no;yes;no;cellular;nov;thu;475;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+32;blue-collar;married;basic.6y;no;no;no;cellular;nov;thu;322;4;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+33;unemployed;single;university.degree;no;no;no;cellular;nov;thu;153;1;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+55;retired;divorced;basic.9y;no;no;no;cellular;nov;thu;178;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+39;management;married;university.degree;no;no;no;cellular;nov;thu;73;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+39;blue-collar;married;basic.9y;no;no;no;telephone;nov;thu;281;2;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+30;services;married;high.school;no;yes;no;cellular;nov;thu;80;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+36;blue-collar;married;basic.9y;no;no;no;telephone;nov;thu;96;8;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+29;entrepreneur;married;university.degree;no;no;no;cellular;nov;thu;62;5;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+39;admin.;married;university.degree;no;no;no;cellular;nov;thu;240;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+29;services;married;high.school;unknown;yes;yes;cellular;nov;thu;129;4;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+44;admin.;single;professional.course;no;yes;no;cellular;nov;thu;931;4;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;yes
+30;management;single;university.degree;no;no;no;cellular;nov;thu;197;5;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+43;entrepreneur;married;high.school;unknown;no;yes;cellular;nov;thu;274;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+39;entrepreneur;married;high.school;no;no;no;cellular;nov;thu;150;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+41;services;married;unknown;no;yes;yes;cellular;nov;thu;597;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+33;blue-collar;married;basic.9y;no;no;yes;cellular;nov;thu;200;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+39;technician;married;university.degree;no;yes;yes;cellular;nov;thu;42;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+29;self-employed;single;university.degree;no;no;no;cellular;nov;thu;88;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+32;entrepreneur;married;high.school;no;yes;no;cellular;nov;thu;356;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+35;blue-collar;married;basic.6y;no;yes;no;cellular;nov;thu;150;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+33;blue-collar;married;basic.9y;no;no;no;cellular;nov;thu;593;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;yes
+58;blue-collar;married;basic.9y;unknown;yes;no;cellular;nov;thu;308;1;6;1;success;-0.1;93.2;-42.0;4.076;5195.8;no
+41;services;married;university.degree;no;yes;no;cellular;nov;thu;283;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+50;unemployed;unknown;basic.9y;no;yes;yes;cellular;nov;thu;139;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+43;unemployed;single;university.degree;no;yes;yes;cellular;nov;thu;69;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+40;blue-collar;married;basic.6y;unknown;yes;no;cellular;nov;thu;142;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+49;technician;divorced;university.degree;no;yes;no;telephone;nov;thu;30;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+30;blue-collar;single;basic.9y;unknown;yes;no;cellular;nov;thu;71;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+36;admin.;married;high.school;no;yes;no;cellular;nov;thu;59;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+56;management;divorced;university.degree;no;yes;no;cellular;nov;thu;487;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+30;admin.;divorced;high.school;no;no;no;cellular;nov;thu;418;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+36;admin.;single;university.degree;no;yes;no;cellular;nov;thu;287;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+32;technician;married;professional.course;no;no;no;cellular;nov;thu;147;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+32;services;married;high.school;no;yes;no;cellular;nov;thu;282;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+47;admin.;married;university.degree;no;yes;no;cellular;nov;thu;70;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+47;entrepreneur;divorced;basic.9y;no;no;no;cellular;nov;thu;187;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+33;services;married;high.school;unknown;yes;no;cellular;nov;thu;83;3;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+40;blue-collar;married;basic.4y;unknown;no;no;cellular;nov;thu;22;5;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+58;admin.;married;university.degree;no;yes;no;cellular;nov;thu;554;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+31;admin.;married;university.degree;no;no;no;cellular;nov;thu;282;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+45;unemployed;married;basic.9y;no;yes;no;cellular;nov;thu;454;5;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+31;admin.;married;university.degree;no;yes;no;cellular;nov;thu;95;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+42;services;married;basic.6y;no;no;no;cellular;nov;thu;324;7;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+29;management;married;university.degree;no;yes;no;cellular;nov;thu;120;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+37;management;divorced;university.degree;no;yes;no;cellular;nov;thu;256;4;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+43;admin.;married;university.degree;no;yes;no;cellular;nov;thu;197;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+33;technician;divorced;professional.course;no;yes;no;cellular;nov;thu;104;3;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+50;retired;divorced;high.school;no;yes;no;cellular;nov;thu;691;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;yes
+40;blue-collar;married;basic.4y;no;yes;no;cellular;nov;thu;377;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+47;housemaid;single;basic.9y;no;no;no;cellular;nov;thu;128;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+55;entrepreneur;married;professional.course;no;yes;no;cellular;nov;thu;124;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+42;blue-collar;single;basic.4y;unknown;yes;no;cellular;nov;thu;269;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+44;admin.;single;university.degree;no;yes;yes;cellular;nov;thu;90;4;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+43;services;divorced;high.school;no;no;no;cellular;nov;thu;329;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+33;entrepreneur;married;university.degree;no;yes;yes;cellular;nov;thu;141;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+39;admin.;married;high.school;no;yes;no;cellular;nov;thu;50;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+50;technician;married;professional.course;no;yes;no;cellular;nov;thu;161;1;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+30;technician;single;university.degree;no;yes;yes;cellular;nov;thu;224;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+52;retired;married;university.degree;no;yes;no;telephone;nov;thu;188;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+31;admin.;married;university.degree;no;yes;no;cellular;nov;thu;395;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+34;management;divorced;university.degree;no;yes;yes;cellular;nov;thu;1258;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;yes
+30;blue-collar;single;basic.9y;no;yes;no;cellular;nov;thu;145;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+30;blue-collar;married;basic.9y;unknown;no;no;cellular;nov;thu;677;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;yes
+37;management;married;university.degree;no;yes;no;cellular;nov;thu;252;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+50;blue-collar;married;professional.course;no;yes;no;cellular;nov;thu;475;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+30;blue-collar;single;high.school;no;no;no;cellular;nov;thu;363;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+33;admin.;single;high.school;no;yes;no;cellular;nov;thu;172;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+40;self-employed;married;university.degree;unknown;yes;yes;cellular;nov;thu;1490;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;yes
+41;services;single;high.school;unknown;yes;no;cellular;nov;thu;125;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+35;self-employed;married;high.school;no;yes;no;cellular;nov;thu;305;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+50;self-employed;divorced;university.degree;no;yes;no;cellular;nov;thu;743;1;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+44;blue-collar;married;basic.4y;no;no;no;cellular;nov;thu;62;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+41;blue-collar;married;basic.4y;no;yes;no;cellular;nov;thu;81;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+48;technician;divorced;professional.course;no;yes;no;cellular;nov;thu;89;1;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+52;self-employed;single;professional.course;no;no;yes;cellular;nov;thu;139;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+31;services;single;high.school;no;yes;no;cellular;nov;thu;452;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+50;technician;married;high.school;no;yes;no;telephone;nov;thu;75;2;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+43;management;married;university.degree;no;yes;no;cellular;nov;thu;661;4;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+34;unemployed;married;high.school;no;yes;no;cellular;nov;thu;562;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;yes
+30;services;married;high.school;no;yes;no;cellular;nov;thu;174;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+29;services;married;high.school;no;yes;no;cellular;nov;thu;278;4;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+53;management;married;high.school;no;no;no;cellular;nov;thu;184;1;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+53;self-employed;divorced;professional.course;no;yes;no;cellular;nov;thu;73;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+31;blue-collar;single;high.school;no;no;no;cellular;nov;thu;184;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+51;technician;married;professional.course;no;yes;no;cellular;nov;thu;123;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+31;admin.;single;university.degree;no;yes;no;cellular;nov;thu;124;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+57;admin.;divorced;university.degree;no;yes;yes;cellular;nov;thu;1154;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;yes
+31;blue-collar;single;high.school;no;yes;no;cellular;nov;thu;359;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+29;admin.;single;university.degree;no;yes;yes;cellular;nov;thu;60;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+29;blue-collar;single;basic.9y;no;yes;no;cellular;nov;thu;249;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+47;admin.;married;basic.9y;no;no;no;cellular;nov;thu;164;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+51;admin.;divorced;high.school;no;no;yes;cellular;nov;thu;64;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+51;self-employed;married;basic.9y;no;yes;yes;cellular;nov;thu;244;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+31;unemployed;single;professional.course;no;yes;no;cellular;nov;thu;70;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+45;technician;divorced;professional.course;no;yes;yes;cellular;nov;thu;705;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;yes
+31;admin.;married;university.degree;no;no;no;cellular;nov;thu;96;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+30;services;married;high.school;unknown;no;yes;cellular;nov;thu;178;4;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+31;unemployed;single;professional.course;no;no;no;cellular;nov;thu;250;1;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+31;admin.;married;university.degree;no;no;no;cellular;nov;thu;211;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+30;blue-collar;married;basic.6y;no;yes;yes;cellular;nov;thu;74;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+51;retired;married;basic.9y;no;yes;no;cellular;nov;thu;259;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+52;housemaid;married;basic.9y;no;yes;no;cellular;nov;thu;339;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+30;blue-collar;married;basic.6y;no;yes;yes;cellular;nov;thu;195;1;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+41;admin.;divorced;university.degree;no;yes;no;cellular;nov;thu;168;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+44;entrepreneur;married;university.degree;no;yes;yes;cellular;nov;thu;96;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+37;admin.;single;high.school;no;yes;no;cellular;nov;thu;1035;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;yes
+29;admin.;single;university.degree;no;yes;yes;cellular;nov;thu;736;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;yes
+34;technician;married;professional.course;no;no;no;cellular;nov;thu;144;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+31;technician;married;basic.6y;no;yes;no;telephone;nov;thu;51;8;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+31;blue-collar;single;basic.4y;no;yes;no;cellular;nov;thu;111;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+29;technician;single;professional.course;unknown;no;no;cellular;nov;thu;308;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+50;services;married;unknown;no;yes;no;cellular;nov;thu;153;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+30;technician;single;professional.course;no;no;no;cellular;nov;thu;214;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+31;admin.;married;university.degree;no;yes;no;cellular;nov;thu;188;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+46;unemployed;married;basic.9y;no;yes;no;cellular;nov;thu;352;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+41;services;married;high.school;unknown;yes;no;cellular;nov;thu;255;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+36;unemployed;single;basic.9y;no;yes;no;cellular;nov;thu;118;4;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+30;admin.;married;university.degree;no;yes;no;cellular;nov;thu;597;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+38;blue-collar;married;basic.4y;no;no;no;cellular;nov;thu;190;5;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+39;blue-collar;married;high.school;no;yes;no;cellular;nov;thu;193;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+33;entrepreneur;married;university.degree;no;no;no;cellular;nov;thu;55;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+29;technician;single;professional.course;unknown;yes;yes;cellular;nov;thu;895;1;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+30;unemployed;married;university.degree;no;no;no;cellular;nov;thu;125;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+32;blue-collar;single;basic.4y;no;no;no;cellular;nov;thu;113;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+39;management;divorced;university.degree;no;yes;no;cellular;nov;thu;10;6;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+43;technician;divorced;high.school;no;yes;no;cellular;nov;thu;94;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+33;unemployed;single;university.degree;no;yes;no;cellular;nov;thu;176;1;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+31;blue-collar;married;basic.9y;no;no;no;cellular;nov;thu;277;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+33;blue-collar;married;basic.4y;unknown;no;no;cellular;nov;thu;53;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+53;management;married;university.degree;no;yes;no;cellular;nov;thu;888;2;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;yes
+33;blue-collar;married;basic.4y;unknown;yes;yes;cellular;nov;thu;129;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+36;services;single;high.school;no;no;no;cellular;nov;thu;105;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+30;blue-collar;single;basic.9y;no;no;no;cellular;nov;thu;197;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+41;admin.;single;university.degree;no;yes;no;cellular;nov;thu;80;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+37;blue-collar;divorced;professional.course;no;yes;no;cellular;nov;thu;75;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+34;unemployed;married;high.school;no;unknown;unknown;cellular;nov;thu;72;2;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+32;technician;married;university.degree;no;no;yes;cellular;nov;thu;382;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+55;admin.;married;university.degree;no;unknown;unknown;cellular;nov;thu;187;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+51;management;divorced;high.school;no;no;no;cellular;nov;thu;486;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+32;student;single;university.degree;no;no;no;cellular;nov;thu;151;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+39;blue-collar;married;basic.9y;unknown;yes;no;cellular;nov;thu;124;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+56;housemaid;divorced;basic.4y;no;no;no;cellular;nov;thu;80;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+37;blue-collar;divorced;professional.course;no;yes;no;cellular;nov;thu;340;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+29;technician;single;professional.course;unknown;yes;no;cellular;nov;thu;239;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+34;blue-collar;married;basic.4y;no;no;no;cellular;nov;thu;223;1;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+34;management;divorced;university.degree;no;no;no;cellular;nov;thu;370;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;yes
+56;housemaid;divorced;basic.4y;no;yes;no;cellular;nov;thu;212;1;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+31;services;single;high.school;no;no;no;cellular;nov;thu;151;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+32;management;single;university.degree;no;no;no;cellular;nov;thu;500;2;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;yes
+41;blue-collar;married;basic.4y;no;no;no;cellular;nov;thu;136;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+51;unemployed;divorced;high.school;unknown;yes;no;cellular;nov;thu;1166;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+56;retired;married;basic.4y;no;yes;yes;cellular;nov;thu;258;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+34;self-employed;married;illiterate;no;yes;no;cellular;nov;thu;51;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+51;admin.;divorced;university.degree;no;no;no;cellular;nov;thu;140;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+46;admin.;married;high.school;no;yes;no;cellular;nov;thu;790;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+32;blue-collar;single;basic.9y;no;yes;no;cellular;nov;thu;75;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+43;blue-collar;married;basic.9y;no;no;no;cellular;nov;thu;72;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+41;blue-collar;married;basic.4y;no;no;no;cellular;nov;thu;604;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+34;management;married;university.degree;no;no;no;cellular;nov;thu;154;3;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+31;admin.;married;university.degree;no;yes;no;cellular;nov;thu;131;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+38;blue-collar;married;basic.9y;no;yes;no;telephone;nov;thu;733;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+34;self-employed;married;illiterate;no;yes;no;cellular;nov;thu;488;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;yes
+34;unemployed;married;university.degree;no;yes;no;cellular;nov;thu;266;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+37;management;married;basic.9y;no;yes;no;cellular;nov;thu;130;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+32;blue-collar;divorced;basic.9y;no;yes;no;telephone;nov;thu;1025;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;yes
+33;services;divorced;high.school;no;no;yes;cellular;nov;thu;98;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+33;technician;married;unknown;no;yes;no;cellular;nov;thu;68;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+29;admin.;married;basic.9y;no;no;no;cellular;nov;thu;143;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+31;blue-collar;single;high.school;no;yes;yes;cellular;nov;thu;559;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+53;management;divorced;university.degree;no;yes;no;cellular;nov;thu;350;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+30;blue-collar;single;high.school;no;yes;no;cellular;nov;thu;293;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+37;blue-collar;married;basic.4y;no;yes;no;cellular;nov;thu;138;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+36;admin.;single;university.degree;no;no;no;cellular;nov;thu;105;2;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+33;admin.;married;university.degree;no;yes;no;cellular;nov;thu;195;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+39;services;single;university.degree;unknown;yes;no;cellular;nov;thu;689;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+53;housemaid;married;unknown;no;yes;no;cellular;nov;thu;104;5;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+40;services;married;basic.6y;no;no;no;cellular;nov;thu;215;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+30;self-employed;single;university.degree;no;yes;no;cellular;nov;thu;311;3;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+31;technician;single;unknown;unknown;no;no;cellular;nov;thu;63;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+35;admin.;single;university.degree;no;yes;no;cellular;nov;thu;633;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+30;admin.;married;unknown;no;yes;no;cellular;nov;thu;305;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+35;admin.;single;university.degree;no;yes;no;cellular;nov;thu;191;2;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+31;admin.;single;university.degree;no;yes;no;cellular;nov;thu;239;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+35;admin.;married;high.school;no;yes;no;cellular;nov;thu;125;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+37;technician;married;professional.course;no;yes;no;cellular;nov;thu;63;2;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+36;blue-collar;single;basic.6y;no;no;no;cellular;nov;thu;219;7;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+32;admin.;single;university.degree;no;no;no;telephone;nov;thu;65;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+36;technician;single;university.degree;no;no;no;telephone;nov;thu;61;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+46;blue-collar;married;basic.6y;no;no;no;cellular;nov;thu;123;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+55;technician;single;university.degree;unknown;yes;yes;cellular;nov;thu;92;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+45;unemployed;divorced;basic.4y;unknown;no;no;cellular;nov;thu;462;4;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+32;admin.;single;high.school;no;yes;no;cellular;nov;thu;141;4;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+56;technician;married;professional.course;no;no;no;cellular;nov;thu;51;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+31;blue-collar;married;basic.9y;unknown;no;no;cellular;nov;thu;425;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+56;management;married;university.degree;no;yes;no;cellular;nov;thu;149;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+50;blue-collar;married;professional.course;no;yes;no;telephone;nov;thu;547;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+29;self-employed;single;high.school;no;yes;yes;cellular;nov;thu;337;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+40;management;married;unknown;no;yes;no;cellular;nov;thu;165;1;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+43;technician;married;professional.course;no;yes;yes;cellular;nov;thu;47;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+32;services;married;high.school;no;no;no;telephone;nov;thu;35;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+34;student;divorced;university.degree;no;yes;no;cellular;nov;thu;48;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+42;blue-collar;married;basic.9y;no;yes;no;cellular;nov;thu;230;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+47;management;married;university.degree;no;yes;yes;cellular;nov;thu;109;4;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+35;self-employed;single;professional.course;no;yes;no;cellular;nov;thu;361;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+31;services;single;high.school;no;yes;no;cellular;nov;thu;67;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+40;blue-collar;married;basic.6y;no;yes;no;telephone;nov;thu;107;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+31;technician;married;high.school;no;yes;yes;cellular;nov;thu;435;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+31;services;single;high.school;no;no;no;cellular;nov;thu;140;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+33;blue-collar;single;high.school;no;yes;no;cellular;nov;thu;294;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+46;management;married;university.degree;no;yes;no;cellular;nov;thu;205;6;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+32;admin.;single;high.school;no;no;no;cellular;nov;thu;470;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+31;admin.;married;university.degree;no;no;no;cellular;nov;thu;427;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+33;blue-collar;single;basic.9y;no;yes;no;cellular;nov;thu;175;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+53;self-employed;divorced;university.degree;no;no;no;cellular;nov;thu;380;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+32;blue-collar;divorced;basic.9y;no;yes;yes;cellular;nov;thu;215;6;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+34;blue-collar;married;basic.9y;no;yes;yes;telephone;nov;thu;98;4;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+30;entrepreneur;married;professional.course;no;yes;yes;cellular;nov;thu;267;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+32;admin.;married;university.degree;no;yes;yes;cellular;nov;thu;51;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+31;technician;single;professional.course;no;yes;no;cellular;nov;thu;207;5;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+49;unemployed;unknown;high.school;no;yes;no;cellular;nov;thu;73;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+35;admin.;single;university.degree;no;yes;no;cellular;nov;thu;20;8;6;1;success;-0.1;93.2;-42.0;4.076;5195.8;no
+30;services;married;high.school;no;no;no;cellular;nov;thu;186;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+42;blue-collar;divorced;basic.4y;unknown;no;no;cellular;nov;thu;14;6;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+51;unemployed;married;high.school;no;yes;no;cellular;nov;thu;120;4;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+30;admin.;single;university.degree;no;no;no;cellular;nov;thu;319;5;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+36;blue-collar;married;high.school;no;no;no;cellular;nov;thu;52;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+52;technician;divorced;university.degree;no;yes;no;cellular;nov;thu;154;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+51;admin.;divorced;university.degree;no;no;no;cellular;nov;thu;267;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+34;self-employed;married;illiterate;no;yes;no;cellular;nov;thu;113;1;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+55;management;divorced;university.degree;no;yes;no;cellular;nov;thu;159;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+29;technician;single;professional.course;unknown;no;no;cellular;nov;thu;128;2;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+51;admin.;divorced;university.degree;no;yes;yes;cellular;nov;thu;249;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+39;entrepreneur;married;professional.course;no;yes;no;cellular;nov;thu;195;3;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+31;technician;single;professional.course;no;yes;no;cellular;nov;thu;16;9;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+48;admin.;divorced;high.school;no;no;no;cellular;nov;thu;330;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+30;blue-collar;married;basic.9y;no;yes;no;telephone;nov;thu;25;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+50;admin.;single;university.degree;no;yes;yes;cellular;nov;thu;340;2;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+32;admin.;married;university.degree;no;yes;no;cellular;nov;thu;158;2;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+35;unemployed;married;basic.4y;no;no;no;cellular;nov;thu;192;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+36;blue-collar;married;basic.9y;no;no;no;cellular;nov;thu;768;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;yes
+40;blue-collar;single;basic.9y;no;yes;yes;cellular;nov;thu;426;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+39;entrepreneur;married;university.degree;no;yes;no;cellular;nov;thu;260;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+39;management;married;unknown;no;no;no;cellular;nov;thu;352;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+57;management;divorced;university.degree;unknown;yes;yes;cellular;nov;thu;114;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+30;admin.;married;basic.9y;no;yes;yes;cellular;nov;thu;539;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+51;unemployed;divorced;high.school;unknown;yes;no;cellular;nov;thu;187;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+39;management;married;unknown;no;yes;yes;cellular;nov;thu;758;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;yes
+54;housemaid;divorced;university.degree;no;yes;yes;cellular;nov;thu;653;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;yes
+31;technician;single;unknown;unknown;yes;no;cellular;nov;thu;276;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+31;admin.;single;university.degree;no;yes;no;cellular;nov;thu;230;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+33;blue-collar;married;basic.9y;unknown;yes;no;cellular;nov;thu;340;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+47;blue-collar;married;basic.6y;no;yes;yes;cellular;nov;thu;9;6;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+39;admin.;single;high.school;no;yes;yes;cellular;nov;thu;44;2;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+29;services;married;basic.9y;no;yes;yes;cellular;nov;thu;142;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+31;admin.;married;university.degree;unknown;yes;no;cellular;nov;thu;55;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+50;admin.;married;basic.9y;no;no;no;cellular;nov;thu;315;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+30;services;married;basic.9y;no;yes;no;cellular;nov;thu;326;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+33;admin.;married;university.degree;no;yes;no;cellular;nov;thu;240;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+29;services;married;basic.9y;no;no;no;cellular;nov;thu;517;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+30;blue-collar;single;unknown;no;yes;no;cellular;nov;thu;150;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+38;management;single;basic.9y;unknown;yes;no;cellular;nov;thu;972;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+33;admin.;single;university.degree;no;yes;no;cellular;nov;thu;73;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+41;blue-collar;married;basic.4y;no;no;no;cellular;nov;thu;77;3;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+39;entrepreneur;married;university.degree;no;no;no;cellular;nov;thu;279;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+29;unemployed;married;basic.4y;unknown;yes;no;cellular;nov;thu;166;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+49;self-employed;married;university.degree;no;no;no;cellular;nov;thu;40;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+42;entrepreneur;single;basic.4y;no;yes;no;cellular;nov;thu;93;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+45;technician;single;professional.course;no;yes;no;cellular;nov;thu;102;4;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+31;technician;married;professional.course;no;yes;no;cellular;nov;thu;144;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+29;entrepreneur;married;university.degree;no;yes;yes;cellular;nov;thu;265;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+53;admin.;divorced;high.school;no;yes;no;cellular;nov;thu;115;2;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+53;self-employed;single;university.degree;no;no;yes;cellular;nov;thu;61;2;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+46;entrepreneur;divorced;basic.9y;no;yes;no;cellular;nov;thu;201;4;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+49;services;married;basic.4y;no;no;no;cellular;nov;thu;106;2;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+43;technician;married;high.school;no;yes;no;telephone;nov;thu;37;4;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+39;technician;married;university.degree;no;no;yes;cellular;nov;thu;418;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+38;entrepreneur;married;university.degree;no;yes;no;cellular;nov;thu;106;3;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+33;unemployed;single;university.degree;no;no;no;cellular;nov;thu;187;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+51;self-employed;married;university.degree;no;yes;no;cellular;nov;thu;101;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+45;management;married;professional.course;no;yes;no;cellular;nov;thu;619;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+32;self-employed;single;university.degree;no;yes;no;telephone;nov;thu;93;4;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+30;technician;single;professional.course;no;yes;no;cellular;nov;thu;127;2;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+38;services;married;basic.6y;no;yes;no;cellular;nov;thu;88;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+44;self-employed;married;basic.9y;no;yes;no;cellular;nov;thu;104;4;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+39;services;single;university.degree;unknown;yes;no;cellular;nov;thu;43;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+32;services;married;basic.4y;unknown;no;no;cellular;nov;thu;813;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+50;unemployed;married;high.school;no;no;no;cellular;nov;thu;808;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+50;blue-collar;married;professional.course;no;no;no;cellular;nov;thu;600;3;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+31;services;married;professional.course;no;no;no;cellular;nov;thu;627;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+41;management;married;basic.9y;no;no;no;cellular;nov;thu;329;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+30;technician;single;university.degree;no;no;yes;cellular;nov;thu;399;2;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+29;admin.;single;high.school;no;yes;no;cellular;nov;thu;87;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+36;technician;single;professional.course;no;yes;no;cellular;nov;thu;911;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+36;technician;single;professional.course;no;yes;no;cellular;nov;thu;352;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+43;blue-collar;married;basic.6y;no;yes;no;telephone;nov;thu;20;4;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+46;technician;married;professional.course;no;no;no;cellular;nov;thu;108;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+38;management;single;university.degree;no;yes;no;cellular;nov;thu;262;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+38;management;married;university.degree;no;no;no;cellular;nov;thu;196;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+29;admin.;single;university.degree;no;yes;yes;cellular;nov;thu;43;4;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+30;blue-collar;married;basic.9y;no;yes;no;cellular;nov;thu;128;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+29;blue-collar;single;basic.4y;no;yes;yes;cellular;nov;thu;104;5;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+36;services;married;high.school;no;yes;no;cellular;nov;thu;111;3;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+36;technician;single;professional.course;no;yes;no;cellular;nov;thu;61;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+33;services;married;high.school;unknown;no;no;cellular;nov;thu;130;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+33;admin.;divorced;university.degree;no;yes;no;telephone;nov;thu;119;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+39;entrepreneur;married;professional.course;no;unknown;unknown;cellular;nov;thu;165;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+30;admin.;single;university.degree;no;yes;no;telephone;nov;thu;105;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+33;admin.;married;high.school;no;no;no;cellular;nov;thu;133;4;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+52;management;married;university.degree;no;yes;no;cellular;nov;thu;179;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+33;admin.;single;university.degree;no;no;no;cellular;nov;thu;206;2;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+46;technician;divorced;professional.course;no;yes;no;cellular;nov;thu;240;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+35;blue-collar;married;basic.9y;unknown;yes;no;cellular;nov;thu;198;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+34;entrepreneur;married;university.degree;no;yes;no;cellular;nov;thu;129;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+57;management;married;professional.course;unknown;yes;no;cellular;nov;thu;224;2;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+43;technician;single;professional.course;unknown;unknown;unknown;cellular;nov;thu;157;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+38;management;married;university.degree;no;yes;no;cellular;nov;thu;182;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+33;admin.;married;university.degree;unknown;yes;no;cellular;nov;thu;386;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+36;admin.;single;university.degree;no;no;no;cellular;nov;thu;642;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+31;admin.;single;university.degree;no;no;no;cellular;nov;thu;434;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+41;services;single;basic.9y;no;yes;no;cellular;nov;thu;163;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+33;admin.;divorced;university.degree;no;yes;no;cellular;nov;thu;214;2;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+35;technician;married;university.degree;no;no;no;cellular;nov;thu;1145;4;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+39;services;single;high.school;no;no;no;cellular;nov;thu;148;4;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+30;self-employed;married;professional.course;no;yes;no;cellular;nov;thu;329;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+36;blue-collar;married;basic.9y;no;yes;no;cellular;nov;thu;221;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+50;management;married;university.degree;no;yes;yes;cellular;nov;thu;339;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+31;blue-collar;single;basic.9y;no;yes;no;cellular;nov;thu;135;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+31;services;divorced;high.school;no;yes;no;cellular;nov;thu;41;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+36;technician;married;professional.course;no;no;no;telephone;nov;thu;159;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+33;admin.;married;university.degree;no;unknown;unknown;cellular;nov;thu;470;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+30;services;married;high.school;no;yes;no;cellular;nov;thu;75;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+32;admin.;married;university.degree;no;yes;no;cellular;nov;thu;155;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+41;management;divorced;basic.6y;no;yes;no;cellular;nov;thu;147;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+41;management;divorced;basic.6y;no;yes;no;cellular;nov;thu;167;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+41;management;divorced;basic.6y;no;no;no;cellular;nov;thu;268;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+22;blue-collar;single;basic.4y;no;yes;no;telephone;nov;thu;16;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+35;admin.;married;university.degree;no;no;no;cellular;nov;thu;533;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+31;admin.;single;university.degree;no;no;yes;cellular;nov;thu;264;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+30;technician;single;university.degree;no;no;yes;cellular;nov;thu;303;4;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+34;management;married;university.degree;no;yes;no;cellular;nov;thu;91;4;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+29;admin.;single;university.degree;no;yes;no;cellular;nov;thu;225;2;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+39;management;married;university.degree;no;yes;yes;cellular;nov;thu;90;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+52;services;married;basic.6y;no;yes;no;cellular;nov;thu;283;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+32;admin.;single;university.degree;no;yes;yes;cellular;nov;thu;208;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+35;management;single;unknown;no;yes;yes;cellular;nov;thu;207;1;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+30;admin.;single;high.school;no;no;no;cellular;nov;thu;56;4;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+31;management;single;university.degree;no;no;no;cellular;nov;thu;319;1;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+50;entrepreneur;married;university.degree;no;yes;no;cellular;nov;thu;57;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+46;blue-collar;married;basic.9y;unknown;yes;no;cellular;nov;thu;150;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+56;services;married;high.school;no;no;no;telephone;nov;thu;871;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;yes
+34;technician;single;university.degree;no;yes;no;cellular;nov;thu;354;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+45;management;single;basic.9y;no;yes;no;cellular;nov;thu;165;3;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+30;admin.;single;university.degree;no;no;no;cellular;nov;thu;88;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+58;retired;married;university.degree;no;unknown;unknown;cellular;nov;thu;279;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+30;services;single;high.school;no;no;no;cellular;nov;thu;180;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+36;technician;divorced;professional.course;no;unknown;unknown;cellular;nov;thu;156;4;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+38;admin.;divorced;university.degree;no;yes;no;cellular;nov;thu;1532;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;yes
+36;admin.;married;unknown;unknown;yes;no;cellular;nov;thu;235;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+37;management;married;unknown;no;yes;no;cellular;nov;thu;884;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+35;admin.;single;university.degree;no;yes;no;cellular;nov;thu;218;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+49;entrepreneur;married;high.school;unknown;yes;no;cellular;nov;thu;611;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+30;admin.;married;university.degree;no;no;no;cellular;nov;thu;248;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+43;technician;married;professional.course;no;no;no;cellular;nov;thu;75;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+46;blue-collar;married;basic.4y;unknown;yes;yes;cellular;nov;thu;60;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+33;admin.;single;university.degree;no;no;no;cellular;nov;thu;986;6;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+57;admin.;divorced;university.degree;no;yes;no;cellular;nov;thu;172;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+29;admin.;single;university.degree;no;yes;no;cellular;nov;thu;315;2;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+57;admin.;divorced;university.degree;unknown;no;no;cellular;nov;thu;399;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+33;admin.;single;university.degree;no;no;no;cellular;nov;thu;117;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+36;self-employed;married;basic.9y;no;yes;yes;cellular;nov;thu;151;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+30;admin.;single;university.degree;no;yes;no;cellular;nov;thu;513;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+29;technician;single;university.degree;no;yes;yes;cellular;nov;thu;281;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+36;self-employed;married;basic.9y;no;yes;no;cellular;nov;thu;317;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+39;services;married;high.school;no;yes;no;cellular;nov;thu;116;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+47;admin.;married;high.school;no;no;no;cellular;nov;thu;115;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+55;unemployed;married;university.degree;no;yes;no;cellular;nov;thu;303;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+55;blue-collar;divorced;basic.9y;no;yes;no;cellular;nov;thu;97;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+55;blue-collar;divorced;basic.6y;no;yes;no;cellular;nov;thu;104;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+54;management;married;university.degree;no;yes;no;cellular;nov;thu;68;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+55;admin.;married;unknown;no;yes;yes;cellular;nov;thu;591;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+29;blue-collar;married;professional.course;no;yes;yes;cellular;nov;thu;136;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+31;services;divorced;high.school;no;yes;no;cellular;nov;thu;251;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+43;blue-collar;married;unknown;unknown;yes;no;cellular;nov;thu;355;6;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+31;services;single;high.school;no;yes;no;cellular;nov;thu;231;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+32;services;married;basic.9y;unknown;yes;no;cellular;nov;thu;251;4;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+29;admin.;single;university.degree;no;yes;no;cellular;nov;thu;341;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+30;admin.;single;university.degree;no;no;yes;cellular;nov;thu;106;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+30;admin.;married;high.school;no;no;no;cellular;nov;thu;361;2;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+37;unemployed;single;university.degree;no;no;no;cellular;nov;thu;212;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+55;management;divorced;university.degree;no;no;no;cellular;nov;thu;131;2;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+38;blue-collar;divorced;basic.4y;no;no;no;cellular;nov;thu;60;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+46;management;single;university.degree;no;no;yes;cellular;nov;thu;378;8;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+29;services;married;high.school;unknown;yes;no;cellular;nov;thu;441;4;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+30;services;married;high.school;no;yes;yes;cellular;nov;thu;282;2;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+32;technician;single;university.degree;no;no;yes;telephone;nov;thu;197;7;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+41;services;married;professional.course;no;no;yes;cellular;nov;thu;217;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+32;admin.;single;university.degree;no;no;yes;cellular;nov;thu;250;2;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+42;technician;married;university.degree;no;no;no;telephone;nov;thu;172;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+31;admin.;married;university.degree;no;yes;no;cellular;nov;thu;210;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+30;management;single;high.school;no;no;no;cellular;nov;thu;952;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;yes
+39;blue-collar;married;basic.6y;no;yes;no;cellular;nov;thu;332;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+33;services;married;high.school;unknown;no;no;cellular;nov;thu;117;6;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+31;technician;married;basic.6y;no;yes;yes;cellular;nov;thu;194;4;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+31;blue-collar;married;basic.4y;no;yes;no;cellular;nov;thu;233;4;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+35;blue-collar;divorced;basic.4y;no;no;no;cellular;nov;thu;197;4;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+34;admin.;divorced;university.degree;no;no;no;cellular;nov;thu;493;2;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;yes
+30;technician;single;university.degree;no;no;no;cellular;nov;thu;168;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+36;technician;married;high.school;no;yes;no;cellular;nov;thu;688;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+29;admin.;single;high.school;no;yes;no;cellular;nov;thu;205;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+41;blue-collar;married;basic.6y;no;yes;no;telephone;nov;thu;713;6;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+33;management;single;university.degree;no;no;no;cellular;nov;thu;2420;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;yes
+52;blue-collar;married;basic.9y;no;no;no;cellular;nov;thu;176;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+38;management;divorced;high.school;no;yes;no;telephone;nov;thu;215;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+33;admin.;single;university.degree;no;yes;yes;cellular;nov;thu;90;4;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+32;blue-collar;married;basic.4y;unknown;yes;no;cellular;nov;thu;292;2;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+30;blue-collar;single;high.school;no;no;no;cellular;nov;thu;232;2;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+49;management;divorced;basic.6y;no;no;no;telephone;nov;thu;88;6;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+46;admin.;divorced;university.degree;no;unknown;unknown;cellular;nov;thu;257;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+34;admin.;married;high.school;no;no;no;cellular;nov;thu;1598;4;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;yes
+35;admin.;single;university.degree;no;no;no;cellular;nov;thu;295;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;yes
+31;blue-collar;married;basic.9y;no;no;no;cellular;nov;thu;693;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+55;admin.;married;basic.9y;no;yes;yes;cellular;nov;thu;430;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+45;unemployed;married;basic.9y;no;no;no;telephone;nov;thu;134;9;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+54;entrepreneur;divorced;university.degree;no;yes;yes;telephone;nov;thu;761;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+41;admin.;divorced;university.degree;no;no;no;telephone;nov;thu;233;4;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+52;admin.;married;university.degree;no;yes;no;cellular;nov;thu;134;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+42;services;married;basic.6y;no;no;no;cellular;nov;thu;290;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+59;blue-collar;married;basic.9y;no;yes;no;cellular;nov;thu;370;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+29;services;single;professional.course;no;yes;no;cellular;nov;thu;766;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+51;admin.;divorced;university.degree;no;no;no;cellular;nov;thu;279;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+48;admin.;married;university.degree;no;no;no;cellular;nov;thu;298;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+29;self-employed;married;university.degree;no;no;no;cellular;nov;thu;157;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+32;blue-collar;single;basic.9y;no;no;no;cellular;nov;thu;324;5;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+48;entrepreneur;divorced;university.degree;no;yes;no;cellular;nov;thu;537;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+33;admin.;single;university.degree;no;yes;no;cellular;nov;thu;182;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+31;management;single;university.degree;no;no;no;telephone;nov;thu;96;5;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+36;services;married;basic.9y;unknown;yes;no;cellular;nov;thu;90;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+30;technician;single;university.degree;no;no;no;cellular;nov;thu;59;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+31;blue-collar;single;basic.4y;no;yes;no;cellular;nov;thu;222;4;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+58;admin.;divorced;university.degree;no;no;no;cellular;nov;thu;178;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+41;services;single;basic.9y;no;no;no;cellular;nov;thu;146;5;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+30;admin.;single;university.degree;no;yes;no;cellular;nov;thu;769;4;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+30;unemployed;married;unknown;no;yes;no;cellular;nov;thu;216;4;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+43;unemployed;single;unknown;no;yes;no;cellular;nov;thu;87;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+36;management;married;university.degree;no;no;no;cellular;nov;thu;192;2;6;1;success;-0.1;93.2;-42.0;4.076;5195.8;no
+40;entrepreneur;unknown;high.school;no;yes;yes;cellular;nov;thu;825;6;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+30;services;married;high.school;no;yes;no;telephone;nov;thu;156;7;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+50;unemployed;unknown;basic.9y;no;no;no;telephone;nov;thu;278;6;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+34;technician;married;high.school;no;yes;yes;cellular;nov;thu;1329;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+37;unemployed;single;university.degree;no;yes;no;telephone;nov;thu;76;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+51;self-employed;married;university.degree;no;yes;yes;cellular;nov;thu;310;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+36;admin.;divorced;university.degree;no;no;yes;cellular;nov;thu;56;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+31;services;single;high.school;no;yes;no;cellular;nov;thu;1059;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;yes
+36;admin.;single;high.school;no;no;no;cellular;nov;thu;40;5;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+45;technician;divorced;university.degree;no;yes;no;cellular;nov;thu;104;4;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+31;services;married;basic.6y;no;no;no;cellular;nov;thu;843;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+46;blue-collar;single;basic.4y;no;no;no;cellular;nov;thu;185;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+38;admin.;single;high.school;no;yes;yes;cellular;nov;thu;1476;4;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+32;services;married;basic.9y;no;no;no;cellular;nov;thu;476;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+33;admin.;married;university.degree;no;no;no;cellular;nov;thu;139;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+31;services;married;high.school;no;no;no;cellular;nov;thu;283;5;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+32;admin.;married;university.degree;no;no;no;cellular;nov;thu;165;4;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+38;blue-collar;married;basic.9y;no;no;no;cellular;nov;thu;738;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+45;blue-collar;married;basic.6y;no;yes;no;cellular;nov;thu;265;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+39;admin.;married;university.degree;no;yes;no;telephone;nov;thu;442;4;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+42;management;married;high.school;no;yes;yes;cellular;nov;thu;164;3;999;1;failure;-0.1;93.2;-42.0;4.076;5195.8;no
+36;services;single;high.school;no;yes;no;cellular;nov;thu;422;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+34;self-employed;single;basic.9y;no;no;no;cellular;nov;thu;91;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+33;admin.;married;university.degree;no;no;no;cellular;nov;thu;489;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+39;blue-collar;married;basic.6y;no;yes;no;cellular;nov;thu;391;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+31;entrepreneur;single;university.degree;no;no;no;cellular;nov;thu;1855;3;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;no
+30;blue-collar;married;high.school;no;yes;yes;cellular;nov;thu;2453;2;999;0;nonexistent;-0.1;93.2;-42.0;4.076;5195.8;yes
+42;technician;married;professional.course;no;no;no;cellular;nov;fri;21;6;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+29;management;married;university.degree;no;no;no;cellular;nov;fri;83;4;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+35;admin.;single;high.school;no;yes;no;cellular;nov;fri;86;3;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+42;technician;single;professional.course;no;yes;no;cellular;nov;fri;91;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+56;services;married;high.school;unknown;yes;no;cellular;nov;fri;254;5;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+56;admin.;divorced;university.degree;no;no;no;cellular;nov;fri;149;4;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+42;blue-collar;single;professional.course;no;no;no;cellular;nov;fri;249;4;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+31;technician;married;university.degree;no;no;no;cellular;nov;fri;10;5;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+51;admin.;married;university.degree;no;yes;no;cellular;nov;fri;358;3;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+42;management;married;basic.6y;no;yes;yes;cellular;nov;fri;81;6;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+57;admin.;divorced;university.degree;unknown;yes;no;cellular;nov;fri;6;7;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+54;retired;divorced;university.degree;no;no;yes;cellular;nov;fri;138;6;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+44;blue-collar;married;basic.6y;no;yes;no;cellular;nov;fri;275;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+37;blue-collar;married;basic.9y;no;yes;yes;cellular;nov;fri;312;3;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+45;admin.;divorced;university.degree;no;yes;yes;cellular;nov;fri;69;9;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+33;admin.;married;university.degree;no;yes;no;cellular;nov;fri;37;2;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+56;technician;married;professional.course;unknown;yes;no;cellular;nov;fri;266;6;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+58;retired;divorced;professional.course;no;no;no;cellular;nov;fri;159;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+46;admin.;single;high.school;no;yes;yes;cellular;nov;fri;116;2;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+50;management;divorced;university.degree;no;yes;no;cellular;nov;fri;21;11;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+44;admin.;married;university.degree;no;yes;no;cellular;nov;fri;358;4;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+31;unemployed;single;basic.4y;no;yes;no;telephone;nov;fri;144;9;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+32;admin.;married;university.degree;no;yes;no;telephone;nov;fri;41;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+40;technician;single;university.degree;no;no;no;cellular;nov;fri;124;4;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+43;services;single;high.school;unknown;no;no;cellular;nov;fri;298;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+36;technician;single;unknown;no;no;no;cellular;nov;fri;86;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+38;admin.;divorced;basic.9y;no;no;no;cellular;nov;fri;271;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+41;blue-collar;single;basic.9y;unknown;yes;no;cellular;nov;fri;299;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+33;admin.;single;university.degree;no;yes;no;cellular;nov;fri;152;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+47;technician;married;university.degree;no;yes;no;cellular;nov;fri;322;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+33;technician;single;university.degree;no;no;no;telephone;nov;fri;336;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+58;admin.;married;high.school;no;yes;no;cellular;nov;fri;441;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+31;admin.;married;university.degree;no;yes;no;cellular;nov;fri;149;5;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+33;admin.;married;university.degree;no;unknown;unknown;cellular;nov;fri;675;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+48;management;married;university.degree;no;yes;no;cellular;nov;fri;118;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+32;admin.;single;university.degree;no;no;no;cellular;nov;fri;85;2;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+49;management;married;university.degree;no;no;no;cellular;nov;fri;65;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+45;admin.;divorced;professional.course;no;yes;no;cellular;nov;fri;239;2;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+54;admin.;married;high.school;no;yes;no;cellular;nov;fri;267;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+30;blue-collar;married;basic.9y;no;yes;no;cellular;nov;fri;225;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+32;self-employed;married;university.degree;no;yes;no;cellular;nov;fri;54;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+50;blue-collar;married;university.degree;unknown;no;no;cellular;nov;fri;108;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+49;services;married;high.school;unknown;no;no;cellular;nov;fri;66;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+57;management;married;university.degree;no;yes;no;cellular;nov;fri;108;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+50;blue-collar;divorced;professional.course;no;yes;yes;cellular;nov;fri;49;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+53;self-employed;married;university.degree;no;yes;no;cellular;nov;fri;1221;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+38;admin.;divorced;basic.9y;no;no;no;cellular;nov;fri;71;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+29;self-employed;married;university.degree;no;yes;yes;cellular;nov;fri;729;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;yes
+57;management;married;university.degree;no;no;no;cellular;nov;fri;289;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+58;retired;married;professional.course;no;no;no;cellular;nov;fri;127;1;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+49;management;married;university.degree;no;yes;no;cellular;nov;fri;846;1;3;1;success;-0.1;93.2;-42.0;4.021;5195.8;no
+37;admin.;married;university.degree;no;yes;yes;cellular;nov;fri;215;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+57;housemaid;married;basic.4y;no;yes;yes;cellular;nov;fri;75;1;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+36;admin.;married;university.degree;no;yes;no;cellular;nov;fri;248;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+48;management;married;university.degree;no;no;yes;cellular;nov;fri;591;1;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;yes
+43;admin.;single;university.degree;no;yes;no;cellular;nov;fri;163;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+30;admin.;single;high.school;no;yes;no;cellular;nov;fri;337;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+45;technician;divorced;basic.9y;no;no;no;cellular;nov;fri;179;4;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+40;management;married;university.degree;no;yes;yes;cellular;nov;fri;111;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+31;admin.;single;high.school;no;yes;no;cellular;nov;fri;63;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+54;admin.;divorced;university.degree;unknown;no;no;cellular;nov;fri;558;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;yes
+36;admin.;married;university.degree;no;no;no;cellular;nov;fri;569;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+29;technician;single;university.degree;no;yes;no;cellular;nov;fri;153;1;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+51;self-employed;married;university.degree;unknown;no;no;cellular;nov;fri;46;4;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+48;admin.;divorced;high.school;no;no;no;cellular;nov;fri;208;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+57;admin.;divorced;university.degree;unknown;no;no;cellular;nov;fri;22;4;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+32;student;single;professional.course;no;yes;yes;cellular;nov;fri;261;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+58;retired;married;professional.course;unknown;no;no;cellular;nov;fri;120;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+34;admin.;married;university.degree;no;unknown;unknown;cellular;nov;fri;253;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+29;services;single;high.school;no;yes;no;cellular;nov;fri;43;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+38;admin.;divorced;high.school;no;yes;no;cellular;nov;fri;321;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+44;management;single;university.degree;unknown;yes;yes;cellular;nov;fri;46;3;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+29;services;single;high.school;no;yes;no;cellular;nov;fri;104;1;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+37;services;married;high.school;no;yes;no;cellular;nov;fri;63;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+42;technician;married;university.degree;no;yes;no;telephone;nov;fri;81;7;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+30;blue-collar;married;basic.9y;no;yes;no;cellular;nov;fri;423;2;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+55;technician;married;professional.course;no;no;no;cellular;nov;fri;113;1;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+56;technician;married;professional.course;no;yes;no;cellular;nov;fri;71;3;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+55;technician;married;professional.course;no;no;no;cellular;nov;fri;348;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+43;services;single;high.school;unknown;no;no;cellular;nov;fri;62;6;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+31;blue-collar;married;basic.6y;no;no;no;cellular;nov;fri;588;2;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+53;self-employed;married;university.degree;no;yes;no;cellular;nov;fri;528;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;yes
+34;admin.;married;university.degree;no;no;no;cellular;nov;fri;467;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;yes
+29;technician;single;professional.course;no;no;no;cellular;nov;fri;530;1;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;yes
+45;technician;married;professional.course;no;yes;no;cellular;nov;fri;76;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+30;services;single;high.school;no;no;no;cellular;nov;fri;648;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;yes
+36;technician;single;unknown;no;no;no;cellular;nov;fri;158;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+47;self-employed;married;basic.9y;unknown;yes;no;cellular;nov;fri;258;1;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+37;admin.;married;professional.course;no;no;no;cellular;nov;fri;73;4;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+45;admin.;divorced;high.school;no;no;yes;cellular;nov;fri;567;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+30;services;single;university.degree;no;yes;no;cellular;nov;fri;13;3;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+34;management;married;university.degree;no;yes;no;cellular;nov;fri;470;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+53;entrepreneur;married;basic.6y;no;yes;no;telephone;nov;fri;228;6;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+45;management;married;university.degree;no;yes;yes;cellular;nov;fri;22;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+48;blue-collar;married;professional.course;no;yes;yes;cellular;nov;fri;91;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+49;technician;married;basic.4y;no;yes;no;cellular;nov;fri;345;3;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+29;admin.;single;professional.course;no;no;no;telephone;nov;fri;346;4;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+47;management;married;university.degree;no;no;no;cellular;nov;fri;107;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+32;technician;single;professional.course;no;yes;no;cellular;nov;fri;86;3;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+33;technician;single;university.degree;no;yes;yes;cellular;nov;fri;710;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;yes
+58;admin.;married;university.degree;unknown;no;no;cellular;nov;fri;110;2;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+35;admin.;single;university.degree;no;yes;no;cellular;nov;fri;530;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;yes
+39;admin.;single;unknown;no;no;no;cellular;nov;fri;73;4;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+35;admin.;single;university.degree;no;yes;yes;cellular;nov;fri;529;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;yes
+37;technician;divorced;high.school;no;no;no;cellular;nov;fri;635;1;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;yes
+36;technician;single;unknown;no;yes;no;cellular;nov;fri;254;7;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+47;self-employed;married;basic.9y;unknown;yes;no;cellular;nov;fri;106;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+43;management;single;high.school;no;no;no;cellular;nov;fri;40;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+42;admin.;divorced;university.degree;no;yes;no;cellular;nov;fri;195;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+50;management;divorced;university.degree;no;yes;no;cellular;nov;fri;183;1;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+39;admin.;single;university.degree;no;yes;yes;cellular;nov;fri;195;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+55;admin.;married;high.school;no;yes;no;cellular;nov;fri;585;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+42;admin.;married;university.degree;no;no;no;cellular;nov;fri;501;3;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+30;admin.;single;university.degree;no;yes;no;cellular;nov;fri;222;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+52;admin.;married;university.degree;unknown;yes;no;cellular;nov;fri;131;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+43;services;married;basic.6y;no;yes;no;cellular;nov;fri;158;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+29;technician;single;professional.course;no;yes;yes;cellular;nov;fri;215;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+31;unemployed;single;university.degree;no;yes;no;cellular;nov;fri;30;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+48;blue-collar;married;basic.4y;unknown;yes;yes;cellular;nov;fri;53;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+35;admin.;divorced;university.degree;no;no;no;cellular;nov;fri;263;6;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+48;blue-collar;married;professional.course;no;no;yes;cellular;nov;fri;344;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+45;technician;married;basic.9y;unknown;no;no;cellular;nov;fri;174;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+48;blue-collar;married;basic.4y;unknown;no;yes;cellular;nov;fri;103;1;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+44;services;married;high.school;unknown;yes;no;cellular;nov;fri;46;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+43;admin.;divorced;high.school;no;no;yes;cellular;nov;fri;74;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+47;blue-collar;married;basic.4y;unknown;no;yes;cellular;nov;fri;105;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+29;technician;single;high.school;no;yes;yes;cellular;nov;fri;206;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+40;management;married;university.degree;no;no;no;cellular;nov;fri;132;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+40;management;married;university.degree;no;yes;no;cellular;nov;fri;175;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+29;admin.;married;high.school;no;yes;no;cellular;nov;fri;140;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+55;admin.;married;high.school;no;no;no;cellular;nov;fri;148;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+45;blue-collar;married;basic.9y;no;yes;no;cellular;nov;fri;66;1;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+52;admin.;married;university.degree;unknown;yes;no;cellular;nov;fri;32;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+43;management;single;high.school;no;yes;no;cellular;nov;fri;149;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+29;entrepreneur;married;high.school;no;yes;no;cellular;nov;fri;1166;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+40;management;married;university.degree;no;yes;no;cellular;nov;fri;161;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+32;admin.;married;university.degree;no;yes;no;cellular;nov;fri;262;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+33;blue-collar;single;basic.4y;no;no;no;cellular;nov;fri;60;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+31;admin.;single;high.school;no;yes;no;cellular;nov;fri;106;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+57;unemployed;married;university.degree;no;yes;yes;cellular;nov;fri;59;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+38;blue-collar;married;basic.6y;unknown;yes;no;cellular;nov;fri;1055;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+57;admin.;married;university.degree;no;yes;no;cellular;nov;fri;181;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+48;admin.;married;university.degree;no;no;no;cellular;nov;fri;218;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+34;entrepreneur;married;high.school;no;no;yes;cellular;nov;fri;429;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+32;technician;single;university.degree;no;yes;no;cellular;nov;fri;327;1;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+57;housemaid;married;basic.4y;no;no;no;cellular;nov;fri;216;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+45;technician;single;university.degree;no;yes;no;cellular;nov;fri;201;1;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+50;blue-collar;divorced;professional.course;no;yes;no;cellular;nov;fri;102;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+52;admin.;divorced;university.degree;no;yes;no;cellular;nov;fri;65;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+42;entrepreneur;married;university.degree;no;yes;no;cellular;nov;fri;58;1;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+30;admin.;married;university.degree;no;no;no;cellular;nov;fri;221;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+40;management;married;university.degree;no;yes;yes;cellular;nov;fri;957;1;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;yes
+38;blue-collar;single;basic.6y;no;yes;yes;cellular;nov;fri;202;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+34;admin.;divorced;university.degree;no;no;no;cellular;nov;fri;161;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+50;technician;married;basic.9y;no;no;no;cellular;nov;fri;705;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;yes
+51;technician;married;high.school;no;yes;no;cellular;nov;fri;167;4;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+49;admin.;married;unknown;no;yes;no;telephone;nov;fri;29;9;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+44;self-employed;married;university.degree;no;no;no;cellular;nov;fri;89;4;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+38;services;married;high.school;no;yes;no;cellular;nov;fri;306;1;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+57;management;divorced;professional.course;no;yes;no;cellular;nov;fri;56;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+46;technician;divorced;university.degree;no;yes;no;cellular;nov;fri;796;5;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;yes
+36;services;married;basic.6y;unknown;no;no;cellular;nov;fri;1022;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;yes
+36;admin.;married;university.degree;no;yes;no;cellular;nov;fri;189;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+40;blue-collar;divorced;basic.9y;no;no;no;cellular;nov;fri;74;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+40;blue-collar;divorced;basic.9y;no;no;no;cellular;nov;fri;154;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+31;admin.;single;high.school;no;no;no;cellular;nov;fri;89;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+34;management;single;university.degree;no;yes;no;cellular;nov;fri;79;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+55;admin.;single;university.degree;unknown;no;yes;cellular;nov;fri;143;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+50;admin.;married;university.degree;no;yes;no;cellular;nov;fri;169;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+53;unemployed;married;basic.4y;no;yes;no;cellular;nov;fri;80;10;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+52;technician;married;basic.9y;no;yes;no;cellular;nov;fri;44;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+42;management;married;basic.6y;no;no;no;cellular;nov;fri;133;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+50;technician;divorced;university.degree;no;yes;no;telephone;nov;fri;49;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+40;blue-collar;divorced;basic.9y;no;no;no;cellular;nov;fri;586;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+57;admin.;divorced;university.degree;unknown;no;no;cellular;nov;fri;189;3;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+51;technician;single;basic.9y;no;yes;no;telephone;nov;fri;218;3;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+44;admin.;married;university.degree;no;yes;no;cellular;nov;fri;235;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+57;housemaid;married;basic.4y;no;yes;no;cellular;nov;fri;105;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+57;management;divorced;professional.course;no;yes;no;cellular;nov;fri;849;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;yes
+50;blue-collar;married;basic.9y;no;yes;yes;cellular;nov;fri;5;7;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+49;blue-collar;married;basic.9y;no;yes;no;cellular;nov;fri;271;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+40;blue-collar;divorced;basic.9y;no;yes;no;cellular;nov;fri;893;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;yes
+36;entrepreneur;divorced;high.school;no;yes;no;cellular;nov;fri;230;3;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+37;blue-collar;married;basic.6y;no;no;no;cellular;nov;fri;68;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+32;admin.;single;university.degree;no;yes;yes;cellular;nov;fri;74;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+31;unemployed;single;basic.4y;no;yes;yes;cellular;nov;fri;115;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+29;entrepreneur;single;basic.4y;no;no;no;cellular;nov;fri;100;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+54;technician;married;high.school;unknown;yes;no;cellular;nov;fri;326;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+40;blue-collar;divorced;basic.9y;no;yes;no;cellular;nov;fri;1182;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+44;housemaid;married;high.school;no;no;no;cellular;nov;fri;144;6;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+50;admin.;married;university.degree;no;yes;yes;cellular;nov;fri;189;2;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+39;self-employed;single;high.school;no;yes;no;cellular;nov;fri;169;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+45;services;single;high.school;unknown;yes;no;cellular;nov;fri;670;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+57;blue-collar;married;basic.9y;unknown;yes;no;cellular;nov;fri;57;7;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+44;services;married;high.school;unknown;yes;no;telephone;nov;fri;76;1;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+57;technician;married;professional.course;no;yes;no;cellular;nov;fri;42;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+46;admin.;married;university.degree;no;yes;no;cellular;nov;fri;81;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+41;admin.;divorced;high.school;no;yes;no;cellular;nov;fri;199;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+31;unemployed;single;basic.4y;no;no;no;cellular;nov;fri;184;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+54;retired;married;basic.4y;no;no;no;cellular;nov;fri;18;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+33;blue-collar;single;basic.4y;no;yes;no;cellular;nov;fri;451;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+52;retired;married;university.degree;no;no;no;cellular;nov;fri;51;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+50;technician;married;university.degree;unknown;yes;yes;cellular;nov;fri;63;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+46;admin.;married;university.degree;no;yes;no;cellular;nov;fri;70;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+57;housemaid;married;basic.4y;no;no;no;cellular;nov;fri;44;3;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+55;technician;single;professional.course;no;yes;yes;telephone;nov;fri;54;4;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+37;management;married;university.degree;no;yes;no;cellular;nov;fri;13;4;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+40;management;married;university.degree;no;yes;no;cellular;nov;fri;401;1;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+29;technician;single;high.school;no;yes;yes;cellular;nov;fri;484;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+31;admin.;single;high.school;no;yes;no;cellular;nov;fri;59;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+33;technician;single;university.degree;no;no;no;cellular;nov;fri;64;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+34;technician;divorced;university.degree;no;yes;no;cellular;nov;fri;526;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+40;management;married;high.school;no;no;yes;cellular;nov;fri;105;5;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+34;admin.;married;university.degree;no;no;no;cellular;nov;fri;128;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+52;unemployed;married;university.degree;no;no;no;cellular;nov;fri;115;1;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+31;unemployed;single;basic.4y;no;no;yes;cellular;nov;fri;573;3;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+46;management;married;basic.9y;no;yes;no;cellular;nov;fri;996;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+50;admin.;married;university.degree;no;no;no;cellular;nov;fri;206;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+41;technician;married;university.degree;no;yes;yes;cellular;nov;fri;135;1;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+31;admin.;single;university.degree;no;yes;no;telephone;nov;fri;36;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+29;technician;single;professional.course;no;no;no;cellular;nov;fri;1480;3;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;yes
+52;services;married;basic.9y;unknown;yes;no;cellular;nov;fri;160;3;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+31;services;single;university.degree;unknown;unknown;unknown;cellular;nov;fri;83;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+32;admin.;divorced;university.degree;no;no;no;telephone;nov;fri;425;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+51;management;married;university.degree;no;yes;no;telephone;nov;fri;288;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+31;technician;single;university.degree;no;yes;yes;cellular;nov;fri;244;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+49;technician;married;basic.4y;no;no;no;cellular;nov;fri;378;1;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+55;entrepreneur;married;university.degree;no;no;no;cellular;nov;fri;252;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+57;management;married;university.degree;no;yes;yes;cellular;nov;fri;283;1;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+49;self-employed;married;university.degree;unknown;yes;no;cellular;nov;fri;110;1;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+57;management;married;university.degree;no;yes;no;telephone;nov;fri;109;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+48;admin.;married;high.school;no;yes;no;cellular;nov;fri;162;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+40;blue-collar;married;high.school;no;yes;no;cellular;nov;fri;144;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+33;admin.;single;university.degree;no;no;no;telephone;nov;fri;49;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+58;admin.;married;university.degree;no;no;no;cellular;nov;fri;70;1;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+40;admin.;married;university.degree;no;no;no;cellular;nov;fri;71;2;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+34;technician;divorced;university.degree;no;no;no;cellular;nov;fri;316;3;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;yes
+31;admin.;single;high.school;no;yes;no;cellular;nov;fri;306;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+36;blue-collar;single;basic.9y;no;yes;yes;cellular;nov;fri;70;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+52;entrepreneur;married;university.degree;no;yes;yes;cellular;nov;fri;221;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+40;technician;single;university.degree;no;yes;yes;cellular;nov;fri;44;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+50;management;divorced;university.degree;no;no;no;cellular;nov;fri;202;1;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+53;blue-collar;married;basic.4y;unknown;yes;yes;cellular;nov;fri;98;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+39;services;married;high.school;no;yes;no;cellular;nov;fri;552;3;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+37;management;married;university.degree;no;yes;no;telephone;nov;fri;97;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+57;unemployed;married;university.degree;no;yes;no;cellular;nov;fri;48;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+48;admin.;married;university.degree;no;yes;yes;cellular;nov;fri;89;1;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+29;services;single;high.school;no;yes;no;cellular;nov;fri;171;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+47;technician;married;university.degree;no;no;no;cellular;nov;fri;744;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+57;unemployed;married;university.degree;no;yes;yes;cellular;nov;fri;79;1;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+58;admin.;married;university.degree;no;no;no;cellular;nov;fri;850;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;yes
+48;admin.;married;university.degree;no;no;no;cellular;nov;fri;233;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+50;admin.;divorced;university.degree;no;yes;no;telephone;nov;fri;70;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+57;management;divorced;university.degree;no;unknown;unknown;telephone;nov;fri;162;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+29;technician;single;professional.course;no;yes;no;cellular;nov;fri;38;2;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+32;management;married;university.degree;no;no;no;cellular;nov;fri;8;5;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+37;entrepreneur;married;professional.course;no;no;no;cellular;nov;fri;18;7;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+56;services;married;high.school;unknown;yes;no;cellular;nov;fri;72;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+45;admin.;divorced;university.degree;no;yes;no;cellular;nov;fri;164;1;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+52;technician;divorced;university.degree;unknown;no;no;cellular;nov;fri;123;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+50;technician;married;university.degree;no;yes;no;cellular;nov;fri;100;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+45;self-employed;married;university.degree;no;no;no;cellular;nov;fri;18;5;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+52;admin.;married;high.school;no;no;no;cellular;nov;fri;165;1;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+54;retired;divorced;university.degree;no;no;no;cellular;nov;fri;296;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+37;admin.;married;unknown;no;yes;yes;cellular;nov;fri;196;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+33;self-employed;single;university.degree;no;yes;yes;cellular;nov;fri;203;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+34;admin.;married;university.degree;no;yes;no;telephone;nov;fri;55;5;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+38;blue-collar;married;basic.9y;no;yes;yes;cellular;nov;fri;186;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+32;admin.;single;university.degree;no;unknown;unknown;cellular;nov;fri;59;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+55;retired;married;high.school;no;no;no;cellular;nov;fri;532;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+38;management;married;university.degree;no;no;yes;cellular;nov;fri;79;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+52;technician;married;basic.9y;no;yes;yes;cellular;nov;fri;197;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+32;entrepreneur;single;basic.9y;no;no;no;cellular;nov;fri;84;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+49;blue-collar;married;basic.9y;no;yes;no;cellular;nov;fri;35;1;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+30;admin.;single;university.degree;no;yes;yes;telephone;nov;fri;26;10;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+52;technician;married;basic.9y;no;yes;no;cellular;nov;fri;102;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+31;admin.;single;high.school;no;no;no;cellular;nov;fri;100;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+49;admin.;married;high.school;no;yes;no;cellular;nov;fri;164;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+47;technician;married;high.school;unknown;yes;no;cellular;nov;fri;183;3;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+32;technician;single;professional.course;no;yes;no;cellular;nov;fri;67;5;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+53;blue-collar;married;basic.4y;no;yes;no;cellular;nov;fri;180;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+50;admin.;married;high.school;no;yes;no;telephone;nov;fri;182;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+39;technician;married;high.school;no;no;no;cellular;nov;fri;749;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;yes
+37;admin.;married;university.degree;no;yes;no;cellular;nov;fri;450;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+58;retired;married;professional.course;unknown;no;no;telephone;nov;fri;28;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+57;housemaid;married;basic.4y;no;yes;no;cellular;nov;fri;66;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+44;blue-collar;married;basic.6y;no;yes;yes;cellular;nov;fri;119;2;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+44;admin.;married;university.degree;no;no;no;cellular;nov;fri;135;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+42;admin.;married;university.degree;no;no;yes;cellular;nov;fri;902;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;yes
+41;housemaid;married;high.school;no;yes;no;telephone;nov;fri;1074;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;yes
+37;admin.;single;university.degree;no;yes;yes;cellular;nov;fri;661;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+44;self-employed;divorced;professional.course;no;yes;no;cellular;nov;fri;492;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+55;admin.;married;unknown;unknown;no;no;cellular;nov;fri;142;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+43;admin.;single;university.degree;no;yes;no;telephone;nov;fri;43;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+51;housemaid;married;high.school;no;no;no;cellular;nov;fri;28;4;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+33;admin.;married;university.degree;no;yes;no;cellular;nov;fri;82;3;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+36;blue-collar;married;basic.9y;no;yes;no;cellular;nov;fri;63;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+31;admin.;single;university.degree;no;no;no;cellular;nov;fri;264;2;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+49;blue-collar;married;basic.6y;no;yes;no;cellular;nov;fri;118;1;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+34;admin.;married;university.degree;no;no;no;cellular;nov;fri;124;3;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+42;admin.;married;high.school;no;no;no;cellular;nov;fri;218;6;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+29;student;single;professional.course;no;no;no;telephone;nov;fri;232;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+29;admin.;single;university.degree;no;yes;no;cellular;nov;fri;190;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+52;technician;married;basic.9y;no;no;no;cellular;nov;fri;10;7;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+48;blue-collar;divorced;basic.4y;no;yes;no;cellular;nov;fri;456;1;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+56;admin.;divorced;high.school;no;yes;no;cellular;nov;fri;176;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+51;blue-collar;married;basic.9y;unknown;yes;no;cellular;nov;fri;312;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+41;admin.;single;university.degree;no;yes;yes;cellular;nov;fri;45;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+37;admin.;married;university.degree;no;yes;no;cellular;nov;fri;124;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+55;technician;single;professional.course;no;yes;no;cellular;nov;fri;42;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+58;admin.;divorced;university.degree;no;no;no;cellular;nov;fri;189;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+51;self-employed;married;university.degree;unknown;unknown;unknown;cellular;nov;fri;31;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+45;blue-collar;married;basic.9y;no;no;no;cellular;nov;fri;126;2;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+31;services;single;basic.9y;unknown;yes;no;cellular;nov;fri;232;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+44;blue-collar;married;basic.6y;no;yes;no;cellular;nov;fri;11;4;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+56;unemployed;divorced;high.school;unknown;yes;no;cellular;nov;fri;109;1;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+52;technician;married;professional.course;no;yes;no;cellular;nov;fri;64;1;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+35;admin.;divorced;university.degree;no;yes;no;cellular;nov;fri;28;3;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+48;technician;married;professional.course;no;yes;yes;cellular;nov;fri;148;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+32;management;married;university.degree;no;yes;no;cellular;nov;fri;104;3;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+57;admin.;divorced;university.degree;unknown;yes;yes;cellular;nov;fri;65;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+45;admin.;divorced;high.school;no;yes;no;cellular;nov;fri;980;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;yes
+39;admin.;single;high.school;no;unknown;unknown;cellular;nov;fri;206;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+54;technician;married;high.school;unknown;yes;no;cellular;nov;fri;82;1;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+47;admin.;married;university.degree;no;yes;no;cellular;nov;fri;45;1;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+31;services;married;high.school;no;yes;no;telephone;nov;fri;62;1;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+48;services;married;professional.course;no;no;no;cellular;nov;fri;10;6;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+55;admin.;single;university.degree;unknown;yes;no;cellular;nov;fri;16;9;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+35;admin.;divorced;university.degree;no;yes;no;cellular;nov;fri;102;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+54;admin.;married;university.degree;unknown;no;no;cellular;nov;fri;298;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+40;technician;married;university.degree;no;no;no;cellular;nov;fri;52;1;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+38;blue-collar;married;basic.6y;unknown;yes;yes;cellular;nov;fri;213;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+35;admin.;divorced;university.degree;no;yes;no;cellular;nov;fri;226;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+40;blue-collar;divorced;basic.4y;no;yes;no;cellular;nov;fri;58;1;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+37;blue-collar;married;basic.9y;no;yes;no;cellular;nov;fri;224;3;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+55;entrepreneur;divorced;university.degree;no;no;no;cellular;nov;fri;48;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+35;management;married;university.degree;no;no;no;cellular;nov;fri;207;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+39;services;divorced;unknown;no;yes;no;cellular;nov;fri;163;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+29;admin.;single;university.degree;no;yes;no;cellular;nov;fri;24;5;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+47;admin.;married;university.degree;no;no;no;cellular;nov;fri;103;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+56;services;single;high.school;no;yes;no;cellular;nov;fri;219;2;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+35;management;married;university.degree;no;yes;no;cellular;nov;fri;152;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+30;admin.;single;university.degree;no;no;no;cellular;nov;fri;171;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+31;unemployed;married;high.school;no;no;yes;cellular;nov;fri;94;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+39;services;married;high.school;no;no;yes;cellular;nov;fri;104;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+56;management;married;basic.9y;no;yes;yes;cellular;nov;fri;62;2;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+51;admin.;married;university.degree;no;no;yes;cellular;nov;fri;220;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+31;admin.;single;high.school;no;yes;yes;cellular;nov;fri;50;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+31;admin.;single;high.school;no;yes;yes;cellular;nov;fri;112;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+43;services;single;high.school;unknown;no;yes;cellular;nov;fri;53;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+56;services;married;basic.4y;unknown;yes;yes;cellular;nov;fri;119;1;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+50;management;married;professional.course;no;yes;no;cellular;nov;fri;381;1;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+32;technician;single;professional.course;no;yes;no;cellular;nov;fri;226;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+41;management;divorced;university.degree;no;no;no;cellular;nov;fri;157;4;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+51;admin.;married;university.degree;no;yes;no;cellular;nov;fri;673;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+37;technician;single;professional.course;no;yes;no;cellular;nov;fri;347;1;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+50;unemployed;married;professional.course;no;yes;no;cellular;nov;fri;58;1;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+34;admin.;married;university.degree;no;yes;yes;cellular;nov;fri;85;3;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+37;admin.;married;university.degree;no;yes;no;cellular;nov;fri;224;5;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+47;admin.;married;university.degree;no;yes;no;cellular;nov;fri;127;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+40;unemployed;divorced;university.degree;no;no;no;cellular;nov;fri;366;3;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+33;admin.;married;university.degree;no;no;no;cellular;nov;fri;162;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+39;services;married;high.school;no;yes;no;cellular;nov;fri;197;3;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+37;technician;divorced;high.school;no;yes;no;cellular;nov;fri;47;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+44;admin.;married;university.degree;unknown;no;no;cellular;nov;fri;311;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+55;technician;married;professional.course;no;yes;no;cellular;nov;fri;98;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+34;admin.;divorced;university.degree;no;no;no;cellular;nov;fri;549;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;yes
+36;admin.;married;basic.6y;no;yes;no;cellular;nov;fri;72;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+55;technician;married;professional.course;no;no;no;cellular;nov;fri;182;1;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+36;admin.;married;basic.6y;no;yes;yes;cellular;nov;fri;183;1;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+34;management;married;university.degree;no;no;no;cellular;nov;fri;158;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+57;admin.;divorced;university.degree;unknown;no;yes;cellular;nov;fri;48;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+55;housemaid;married;basic.4y;unknown;no;no;telephone;nov;fri;270;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+52;admin.;married;high.school;no;yes;yes;cellular;nov;fri;57;5;6;1;success;-0.1;93.2;-42.0;4.021;5195.8;no
+55;retired;single;university.degree;unknown;no;no;cellular;nov;fri;1199;3;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+44;blue-collar;married;basic.6y;no;yes;yes;cellular;nov;fri;36;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+40;management;married;university.degree;no;no;no;cellular;nov;fri;380;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+53;admin.;married;university.degree;unknown;yes;no;telephone;nov;fri;366;8;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+32;admin.;married;university.degree;no;yes;no;cellular;nov;fri;78;1;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+31;technician;married;professional.course;no;no;yes;cellular;nov;fri;161;5;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+48;technician;married;basic.4y;unknown;no;no;cellular;nov;fri;362;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+42;admin.;married;university.degree;no;no;no;cellular;nov;fri;455;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+51;management;divorced;professional.course;no;no;no;cellular;nov;fri;83;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+42;admin.;married;university.degree;no;yes;no;cellular;nov;fri;184;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+49;technician;married;basic.4y;no;no;yes;cellular;nov;fri;295;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+53;admin.;divorced;university.degree;no;yes;no;cellular;nov;fri;551;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+52;services;married;basic.6y;no;no;no;cellular;nov;fri;101;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+46;admin.;single;high.school;no;yes;no;cellular;nov;fri;294;1;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+54;admin.;divorced;high.school;no;no;no;cellular;nov;fri;13;6;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+32;management;married;university.degree;no;no;no;cellular;nov;fri;51;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+33;student;single;unknown;no;yes;no;cellular;nov;fri;353;2;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+34;technician;married;professional.course;no;yes;no;cellular;nov;fri;93;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+53;technician;married;unknown;no;no;no;cellular;nov;fri;138;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+50;entrepreneur;married;university.degree;no;no;no;cellular;nov;fri;48;1;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+32;technician;divorced;high.school;no;no;no;cellular;nov;fri;50;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+32;admin.;single;university.degree;no;yes;no;cellular;nov;fri;718;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+49;admin.;married;unknown;no;no;no;cellular;nov;fri;288;1;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+34;management;single;university.degree;no;unknown;unknown;telephone;nov;fri;114;5;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+29;technician;single;professional.course;no;no;no;cellular;nov;fri;161;3;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+57;blue-collar;married;basic.9y;unknown;no;yes;cellular;nov;fri;150;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+45;services;divorced;high.school;unknown;yes;no;cellular;nov;fri;120;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+33;technician;single;high.school;no;yes;no;cellular;nov;fri;41;2;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+41;self-employed;married;professional.course;unknown;yes;no;cellular;nov;fri;1571;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;yes
+44;blue-collar;married;basic.6y;no;no;yes;cellular;nov;fri;240;3;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+49;self-employed;married;university.degree;unknown;yes;yes;cellular;nov;fri;198;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+46;technician;divorced;university.degree;no;yes;no;cellular;nov;fri;75;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+51;admin.;married;high.school;no;yes;no;cellular;nov;fri;108;7;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+44;self-employed;married;professional.course;no;yes;no;telephone;nov;fri;47;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+57;management;married;university.degree;no;yes;yes;cellular;nov;fri;536;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;yes
+39;technician;married;high.school;no;yes;no;cellular;nov;fri;408;3;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+56;services;single;high.school;no;yes;no;cellular;nov;fri;290;6;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+33;self-employed;married;university.degree;no;yes;no;cellular;nov;fri;229;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+33;admin.;married;university.degree;no;yes;no;telephone;nov;fri;148;3;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+52;management;divorced;university.degree;no;no;no;cellular;nov;fri;185;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+56;blue-collar;divorced;high.school;no;no;no;telephone;nov;fri;68;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+31;admin.;single;university.degree;no;yes;no;cellular;nov;fri;54;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+31;self-employed;single;university.degree;no;no;no;cellular;nov;fri;906;1;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+31;admin.;single;high.school;no;no;no;cellular;nov;fri;186;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+40;technician;married;university.degree;no;yes;no;cellular;nov;fri;124;3;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+56;retired;married;basic.4y;no;yes;no;cellular;nov;fri;481;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;yes
+53;management;married;university.degree;no;yes;no;cellular;nov;fri;319;3;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+52;admin.;married;high.school;no;no;no;cellular;nov;fri;157;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+40;management;married;university.degree;no;yes;no;cellular;nov;fri;106;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+57;services;married;unknown;no;yes;no;cellular;nov;fri;56;2;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+56;management;married;basic.9y;no;yes;no;telephone;nov;fri;94;7;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+45;self-employed;single;professional.course;no;no;no;cellular;nov;fri;123;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+41;technician;married;university.degree;no;yes;no;cellular;nov;fri;12;5;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+31;admin.;single;university.degree;no;yes;yes;cellular;nov;fri;75;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+34;admin.;married;university.degree;no;no;yes;cellular;nov;fri;408;9;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+49;unemployed;married;high.school;unknown;no;no;cellular;nov;fri;671;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+48;admin.;married;basic.9y;no;yes;yes;cellular;nov;fri;664;3;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;yes
+59;self-employed;married;professional.course;unknown;no;no;cellular;nov;fri;383;4;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+38;technician;single;professional.course;no;yes;no;cellular;nov;fri;119;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+38;technician;single;professional.course;no;yes;yes;cellular;nov;fri;159;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+31;student;married;high.school;no;no;no;cellular;nov;fri;297;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+43;technician;single;high.school;no;no;no;cellular;nov;fri;61;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+55;technician;single;professional.course;no;no;no;cellular;nov;fri;142;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+37;technician;married;professional.course;unknown;yes;no;cellular;nov;fri;222;6;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+34;admin.;single;university.degree;no;no;no;telephone;nov;fri;34;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+46;management;married;high.school;no;no;no;cellular;nov;fri;79;3;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+39;admin.;single;unknown;no;no;no;cellular;nov;fri;188;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+40;management;married;high.school;no;yes;no;cellular;nov;fri;7;4;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+58;admin.;married;university.degree;no;no;no;telephone;nov;fri;186;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+31;technician;married;university.degree;no;yes;no;cellular;nov;fri;105;4;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+57;blue-collar;married;basic.9y;unknown;yes;no;telephone;nov;fri;126;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+36;admin.;single;high.school;no;yes;yes;telephone;nov;fri;661;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+37;entrepreneur;married;university.degree;no;yes;no;telephone;nov;fri;45;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+30;blue-collar;married;high.school;no;yes;yes;cellular;nov;fri;14;5;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+51;admin.;single;university.degree;unknown;no;no;cellular;nov;fri;224;2;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+50;blue-collar;married;unknown;no;no;no;telephone;nov;fri;20;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+29;management;single;university.degree;no;yes;no;cellular;nov;fri;155;7;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+48;technician;married;professional.course;no;no;no;cellular;nov;fri;78;6;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+44;admin.;married;high.school;no;no;no;cellular;nov;fri;10;7;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+46;self-employed;married;professional.course;no;yes;no;telephone;nov;fri;379;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+47;technician;married;unknown;unknown;yes;no;cellular;nov;fri;57;2;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+32;admin.;single;university.degree;no;no;yes;cellular;nov;fri;21;7;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+36;admin.;married;university.degree;no;yes;no;cellular;nov;fri;85;1;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+53;management;married;university.degree;no;yes;yes;cellular;nov;fri;106;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+53;admin.;married;high.school;no;yes;no;cellular;nov;fri;50;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+56;blue-collar;married;basic.9y;no;yes;no;cellular;nov;fri;757;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+47;technician;married;unknown;unknown;yes;no;cellular;nov;fri;624;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+37;admin.;single;high.school;no;yes;no;cellular;nov;fri;103;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+44;entrepreneur;married;university.degree;no;yes;no;cellular;nov;fri;570;4;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+52;admin.;married;high.school;no;yes;no;cellular;nov;fri;139;2;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+56;technician;married;professional.course;no;no;no;cellular;nov;fri;157;5;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+35;management;married;university.degree;no;yes;no;cellular;nov;fri;579;9;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;yes
+40;student;single;high.school;no;no;no;cellular;nov;fri;328;6;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+46;unemployed;divorced;basic.4y;no;no;no;cellular;nov;fri;366;3;3;1;success;-0.1;93.2;-42.0;4.021;5195.8;no
+29;technician;single;professional.course;no;yes;no;cellular;nov;fri;1555;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;yes
+39;admin.;single;unknown;no;no;no;cellular;nov;fri;504;2;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;yes
+39;housemaid;married;basic.9y;no;yes;no;cellular;nov;fri;150;4;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+39;entrepreneur;married;university.degree;no;unknown;unknown;cellular;nov;fri;146;4;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+57;admin.;divorced;university.degree;unknown;no;no;cellular;nov;fri;69;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+34;admin.;single;university.degree;no;no;no;cellular;nov;fri;139;6;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+51;technician;married;professional.course;no;yes;no;cellular;nov;fri;51;2;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+51;admin.;married;university.degree;no;yes;yes;cellular;nov;fri;175;3;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+50;retired;married;university.degree;no;no;no;cellular;nov;fri;128;3;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+53;technician;married;professional.course;no;yes;no;cellular;nov;fri;11;7;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+41;technician;married;professional.course;no;yes;no;cellular;nov;fri;82;5;5;1;success;-0.1;93.2;-42.0;4.021;5195.8;no
+30;admin.;single;university.degree;no;yes;yes;telephone;nov;fri;33;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+45;technician;married;professional.course;no;yes;yes;cellular;nov;fri;52;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+51;management;married;university.degree;no;yes;no;cellular;nov;fri;289;3;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+43;technician;married;university.degree;no;no;yes;cellular;nov;fri;43;1;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+32;admin.;divorced;university.degree;no;yes;no;cellular;nov;fri;101;3;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+50;technician;married;professional.course;no;no;no;cellular;nov;fri;402;4;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+45;admin.;divorced;university.degree;no;no;yes;cellular;nov;fri;59;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+50;retired;single;university.degree;no;yes;no;cellular;nov;fri;39;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+41;management;divorced;university.degree;no;no;no;cellular;nov;fri;57;8;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+57;technician;divorced;professional.course;no;unknown;unknown;cellular;nov;fri;87;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+55;management;divorced;university.degree;unknown;no;no;cellular;nov;fri;89;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+40;management;married;university.degree;no;no;no;cellular;nov;fri;608;3;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+50;admin.;divorced;high.school;no;yes;no;cellular;nov;fri;430;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+58;management;married;basic.4y;no;no;no;cellular;nov;fri;240;3;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+42;technician;single;professional.course;no;yes;no;cellular;nov;fri;173;1;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+53;management;married;university.degree;no;no;no;cellular;nov;fri;137;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+34;technician;married;professional.course;no;yes;yes;cellular;nov;fri;379;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+49;management;married;university.degree;no;no;no;cellular;nov;fri;1036;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+42;technician;divorced;professional.course;no;no;no;cellular;nov;fri;675;4;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+40;management;single;university.degree;no;no;no;cellular;nov;fri;139;3;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+54;admin.;divorced;high.school;no;no;yes;cellular;nov;fri;377;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+29;technician;single;professional.course;no;no;no;cellular;nov;fri;394;5;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+34;admin.;single;university.degree;no;no;no;cellular;nov;fri;70;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+38;technician;single;professional.course;unknown;no;no;cellular;nov;fri;519;1;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+53;self-employed;married;university.degree;no;yes;no;cellular;nov;fri;61;4;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+39;management;married;high.school;no;no;no;cellular;nov;fri;163;2;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+50;technician;married;university.degree;no;no;no;cellular;nov;fri;302;2;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+57;admin.;married;high.school;no;yes;no;cellular;nov;fri;41;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+37;self-employed;married;university.degree;no;no;no;telephone;nov;fri;39;9;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+35;admin.;single;university.degree;no;no;no;cellular;nov;fri;360;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+37;unemployed;single;university.degree;no;yes;no;cellular;nov;fri;230;3;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+51;admin.;divorced;basic.9y;no;yes;no;cellular;nov;fri;155;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+54;technician;single;high.school;no;yes;no;cellular;nov;fri;32;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+30;entrepreneur;divorced;high.school;no;no;no;telephone;nov;fri;61;3;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+34;technician;married;professional.course;no;yes;no;cellular;nov;fri;251;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+57;management;married;university.degree;unknown;yes;yes;cellular;nov;fri;22;2;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+57;services;married;unknown;no;no;no;cellular;nov;fri;58;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+46;technician;married;professional.course;no;no;no;cellular;nov;fri;38;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+31;admin.;single;university.degree;no;yes;no;cellular;nov;fri;36;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+43;housemaid;married;basic.4y;no;no;no;cellular;nov;fri;165;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+48;unemployed;married;professional.course;unknown;yes;yes;telephone;nov;fri;83;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+56;admin.;divorced;university.degree;no;yes;no;cellular;nov;fri;11;5;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+46;technician;married;professional.course;no;no;yes;cellular;nov;fri;98;5;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+41;blue-collar;married;unknown;no;yes;no;cellular;nov;fri;663;4;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;yes
+53;admin.;divorced;high.school;no;yes;yes;telephone;nov;fri;544;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+57;technician;married;university.degree;unknown;yes;no;cellular;nov;fri;39;10;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+53;blue-collar;married;basic.4y;no;no;no;cellular;nov;fri;122;3;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+48;technician;married;professional.course;no;yes;yes;cellular;nov;fri;695;3;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+31;admin.;single;high.school;no;yes;no;cellular;nov;fri;369;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+44;entrepreneur;married;university.degree;no;no;no;cellular;nov;fri;88;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+47;admin.;married;basic.9y;no;yes;no;telephone;nov;fri;64;3;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+43;services;single;high.school;unknown;yes;no;cellular;nov;fri;216;4;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+36;admin.;single;high.school;no;yes;no;cellular;nov;fri;90;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+32;management;single;university.degree;no;yes;yes;cellular;nov;fri;164;3;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+40;management;married;university.degree;no;no;no;cellular;nov;fri;147;3;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+53;retired;married;high.school;no;no;no;cellular;nov;fri;268;3;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+37;self-employed;married;university.degree;no;no;no;cellular;nov;fri;169;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+30;student;single;university.degree;no;no;no;cellular;nov;fri;585;4;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+49;admin.;married;high.school;no;yes;no;cellular;nov;fri;36;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+53;management;married;university.degree;no;yes;no;cellular;nov;fri;129;4;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+37;management;married;university.degree;no;yes;no;cellular;nov;fri;33;8;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+42;self-employed;married;university.degree;no;yes;no;cellular;nov;fri;888;3;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+56;admin.;married;university.degree;no;no;no;cellular;nov;fri;808;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;yes
+43;technician;married;professional.course;no;no;no;cellular;nov;fri;14;9;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+51;housemaid;married;high.school;no;no;yes;cellular;nov;fri;305;6;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+44;technician;single;professional.course;no;yes;no;cellular;nov;fri;18;4;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+57;blue-collar;married;basic.9y;unknown;yes;yes;cellular;nov;fri;134;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+44;admin.;married;university.degree;no;no;no;cellular;nov;fri;77;5;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+51;services;single;high.school;unknown;no;no;cellular;nov;fri;107;4;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+56;admin.;married;basic.4y;no;yes;no;cellular;nov;fri;382;3;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+59;admin.;married;university.degree;unknown;no;no;cellular;nov;fri;140;2;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+56;services;married;basic.4y;unknown;yes;no;cellular;nov;fri;39;4;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+52;blue-collar;married;basic.9y;no;no;no;cellular;nov;fri;13;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+51;blue-collar;married;basic.9y;no;no;no;cellular;nov;fri;1032;10;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+30;admin.;single;high.school;no;no;yes;cellular;nov;fri;64;2;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+48;admin.;married;university.degree;no;no;no;cellular;nov;fri;634;4;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+34;admin.;married;university.degree;no;yes;no;cellular;nov;fri;138;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+47;management;married;high.school;no;yes;yes;cellular;nov;fri;225;3;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+42;services;divorced;high.school;no;yes;no;cellular;nov;fri;855;3;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+30;admin.;single;university.degree;no;no;no;cellular;nov;fri;258;2;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+46;technician;married;professional.course;no;yes;yes;cellular;nov;fri;484;4;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+51;technician;married;professional.course;no;yes;no;cellular;nov;fri;229;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+43;technician;married;university.degree;no;yes;no;cellular;nov;fri;330;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+33;admin.;married;university.degree;no;yes;no;cellular;nov;fri;41;4;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+29;admin.;single;university.degree;no;yes;yes;cellular;nov;fri;1222;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;yes
+53;blue-collar;married;basic.9y;no;no;no;cellular;nov;fri;395;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+58;management;divorced;university.degree;no;yes;no;telephone;nov;fri;39;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+54;admin.;divorced;high.school;no;no;no;cellular;nov;fri;639;2;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+53;retired;married;high.school;no;yes;no;cellular;nov;fri;711;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+47;admin.;single;high.school;no;no;no;telephone;nov;fri;178;5;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+44;management;single;university.degree;unknown;no;no;cellular;nov;fri;534;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;yes
+37;unemployed;single;university.degree;no;no;yes;cellular;nov;fri;104;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+43;blue-collar;married;professional.course;no;no;yes;cellular;nov;fri;432;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+50;services;single;high.school;no;yes;no;cellular;nov;fri;1195;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+48;blue-collar;married;basic.4y;no;yes;no;cellular;nov;fri;168;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+34;admin.;single;university.degree;no;no;no;cellular;nov;fri;229;3;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+56;unemployed;married;basic.9y;no;yes;yes;cellular;nov;fri;322;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+57;admin.;married;university.degree;no;no;no;cellular;nov;fri;127;3;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+47;admin.;married;university.degree;no;yes;no;cellular;nov;fri;59;3;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+59;technician;single;professional.course;no;yes;no;cellular;nov;fri;246;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+47;admin.;married;high.school;no;yes;no;cellular;nov;fri;140;3;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+37;technician;married;professional.course;unknown;no;no;cellular;nov;fri;210;3;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+53;admin.;married;high.school;no;no;no;cellular;nov;fri;11;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+57;self-employed;married;university.degree;no;yes;no;cellular;nov;fri;208;3;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+44;blue-collar;married;basic.6y;no;yes;no;cellular;nov;fri;358;3;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+41;services;married;unknown;no;no;no;cellular;nov;fri;64;5;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+41;technician;married;professional.course;no;no;no;cellular;nov;fri;407;4;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+41;technician;single;university.degree;no;no;no;cellular;nov;fri;903;3;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+53;blue-collar;married;basic.4y;unknown;no;no;cellular;nov;fri;205;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+48;admin.;married;university.degree;no;no;no;cellular;nov;fri;66;3;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+52;admin.;divorced;high.school;no;yes;no;cellular;nov;fri;127;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+30;admin.;single;university.degree;no;no;no;cellular;nov;fri;331;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;yes
+30;technician;single;university.degree;no;no;no;cellular;nov;fri;307;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+45;admin.;single;university.degree;no;no;no;cellular;nov;fri;27;3;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+56;retired;married;basic.4y;no;no;no;cellular;nov;fri;163;2;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+32;entrepreneur;single;high.school;unknown;yes;yes;cellular;nov;fri;64;6;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+49;unemployed;single;high.school;no;yes;no;telephone;nov;fri;136;2;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+31;technician;married;professional.course;no;yes;no;cellular;nov;fri;95;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+58;admin.;married;basic.4y;no;no;no;cellular;nov;fri;505;7;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+49;blue-collar;married;university.degree;no;no;no;cellular;nov;fri;170;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+32;technician;single;university.degree;no;yes;yes;cellular;nov;fri;1162;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+48;unemployed;divorced;professional.course;no;yes;no;telephone;nov;fri;122;4;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+35;admin.;divorced;university.degree;no;yes;no;cellular;nov;fri;72;4;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+57;technician;married;professional.course;no;yes;no;cellular;nov;fri;294;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+46;housemaid;married;university.degree;unknown;yes;no;cellular;nov;fri;82;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+53;blue-collar;married;basic.4y;no;yes;no;cellular;nov;fri;15;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+30;blue-collar;single;university.degree;no;yes;no;cellular;nov;fri;7;5;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+58;admin.;married;university.degree;no;yes;no;cellular;nov;fri;21;7;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+29;admin.;single;university.degree;no;yes;no;cellular;nov;fri;118;2;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+47;admin.;married;high.school;no;no;no;cellular;nov;fri;21;3;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+30;self-employed;single;university.degree;no;no;no;telephone;nov;fri;345;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+48;admin.;divorced;university.degree;no;yes;no;cellular;nov;fri;96;3;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+52;unemployed;married;university.degree;no;yes;no;cellular;nov;fri;211;7;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+50;admin.;married;university.degree;no;yes;no;cellular;nov;fri;73;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+37;self-employed;married;university.degree;no;yes;no;cellular;nov;fri;6;5;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+55;entrepreneur;divorced;university.degree;no;no;no;cellular;nov;fri;110;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+58;retired;divorced;professional.course;no;yes;no;cellular;nov;fri;321;3;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+57;blue-collar;married;basic.9y;unknown;yes;no;cellular;nov;fri;170;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+37;self-employed;married;university.degree;no;yes;no;cellular;nov;fri;56;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+53;unemployed;single;basic.9y;no;no;no;cellular;nov;fri;125;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+51;technician;married;professional.course;unknown;no;no;cellular;nov;fri;281;2;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+29;self-employed;single;university.degree;no;yes;no;cellular;nov;fri;328;4;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+51;management;married;university.degree;no;no;yes;telephone;nov;fri;13;4;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+55;management;married;university.degree;no;no;yes;cellular;nov;fri;296;3;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+37;self-employed;married;university.degree;no;yes;no;cellular;nov;fri;48;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+30;unemployed;married;professional.course;no;yes;no;telephone;nov;fri;77;5;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+42;admin.;married;high.school;no;yes;no;cellular;nov;fri;8;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+41;admin.;married;university.degree;no;no;no;cellular;nov;fri;182;3;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+37;entrepreneur;married;university.degree;no;yes;no;cellular;nov;fri;12;5;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+40;services;single;high.school;unknown;no;no;cellular;nov;fri;8;3;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+58;retired;married;professional.course;unknown;no;no;cellular;nov;fri;158;3;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+51;admin.;married;high.school;no;yes;no;cellular;nov;fri;9;5;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+46;admin.;divorced;university.degree;no;no;no;telephone;nov;fri;11;7;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+43;technician;married;university.degree;no;no;no;cellular;nov;fri;24;9;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+50;technician;married;university.degree;no;yes;no;cellular;nov;fri;175;4;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+54;self-employed;married;university.degree;unknown;no;no;cellular;nov;fri;9;3;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+29;blue-collar;single;basic.6y;no;no;no;telephone;nov;fri;69;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+44;self-employed;divorced;professional.course;no;no;no;cellular;nov;fri;37;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+33;admin.;single;professional.course;no;yes;no;telephone;nov;fri;240;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+35;blue-collar;married;basic.9y;no;yes;no;cellular;nov;fri;11;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+52;services;divorced;basic.4y;unknown;yes;yes;cellular;nov;fri;23;8;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+49;entrepreneur;married;university.degree;no;yes;no;cellular;nov;fri;13;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+58;retired;married;professional.course;unknown;yes;yes;cellular;nov;fri;22;4;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+40;management;married;university.degree;no;no;no;cellular;nov;fri;234;5;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+31;technician;single;university.degree;no;yes;yes;telephone;nov;fri;30;3;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+35;self-employed;married;university.degree;no;no;no;cellular;nov;fri;8;3;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+45;technician;single;university.degree;no;no;no;cellular;nov;fri;80;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+31;unemployed;single;basic.4y;no;no;no;cellular;nov;fri;12;8;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+31;admin.;single;university.degree;no;no;no;cellular;nov;fri;85;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+34;services;single;basic.9y;no;yes;no;cellular;nov;fri;143;3;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+36;self-employed;married;basic.9y;no;yes;yes;cellular;nov;fri;14;7;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+44;admin.;married;university.degree;unknown;no;no;cellular;nov;fri;48;4;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+40;admin.;single;university.degree;no;yes;yes;cellular;nov;fri;12;10;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+47;technician;married;high.school;unknown;yes;no;cellular;nov;fri;29;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+48;blue-collar;married;basic.4y;unknown;no;no;cellular;nov;fri;168;3;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+50;retired;single;university.degree;no;no;no;cellular;nov;fri;51;5;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+56;services;single;high.school;no;yes;yes;cellular;nov;fri;12;4;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+37;admin.;single;university.degree;no;yes;yes;cellular;nov;fri;33;3;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+51;admin.;single;university.degree;unknown;yes;yes;cellular;nov;fri;53;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+50;admin.;divorced;university.degree;no;yes;no;cellular;nov;fri;72;3;1;2;success;-0.1;93.2;-42.0;4.021;5195.8;no
+39;admin.;single;unknown;no;yes;no;cellular;nov;fri;79;4;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+32;management;married;university.degree;no;yes;yes;cellular;nov;fri;1067;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+42;admin.;divorced;university.degree;no;yes;no;cellular;nov;fri;10;3;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+48;admin.;married;university.degree;unknown;no;no;cellular;nov;fri;71;9;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+49;blue-collar;married;basic.9y;no;no;no;cellular;nov;fri;273;5;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+51;blue-collar;married;high.school;no;no;no;cellular;nov;fri;11;4;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+55;management;married;basic.9y;no;no;no;cellular;nov;fri;189;2;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+48;admin.;married;university.degree;no;no;no;cellular;nov;fri;61;7;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+39;management;married;university.degree;no;yes;no;telephone;nov;fri;10;7;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+40;technician;married;university.degree;no;yes;no;telephone;nov;fri;10;3;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+55;management;married;university.degree;unknown;yes;no;cellular;nov;fri;280;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+39;self-employed;married;professional.course;no;no;no;telephone;nov;fri;47;4;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+37;admin.;married;unknown;no;no;no;cellular;nov;fri;34;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+41;technician;married;university.degree;no;yes;yes;cellular;nov;fri;38;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+32;admin.;married;high.school;no;no;no;cellular;nov;fri;219;2;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+34;admin.;married;university.degree;no;no;no;telephone;nov;fri;205;3;999;1;failure;-0.1;93.2;-42.0;4.021;5195.8;no
+41;blue-collar;single;basic.9y;unknown;no;no;cellular;nov;fri;643;3;999;0;nonexistent;-0.1;93.2;-42.0;4.021;5195.8;no
+38;technician;married;professional.course;no;yes;yes;telephone;nov;wed;49;1;999;0;nonexistent;-0.1;93.2;-42.0;3.901;5195.8;no
+32;unemployed;single;high.school;no;no;yes;telephone;nov;thu;114;1;999;0;nonexistent;-0.1;93.2;-42.0;3.879;5195.8;no
+46;entrepreneur;single;professional.course;no;yes;no;telephone;nov;thu;8;1;999;0;nonexistent;-0.1;93.2;-42.0;3.879;5195.8;no
+27;admin.;single;high.school;no;yes;no;telephone;nov;fri;24;1;999;0;nonexistent;-0.1;93.2;-42.0;3.853;5195.8;no
+31;admin.;single;high.school;no;yes;no;telephone;dec;mon;36;1;999;0;nonexistent;-0.2;92.756;-45.9;3.816;5176.3;no
+39;housemaid;married;basic.4y;no;yes;no;telephone;dec;wed;11;1;999;1;failure;-0.2;92.756;-45.9;3.743;5176.3;no
+41;technician;divorced;professional.course;no;no;yes;cellular;dec;thu;18;1;999;0;nonexistent;-0.2;92.756;-45.9;3.669;5176.3;no
+37;admin.;married;high.school;no;yes;no;telephone;dec;fri;12;1;999;0;nonexistent;-0.2;92.756;-45.9;3.563;5176.3;no
+48;admin.;married;high.school;no;yes;yes;telephone;dec;fri;291;1;999;0;nonexistent;-0.2;92.756;-45.9;3.563;5176.3;no
+51;blue-collar;married;basic.4y;no;yes;yes;telephone;dec;mon;170;1;999;0;nonexistent;-0.2;92.756;-45.9;3.488;5176.3;no
+39;technician;married;professional.course;no;yes;no;telephone;dec;tue;183;1;999;0;nonexistent;-0.2;92.756;-45.9;3.428;5176.3;no
+36;blue-collar;married;high.school;no;yes;no;cellular;dec;thu;234;1;999;0;nonexistent;-0.2;92.756;-45.9;3.329;5176.3;no
+55;unemployed;divorced;professional.course;no;no;no;telephone;dec;fri;136;1;999;0;nonexistent;-0.2;92.756;-45.9;3.282;5176.3;no
+44;blue-collar;married;basic.4y;no;yes;yes;telephone;dec;mon;119;1;999;0;nonexistent;-0.2;92.756;-45.9;3.053;5176.3;yes
+26;student;single;basic.9y;no;yes;no;cellular;mar;mon;712;4;999;0;nonexistent;-1.8;92.843;-50.0;1.811;5099.1;yes
+38;admin.;single;university.degree;no;yes;no;cellular;mar;mon;111;2;999;0;nonexistent;-1.8;92.843;-50.0;1.811;5099.1;yes
+26;student;single;basic.9y;no;no;no;cellular;mar;mon;42;4;999;0;nonexistent;-1.8;92.843;-50.0;1.811;5099.1;no
+26;student;single;basic.9y;no;yes;no;telephone;mar;mon;169;4;999;0;nonexistent;-1.8;92.843;-50.0;1.811;5099.1;no
+30;management;married;university.degree;no;yes;no;telephone;mar;mon;213;7;999;0;nonexistent;-1.8;92.843;-50.0;1.811;5099.1;no
+26;student;single;basic.9y;no;yes;yes;cellular;mar;mon;78;4;999;1;failure;-1.8;92.843;-50.0;1.811;5099.1;no
+28;technician;single;university.degree;no;yes;no;cellular;mar;mon;76;2;999;0;nonexistent;-1.8;92.843;-50.0;1.811;5099.1;no
+35;admin.;married;university.degree;no;yes;no;cellular;mar;mon;378;4;999;0;nonexistent;-1.8;92.843;-50.0;1.811;5099.1;yes
+30;management;married;university.degree;no;no;no;cellular;mar;mon;116;1;999;0;nonexistent;-1.8;92.843;-50.0;1.811;5099.1;yes
+48;admin.;married;basic.6y;no;no;no;telephone;mar;mon;139;5;999;0;nonexistent;-1.8;92.843;-50.0;1.811;5099.1;no
+26;admin.;married;university.degree;no;yes;no;cellular;mar;mon;154;1;999;0;nonexistent;-1.8;92.843;-50.0;1.811;5099.1;yes
+28;technician;single;university.degree;no;no;no;cellular;mar;mon;142;2;999;0;nonexistent;-1.8;92.843;-50.0;1.811;5099.1;no
+31;admin.;single;university.degree;no;yes;no;cellular;mar;mon;145;1;999;0;nonexistent;-1.8;92.843;-50.0;1.811;5099.1;no
+38;admin.;single;university.degree;no;yes;no;cellular;mar;mon;69;1;999;0;nonexistent;-1.8;92.843;-50.0;1.811;5099.1;no
+44;blue-collar;single;professional.course;no;no;no;cellular;mar;mon;239;1;999;0;nonexistent;-1.8;92.843;-50.0;1.811;5099.1;yes
+28;technician;single;university.degree;no;yes;yes;cellular;mar;mon;54;1;999;0;nonexistent;-1.8;92.843;-50.0;1.811;5099.1;no
+30;management;married;university.degree;no;yes;no;cellular;mar;mon;170;3;999;0;nonexistent;-1.8;92.843;-50.0;1.811;5099.1;no
+26;admin.;married;university.degree;no;yes;no;cellular;mar;mon;175;5;999;0;nonexistent;-1.8;92.843;-50.0;1.811;5099.1;yes
+28;technician;single;university.degree;no;yes;no;cellular;mar;mon;120;3;999;0;nonexistent;-1.8;92.843;-50.0;1.811;5099.1;yes
+26;student;single;basic.9y;no;yes;no;cellular;mar;mon;59;2;999;0;nonexistent;-1.8;92.843;-50.0;1.811;5099.1;no
+28;technician;single;university.degree;no;no;no;cellular;mar;mon;56;2;999;0;nonexistent;-1.8;92.843;-50.0;1.811;5099.1;no
+26;student;single;basic.9y;no;yes;no;cellular;mar;mon;1447;2;999;0;nonexistent;-1.8;92.843;-50.0;1.811;5099.1;yes
+26;admin.;married;university.degree;no;yes;no;cellular;mar;mon;76;2;999;0;nonexistent;-1.8;92.843;-50.0;1.811;5099.1;no
+70;retired;divorced;basic.4y;no;yes;no;cellular;mar;mon;187;3;999;0;nonexistent;-1.8;92.843;-50.0;1.811;5099.1;yes
+28;technician;single;university.degree;no;yes;no;cellular;mar;mon;131;12;999;0;nonexistent;-1.8;92.843;-50.0;1.811;5099.1;no
+61;admin.;married;university.degree;no;yes;no;cellular;mar;mon;136;6;999;0;nonexistent;-1.8;92.843;-50.0;1.811;5099.1;no
+26;student;single;basic.9y;no;no;yes;cellular;mar;mon;889;4;999;0;nonexistent;-1.8;92.843;-50.0;1.811;5099.1;no
+48;admin.;married;basic.6y;no;yes;no;telephone;mar;mon;382;2;999;0;nonexistent;-1.8;92.843;-50.0;1.811;5099.1;yes
+26;student;single;basic.9y;no;yes;no;cellular;mar;mon;294;3;999;0;nonexistent;-1.8;92.843;-50.0;1.811;5099.1;yes
+30;management;married;university.degree;no;no;no;telephone;mar;mon;88;3;999;0;nonexistent;-1.8;92.843;-50.0;1.811;5099.1;no
+31;admin.;single;university.degree;no;no;yes;telephone;mar;mon;39;2;999;0;nonexistent;-1.8;92.843;-50.0;1.811;5099.1;no
+28;admin.;single;high.school;no;yes;no;cellular;mar;tue;143;2;999;0;nonexistent;-1.8;92.843;-50.0;1.799;5099.1;yes
+42;entrepreneur;married;basic.9y;no;unknown;unknown;cellular;mar;tue;133;1;999;0;nonexistent;-1.8;92.843;-50.0;1.799;5099.1;no
+66;technician;married;professional.course;no;yes;no;cellular;mar;tue;83;1;999;0;nonexistent;-1.8;92.843;-50.0;1.799;5099.1;yes
+26;unknown;single;basic.9y;no;no;no;cellular;mar;tue;212;1;999;0;nonexistent;-1.8;92.843;-50.0;1.799;5099.1;no
+34;management;married;university.degree;no;no;no;cellular;mar;tue;499;1;999;0;nonexistent;-1.8;92.843;-50.0;1.799;5099.1;yes
+35;admin.;married;high.school;no;yes;no;cellular;mar;tue;350;3;999;0;nonexistent;-1.8;92.843;-50.0;1.799;5099.1;yes
+34;management;married;university.degree;no;yes;no;cellular;mar;tue;225;5;999;0;nonexistent;-1.8;92.843;-50.0;1.799;5099.1;no
+24;services;single;unknown;no;no;no;cellular;mar;tue;103;1;999;0;nonexistent;-1.8;92.843;-50.0;1.799;5099.1;no
+28;student;single;basic.9y;no;yes;no;cellular;mar;tue;320;1;999;0;nonexistent;-1.8;92.843;-50.0;1.799;5099.1;yes
+28;student;single;basic.9y;no;yes;no;cellular;mar;tue;156;1;999;0;nonexistent;-1.8;92.843;-50.0;1.799;5099.1;yes
+36;admin.;married;high.school;no;no;no;cellular;mar;tue;168;1;999;0;nonexistent;-1.8;92.843;-50.0;1.799;5099.1;yes
+43;blue-collar;married;basic.9y;no;no;no;cellular;mar;tue;180;2;999;0;nonexistent;-1.8;92.843;-50.0;1.799;5099.1;yes
+24;services;single;unknown;no;yes;no;cellular;mar;tue;305;13;999;0;nonexistent;-1.8;92.843;-50.0;1.799;5099.1;yes
+28;student;single;basic.9y;no;yes;no;cellular;mar;tue;96;2;999;0;nonexistent;-1.8;92.843;-50.0;1.799;5099.1;yes
+32;technician;married;professional.course;no;no;yes;telephone;mar;wed;92;5;999;0;nonexistent;-1.8;92.843;-50.0;1.778;5099.1;no
+41;services;married;high.school;no;no;no;cellular;mar;wed;377;6;999;0;nonexistent;-1.8;92.843;-50.0;1.778;5099.1;yes
+41;services;married;high.school;no;no;no;cellular;mar;wed;396;2;999;0;nonexistent;-1.8;92.843;-50.0;1.778;5099.1;yes
+23;admin.;single;university.degree;no;unknown;unknown;cellular;mar;thu;308;2;999;1;failure;-1.8;92.843;-50.0;1.757;5099.1;yes
+38;technician;married;professional.course;no;no;no;cellular;mar;thu;66;3;999;0;nonexistent;-1.8;92.843;-50.0;1.757;5099.1;no
+38;technician;married;professional.course;no;no;no;cellular;mar;thu;92;1;999;0;nonexistent;-1.8;92.843;-50.0;1.757;5099.1;no
+44;management;married;basic.6y;no;yes;no;cellular;mar;thu;61;2;999;0;nonexistent;-1.8;92.843;-50.0;1.757;5099.1;no
+38;technician;married;professional.course;no;yes;yes;cellular;mar;thu;63;2;999;0;nonexistent;-1.8;92.843;-50.0;1.757;5099.1;yes
+33;admin.;divorced;high.school;no;yes;no;cellular;mar;thu;86;1;999;0;nonexistent;-1.8;92.843;-50.0;1.757;5099.1;no
+23;admin.;single;university.degree;no;yes;no;cellular;mar;thu;64;1;999;0;nonexistent;-1.8;92.843;-50.0;1.757;5099.1;no
+44;management;married;basic.6y;no;yes;yes;cellular;mar;thu;218;1;999;0;nonexistent;-1.8;92.843;-50.0;1.757;5099.1;no
+33;management;married;university.degree;no;yes;no;telephone;mar;thu;181;1;999;0;nonexistent;-1.8;92.843;-50.0;1.757;5099.1;yes
+44;management;married;basic.6y;no;yes;no;cellular;mar;thu;53;3;999;0;nonexistent;-1.8;92.843;-50.0;1.757;5099.1;no
+38;technician;married;professional.course;no;yes;no;cellular;mar;thu;182;1;999;0;nonexistent;-1.8;92.843;-50.0;1.757;5099.1;yes
+23;admin.;single;university.degree;no;yes;no;cellular;mar;thu;90;2;999;0;nonexistent;-1.8;92.843;-50.0;1.757;5099.1;no
+33;admin.;divorced;high.school;no;no;no;cellular;mar;thu;41;2;999;0;nonexistent;-1.8;92.843;-50.0;1.757;5099.1;no
+38;technician;married;professional.course;no;no;yes;cellular;mar;thu;137;1;999;0;nonexistent;-1.8;92.843;-50.0;1.757;5099.1;yes
+38;technician;married;professional.course;no;no;no;cellular;mar;thu;119;1;999;0;nonexistent;-1.8;92.843;-50.0;1.757;5099.1;no
+38;technician;married;professional.course;no;no;no;cellular;mar;thu;106;1;999;0;nonexistent;-1.8;92.843;-50.0;1.757;5099.1;yes
+38;technician;married;professional.course;no;no;yes;cellular;mar;thu;196;2;999;0;nonexistent;-1.8;92.843;-50.0;1.757;5099.1;yes
+32;admin.;married;high.school;no;no;no;cellular;mar;thu;115;2;999;0;nonexistent;-1.8;92.843;-50.0;1.757;5099.1;no
+38;technician;married;professional.course;no;no;no;cellular;mar;thu;84;1;999;0;nonexistent;-1.8;92.843;-50.0;1.757;5099.1;no
+76;retired;married;university.degree;no;no;yes;cellular;mar;thu;167;9;999;0;nonexistent;-1.8;92.843;-50.0;1.757;5099.1;no
+38;technician;married;professional.course;no;no;yes;cellular;mar;fri;195;1;999;0;nonexistent;-1.8;92.843;-50.0;1.726;5099.1;yes
+34;technician;single;professional.course;no;no;no;cellular;mar;fri;229;1;999;0;nonexistent;-1.8;92.843;-50.0;1.726;5099.1;yes
+34;technician;single;professional.course;no;yes;no;cellular;mar;fri;227;1;999;0;nonexistent;-1.8;92.843;-50.0;1.726;5099.1;yes
+34;technician;single;professional.course;no;yes;yes;cellular;mar;fri;136;1;999;0;nonexistent;-1.8;92.843;-50.0;1.726;5099.1;no
+38;technician;married;professional.course;no;yes;no;cellular;mar;fri;119;5;999;0;nonexistent;-1.8;92.843;-50.0;1.726;5099.1;no
+38;technician;married;professional.course;no;yes;no;cellular;mar;fri;166;3;999;0;nonexistent;-1.8;92.843;-50.0;1.726;5099.1;yes
+38;technician;married;professional.course;no;yes;no;cellular;mar;fri;363;2;10;1;success;-1.8;92.843;-50.0;1.726;5099.1;yes
+34;technician;single;professional.course;no;yes;no;cellular;mar;fri;266;1;999;0;nonexistent;-1.8;92.843;-50.0;1.726;5099.1;yes
+34;technician;single;professional.course;no;yes;yes;cellular;mar;fri;544;3;999;0;nonexistent;-1.8;92.843;-50.0;1.726;5099.1;yes
+34;technician;single;professional.course;no;no;no;cellular;mar;fri;301;3;999;0;nonexistent;-1.8;92.843;-50.0;1.726;5099.1;yes
+38;technician;married;professional.course;no;yes;no;cellular;mar;fri;207;2;7;1;success;-1.8;92.843;-50.0;1.726;5099.1;yes
+32;management;single;university.degree;no;yes;no;cellular;mar;mon;116;1;999;0;nonexistent;-1.8;92.843;-50.0;1.703;5099.1;yes
+41;technician;single;professional.course;no;yes;no;cellular;mar;mon;101;1;999;0;nonexistent;-1.8;92.843;-50.0;1.703;5099.1;no
+37;admin.;single;university.degree;no;yes;yes;cellular;mar;mon;161;2;999;0;nonexistent;-1.8;92.843;-50.0;1.703;5099.1;no
+55;technician;single;professional.course;no;yes;yes;cellular;mar;mon;217;2;999;0;nonexistent;-1.8;92.843;-50.0;1.703;5099.1;yes
+32;management;single;university.degree;no;yes;no;cellular;mar;mon;78;2;999;1;failure;-1.8;92.843;-50.0;1.703;5099.1;no
+67;retired;single;university.degree;no;yes;yes;cellular;mar;mon;70;22;999;0;nonexistent;-1.8;92.843;-50.0;1.703;5099.1;no
+32;management;single;university.degree;no;yes;no;cellular;mar;mon;75;2;999;0;nonexistent;-1.8;92.843;-50.0;1.703;5099.1;no
+32;management;single;university.degree;no;no;no;cellular;mar;mon;93;2;999;1;failure;-1.8;92.843;-50.0;1.703;5099.1;no
+32;management;single;university.degree;no;yes;yes;cellular;mar;tue;97;1;999;0;nonexistent;-1.8;92.843;-50.0;1.687;5099.1;no
+38;technician;married;university.degree;no;no;no;cellular;mar;tue;350;2;999;2;failure;-1.8;92.843;-50.0;1.687;5099.1;yes
+32;management;single;university.degree;no;yes;no;cellular;mar;tue;164;1;999;0;nonexistent;-1.8;92.843;-50.0;1.687;5099.1;no
+73;retired;married;university.degree;no;yes;no;cellular;mar;tue;179;1;999;1;failure;-1.8;92.843;-50.0;1.687;5099.1;no
+32;management;single;university.degree;no;yes;no;cellular;mar;tue;106;1;999;0;nonexistent;-1.8;92.843;-50.0;1.687;5099.1;yes
+31;blue-collar;single;high.school;no;yes;no;cellular;mar;tue;272;1;999;0;nonexistent;-1.8;92.843;-50.0;1.687;5099.1;yes
+33;technician;married;university.degree;no;yes;no;cellular;mar;tue;56;2;999;0;nonexistent;-1.8;92.843;-50.0;1.687;5099.1;no
+32;management;single;university.degree;no;yes;no;cellular;mar;tue;71;3;999;0;nonexistent;-1.8;92.843;-50.0;1.687;5099.1;yes
+39;admin.;single;high.school;no;yes;no;cellular;mar;tue;100;2;999;0;nonexistent;-1.8;92.843;-50.0;1.687;5099.1;no
+39;admin.;single;high.school;no;no;no;cellular;mar;tue;119;5;999;0;nonexistent;-1.8;92.843;-50.0;1.687;5099.1;no
+38;technician;married;university.degree;no;yes;no;cellular;mar;tue;122;1;999;0;nonexistent;-1.8;92.843;-50.0;1.687;5099.1;yes
+38;technician;married;university.degree;no;no;no;cellular;mar;tue;59;1;999;0;nonexistent;-1.8;92.843;-50.0;1.687;5099.1;no
+39;admin.;single;high.school;no;yes;no;cellular;mar;tue;395;3;999;0;nonexistent;-1.8;92.843;-50.0;1.687;5099.1;yes
+38;technician;married;university.degree;no;no;no;cellular;mar;tue;261;1;999;0;nonexistent;-1.8;92.843;-50.0;1.687;5099.1;yes
+38;technician;married;university.degree;no;yes;yes;cellular;mar;tue;113;1;999;1;failure;-1.8;92.843;-50.0;1.687;5099.1;no
+18;student;single;high.school;no;yes;yes;cellular;mar;tue;103;1;999;0;nonexistent;-1.8;92.843;-50.0;1.687;5099.1;no
+32;management;single;university.degree;no;yes;no;cellular;mar;tue;59;1;999;0;nonexistent;-1.8;92.843;-50.0;1.687;5099.1;no
+39;blue-collar;single;basic.4y;no;yes;no;telephone;mar;tue;137;3;999;0;nonexistent;-1.8;92.843;-50.0;1.687;5099.1;no
+37;admin.;married;university.degree;no;yes;yes;cellular;mar;tue;159;3;999;0;nonexistent;-1.8;92.843;-50.0;1.687;5099.1;yes
+30;student;single;basic.4y;no;yes;yes;cellular;mar;tue;70;2;999;0;nonexistent;-1.8;92.843;-50.0;1.687;5099.1;no
+32;management;single;university.degree;no;yes;no;cellular;mar;tue;427;3;999;0;nonexistent;-1.8;92.843;-50.0;1.687;5099.1;yes
+32;management;single;university.degree;no;yes;no;telephone;mar;tue;230;2;999;0;nonexistent;-1.8;92.843;-50.0;1.687;5099.1;no
+29;self-employed;married;university.degree;no;yes;no;cellular;mar;wed;60;3;999;0;nonexistent;-1.8;92.843;-50.0;1.663;5099.1;no
+88;retired;divorced;basic.4y;no;yes;no;cellular;mar;wed;48;1;999;0;nonexistent;-1.8;92.843;-50.0;1.663;5099.1;no
+29;self-employed;married;university.degree;no;no;no;cellular;mar;wed;74;1;999;0;nonexistent;-1.8;92.843;-50.0;1.663;5099.1;no
+88;retired;divorced;basic.4y;no;no;no;cellular;mar;wed;266;2;999;0;nonexistent;-1.8;92.843;-50.0;1.663;5099.1;yes
+29;self-employed;married;university.degree;no;yes;no;cellular;mar;wed;95;4;999;0;nonexistent;-1.8;92.843;-50.0;1.663;5099.1;yes
+29;self-employed;married;university.degree;no;yes;yes;cellular;mar;wed;231;1;999;1;failure;-1.8;92.843;-50.0;1.663;5099.1;no
+88;retired;divorced;basic.4y;no;yes;yes;cellular;mar;wed;796;5;999;0;nonexistent;-1.8;92.843;-50.0;1.663;5099.1;yes
+29;self-employed;married;university.degree;no;no;no;cellular;mar;wed;101;1;999;0;nonexistent;-1.8;92.843;-50.0;1.663;5099.1;no
+29;self-employed;married;university.degree;no;no;no;cellular;mar;wed;197;2;999;0;nonexistent;-1.8;92.843;-50.0;1.663;5099.1;yes
+88;retired;divorced;basic.4y;no;yes;no;cellular;mar;wed;96;6;999;0;nonexistent;-1.8;92.843;-50.0;1.663;5099.1;no
+60;retired;married;professional.course;no;yes;no;cellular;mar;wed;74;1;999;0;nonexistent;-1.8;92.843;-50.0;1.663;5099.1;no
+88;retired;divorced;basic.4y;no;yes;no;cellular;mar;wed;126;1;999;0;nonexistent;-1.8;92.843;-50.0;1.663;5099.1;yes
+88;retired;divorced;basic.4y;no;no;no;cellular;mar;wed;323;1;999;0;nonexistent;-1.8;92.843;-50.0;1.663;5099.1;yes
+88;retired;divorced;basic.4y;no;yes;no;cellular;mar;wed;85;1;999;0;nonexistent;-1.8;92.843;-50.0;1.663;5099.1;no
+88;retired;divorced;basic.4y;no;yes;no;cellular;mar;wed;101;7;999;0;nonexistent;-1.8;92.843;-50.0;1.663;5099.1;yes
+88;retired;divorced;basic.4y;no;yes;yes;cellular;mar;wed;103;3;999;0;nonexistent;-1.8;92.843;-50.0;1.663;5099.1;no
+88;retired;divorced;basic.4y;no;yes;yes;cellular;mar;wed;82;2;999;0;nonexistent;-1.8;92.843;-50.0;1.663;5099.1;no
+88;retired;divorced;basic.4y;no;yes;no;cellular;mar;wed;188;3;999;0;nonexistent;-1.8;92.843;-50.0;1.663;5099.1;yes
+88;retired;divorced;basic.4y;no;no;no;cellular;mar;wed;203;2;999;0;nonexistent;-1.8;92.843;-50.0;1.663;5099.1;yes
+88;retired;divorced;basic.4y;no;yes;no;cellular;mar;wed;101;1;999;0;nonexistent;-1.8;92.843;-50.0;1.663;5099.1;yes
+33;admin.;married;university.degree;no;no;no;cellular;mar;thu;56;2;999;0;nonexistent;-1.8;92.843;-50.0;1.65;5099.1;no
+33;admin.;married;university.degree;no;yes;no;cellular;mar;thu;71;3;999;0;nonexistent;-1.8;92.843;-50.0;1.65;5099.1;no
+27;student;single;high.school;no;yes;no;cellular;mar;thu;80;4;999;0;nonexistent;-1.8;92.843;-50.0;1.65;5099.1;yes
+26;management;single;university.degree;no;yes;no;cellular;mar;thu;119;1;999;0;nonexistent;-1.8;92.843;-50.0;1.65;5099.1;yes
+66;retired;married;basic.4y;no;yes;no;cellular;mar;thu;156;1;999;0;nonexistent;-1.8;92.843;-50.0;1.65;5099.1;yes
+29;technician;married;professional.course;no;no;no;cellular;mar;thu;186;1;999;0;nonexistent;-1.8;92.843;-50.0;1.65;5099.1;yes
+26;management;single;university.degree;no;no;no;cellular;mar;thu;139;1;999;0;nonexistent;-1.8;92.843;-50.0;1.65;5099.1;yes
+95;retired;divorced;basic.6y;no;no;no;cellular;mar;thu;85;1;999;0;nonexistent;-1.8;92.843;-50.0;1.65;5099.1;no
+19;student;single;basic.9y;no;yes;no;cellular;mar;fri;126;4;999;0;nonexistent;-1.8;92.843;-50.0;1.64;5099.1;yes
+28;self-employed;single;university.degree;no;yes;no;cellular;mar;fri;186;2;999;0;nonexistent;-1.8;92.843;-50.0;1.64;5099.1;no
+32;student;single;university.degree;no;no;no;cellular;mar;fri;61;11;999;0;nonexistent;-1.8;92.843;-50.0;1.64;5099.1;no
+28;self-employed;single;university.degree;no;yes;no;cellular;mar;fri;41;1;999;0;nonexistent;-1.8;92.843;-50.0;1.64;5099.1;no
+28;self-employed;single;university.degree;no;no;no;cellular;mar;fri;114;1;999;0;nonexistent;-1.8;92.843;-50.0;1.64;5099.1;no
+30;student;single;high.school;no;no;no;cellular;mar;fri;268;5;10;2;failure;-1.8;92.843;-50.0;1.64;5099.1;yes
+28;self-employed;single;university.degree;no;yes;yes;cellular;mar;fri;3076;1;999;0;nonexistent;-1.8;92.843;-50.0;1.64;5099.1;yes
+37;unemployed;single;university.degree;no;yes;no;cellular;mar;fri;432;1;999;0;nonexistent;-1.8;92.843;-50.0;1.64;5099.1;no
+50;unemployed;unknown;university.degree;no;no;no;cellular;mar;fri;166;2;999;0;nonexistent;-1.8;92.843;-50.0;1.64;5099.1;no
+28;self-employed;single;university.degree;no;no;no;cellular;mar;fri;296;2;999;0;nonexistent;-1.8;92.843;-50.0;1.64;5099.1;yes
+70;retired;married;basic.4y;no;yes;no;cellular;mar;mon;61;6;999;1;failure;-1.8;92.843;-50.0;1.629;5099.1;no
+70;retired;married;basic.4y;no;no;no;cellular;mar;mon;422;3;999;1;failure;-1.8;92.843;-50.0;1.629;5099.1;no
+34;technician;married;professional.course;no;no;no;telephone;mar;mon;80;4;999;0;nonexistent;-1.8;92.843;-50.0;1.629;5099.1;no
+30;admin.;married;university.degree;no;unknown;unknown;cellular;mar;mon;291;3;8;1;success;-1.8;92.843;-50.0;1.629;5099.1;no
+56;retired;married;university.degree;no;yes;yes;cellular;mar;mon;104;2;999;0;nonexistent;-1.8;92.843;-50.0;1.629;5099.1;no
+34;technician;married;professional.course;no;yes;no;cellular;mar;mon;93;1;999;0;nonexistent;-1.8;92.843;-50.0;1.629;5099.1;no
+34;technician;married;professional.course;no;yes;yes;telephone;mar;mon;44;1;999;0;nonexistent;-1.8;92.843;-50.0;1.629;5099.1;no
+70;retired;married;basic.4y;no;yes;no;telephone;mar;mon;147;1;999;0;nonexistent;-1.8;92.843;-50.0;1.629;5099.1;no
+34;technician;married;professional.course;no;no;no;cellular;mar;mon;83;13;999;0;nonexistent;-1.8;92.843;-50.0;1.629;5099.1;no
+28;technician;single;university.degree;no;no;no;cellular;mar;mon;392;4;999;0;nonexistent;-1.8;92.843;-50.0;1.629;5099.1;yes
+50;admin.;divorced;university.degree;no;yes;no;cellular;mar;tue;74;1;999;0;nonexistent;-1.8;92.843;-50.0;1.614;5099.1;no
+46;technician;married;professional.course;no;no;no;cellular;mar;tue;163;2;999;0;nonexistent;-1.8;92.843;-50.0;1.614;5099.1;no
+33;admin.;single;university.degree;no;no;no;cellular;mar;tue;406;2;999;1;failure;-1.8;92.843;-50.0;1.614;5099.1;yes
+21;student;single;high.school;no;no;no;cellular;mar;tue;220;1;999;0;nonexistent;-1.8;92.843;-50.0;1.614;5099.1;yes
+77;retired;divorced;unknown;no;yes;no;cellular;mar;tue;178;1;999;0;nonexistent;-1.8;92.843;-50.0;1.614;5099.1;yes
+37;unemployed;married;university.degree;no;yes;no;cellular;mar;tue;195;1;999;0;nonexistent;-1.8;92.843;-50.0;1.614;5099.1;yes
+33;admin.;single;university.degree;no;yes;yes;cellular;mar;tue;187;1;999;0;nonexistent;-1.8;92.843;-50.0;1.614;5099.1;yes
+33;technician;single;university.degree;no;yes;no;cellular;mar;tue;325;1;999;0;nonexistent;-1.8;92.843;-50.0;1.614;5099.1;no
+29;technician;single;professional.course;no;no;no;cellular;mar;tue;299;2;999;0;nonexistent;-1.8;92.843;-50.0;1.614;5099.1;yes
+34;admin.;single;university.degree;no;no;no;cellular;mar;tue;325;2;999;0;nonexistent;-1.8;92.843;-50.0;1.614;5099.1;yes
+32;admin.;single;professional.course;no;yes;no;cellular;mar;tue;159;2;999;0;nonexistent;-1.8;92.843;-50.0;1.614;5099.1;no
+32;admin.;single;professional.course;no;yes;yes;cellular;mar;tue;81;1;999;0;nonexistent;-1.8;92.843;-50.0;1.614;5099.1;no
+50;admin.;divorced;university.degree;no;yes;no;cellular;mar;tue;136;19;999;0;nonexistent;-1.8;92.843;-50.0;1.614;5099.1;no
+26;student;single;high.school;no;no;no;cellular;mar;wed;236;2;999;0;nonexistent;-1.8;92.843;-50.0;1.602;5099.1;no
+33;blue-collar;single;high.school;no;yes;no;cellular;mar;wed;140;10;999;0;nonexistent;-1.8;92.843;-50.0;1.602;5099.1;no
+33;blue-collar;single;high.school;no;no;no;cellular;mar;wed;278;2;999;0;nonexistent;-1.8;92.843;-50.0;1.602;5099.1;yes
+60;management;single;university.degree;no;yes;yes;cellular;mar;wed;194;1;999;0;nonexistent;-1.8;92.843;-50.0;1.602;5099.1;yes
+24;admin.;single;high.school;no;yes;yes;cellular;mar;wed;224;1;999;0;nonexistent;-1.8;92.843;-50.0;1.602;5099.1;yes
+33;blue-collar;single;high.school;no;yes;no;cellular;mar;wed;163;1;999;0;nonexistent;-1.8;92.843;-50.0;1.602;5099.1;no
+68;retired;married;university.degree;no;no;no;cellular;mar;wed;201;1;999;0;nonexistent;-1.8;92.843;-50.0;1.602;5099.1;yes
+33;blue-collar;single;high.school;no;yes;no;cellular;mar;wed;203;4;999;1;failure;-1.8;92.843;-50.0;1.602;5099.1;yes
+32;management;single;university.degree;no;no;yes;cellular;mar;thu;167;1;999;0;nonexistent;-1.8;92.843;-50.0;1.584;5099.1;yes
+24;admin.;single;high.school;no;no;yes;cellular;mar;thu;181;1;999;0;nonexistent;-1.8;92.843;-50.0;1.584;5099.1;no
+36;admin.;married;high.school;no;yes;no;cellular;mar;thu;220;3;999;0;nonexistent;-1.8;92.843;-50.0;1.584;5099.1;yes
+24;management;married;unknown;no;no;no;cellular;mar;fri;93;5;999;0;nonexistent;-1.8;92.843;-50.0;1.574;5099.1;no
+54;admin.;married;university.degree;no;no;no;cellular;mar;mon;47;2;999;0;nonexistent;-1.8;92.843;-50.0;1.56;5099.1;no
+31;admin.;divorced;university.degree;no;no;no;cellular;mar;mon;248;4;999;0;nonexistent;-1.8;92.843;-50.0;1.56;5099.1;yes
+54;admin.;married;university.degree;no;yes;no;cellular;mar;mon;415;1;999;0;nonexistent;-1.8;92.843;-50.0;1.56;5099.1;yes
+75;retired;divorced;basic.9y;no;no;no;cellular;mar;mon;233;1;999;0;nonexistent;-1.8;92.843;-50.0;1.56;5099.1;no
+54;admin.;married;university.degree;no;yes;no;cellular;mar;mon;115;1;999;0;nonexistent;-1.8;92.843;-50.0;1.56;5099.1;yes
+27;unemployed;single;university.degree;no;yes;no;cellular;mar;mon;269;1;999;0;nonexistent;-1.8;92.843;-50.0;1.56;5099.1;no
+31;admin.;divorced;university.degree;no;yes;yes;cellular;mar;mon;174;2;999;1;failure;-1.8;92.843;-50.0;1.56;5099.1;yes
+70;admin.;divorced;university.degree;no;no;no;cellular;mar;mon;83;4;999;0;nonexistent;-1.8;92.843;-50.0;1.56;5099.1;no
+19;student;single;basic.6y;no;no;no;cellular;mar;tue;136;1;999;0;nonexistent;-1.8;92.843;-50.0;1.556;5099.1;yes
+35;blue-collar;single;professional.course;no;yes;no;cellular;mar;tue;81;1;999;0;nonexistent;-1.8;92.843;-50.0;1.556;5099.1;no
+29;blue-collar;married;basic.4y;no;yes;yes;cellular;mar;tue;74;2;999;0;nonexistent;-1.8;92.843;-50.0;1.556;5099.1;no
+32;technician;divorced;professional.course;no;yes;yes;cellular;mar;tue;460;1;999;0;nonexistent;-1.8;92.843;-50.0;1.556;5099.1;yes
+32;technician;divorced;professional.course;no;no;no;cellular;mar;tue;115;2;999;0;nonexistent;-1.8;92.843;-50.0;1.556;5099.1;no
+28;technician;single;professional.course;no;yes;no;telephone;mar;tue;58;2;999;0;nonexistent;-1.8;92.843;-50.0;1.556;5099.1;no
+29;blue-collar;single;basic.9y;no;yes;no;cellular;mar;tue;116;2;999;0;nonexistent;-1.8;92.843;-50.0;1.556;5099.1;no
+61;retired;married;basic.9y;no;no;yes;cellular;mar;tue;125;2;999;0;nonexistent;-1.8;92.843;-50.0;1.556;5099.1;no
+32;technician;divorced;professional.course;no;yes;no;cellular;mar;tue;144;2;999;0;nonexistent;-1.8;92.843;-50.0;1.556;5099.1;yes
+29;blue-collar;single;basic.9y;no;yes;no;cellular;mar;tue;152;13;999;0;nonexistent;-1.8;92.843;-50.0;1.556;5099.1;no
+31;admin.;married;university.degree;no;yes;no;cellular;mar;tue;170;3;999;0;nonexistent;-1.8;92.843;-50.0;1.556;5099.1;yes
+46;admin.;married;university.degree;no;no;no;cellular;mar;tue;269;3;999;0;nonexistent;-1.8;92.843;-50.0;1.556;5099.1;yes
+50;management;married;basic.9y;no;no;no;cellular;mar;wed;115;1;999;0;nonexistent;-1.8;92.843;-50.0;1.548;5099.1;yes
+28;admin.;single;university.degree;no;no;no;cellular;mar;wed;506;2;999;0;nonexistent;-1.8;92.843;-50.0;1.548;5099.1;yes
+63;retired;divorced;basic.4y;no;no;no;cellular;mar;wed;78;1;999;0;nonexistent;-1.8;92.843;-50.0;1.548;5099.1;no
+28;admin.;single;university.degree;no;no;yes;cellular;mar;wed;96;2;999;0;nonexistent;-1.8;92.843;-50.0;1.548;5099.1;yes
+33;admin.;married;university.degree;no;yes;no;cellular;mar;wed;278;8;999;0;nonexistent;-1.8;92.843;-50.0;1.548;5099.1;yes
+28;admin.;single;university.degree;no;no;no;cellular;mar;wed;411;2;999;0;nonexistent;-1.8;92.843;-50.0;1.548;5099.1;yes
+35;admin.;married;high.school;no;yes;no;cellular;mar;thu;117;2;999;0;nonexistent;-1.8;92.843;-50.0;1.538;5099.1;yes
+36;management;married;university.degree;no;no;no;cellular;mar;thu;709;2;999;0;nonexistent;-1.8;92.843;-50.0;1.538;5099.1;yes
+36;management;married;university.degree;no;yes;no;cellular;mar;thu;141;1;999;1;failure;-1.8;92.843;-50.0;1.538;5099.1;no
+26;student;single;high.school;no;no;no;cellular;mar;thu;200;1;999;0;nonexistent;-1.8;92.843;-50.0;1.538;5099.1;yes
+70;housemaid;married;basic.4y;no;no;no;cellular;mar;thu;91;1;999;1;failure;-1.8;92.843;-50.0;1.538;5099.1;no
+45;technician;single;professional.course;no;yes;yes;cellular;mar;thu;143;2;999;0;nonexistent;-1.8;92.843;-50.0;1.538;5099.1;no
+20;student;single;basic.9y;no;yes;no;cellular;mar;thu;325;1;999;0;nonexistent;-1.8;92.843;-50.0;1.538;5099.1;yes
+36;management;married;university.degree;no;yes;yes;cellular;mar;thu;94;1;999;0;nonexistent;-1.8;92.843;-50.0;1.538;5099.1;no
+28;admin.;single;high.school;no;yes;no;cellular;mar;thu;131;4;999;0;nonexistent;-1.8;92.843;-50.0;1.538;5099.1;no
+20;student;single;basic.9y;no;yes;no;cellular;mar;thu;267;2;999;0;nonexistent;-1.8;92.843;-50.0;1.538;5099.1;no
+36;management;married;university.degree;no;yes;no;cellular;mar;thu;86;2;999;0;nonexistent;-1.8;92.843;-50.0;1.538;5099.1;no
+37;blue-collar;married;basic.6y;no;yes;yes;cellular;mar;thu;73;2;999;0;nonexistent;-1.8;92.843;-50.0;1.538;5099.1;no
+58;unemployed;married;basic.4y;unknown;yes;no;cellular;mar;thu;439;4;999;0;nonexistent;-1.8;92.843;-50.0;1.538;5099.1;no
+68;retired;married;basic.4y;no;no;no;cellular;mar;thu;331;4;999;0;nonexistent;-1.8;92.843;-50.0;1.538;5099.1;yes
+51;technician;married;university.degree;no;yes;no;cellular;mar;thu;278;2;999;0;nonexistent;-1.8;92.843;-50.0;1.538;5099.1;no
+28;admin.;single;high.school;no;yes;no;cellular;mar;thu;181;2;999;0;nonexistent;-1.8;92.843;-50.0;1.538;5099.1;no
+22;student;single;basic.9y;no;yes;no;cellular;mar;thu;173;1;999;0;nonexistent;-1.8;92.843;-50.0;1.538;5099.1;no
+27;housemaid;married;high.school;no;yes;no;cellular;mar;fri;101;12;999;0;nonexistent;-1.8;92.843;-50.0;1.531;5099.1;no
+36;unemployed;married;university.degree;unknown;unknown;unknown;cellular;mar;fri;95;2;999;1;failure;-1.8;92.843;-50.0;1.531;5099.1;yes
+28;admin.;single;high.school;no;yes;no;telephone;mar;fri;515;1;999;0;nonexistent;-1.8;92.843;-50.0;1.531;5099.1;yes
+28;admin.;single;high.school;no;yes;no;cellular;mar;fri;300;1;999;0;nonexistent;-1.8;92.843;-50.0;1.531;5099.1;yes
+28;admin.;single;high.school;no;yes;no;cellular;mar;fri;342;1;999;0;nonexistent;-1.8;92.843;-50.0;1.531;5099.1;yes
+28;self-employed;single;university.degree;no;yes;no;telephone;mar;fri;124;1;999;0;nonexistent;-1.8;92.843;-50.0;1.531;5099.1;no
+56;blue-collar;married;basic.4y;no;yes;no;cellular;mar;fri;283;1;999;0;nonexistent;-1.8;92.843;-50.0;1.531;5099.1;yes
+28;admin.;single;high.school;no;yes;no;cellular;mar;fri;78;2;999;0;nonexistent;-1.8;92.843;-50.0;1.531;5099.1;no
+41;technician;married;professional.course;no;no;no;cellular;mar;fri;229;2;999;0;nonexistent;-1.8;92.843;-50.0;1.531;5099.1;yes
+28;admin.;single;high.school;no;yes;no;cellular;mar;fri;102;1;999;0;nonexistent;-1.8;92.843;-50.0;1.531;5099.1;no
+25;admin.;married;university.degree;no;yes;no;cellular;mar;fri;294;1;999;0;nonexistent;-1.8;92.843;-50.0;1.531;5099.1;yes
+25;admin.;married;university.degree;no;no;no;cellular;mar;fri;184;1;999;0;nonexistent;-1.8;92.843;-50.0;1.531;5099.1;no
+25;admin.;married;university.degree;no;yes;no;cellular;mar;fri;277;1;999;0;nonexistent;-1.8;92.843;-50.0;1.531;5099.1;no
+30;blue-collar;single;university.degree;no;no;no;cellular;mar;fri;166;1;999;0;nonexistent;-1.8;92.843;-50.0;1.531;5099.1;no
+28;admin.;single;high.school;no;no;yes;cellular;mar;fri;77;2;999;0;nonexistent;-1.8;92.843;-50.0;1.531;5099.1;no
+73;retired;married;university.degree;no;yes;no;cellular;mar;fri;179;1;999;0;nonexistent;-1.8;92.843;-50.0;1.531;5099.1;yes
+43;admin.;married;university.degree;no;yes;no;cellular;mar;fri;689;2;999;0;nonexistent;-1.8;92.843;-50.0;1.531;5099.1;no
+31;technician;single;university.degree;no;yes;no;telephone;mar;fri;228;2;999;0;nonexistent;-1.8;92.843;-50.0;1.531;5099.1;yes
+66;retired;married;unknown;no;yes;no;telephone;mar;fri;64;1;999;0;nonexistent;-1.8;92.843;-50.0;1.531;5099.1;no
+27;housemaid;married;high.school;no;yes;no;cellular;mar;fri;378;1;999;0;nonexistent;-1.8;92.843;-50.0;1.531;5099.1;yes
+36;self-employed;married;university.degree;no;yes;no;cellular;mar;fri;101;1;999;0;nonexistent;-1.8;92.843;-50.0;1.531;5099.1;no
+60;admin.;married;university.degree;no;yes;no;cellular;mar;fri;558;1;999;0;nonexistent;-1.8;92.843;-50.0;1.531;5099.1;no
+25;admin.;married;university.degree;no;no;no;cellular;mar;fri;243;3;999;0;nonexistent;-1.8;92.843;-50.0;1.531;5099.1;yes
+43;admin.;married;university.degree;no;yes;no;cellular;mar;fri;111;3;999;0;nonexistent;-1.8;92.843;-50.0;1.531;5099.1;no
+28;admin.;single;high.school;no;no;no;cellular;mar;fri;144;2;999;0;nonexistent;-1.8;92.843;-50.0;1.531;5099.1;no
+30;blue-collar;single;university.degree;no;yes;yes;cellular;mar;fri;166;2;999;0;nonexistent;-1.8;92.843;-50.0;1.531;5099.1;no
+28;admin.;single;high.school;no;no;no;telephone;mar;fri;234;2;999;0;nonexistent;-1.8;92.843;-50.0;1.531;5099.1;yes
+32;admin.;single;university.degree;no;yes;no;cellular;mar;fri;271;2;999;0;nonexistent;-1.8;92.843;-50.0;1.531;5099.1;yes
+28;admin.;single;high.school;no;no;no;cellular;mar;fri;347;2;999;0;nonexistent;-1.8;92.843;-50.0;1.531;5099.1;yes
+32;admin.;single;university.degree;no;unknown;unknown;cellular;mar;mon;77;3;999;0;nonexistent;-1.8;92.843;-50.0;1.52;5099.1;no
+34;technician;single;university.degree;no;no;no;cellular;mar;mon;180;2;999;0;nonexistent;-1.8;92.843;-50.0;1.52;5099.1;yes
+32;admin.;single;university.degree;no;unknown;unknown;cellular;mar;mon;136;3;999;0;nonexistent;-1.8;92.843;-50.0;1.52;5099.1;no
+34;technician;single;university.degree;no;yes;no;cellular;mar;mon;253;2;999;1;failure;-1.8;92.843;-50.0;1.52;5099.1;no
+34;technician;single;university.degree;no;yes;no;cellular;mar;mon;171;4;999;0;nonexistent;-1.8;92.843;-50.0;1.52;5099.1;no
+32;admin.;single;university.degree;no;yes;yes;cellular;mar;mon;96;6;999;0;nonexistent;-1.8;92.843;-50.0;1.52;5099.1;no
+80;retired;married;basic.4y;unknown;yes;no;cellular;mar;mon;415;1;999;0;nonexistent;-1.8;92.843;-50.0;1.52;5099.1;no
+80;retired;married;basic.4y;unknown;no;no;cellular;mar;mon;95;1;999;0;nonexistent;-1.8;92.843;-50.0;1.52;5099.1;no
+32;admin.;single;university.degree;no;yes;no;cellular;mar;mon;285;8;999;0;nonexistent;-1.8;92.843;-50.0;1.52;5099.1;yes
+32;admin.;single;university.degree;no;yes;no;cellular;mar;mon;364;3;999;0;nonexistent;-1.8;92.843;-50.0;1.52;5099.1;yes
+21;student;single;basic.4y;no;no;no;cellular;mar;mon;114;2;999;0;nonexistent;-1.8;92.843;-50.0;1.52;5099.1;no
+32;admin.;married;university.degree;no;yes;no;cellular;mar;mon;517;1;999;0;nonexistent;-1.8;92.843;-50.0;1.52;5099.1;yes
+32;admin.;single;university.degree;no;yes;no;cellular;mar;mon;167;2;999;0;nonexistent;-1.8;92.843;-50.0;1.52;5099.1;no
+32;admin.;married;university.degree;no;yes;yes;cellular;mar;mon;78;3;999;0;nonexistent;-1.8;92.843;-50.0;1.52;5099.1;no
+62;admin.;married;high.school;no;no;no;telephone;mar;mon;163;2;999;0;nonexistent;-1.8;92.843;-50.0;1.52;5099.1;yes
+32;admin.;single;university.degree;no;no;no;cellular;mar;mon;52;3;999;0;nonexistent;-1.8;92.843;-50.0;1.52;5099.1;no
+34;technician;single;university.degree;no;no;no;cellular;mar;mon;138;8;999;0;nonexistent;-1.8;92.843;-50.0;1.52;5099.1;no
+59;blue-collar;married;basic.4y;no;yes;yes;cellular;mar;tue;684;4;999;0;nonexistent;-1.8;92.843;-50.0;1.51;5099.1;no
+59;blue-collar;married;basic.4y;no;no;no;cellular;mar;tue;237;3;999;0;nonexistent;-1.8;92.843;-50.0;1.51;5099.1;yes
+80;management;divorced;professional.course;unknown;yes;no;cellular;mar;tue;158;2;999;0;nonexistent;-1.8;92.843;-50.0;1.51;5099.1;yes
+33;blue-collar;married;high.school;unknown;yes;no;cellular;mar;tue;494;1;999;0;nonexistent;-1.8;92.843;-50.0;1.51;5099.1;no
+39;admin.;married;high.school;unknown;yes;yes;cellular;mar;tue;210;1;999;0;nonexistent;-1.8;92.843;-50.0;1.51;5099.1;no
+39;admin.;married;high.school;unknown;yes;no;cellular;mar;tue;310;1;999;0;nonexistent;-1.8;92.843;-50.0;1.51;5099.1;no
+39;admin.;married;high.school;unknown;yes;no;cellular;mar;tue;265;1;999;1;failure;-1.8;92.843;-50.0;1.51;5099.1;no
+45;blue-collar;married;basic.9y;no;yes;no;cellular;mar;tue;257;1;999;0;nonexistent;-1.8;92.843;-50.0;1.51;5099.1;no
+45;blue-collar;married;basic.9y;no;yes;no;cellular;mar;tue;829;1;999;0;nonexistent;-1.8;92.843;-50.0;1.51;5099.1;no
+44;blue-collar;single;basic.4y;no;yes;no;cellular;mar;tue;1530;2;999;0;nonexistent;-1.8;92.843;-50.0;1.51;5099.1;yes
+48;admin.;single;university.degree;no;yes;no;cellular;mar;tue;544;1;999;0;nonexistent;-1.8;92.843;-50.0;1.51;5099.1;no
+38;services;married;high.school;no;yes;no;cellular;apr;wed;484;2;999;0;nonexistent;-1.8;93.075;-47.1;1.498;5099.1;no
+33;blue-collar;married;basic.6y;no;yes;no;cellular;apr;wed;351;3;999;0;nonexistent;-1.8;93.075;-47.1;1.498;5099.1;yes
+43;self-employed;married;high.school;unknown;yes;no;cellular;apr;wed;345;1;999;0;nonexistent;-1.8;93.075;-47.1;1.498;5099.1;no
+31;technician;married;professional.course;no;yes;no;cellular;apr;wed;131;1;999;0;nonexistent;-1.8;93.075;-47.1;1.498;5099.1;no
+43;self-employed;married;high.school;unknown;no;no;cellular;apr;wed;743;1;999;0;nonexistent;-1.8;93.075;-47.1;1.498;5099.1;no
+34;blue-collar;single;basic.9y;no;no;no;cellular;apr;wed;394;1;999;0;nonexistent;-1.8;93.075;-47.1;1.498;5099.1;no
+29;admin.;married;university.degree;no;yes;no;cellular;apr;wed;73;1;999;0;nonexistent;-1.8;93.075;-47.1;1.498;5099.1;no
+56;entrepreneur;divorced;university.degree;no;no;no;cellular;apr;wed;202;2;999;0;nonexistent;-1.8;93.075;-47.1;1.498;5099.1;no
+30;services;single;high.school;no;yes;no;cellular;apr;wed;247;2;999;0;nonexistent;-1.8;93.075;-47.1;1.498;5099.1;no
+33;blue-collar;married;professional.course;no;yes;yes;cellular;apr;wed;154;1;999;0;nonexistent;-1.8;93.075;-47.1;1.498;5099.1;no
+39;admin.;married;high.school;no;yes;no;cellular;apr;wed;110;1;999;0;nonexistent;-1.8;93.075;-47.1;1.498;5099.1;no
+49;admin.;married;basic.6y;no;yes;no;cellular;apr;wed;805;2;999;1;failure;-1.8;93.075;-47.1;1.498;5099.1;yes
+33;management;single;university.degree;no;yes;yes;cellular;apr;wed;427;1;999;0;nonexistent;-1.8;93.075;-47.1;1.498;5099.1;no
+33;management;single;university.degree;no;yes;no;cellular;apr;wed;212;1;999;0;nonexistent;-1.8;93.075;-47.1;1.498;5099.1;no
+40;blue-collar;single;basic.9y;no;no;no;cellular;apr;wed;274;1;999;1;failure;-1.8;93.075;-47.1;1.498;5099.1;no
+33;management;single;university.degree;no;yes;yes;cellular;apr;wed;1176;1;999;0;nonexistent;-1.8;93.075;-47.1;1.498;5099.1;yes
+33;blue-collar;married;basic.6y;no;yes;no;cellular;apr;wed;165;2;999;0;nonexistent;-1.8;93.075;-47.1;1.498;5099.1;yes
+46;retired;married;basic.6y;unknown;yes;no;cellular;apr;wed;525;2;999;0;nonexistent;-1.8;93.075;-47.1;1.498;5099.1;no
+29;admin.;single;university.degree;no;no;no;cellular;apr;wed;479;1;999;1;failure;-1.8;93.075;-47.1;1.498;5099.1;no
+29;admin.;single;university.degree;no;yes;no;cellular;apr;wed;513;1;5;2;success;-1.8;93.075;-47.1;1.498;5099.1;no
+29;admin.;single;university.degree;no;no;no;cellular;apr;wed;295;1;999;0;nonexistent;-1.8;93.075;-47.1;1.498;5099.1;no
+29;admin.;single;university.degree;no;no;yes;cellular;apr;wed;117;1;999;0;nonexistent;-1.8;93.075;-47.1;1.498;5099.1;no
+63;retired;married;professional.course;no;yes;no;cellular;apr;wed;387;2;999;0;nonexistent;-1.8;93.075;-47.1;1.498;5099.1;yes
+39;admin.;married;high.school;no;yes;no;cellular;apr;wed;286;2;999;0;nonexistent;-1.8;93.075;-47.1;1.498;5099.1;no
+32;blue-collar;married;basic.9y;no;no;no;cellular;apr;wed;161;2;999;1;failure;-1.8;93.075;-47.1;1.498;5099.1;no
+27;entrepreneur;married;professional.course;no;unknown;unknown;cellular;apr;wed;297;1;999;0;nonexistent;-1.8;93.075;-47.1;1.498;5099.1;no
+38;admin.;divorced;university.degree;no;yes;no;cellular;apr;wed;498;3;999;0;nonexistent;-1.8;93.075;-47.1;1.498;5099.1;no
+44;admin.;married;unknown;no;no;no;cellular;apr;wed;251;4;999;1;failure;-1.8;93.075;-47.1;1.498;5099.1;no
+32;technician;married;professional.course;no;yes;no;cellular;apr;wed;625;2;999;0;nonexistent;-1.8;93.075;-47.1;1.498;5099.1;no
+56;entrepreneur;divorced;university.degree;no;unknown;unknown;cellular;apr;wed;121;2;999;1;failure;-1.8;93.075;-47.1;1.498;5099.1;no
+43;self-employed;married;high.school;unknown;yes;no;cellular;apr;wed;253;2;999;0;nonexistent;-1.8;93.075;-47.1;1.498;5099.1;no
+20;student;single;unknown;no;yes;no;cellular;apr;wed;184;4;999;0;nonexistent;-1.8;93.075;-47.1;1.498;5099.1;yes
+63;retired;married;professional.course;no;no;no;telephone;apr;wed;74;3;999;0;nonexistent;-1.8;93.075;-47.1;1.498;5099.1;no
+34;admin.;single;university.degree;no;no;yes;cellular;apr;wed;203;2;999;0;nonexistent;-1.8;93.075;-47.1;1.498;5099.1;no
+31;technician;married;professional.course;no;yes;no;cellular;apr;wed;647;2;999;0;nonexistent;-1.8;93.075;-47.1;1.498;5099.1;no
+30;admin.;married;university.degree;no;yes;no;cellular;apr;thu;80;3;999;0;nonexistent;-1.8;93.075;-47.1;1.483;5099.1;no
+30;admin.;married;university.degree;no;yes;yes;cellular;apr;thu;739;2;999;0;nonexistent;-1.8;93.075;-47.1;1.483;5099.1;yes
+54;blue-collar;married;professional.course;no;yes;no;telephone;apr;thu;173;2;999;0;nonexistent;-1.8;93.075;-47.1;1.483;5099.1;no
+54;blue-collar;married;professional.course;no;no;no;cellular;apr;thu;2870;2;999;0;nonexistent;-1.8;93.075;-47.1;1.483;5099.1;no
+30;admin.;married;university.degree;no;no;no;cellular;apr;thu;90;1;999;0;nonexistent;-1.8;93.075;-47.1;1.483;5099.1;no
+38;admin.;divorced;basic.6y;unknown;yes;no;cellular;apr;thu;926;1;999;1;failure;-1.8;93.075;-47.1;1.483;5099.1;no
+30;admin.;married;university.degree;no;yes;yes;cellular;apr;thu;82;6;999;0;nonexistent;-1.8;93.075;-47.1;1.483;5099.1;no
+43;services;divorced;high.school;unknown;yes;no;cellular;apr;thu;303;1;999;1;failure;-1.8;93.075;-47.1;1.483;5099.1;no
+43;services;divorced;high.school;unknown;no;no;cellular;apr;thu;473;1;999;0;nonexistent;-1.8;93.075;-47.1;1.483;5099.1;no
+38;services;married;basic.9y;no;yes;no;cellular;apr;thu;101;1;999;1;failure;-1.8;93.075;-47.1;1.483;5099.1;no
+30;admin.;married;university.degree;no;yes;no;cellular;apr;thu;243;3;999;0;nonexistent;-1.8;93.075;-47.1;1.483;5099.1;yes
+39;blue-collar;single;basic.9y;no;yes;no;cellular;apr;thu;340;1;999;0;nonexistent;-1.8;93.075;-47.1;1.483;5099.1;no
+41;blue-collar;married;basic.4y;unknown;yes;yes;cellular;apr;thu;288;1;999;2;failure;-1.8;93.075;-47.1;1.483;5099.1;no
+34;technician;single;professional.course;no;no;no;cellular;apr;thu;121;1;999;1;failure;-1.8;93.075;-47.1;1.483;5099.1;no
+26;services;single;high.school;no;no;no;cellular;apr;thu;177;1;1;3;success;-1.8;93.075;-47.1;1.483;5099.1;no
+30;admin.;married;university.degree;no;no;no;cellular;apr;thu;313;3;999;0;nonexistent;-1.8;93.075;-47.1;1.483;5099.1;yes
+35;blue-collar;married;basic.9y;unknown;yes;no;cellular;apr;thu;114;1;999;0;nonexistent;-1.8;93.075;-47.1;1.483;5099.1;no
+39;blue-collar;married;basic.9y;no;no;no;cellular;apr;thu;73;1;999;1;failure;-1.8;93.075;-47.1;1.483;5099.1;no
+39;blue-collar;married;basic.9y;no;yes;no;cellular;apr;thu;253;1;999;0;nonexistent;-1.8;93.075;-47.1;1.483;5099.1;no
+40;blue-collar;married;basic.9y;unknown;no;no;cellular;apr;thu;450;2;999;0;nonexistent;-1.8;93.075;-47.1;1.483;5099.1;no
+39;blue-collar;single;basic.9y;no;no;no;cellular;apr;thu;311;2;999;0;nonexistent;-1.8;93.075;-47.1;1.483;5099.1;no
+44;blue-collar;married;basic.9y;unknown;no;no;cellular;apr;thu;361;1;999;0;nonexistent;-1.8;93.075;-47.1;1.483;5099.1;no
+33;admin.;divorced;high.school;no;no;no;cellular;apr;thu;148;1;999;0;nonexistent;-1.8;93.075;-47.1;1.483;5099.1;no
+39;services;married;high.school;no;no;no;cellular;apr;thu;598;2;999;2;failure;-1.8;93.075;-47.1;1.483;5099.1;no
+28;technician;single;professional.course;no;yes;no;cellular;apr;thu;477;2;999;1;failure;-1.8;93.075;-47.1;1.483;5099.1;no
+55;blue-collar;divorced;basic.4y;unknown;yes;no;cellular;apr;thu;164;1;999;1;failure;-1.8;93.075;-47.1;1.483;5099.1;no
+42;technician;divorced;professional.course;no;yes;yes;cellular;apr;thu;144;1;999;0;nonexistent;-1.8;93.075;-47.1;1.483;5099.1;no
+33;housemaid;unknown;university.degree;no;yes;no;cellular;apr;thu;80;1;999;0;nonexistent;-1.8;93.075;-47.1;1.483;5099.1;no
+28;blue-collar;single;high.school;no;no;yes;cellular;apr;thu;333;1;999;1;failure;-1.8;93.075;-47.1;1.483;5099.1;no
+28;blue-collar;single;high.school;no;yes;no;telephone;apr;thu;240;1;999;0;nonexistent;-1.8;93.075;-47.1;1.483;5099.1;no
+50;services;married;basic.4y;unknown;yes;yes;cellular;apr;thu;260;1;999;0;nonexistent;-1.8;93.075;-47.1;1.483;5099.1;no
+44;blue-collar;married;university.degree;no;yes;no;cellular;apr;thu;397;2;999;0;nonexistent;-1.8;93.075;-47.1;1.483;5099.1;yes
+28;technician;single;professional.course;no;no;no;cellular;apr;thu;444;1;999;0;nonexistent;-1.8;93.075;-47.1;1.483;5099.1;no
+28;technician;single;professional.course;no;yes;no;cellular;apr;thu;824;1;999;2;failure;-1.8;93.075;-47.1;1.483;5099.1;no
+30;admin.;married;university.degree;no;no;no;cellular;apr;thu;104;6;999;0;nonexistent;-1.8;93.075;-47.1;1.483;5099.1;no
+32;technician;single;university.degree;no;yes;no;cellular;apr;thu;293;2;999;1;failure;-1.8;93.075;-47.1;1.483;5099.1;no
+28;blue-collar;single;high.school;no;yes;no;telephone;apr;thu;771;1;999;0;nonexistent;-1.8;93.075;-47.1;1.483;5099.1;yes
+46;management;married;university.degree;no;no;no;cellular;apr;thu;249;1;999;0;nonexistent;-1.8;93.075;-47.1;1.483;5099.1;no
+42;admin.;married;basic.9y;no;yes;no;cellular;apr;thu;204;4;999;0;nonexistent;-1.8;93.075;-47.1;1.483;5099.1;no
+28;blue-collar;single;high.school;no;yes;yes;cellular;apr;thu;268;1;999;0;nonexistent;-1.8;93.075;-47.1;1.483;5099.1;yes
+39;blue-collar;single;basic.9y;no;yes;no;cellular;apr;thu;173;2;999;0;nonexistent;-1.8;93.075;-47.1;1.483;5099.1;no
+49;admin.;married;basic.6y;unknown;yes;no;cellular;apr;thu;349;3;999;0;nonexistent;-1.8;93.075;-47.1;1.483;5099.1;no
+50;self-employed;single;basic.9y;no;no;no;cellular;apr;thu;399;2;999;1;failure;-1.8;93.075;-47.1;1.483;5099.1;no
+44;admin.;divorced;university.degree;no;no;no;telephone;apr;thu;74;3;999;0;nonexistent;-1.8;93.075;-47.1;1.483;5099.1;no
+31;blue-collar;single;basic.9y;no;no;no;telephone;apr;thu;285;2;999;0;nonexistent;-1.8;93.075;-47.1;1.483;5099.1;no
+39;technician;married;professional.course;no;no;no;cellular;apr;thu;225;2;999;0;nonexistent;-1.8;93.075;-47.1;1.483;5099.1;no
+38;services;married;basic.9y;no;no;yes;cellular;apr;thu;96;3;999;0;nonexistent;-1.8;93.075;-47.1;1.483;5099.1;no
+28;blue-collar;single;high.school;no;yes;no;cellular;apr;thu;329;2;999;0;nonexistent;-1.8;93.075;-47.1;1.483;5099.1;yes
+28;blue-collar;single;high.school;no;yes;no;cellular;apr;thu;254;2;999;1;failure;-1.8;93.075;-47.1;1.483;5099.1;no
+30;admin.;married;university.degree;no;no;yes;cellular;apr;thu;206;1;999;0;nonexistent;-1.8;93.075;-47.1;1.483;5099.1;no
+32;blue-collar;married;basic.9y;no;yes;no;cellular;apr;fri;48;2;999;0;nonexistent;-1.8;93.075;-47.1;1.479;5099.1;no
+24;technician;single;university.degree;no;yes;no;cellular;apr;fri;326;3;999;0;nonexistent;-1.8;93.075;-47.1;1.479;5099.1;no
+39;admin.;divorced;university.degree;no;no;no;cellular;apr;fri;187;1;999;1;failure;-1.8;93.075;-47.1;1.479;5099.1;no
+40;services;married;high.school;no;yes;no;cellular;apr;fri;456;1;999;1;failure;-1.8;93.075;-47.1;1.479;5099.1;no
+42;technician;divorced;professional.course;no;yes;no;cellular;apr;fri;93;2;999;0;nonexistent;-1.8;93.075;-47.1;1.479;5099.1;no
+45;blue-collar;married;basic.4y;unknown;yes;no;cellular;apr;fri;905;1;999;1;failure;-1.8;93.075;-47.1;1.479;5099.1;no
+53;blue-collar;divorced;high.school;no;yes;no;cellular;apr;fri;0;3;999;0;nonexistent;-1.8;93.075;-47.1;1.479;5099.1;no
+49;self-employed;divorced;unknown;unknown;yes;no;cellular;apr;fri;74;1;999;1;failure;-1.8;93.075;-47.1;1.479;5099.1;no
+32;blue-collar;married;basic.9y;no;unknown;unknown;telephone;apr;fri;108;3;999;0;nonexistent;-1.8;93.075;-47.1;1.479;5099.1;no
+26;admin.;single;university.degree;no;yes;no;cellular;apr;fri;376;1;999;0;nonexistent;-1.8;93.075;-47.1;1.479;5099.1;no
+32;blue-collar;married;basic.9y;no;yes;no;cellular;apr;fri;224;1;999;0;nonexistent;-1.8;93.075;-47.1;1.479;5099.1;no
+26;entrepreneur;single;high.school;no;yes;no;cellular;apr;fri;707;1;999;1;failure;-1.8;93.075;-47.1;1.479;5099.1;yes
+26;entrepreneur;single;high.school;no;no;yes;cellular;apr;fri;297;1;999;1;failure;-1.8;93.075;-47.1;1.479;5099.1;no
+49;housemaid;married;basic.4y;no;no;no;cellular;apr;fri;115;1;999;0;nonexistent;-1.8;93.075;-47.1;1.479;5099.1;no
+30;technician;married;university.degree;no;yes;no;cellular;apr;fri;103;1;999;0;nonexistent;-1.8;93.075;-47.1;1.479;5099.1;no
+42;admin.;married;high.school;no;no;no;cellular;apr;fri;697;2;999;0;nonexistent;-1.8;93.075;-47.1;1.479;5099.1;no
+37;management;married;high.school;no;yes;no;cellular;apr;fri;445;1;999;2;failure;-1.8;93.075;-47.1;1.479;5099.1;no
+51;technician;divorced;professional.course;no;yes;no;cellular;apr;fri;314;1;999;1;failure;-1.8;93.075;-47.1;1.479;5099.1;no
+51;technician;divorced;professional.course;no;yes;yes;cellular;apr;fri;84;1;999;1;failure;-1.8;93.075;-47.1;1.479;5099.1;no
+40;services;married;high.school;no;yes;no;cellular;apr;fri;277;2;999;1;failure;-1.8;93.075;-47.1;1.479;5099.1;no
+31;admin.;married;university.degree;no;no;no;cellular;apr;fri;170;1;999;0;nonexistent;-1.8;93.075;-47.1;1.479;5099.1;no
+30;technician;single;high.school;no;no;no;cellular;apr;fri;285;1;999;0;nonexistent;-1.8;93.075;-47.1;1.479;5099.1;no
+33;services;divorced;high.school;no;no;yes;telephone;apr;fri;119;1;999;0;nonexistent;-1.8;93.075;-47.1;1.479;5099.1;no
+39;entrepreneur;married;high.school;no;no;no;cellular;apr;fri;484;1;999;2;failure;-1.8;93.075;-47.1;1.479;5099.1;no
+44;services;married;high.school;no;yes;no;cellular;apr;fri;240;1;999;2;failure;-1.8;93.075;-47.1;1.479;5099.1;no
+33;services;divorced;high.school;no;yes;yes;cellular;apr;fri;420;1;999;0;nonexistent;-1.8;93.075;-47.1;1.479;5099.1;no
+32;blue-collar;married;basic.9y;no;yes;yes;cellular;apr;fri;482;2;999;0;nonexistent;-1.8;93.075;-47.1;1.479;5099.1;yes
+32;blue-collar;married;basic.9y;no;no;no;cellular;apr;fri;66;2;999;0;nonexistent;-1.8;93.075;-47.1;1.479;5099.1;no
+54;housemaid;married;unknown;no;yes;no;cellular;apr;fri;117;1;999;0;nonexistent;-1.8;93.075;-47.1;1.479;5099.1;yes
+55;retired;married;high.school;no;yes;no;cellular;apr;fri;213;1;999;1;failure;-1.8;93.075;-47.1;1.479;5099.1;no
+49;self-employed;divorced;unknown;unknown;no;no;cellular;apr;fri;660;1;999;0;nonexistent;-1.8;93.075;-47.1;1.479;5099.1;no
+50;admin.;married;professional.course;unknown;yes;no;cellular;apr;fri;154;1;999;0;nonexistent;-1.8;93.075;-47.1;1.479;5099.1;no
+33;entrepreneur;married;high.school;no;yes;no;cellular;apr;fri;273;2;999;1;failure;-1.8;93.075;-47.1;1.479;5099.1;no
+50;admin.;married;unknown;no;yes;no;cellular;apr;fri;121;1;999;0;nonexistent;-1.8;93.075;-47.1;1.479;5099.1;no
+39;blue-collar;married;basic.6y;no;no;no;cellular;apr;fri;239;2;999;0;nonexistent;-1.8;93.075;-47.1;1.479;5099.1;no
+56;management;married;university.degree;no;no;no;telephone;apr;fri;362;2;999;2;failure;-1.8;93.075;-47.1;1.479;5099.1;no
+54;housemaid;married;unknown;no;yes;no;cellular;apr;fri;105;1;999;1;failure;-1.8;93.075;-47.1;1.479;5099.1;no
+45;blue-collar;married;basic.9y;unknown;yes;no;cellular;apr;fri;582;2;999;0;nonexistent;-1.8;93.075;-47.1;1.479;5099.1;no
+36;blue-collar;married;basic.9y;no;unknown;unknown;cellular;apr;fri;329;2;999;0;nonexistent;-1.8;93.075;-47.1;1.479;5099.1;no
+48;admin.;married;high.school;no;yes;no;cellular;apr;fri;190;1;999;0;nonexistent;-1.8;93.075;-47.1;1.479;5099.1;no
+48;admin.;married;high.school;no;no;no;cellular;apr;fri;345;2;999;0;nonexistent;-1.8;93.075;-47.1;1.479;5099.1;no
+32;services;married;high.school;no;no;no;cellular;apr;fri;65;1;999;1;failure;-1.8;93.075;-47.1;1.479;5099.1;no
+43;management;married;university.degree;unknown;no;no;cellular;apr;fri;121;2;999;0;nonexistent;-1.8;93.075;-47.1;1.479;5099.1;no
+32;services;married;high.school;no;no;no;cellular;apr;fri;1090;1;999;0;nonexistent;-1.8;93.075;-47.1;1.479;5099.1;no
+34;blue-collar;single;basic.9y;no;no;no;cellular;apr;fri;203;1;1;1;success;-1.8;93.075;-47.1;1.479;5099.1;no
+49;services;married;basic.6y;no;no;yes;cellular;apr;fri;383;1;999;0;nonexistent;-1.8;93.075;-47.1;1.479;5099.1;no
+50;blue-collar;married;basic.4y;no;yes;no;cellular;apr;fri;100;3;999;0;nonexistent;-1.8;93.075;-47.1;1.479;5099.1;no
+39;entrepreneur;married;high.school;no;no;no;cellular;apr;fri;224;2;999;0;nonexistent;-1.8;93.075;-47.1;1.479;5099.1;no
+37;admin.;married;high.school;no;yes;no;cellular;apr;fri;439;2;999;1;failure;-1.8;93.075;-47.1;1.479;5099.1;no
+32;blue-collar;married;basic.6y;no;yes;yes;cellular;apr;fri;205;2;999;1;failure;-1.8;93.075;-47.1;1.479;5099.1;no
+44;management;divorced;university.degree;no;yes;no;cellular;apr;fri;230;1;999;0;nonexistent;-1.8;93.075;-47.1;1.479;5099.1;no
+44;management;divorced;university.degree;no;no;no;cellular;apr;fri;1091;1;999;1;failure;-1.8;93.075;-47.1;1.479;5099.1;no
+31;technician;single;high.school;no;yes;no;cellular;apr;fri;596;1;999;1;failure;-1.8;93.075;-47.1;1.479;5099.1;no
+47;technician;married;high.school;no;yes;no;cellular;apr;fri;148;2;999;0;nonexistent;-1.8;93.075;-47.1;1.479;5099.1;no
+36;services;single;high.school;no;no;yes;telephone;apr;fri;514;2;999;0;nonexistent;-1.8;93.075;-47.1;1.479;5099.1;no
+47;blue-collar;married;basic.9y;no;no;yes;cellular;apr;fri;583;2;999;1;failure;-1.8;93.075;-47.1;1.479;5099.1;no
+46;management;married;high.school;unknown;yes;no;cellular;apr;fri;57;4;999;0;nonexistent;-1.8;93.075;-47.1;1.479;5099.1;no
+41;admin.;married;basic.6y;no;no;no;cellular;apr;fri;1203;2;999;1;failure;-1.8;93.075;-47.1;1.479;5099.1;yes
+51;technician;divorced;professional.course;no;no;no;cellular;apr;fri;579;2;999;0;nonexistent;-1.8;93.075;-47.1;1.479;5099.1;no
+37;admin.;married;university.degree;no;yes;no;telephone;apr;fri;309;4;999;0;nonexistent;-1.8;93.075;-47.1;1.479;5099.1;no
+40;services;married;high.school;no;yes;no;cellular;apr;fri;151;2;999;0;nonexistent;-1.8;93.075;-47.1;1.479;5099.1;no
+49;services;married;basic.6y;no;yes;no;cellular;apr;fri;219;2;999;0;nonexistent;-1.8;93.075;-47.1;1.479;5099.1;no
+38;entrepreneur;married;professional.course;no;yes;yes;cellular;apr;mon;278;2;999;1;failure;-1.8;93.075;-47.1;1.466;5099.1;no
+46;blue-collar;married;basic.9y;unknown;yes;yes;cellular;apr;mon;479;1;999;0;nonexistent;-1.8;93.075;-47.1;1.466;5099.1;no
+42;management;married;unknown;no;yes;no;cellular;apr;mon;590;2;999;1;failure;-1.8;93.075;-47.1;1.466;5099.1;no
+41;unemployed;married;basic.9y;no;no;yes;cellular;apr;mon;322;1;9;1;success;-1.8;93.075;-47.1;1.466;5099.1;no
+50;management;divorced;university.degree;unknown;no;no;telephone;apr;mon;475;6;999;1;failure;-1.8;93.075;-47.1;1.466;5099.1;yes
+41;unemployed;married;basic.9y;no;yes;no;cellular;apr;mon;272;1;999;0;nonexistent;-1.8;93.075;-47.1;1.466;5099.1;no
+45;admin.;married;high.school;no;yes;no;cellular;apr;mon;185;3;999;0;nonexistent;-1.8;93.075;-47.1;1.466;5099.1;no
+40;management;married;university.degree;no;yes;no;cellular;apr;mon;254;1;999;0;nonexistent;-1.8;93.075;-47.1;1.466;5099.1;no
+25;technician;single;professional.course;no;no;yes;cellular;apr;mon;112;4;999;0;nonexistent;-1.8;93.075;-47.1;1.466;5099.1;no
+40;services;single;high.school;no;no;no;cellular;apr;mon;275;1;999;0;nonexistent;-1.8;93.075;-47.1;1.466;5099.1;no
+37;technician;divorced;basic.9y;no;yes;no;cellular;apr;mon;247;1;999;1;failure;-1.8;93.075;-47.1;1.466;5099.1;no
+38;admin.;single;high.school;no;yes;no;cellular;apr;mon;332;2;999;1;failure;-1.8;93.075;-47.1;1.466;5099.1;no
+55;management;divorced;university.degree;no;no;yes;cellular;apr;mon;916;1;999;0;nonexistent;-1.8;93.075;-47.1;1.466;5099.1;no
+53;blue-collar;married;basic.4y;unknown;yes;no;cellular;apr;mon;583;2;999;1;failure;-1.8;93.075;-47.1;1.466;5099.1;yes
+31;technician;married;professional.course;no;no;no;cellular;apr;mon;551;3;999;1;failure;-1.8;93.075;-47.1;1.466;5099.1;no
+26;admin.;married;high.school;no;yes;no;cellular;apr;mon;90;10;999;0;nonexistent;-1.8;93.075;-47.1;1.466;5099.1;no
+56;retired;married;basic.6y;no;yes;no;telephone;apr;mon;172;1;999;0;nonexistent;-1.8;93.075;-47.1;1.466;5099.1;no
+55;retired;married;basic.4y;no;yes;no;cellular;apr;mon;158;1;999;0;nonexistent;-1.8;93.075;-47.1;1.466;5099.1;yes
+65;retired;married;university.degree;no;yes;no;cellular;apr;mon;147;1;999;0;nonexistent;-1.8;93.075;-47.1;1.466;5099.1;no
+34;admin.;married;basic.6y;no;yes;no;cellular;apr;mon;599;1;999;0;nonexistent;-1.8;93.075;-47.1;1.466;5099.1;no
+55;management;divorced;university.degree;no;yes;no;cellular;apr;mon;232;3;999;0;nonexistent;-1.8;93.075;-47.1;1.466;5099.1;no
+55;technician;married;professional.course;no;no;no;cellular;apr;mon;376;2;999;1;failure;-1.8;93.075;-47.1;1.466;5099.1;no
+44;blue-collar;married;high.school;no;no;no;cellular;apr;mon;271;2;999;1;failure;-1.8;93.075;-47.1;1.466;5099.1;no
+24;admin.;single;university.degree;no;yes;no;telephone;apr;mon;86;1;999;0;nonexistent;-1.8;93.075;-47.1;1.466;5099.1;no
+46;self-employed;single;university.degree;unknown;no;no;cellular;apr;mon;438;1;999;0;nonexistent;-1.8;93.075;-47.1;1.466;5099.1;no
+42;technician;married;basic.9y;no;no;yes;cellular;apr;mon;437;2;999;0;nonexistent;-1.8;93.075;-47.1;1.466;5099.1;no
+46;services;divorced;high.school;no;no;no;cellular;apr;mon;211;2;999;1;failure;-1.8;93.075;-47.1;1.466;5099.1;no
+41;unemployed;married;basic.9y;no;yes;no;cellular;apr;mon;263;1;999;0;nonexistent;-1.8;93.075;-47.1;1.466;5099.1;no
+44;technician;married;unknown;no;yes;no;cellular;apr;mon;104;1;999;1;failure;-1.8;93.075;-47.1;1.466;5099.1;no
+40;services;married;unknown;unknown;no;no;cellular;apr;mon;294;1;999;1;failure;-1.8;93.075;-47.1;1.466;5099.1;no
+45;blue-collar;single;basic.9y;no;yes;no;cellular;apr;mon;173;1;999;0;nonexistent;-1.8;93.075;-47.1;1.466;5099.1;no
+45;blue-collar;single;basic.9y;no;no;no;cellular;apr;mon;129;1;999;0;nonexistent;-1.8;93.075;-47.1;1.466;5099.1;no
+55;housemaid;married;basic.4y;no;no;no;cellular;apr;mon;197;1;999;0;nonexistent;-1.8;93.075;-47.1;1.466;5099.1;no
+24;student;single;university.degree;no;no;no;cellular;apr;mon;139;2;999;0;nonexistent;-1.8;93.075;-47.1;1.466;5099.1;no
+55;housemaid;married;basic.4y;no;yes;no;cellular;apr;mon;139;1;999;0;nonexistent;-1.8;93.075;-47.1;1.466;5099.1;no
+40;blue-collar;divorced;basic.6y;no;no;no;cellular;apr;mon;399;2;999;0;nonexistent;-1.8;93.075;-47.1;1.466;5099.1;no
+26;admin.;married;high.school;no;no;no;cellular;apr;mon;190;1;999;0;nonexistent;-1.8;93.075;-47.1;1.466;5099.1;no
+55;housemaid;married;basic.4y;no;yes;no;cellular;apr;mon;1435;1;999;0;nonexistent;-1.8;93.075;-47.1;1.466;5099.1;yes
+26;admin.;married;high.school;no;yes;no;telephone;apr;mon;216;1;999;0;nonexistent;-1.8;93.075;-47.1;1.466;5099.1;no
+58;retired;divorced;high.school;no;yes;no;cellular;apr;mon;75;2;999;0;nonexistent;-1.8;93.075;-47.1;1.466;5099.1;no
+55;technician;married;professional.course;no;yes;no;cellular;apr;mon;371;3;999;2;failure;-1.8;93.075;-47.1;1.466;5099.1;no
+43;services;married;professional.course;no;no;no;cellular;apr;mon;230;1;999;0;nonexistent;-1.8;93.075;-47.1;1.466;5099.1;no
+32;blue-collar;married;basic.9y;no;no;no;cellular;apr;mon;41;2;999;0;nonexistent;-1.8;93.075;-47.1;1.466;5099.1;no
+32;blue-collar;married;basic.9y;no;unknown;unknown;cellular;apr;mon;1063;1;999;0;nonexistent;-1.8;93.075;-47.1;1.466;5099.1;yes
+35;technician;married;professional.course;no;yes;no;cellular;apr;mon;272;1;999;0;nonexistent;-1.8;93.075;-47.1;1.466;5099.1;no
+48;admin.;single;high.school;no;no;no;cellular;apr;mon;223;2;999;0;nonexistent;-1.8;93.075;-47.1;1.466;5099.1;no
+40;services;married;high.school;no;no;no;cellular;apr;mon;377;3;999;1;failure;-1.8;93.075;-47.1;1.466;5099.1;no
+57;blue-collar;married;high.school;no;yes;yes;cellular;apr;mon;2316;1;999;0;nonexistent;-1.8;93.075;-47.1;1.466;5099.1;no
+34;blue-collar;married;basic.9y;unknown;yes;no;telephone;apr;mon;1353;2;5;1;success;-1.8;93.075;-47.1;1.466;5099.1;yes
+29;technician;single;professional.course;no;yes;no;cellular;apr;mon;740;3;999;0;nonexistent;-1.8;93.075;-47.1;1.466;5099.1;yes
+37;blue-collar;married;basic.6y;no;yes;no;cellular;apr;mon;1138;2;999;1;failure;-1.8;93.075;-47.1;1.466;5099.1;yes
+38;blue-collar;married;basic.9y;no;no;no;cellular;apr;mon;357;2;999;1;failure;-1.8;93.075;-47.1;1.466;5099.1;no
+42;technician;married;basic.9y;no;no;no;cellular;apr;mon;441;4;999;0;nonexistent;-1.8;93.075;-47.1;1.466;5099.1;no
+53;blue-collar;married;basic.4y;unknown;no;no;cellular;apr;mon;165;4;999;0;nonexistent;-1.8;93.075;-47.1;1.466;5099.1;no
+38;blue-collar;married;basic.9y;no;no;yes;cellular;apr;mon;276;2;999;0;nonexistent;-1.8;93.075;-47.1;1.466;5099.1;no
+46;blue-collar;married;basic.9y;unknown;yes;no;telephone;apr;mon;125;3;999;1;failure;-1.8;93.075;-47.1;1.466;5099.1;no
+51;admin.;divorced;professional.course;no;no;yes;cellular;apr;mon;583;3;999;0;nonexistent;-1.8;93.075;-47.1;1.466;5099.1;no
+56;management;married;university.degree;no;no;no;cellular;apr;tue;72;5;999;0;nonexistent;-1.8;93.075;-47.1;1.453;5099.1;no
+60;retired;divorced;basic.4y;no;no;no;cellular;apr;tue;465;4;999;0;nonexistent;-1.8;93.075;-47.1;1.453;5099.1;yes
+19;student;single;basic.9y;no;no;no;cellular;apr;tue;43;3;999;0;nonexistent;-1.8;93.075;-47.1;1.453;5099.1;no
+32;technician;single;university.degree;no;yes;no;cellular;apr;tue;60;3;999;0;nonexistent;-1.8;93.075;-47.1;1.453;5099.1;no
+57;blue-collar;married;high.school;no;yes;no;cellular;apr;tue;355;3;999;0;nonexistent;-1.8;93.075;-47.1;1.453;5099.1;no
+39;technician;married;basic.6y;no;yes;no;cellular;apr;tue;226;2;999;0;nonexistent;-1.8;93.075;-47.1;1.453;5099.1;no
+43;blue-collar;married;basic.9y;unknown;no;no;cellular;apr;tue;608;1;999;1;failure;-1.8;93.075;-47.1;1.453;5099.1;yes
+43;blue-collar;married;basic.9y;unknown;yes;yes;cellular;apr;tue;1096;1;999;0;nonexistent;-1.8;93.075;-47.1;1.453;5099.1;no
+35;admin.;married;high.school;no;no;no;cellular;apr;tue;327;2;999;1;failure;-1.8;93.075;-47.1;1.453;5099.1;no
+34;admin.;single;high.school;no;no;no;cellular;apr;tue;231;1;999;0;nonexistent;-1.8;93.075;-47.1;1.453;5099.1;no
+44;technician;divorced;professional.course;no;no;no;cellular;apr;tue;208;1;999;0;nonexistent;-1.8;93.075;-47.1;1.453;5099.1;no
+39;blue-collar;married;basic.4y;no;no;no;cellular;apr;tue;91;1;999;1;failure;-1.8;93.075;-47.1;1.453;5099.1;no
+35;blue-collar;married;basic.9y;no;no;no;cellular;apr;tue;381;1;999;1;failure;-1.8;93.075;-47.1;1.453;5099.1;no
+41;admin.;married;university.degree;no;yes;no;cellular;apr;tue;183;1;999;1;failure;-1.8;93.075;-47.1;1.453;5099.1;no
+22;student;single;high.school;no;no;no;cellular;apr;tue;194;2;999;0;nonexistent;-1.8;93.075;-47.1;1.453;5099.1;no
+41;admin.;married;university.degree;no;yes;yes;cellular;apr;tue;103;1;999;0;nonexistent;-1.8;93.075;-47.1;1.453;5099.1;no
+41;admin.;married;university.degree;no;no;no;cellular;apr;tue;463;1;999;0;nonexistent;-1.8;93.075;-47.1;1.453;5099.1;yes
+40;blue-collar;married;basic.9y;no;no;yes;cellular;apr;tue;479;1;999;0;nonexistent;-1.8;93.075;-47.1;1.453;5099.1;no
+40;blue-collar;married;basic.9y;no;no;no;cellular;apr;tue;354;1;999;0;nonexistent;-1.8;93.075;-47.1;1.453;5099.1;no
+46;admin.;divorced;high.school;no;no;no;cellular;apr;tue;345;2;999;0;nonexistent;-1.8;93.075;-47.1;1.453;5099.1;no
+45;services;married;professional.course;no;no;no;cellular;apr;tue;329;1;999;1;failure;-1.8;93.075;-47.1;1.453;5099.1;no
+40;self-employed;married;professional.course;unknown;no;no;cellular;apr;tue;210;1;999;1;failure;-1.8;93.075;-47.1;1.453;5099.1;no
+36;blue-collar;married;basic.9y;no;yes;no;cellular;apr;tue;226;1;999;0;nonexistent;-1.8;93.075;-47.1;1.453;5099.1;no
+39;self-employed;married;professional.course;no;no;yes;cellular;apr;tue;389;1;999;0;nonexistent;-1.8;93.075;-47.1;1.453;5099.1;no
+57;blue-collar;married;high.school;no;yes;no;cellular;apr;tue;97;2;999;0;nonexistent;-1.8;93.075;-47.1;1.453;5099.1;no
+36;admin.;divorced;high.school;no;no;no;cellular;apr;tue;197;1;999;0;nonexistent;-1.8;93.075;-47.1;1.453;5099.1;no
+47;blue-collar;single;basic.4y;unknown;no;no;cellular;apr;tue;369;1;999;0;nonexistent;-1.8;93.075;-47.1;1.453;5099.1;no
+45;management;divorced;university.degree;no;no;no;cellular;apr;tue;196;2;999;0;nonexistent;-1.8;93.075;-47.1;1.453;5099.1;no
+34;admin.;single;high.school;no;yes;yes;cellular;apr;tue;2299;2;999;0;nonexistent;-1.8;93.075;-47.1;1.453;5099.1;yes
+41;admin.;married;basic.6y;unknown;no;no;cellular;apr;tue;226;2;999;0;nonexistent;-1.8;93.075;-47.1;1.453;5099.1;no
+46;technician;married;basic.6y;no;no;no;cellular;apr;tue;254;1;999;0;nonexistent;-1.8;93.075;-47.1;1.453;5099.1;no
+32;technician;single;university.degree;no;no;no;cellular;apr;tue;721;4;999;0;nonexistent;-1.8;93.075;-47.1;1.453;5099.1;yes
+40;technician;married;professional.course;no;yes;no;cellular;apr;tue;366;1;999;0;nonexistent;-1.8;93.075;-47.1;1.453;5099.1;no
+31;blue-collar;married;basic.9y;unknown;yes;no;cellular;apr;tue;208;1;999;1;failure;-1.8;93.075;-47.1;1.453;5099.1;no
+40;technician;married;professional.course;no;no;no;cellular;apr;tue;274;1;999;0;nonexistent;-1.8;93.075;-47.1;1.453;5099.1;no
+39;admin.;married;high.school;no;yes;no;telephone;apr;tue;189;1;999;0;nonexistent;-1.8;93.075;-47.1;1.453;5099.1;no
+66;retired;single;university.degree;no;yes;no;cellular;apr;tue;411;1;999;0;nonexistent;-1.8;93.075;-47.1;1.453;5099.1;no
+42;technician;divorced;professional.course;no;yes;no;cellular;apr;tue;157;1;999;1;failure;-1.8;93.075;-47.1;1.453;5099.1;no
+19;student;single;basic.9y;no;yes;no;cellular;apr;tue;299;1;999;0;nonexistent;-1.8;93.075;-47.1;1.453;5099.1;yes
+41;blue-collar;married;basic.9y;no;yes;no;cellular;apr;tue;272;1;999;0;nonexistent;-1.8;93.075;-47.1;1.453;5099.1;no
+42;technician;divorced;professional.course;no;no;no;cellular;apr;tue;615;1;999;1;failure;-1.8;93.075;-47.1;1.453;5099.1;no
+34;management;married;university.degree;no;yes;no;cellular;apr;tue;255;2;999;0;nonexistent;-1.8;93.075;-47.1;1.453;5099.1;no
+28;student;single;university.degree;no;yes;no;cellular;apr;tue;93;3;11;2;failure;-1.8;93.075;-47.1;1.453;5099.1;no
+32;admin.;single;university.degree;no;no;no;cellular;apr;tue;49;2;999;0;nonexistent;-1.8;93.075;-47.1;1.453;5099.1;no
+72;retired;married;basic.4y;no;unknown;unknown;cellular;apr;tue;44;1;999;0;nonexistent;-1.8;93.075;-47.1;1.453;5099.1;no
+72;retired;married;basic.4y;no;no;no;telephone;apr;tue;124;1;999;0;nonexistent;-1.8;93.075;-47.1;1.453;5099.1;no
+38;services;divorced;high.school;unknown;yes;no;cellular;apr;tue;620;1;2;1;success;-1.8;93.075;-47.1;1.453;5099.1;no
+31;blue-collar;married;basic.9y;no;no;no;cellular;apr;tue;84;1;999;1;failure;-1.8;93.075;-47.1;1.453;5099.1;yes
+36;blue-collar;married;basic.9y;no;yes;yes;cellular;apr;tue;99;1;999;0;nonexistent;-1.8;93.075;-47.1;1.453;5099.1;no
+32;technician;single;university.degree;no;no;no;cellular;apr;tue;83;1;999;0;nonexistent;-1.8;93.075;-47.1;1.453;5099.1;no
+45;services;married;high.school;no;no;no;cellular;apr;tue;139;1;999;0;nonexistent;-1.8;93.075;-47.1;1.453;5099.1;no
+38;services;divorced;high.school;unknown;no;no;cellular;apr;tue;311;1;999;1;failure;-1.8;93.075;-47.1;1.453;5099.1;no
+45;services;married;high.school;no;yes;no;cellular;apr;tue;1063;1;999;0;nonexistent;-1.8;93.075;-47.1;1.453;5099.1;no
+38;services;divorced;high.school;unknown;yes;no;cellular;apr;tue;263;2;999;1;failure;-1.8;93.075;-47.1;1.453;5099.1;no
+43;admin.;single;high.school;no;no;no;cellular;apr;tue;487;1;999;0;nonexistent;-1.8;93.075;-47.1;1.453;5099.1;no
+57;blue-collar;married;basic.9y;no;no;no;cellular;apr;tue;304;1;999;0;nonexistent;-1.8;93.075;-47.1;1.453;5099.1;no
+35;unemployed;divorced;university.degree;no;yes;yes;cellular;apr;tue;66;1;999;1;failure;-1.8;93.075;-47.1;1.453;5099.1;no
+35;unemployed;divorced;university.degree;no;no;no;cellular;apr;tue;253;1;999;1;failure;-1.8;93.075;-47.1;1.453;5099.1;no
+40;retired;single;basic.4y;no;yes;yes;cellular;apr;tue;145;1;999;0;nonexistent;-1.8;93.075;-47.1;1.453;5099.1;no
+46;services;married;unknown;no;yes;no;cellular;apr;tue;244;3;999;1;failure;-1.8;93.075;-47.1;1.453;5099.1;no
+25;student;single;high.school;no;no;no;cellular;apr;tue;98;2;999;0;nonexistent;-1.8;93.075;-47.1;1.453;5099.1;no
+36;self-employed;single;university.degree;no;no;yes;cellular;apr;tue;104;2;999;0;nonexistent;-1.8;93.075;-47.1;1.453;5099.1;no
+39;technician;married;basic.6y;no;no;no;cellular;apr;tue;88;3;999;0;nonexistent;-1.8;93.075;-47.1;1.453;5099.1;no
+44;blue-collar;married;basic.9y;no;no;no;cellular;apr;tue;1;1;999;0;nonexistent;-1.8;93.075;-47.1;1.453;5099.1;no
+40;services;married;high.school;no;yes;no;cellular;apr;tue;158;2;999;0;nonexistent;-1.8;93.075;-47.1;1.453;5099.1;no
+40;blue-collar;married;high.school;no;no;no;cellular;apr;tue;245;8;999;0;nonexistent;-1.8;93.075;-47.1;1.453;5099.1;no
+41;blue-collar;married;basic.9y;no;no;no;cellular;apr;tue;161;1;999;1;failure;-1.8;93.075;-47.1;1.453;5099.1;no
+59;services;married;high.school;no;yes;no;cellular;apr;tue;542;3;999;1;failure;-1.8;93.075;-47.1;1.453;5099.1;no
+44;services;divorced;high.school;no;no;no;cellular;apr;tue;265;1;999;0;nonexistent;-1.8;93.075;-47.1;1.453;5099.1;no
+44;services;divorced;high.school;no;no;no;cellular;apr;tue;562;1;999;0;nonexistent;-1.8;93.075;-47.1;1.453;5099.1;no
+44;services;divorced;high.school;no;yes;yes;cellular;apr;tue;895;1;999;0;nonexistent;-1.8;93.075;-47.1;1.453;5099.1;yes
+38;blue-collar;married;basic.4y;no;no;no;cellular;apr;tue;277;1;999;0;nonexistent;-1.8;93.075;-47.1;1.453;5099.1;no
+38;blue-collar;married;basic.4y;no;no;no;cellular;apr;tue;239;1;999;0;nonexistent;-1.8;93.075;-47.1;1.453;5099.1;no
+38;admin.;divorced;high.school;no;no;no;cellular;apr;tue;172;2;999;1;failure;-1.8;93.075;-47.1;1.453;5099.1;no
+33;blue-collar;single;professional.course;no;no;no;cellular;apr;tue;221;2;999;0;nonexistent;-1.8;93.075;-47.1;1.453;5099.1;no
+55;technician;married;high.school;no;yes;yes;cellular;apr;tue;376;3;999;0;nonexistent;-1.8;93.075;-47.1;1.453;5099.1;no
+59;retired;married;basic.4y;no;no;no;telephone;apr;tue;353;4;999;0;nonexistent;-1.8;93.075;-47.1;1.453;5099.1;no
+43;admin.;single;high.school;no;no;no;cellular;apr;tue;216;2;999;1;failure;-1.8;93.075;-47.1;1.453;5099.1;no
+40;blue-collar;married;high.school;no;no;no;cellular;apr;tue;43;3;999;1;failure;-1.8;93.075;-47.1;1.453;5099.1;no
+36;entrepreneur;married;high.school;no;yes;no;cellular;apr;tue;736;7;999;0;nonexistent;-1.8;93.075;-47.1;1.453;5099.1;no
+44;blue-collar;single;basic.9y;no;yes;no;cellular;apr;tue;581;2;999;0;nonexistent;-1.8;93.075;-47.1;1.453;5099.1;no
+27;technician;married;professional.course;no;yes;yes;cellular;apr;wed;163;3;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;no
+27;technician;single;basic.9y;no;no;yes;cellular;apr;wed;79;2;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;no
+46;services;married;high.school;no;no;no;cellular;apr;wed;325;2;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;no
+25;student;single;high.school;no;yes;no;cellular;apr;wed;327;1;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;yes
+25;student;single;high.school;no;yes;no;cellular;apr;wed;117;1;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;yes
+34;services;married;high.school;no;yes;no;cellular;apr;wed;98;1;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;no
+27;technician;single;basic.9y;no;yes;no;cellular;apr;wed;131;1;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;no
+27;technician;single;basic.9y;no;yes;no;cellular;apr;wed;149;1;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;no
+43;technician;single;professional.course;unknown;yes;no;cellular;apr;wed;519;1;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;no
+40;housemaid;married;basic.9y;no;yes;yes;telephone;apr;wed;169;1;999;1;failure;-1.8;93.075;-47.1;1.445;5099.1;no
+32;technician;single;university.degree;no;no;no;cellular;apr;wed;87;1;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;no
+55;admin.;divorced;university.degree;no;yes;no;cellular;apr;wed;628;1;999;1;failure;-1.8;93.075;-47.1;1.445;5099.1;no
+27;admin.;single;university.degree;no;yes;yes;cellular;apr;wed;98;1;999;1;failure;-1.8;93.075;-47.1;1.445;5099.1;no
+55;admin.;divorced;university.degree;no;yes;no;cellular;apr;wed;952;1;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;yes
+61;retired;married;university.degree;no;yes;no;cellular;apr;wed;205;2;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;no
+46;blue-collar;divorced;basic.9y;no;no;yes;cellular;apr;wed;903;1;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;yes
+48;technician;married;professional.course;no;no;no;cellular;apr;wed;95;1;999;1;failure;-1.8;93.075;-47.1;1.445;5099.1;no
+29;technician;married;university.degree;no;yes;no;cellular;apr;wed;58;3;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;no
+32;technician;single;university.degree;no;no;no;cellular;apr;wed;59;3;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;no
+41;blue-collar;married;basic.4y;no;yes;no;cellular;apr;wed;123;1;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;no
+41;blue-collar;married;basic.4y;no;yes;no;cellular;apr;wed;95;1;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;no
+27;technician;single;basic.9y;no;yes;no;telephone;apr;wed;523;2;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;yes
+25;unemployed;single;professional.course;no;yes;no;cellular;apr;wed;97;1;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;no
+25;unemployed;single;professional.course;no;no;no;cellular;apr;wed;268;1;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;no
+49;blue-collar;divorced;basic.4y;unknown;no;no;cellular;apr;wed;430;1;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;no
+27;technician;single;basic.9y;no;yes;no;cellular;apr;wed;88;3;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;no
+39;blue-collar;married;basic.9y;no;yes;no;cellular;apr;wed;120;1;999;1;failure;-1.8;93.075;-47.1;1.445;5099.1;no
+39;blue-collar;married;basic.9y;no;yes;no;cellular;apr;wed;182;1;999;1;failure;-1.8;93.075;-47.1;1.445;5099.1;no
+27;technician;single;basic.9y;no;no;yes;cellular;apr;wed;335;2;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;no
+37;technician;married;university.degree;no;yes;no;telephone;apr;wed;218;1;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;no
+29;blue-collar;single;high.school;no;yes;yes;cellular;apr;wed;2129;1;999;1;failure;-1.8;93.075;-47.1;1.445;5099.1;no
+39;blue-collar;married;basic.9y;unknown;no;yes;cellular;apr;wed;393;6;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;no
+34;services;married;high.school;no;no;no;cellular;apr;wed;462;2;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;no
+39;blue-collar;married;basic.9y;unknown;yes;no;cellular;apr;wed;213;4;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;no
+46;blue-collar;divorced;basic.6y;unknown;no;no;cellular;apr;wed;179;5;999;2;failure;-1.8;93.075;-47.1;1.445;5099.1;no
+38;admin.;married;high.school;no;no;yes;cellular;apr;wed;284;1;999;1;failure;-1.8;93.075;-47.1;1.445;5099.1;no
+48;blue-collar;married;basic.9y;no;yes;no;cellular;apr;wed;1032;3;999;2;failure;-1.8;93.075;-47.1;1.445;5099.1;yes
+36;management;married;university.degree;no;no;yes;cellular;apr;wed;241;1;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;no
+36;housemaid;married;basic.9y;no;yes;no;cellular;apr;wed;291;1;999;1;failure;-1.8;93.075;-47.1;1.445;5099.1;no
+63;retired;married;unknown;no;no;no;cellular;apr;wed;150;1;999;1;failure;-1.8;93.075;-47.1;1.445;5099.1;yes
+63;retired;married;unknown;no;yes;no;telephone;apr;wed;236;1;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;yes
+37;blue-collar;married;basic.4y;no;yes;no;cellular;apr;wed;281;1;5;1;success;-1.8;93.075;-47.1;1.445;5099.1;no
+50;admin.;married;university.degree;no;unknown;unknown;cellular;apr;wed;101;2;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;no
+39;blue-collar;married;basic.9y;unknown;yes;yes;cellular;apr;wed;120;1;999;1;failure;-1.8;93.075;-47.1;1.445;5099.1;no
+47;unemployed;divorced;basic.9y;no;no;no;cellular;apr;wed;125;2;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;no
+63;retired;married;unknown;no;no;no;telephone;apr;wed;185;1;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;no
+28;admin.;married;university.degree;no;yes;no;cellular;apr;wed;261;1;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;no
+51;admin.;single;university.degree;no;yes;yes;cellular;apr;wed;233;1;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;no
+29;admin.;married;university.degree;no;yes;yes;cellular;apr;wed;245;1;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;yes
+25;admin.;single;professional.course;no;yes;no;cellular;apr;wed;67;1;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;no
+47;entrepreneur;married;high.school;no;no;yes;cellular;apr;wed;663;2;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;no
+25;admin.;single;professional.course;no;yes;no;cellular;apr;wed;114;1;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;yes
+29;technician;married;university.degree;no;unknown;unknown;cellular;apr;wed;83;1;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;no
+31;services;married;high.school;no;no;yes;cellular;apr;wed;195;6;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;no
+36;management;married;university.degree;no;no;yes;cellular;apr;wed;180;2;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;no
+82;retired;married;unknown;no;no;no;cellular;apr;wed;321;1;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;yes
+27;technician;single;basic.9y;no;no;no;cellular;apr;wed;34;3;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;no
+46;services;married;high.school;no;yes;no;cellular;apr;wed;201;2;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;no
+24;services;single;high.school;no;yes;no;cellular;apr;wed;209;1;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;yes
+47;admin.;single;university.degree;no;no;no;cellular;apr;wed;167;1;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;no
+35;admin.;single;university.degree;no;yes;no;cellular;apr;wed;58;1;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;no
+38;admin.;married;high.school;no;no;no;cellular;apr;wed;518;2;999;1;failure;-1.8;93.075;-47.1;1.445;5099.1;no
+24;student;single;high.school;no;yes;no;cellular;apr;wed;74;1;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;no
+64;technician;married;professional.course;no;yes;no;cellular;apr;wed;250;1;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;no
+35;admin.;married;high.school;no;yes;no;cellular;apr;wed;1190;1;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;yes
+40;services;divorced;high.school;no;yes;no;cellular;apr;wed;201;1;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;no
+42;blue-collar;married;basic.6y;no;yes;yes;cellular;apr;wed;110;1;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;no
+35;technician;divorced;professional.course;no;yes;no;cellular;apr;wed;405;1;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;no
+40;admin.;divorced;university.degree;no;yes;no;cellular;apr;wed;84;1;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;no
+35;technician;divorced;professional.course;no;yes;no;cellular;apr;wed;612;1;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;no
+35;technician;divorced;professional.course;no;yes;no;cellular;apr;wed;229;1;999;1;failure;-1.8;93.075;-47.1;1.445;5099.1;no
+35;services;divorced;basic.9y;no;no;no;cellular;apr;wed;188;1;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;no
+34;services;married;high.school;no;no;no;cellular;apr;wed;543;2;999;1;failure;-1.8;93.075;-47.1;1.445;5099.1;no
+29;admin.;single;university.degree;no;yes;no;cellular;apr;wed;216;1;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;no
+37;blue-collar;married;basic.4y;no;no;no;cellular;apr;wed;180;2;999;1;failure;-1.8;93.075;-47.1;1.445;5099.1;no
+34;admin.;single;professional.course;no;no;no;cellular;apr;wed;174;1;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;no
+52;blue-collar;married;basic.4y;no;yes;no;cellular;apr;wed;249;1;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;no
+46;blue-collar;divorced;basic.9y;no;no;no;cellular;apr;wed;169;1;999;1;failure;-1.8;93.075;-47.1;1.445;5099.1;no
+37;technician;married;professional.course;unknown;yes;yes;cellular;apr;wed;101;1;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;no
+34;services;divorced;high.school;no;yes;yes;cellular;apr;wed;303;1;999;1;failure;-1.8;93.075;-47.1;1.445;5099.1;no
+58;retired;married;university.degree;no;unknown;unknown;cellular;apr;wed;624;1;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;yes
+40;admin.;divorced;university.degree;no;no;no;cellular;apr;wed;143;2;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;yes
+27;technician;single;basic.9y;no;yes;no;cellular;apr;wed;56;7;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;no
+22;management;single;university.degree;no;yes;no;cellular;apr;wed;179;2;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;no
+64;technician;married;professional.course;no;yes;no;cellular;apr;wed;65;2;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;no
+39;blue-collar;married;basic.9y;no;yes;no;cellular;apr;wed;91;3;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;no
+25;unemployed;single;professional.course;no;no;yes;cellular;apr;wed;274;3;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;no
+35;services;married;high.school;unknown;yes;no;cellular;apr;wed;222;2;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;no
+43;services;married;high.school;no;yes;no;telephone;apr;wed;690;7;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;no
+34;services;married;high.school;no;yes;no;cellular;apr;wed;281;3;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;no
+46;technician;married;basic.6y;unknown;yes;no;cellular;apr;wed;575;2;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;yes
+47;admin.;married;unknown;no;no;yes;cellular;apr;wed;764;2;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;no
+39;services;married;basic.9y;unknown;yes;yes;telephone;apr;wed;93;2;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;no
+38;services;single;high.school;no;yes;no;cellular;apr;wed;1665;3;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;yes
+41;blue-collar;married;basic.4y;no;yes;no;cellular;apr;wed;213;3;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;no
+29;admin.;single;university.degree;no;no;no;cellular;apr;wed;548;2;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;yes
+33;admin.;single;university.degree;no;no;no;cellular;apr;wed;171;2;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;no
+30;unemployed;single;basic.9y;no;no;no;cellular;apr;wed;142;4;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;yes
+46;services;married;high.school;no;yes;no;cellular;apr;wed;417;2;999;2;failure;-1.8;93.075;-47.1;1.445;5099.1;no
+43;self-employed;married;high.school;unknown;yes;no;cellular;apr;wed;902;2;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;no
+29;admin.;married;university.degree;no;yes;no;cellular;apr;wed;350;2;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;yes
+59;admin.;married;high.school;no;yes;no;cellular;apr;wed;101;2;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;no
+31;admin.;single;university.degree;no;yes;no;cellular;apr;wed;124;2;999;0;nonexistent;-1.8;93.075;-47.1;1.445;5099.1;no
+20;student;single;high.school;no;yes;no;cellular;apr;thu;162;4;999;1;failure;-1.8;93.075;-47.1;1.435;5099.1;no
+36;admin.;single;university.degree;no;yes;no;cellular;apr;thu;68;3;999;2;failure;-1.8;93.075;-47.1;1.435;5099.1;no
+37;blue-collar;divorced;basic.9y;unknown;yes;no;cellular;apr;thu;435;2;999;1;failure;-1.8;93.075;-47.1;1.435;5099.1;no
+31;admin.;single;university.degree;no;yes;no;cellular;apr;thu;87;1;999;0;nonexistent;-1.8;93.075;-47.1;1.435;5099.1;no
+21;services;single;high.school;no;yes;no;cellular;apr;thu;374;3;999;0;nonexistent;-1.8;93.075;-47.1;1.435;5099.1;no
+41;admin.;married;university.degree;unknown;yes;yes;telephone;apr;thu;40;1;999;0;nonexistent;-1.8;93.075;-47.1;1.435;5099.1;no
+52;admin.;married;high.school;no;no;no;cellular;apr;thu;312;2;999;0;nonexistent;-1.8;93.075;-47.1;1.435;5099.1;no
+21;services;single;high.school;no;yes;yes;cellular;apr;thu;820;2;999;0;nonexistent;-1.8;93.075;-47.1;1.435;5099.1;no
+41;admin.;single;university.degree;no;yes;no;cellular;apr;thu;328;1;999;0;nonexistent;-1.8;93.075;-47.1;1.435;5099.1;no
+28;services;single;high.school;no;no;no;cellular;apr;thu;528;1;999;0;nonexistent;-1.8;93.075;-47.1;1.435;5099.1;no
+46;technician;single;basic.9y;no;yes;no;cellular;apr;thu;168;1;999;0;nonexistent;-1.8;93.075;-47.1;1.435;5099.1;no
+43;admin.;divorced;high.school;no;unknown;unknown;cellular;apr;thu;105;1;999;1;failure;-1.8;93.075;-47.1;1.435;5099.1;no
+43;technician;married;professional.course;no;no;no;cellular;apr;thu;264;1;999;0;nonexistent;-1.8;93.075;-47.1;1.435;5099.1;no
+36;admin.;single;university.degree;no;yes;no;cellular;apr;thu;592;4;999;1;failure;-1.8;93.075;-47.1;1.435;5099.1;yes
+59;blue-collar;married;basic.4y;unknown;yes;no;cellular;apr;thu;125;6;999;0;nonexistent;-1.8;93.075;-47.1;1.435;5099.1;no
+44;management;divorced;university.degree;no;yes;no;cellular;apr;thu;207;1;999;0;nonexistent;-1.8;93.075;-47.1;1.435;5099.1;no
+24;admin.;single;professional.course;no;yes;no;cellular;apr;thu;125;6;999;0;nonexistent;-1.8;93.075;-47.1;1.435;5099.1;no
+35;services;married;basic.9y;no;yes;no;cellular;apr;thu;150;1;999;0;nonexistent;-1.8;93.075;-47.1;1.435;5099.1;no
+32;self-employed;single;university.degree;no;no;no;cellular;apr;thu;394;1;999;0;nonexistent;-1.8;93.075;-47.1;1.435;5099.1;yes
+35;services;married;basic.9y;no;no;no;cellular;apr;thu;85;1;999;0;nonexistent;-1.8;93.075;-47.1;1.435;5099.1;no
+43;admin.;divorced;high.school;no;yes;no;cellular;apr;thu;448;2;999;1;failure;-1.8;93.075;-47.1;1.435;5099.1;yes
+33;technician;single;university.degree;no;no;no;cellular;apr;thu;657;1;999;0;nonexistent;-1.8;93.075;-47.1;1.435;5099.1;yes
+38;services;married;basic.9y;no;yes;no;cellular;apr;thu;220;1;999;1;failure;-1.8;93.075;-47.1;1.435;5099.1;no
+38;technician;married;high.school;no;no;no;cellular;apr;thu;113;1;999;0;nonexistent;-1.8;93.075;-47.1;1.435;5099.1;no
+37;technician;divorced;professional.course;no;yes;no;cellular;apr;thu;241;1;999;1;failure;-1.8;93.075;-47.1;1.435;5099.1;no
+32;services;divorced;high.school;no;no;no;cellular;apr;thu;765;3;999;0;nonexistent;-1.8;93.075;-47.1;1.435;5099.1;no
+35;entrepreneur;married;university.degree;unknown;yes;no;cellular;apr;thu;311;1;999;1;failure;-1.8;93.075;-47.1;1.435;5099.1;no
+33;technician;single;university.degree;no;unknown;unknown;cellular;apr;thu;527;3;999;0;nonexistent;-1.8;93.075;-47.1;1.435;5099.1;yes
+67;retired;married;university.degree;no;yes;no;telephone;apr;thu;126;4;999;0;nonexistent;-1.8;93.075;-47.1;1.435;5099.1;no
+33;technician;single;university.degree;no;no;no;cellular;apr;thu;304;1;999;0;nonexistent;-1.8;93.075;-47.1;1.435;5099.1;no
+40;self-employed;married;university.degree;no;yes;no;cellular;apr;thu;161;1;999;0;nonexistent;-1.8;93.075;-47.1;1.435;5099.1;no
+40;self-employed;married;university.degree;no;yes;no;cellular;apr;thu;236;1;999;1;failure;-1.8;93.075;-47.1;1.435;5099.1;no
+41;technician;married;university.degree;unknown;no;yes;cellular;apr;thu;272;1;999;1;failure;-1.8;93.075;-47.1;1.435;5099.1;no
+32;blue-collar;married;high.school;no;yes;no;cellular;apr;thu;259;2;999;1;failure;-1.8;93.075;-47.1;1.435;5099.1;no
+51;services;married;high.school;unknown;no;no;cellular;apr;thu;278;3;999;0;nonexistent;-1.8;93.075;-47.1;1.435;5099.1;no
+41;technician;married;university.degree;unknown;yes;yes;cellular;apr;thu;139;1;999;0;nonexistent;-1.8;93.075;-47.1;1.435;5099.1;no
+48;blue-collar;married;basic.9y;unknown;yes;yes;cellular;apr;thu;429;2;999;0;nonexistent;-1.8;93.075;-47.1;1.435;5099.1;no
+33;services;divorced;university.degree;no;yes;no;cellular;apr;thu;230;1;999;0;nonexistent;-1.8;93.075;-47.1;1.435;5099.1;no
+36;admin.;married;university.degree;no;yes;no;cellular;apr;thu;96;4;999;0;nonexistent;-1.8;93.075;-47.1;1.435;5099.1;no
+45;admin.;married;high.school;no;no;yes;cellular;apr;thu;109;2;999;1;failure;-1.8;93.075;-47.1;1.435;5099.1;no
+33;technician;single;university.degree;no;yes;no;cellular;apr;thu;530;1;999;0;nonexistent;-1.8;93.075;-47.1;1.435;5099.1;yes
+33;technician;single;university.degree;no;yes;no;cellular;apr;thu;71;1;999;1;failure;-1.8;93.075;-47.1;1.435;5099.1;no
+30;self-employed;single;university.degree;no;no;no;cellular;apr;thu;159;1;999;0;nonexistent;-1.8;93.075;-47.1;1.435;5099.1;no
+30;self-employed;single;university.degree;no;yes;no;cellular;apr;thu;104;1;999;0;nonexistent;-1.8;93.075;-47.1;1.435;5099.1;no
+30;self-employed;single;university.degree;no;yes;no;cellular;apr;thu;214;1;999;0;nonexistent;-1.8;93.075;-47.1;1.435;5099.1;yes
+30;self-employed;single;university.degree;no;no;no;cellular;apr;thu;184;1;999;0;nonexistent;-1.8;93.075;-47.1;1.435;5099.1;no
+30;self-employed;single;university.degree;no;yes;no;cellular;apr;thu;331;1;999;1;failure;-1.8;93.075;-47.1;1.435;5099.1;yes
+30;self-employed;single;university.degree;no;no;no;cellular;apr;thu;435;1;999;0;nonexistent;-1.8;93.075;-47.1;1.435;5099.1;yes
+30;self-employed;single;university.degree;no;no;no;cellular;apr;thu;188;1;999;0;nonexistent;-1.8;93.075;-47.1;1.435;5099.1;no
+45;admin.;single;unknown;no;yes;no;cellular;apr;thu;62;2;999;1;failure;-1.8;93.075;-47.1;1.435;5099.1;no
+35;services;married;high.school;no;yes;no;cellular;apr;thu;466;2;999;2;failure;-1.8;93.075;-47.1;1.435;5099.1;no
+52;admin.;married;university.degree;no;yes;no;telephone;apr;thu;327;2;999;1;failure;-1.8;93.075;-47.1;1.435;5099.1;no
+42;self-employed;married;university.degree;no;yes;no;cellular;apr;thu;290;2;999;1;failure;-1.8;93.075;-47.1;1.435;5099.1;no
+30;blue-collar;married;basic.4y;no;yes;no;cellular;apr;thu;179;1;999;0;nonexistent;-1.8;93.075;-47.1;1.435;5099.1;yes
+37;technician;divorced;professional.course;no;yes;no;cellular;apr;thu;464;1;999;0;nonexistent;-1.8;93.075;-47.1;1.435;5099.1;no
+46;technician;single;basic.9y;no;no;no;cellular;apr;thu;221;2;999;1;failure;-1.8;93.075;-47.1;1.435;5099.1;no
+49;blue-collar;married;basic.6y;unknown;yes;yes;cellular;apr;thu;504;1;999;0;nonexistent;-1.8;93.075;-47.1;1.435;5099.1;no
+33;self-employed;married;university.degree;no;yes;no;cellular;apr;thu;233;1;999;0;nonexistent;-1.8;93.075;-47.1;1.435;5099.1;yes
+30;self-employed;single;university.degree;no;no;no;cellular;apr;thu;245;3;999;0;nonexistent;-1.8;93.075;-47.1;1.435;5099.1;yes
+52;admin.;married;high.school;no;yes;no;cellular;apr;thu;152;2;999;1;failure;-1.8;93.075;-47.1;1.435;5099.1;no
+45;entrepreneur;divorced;university.degree;no;yes;no;cellular;apr;thu;132;1;999;0;nonexistent;-1.8;93.075;-47.1;1.435;5099.1;no
+33;technician;single;university.degree;no;yes;no;cellular;apr;thu;106;2;999;0;nonexistent;-1.8;93.075;-47.1;1.435;5099.1;no
+50;blue-collar;married;high.school;unknown;no;no;cellular;apr;thu;339;1;999;0;nonexistent;-1.8;93.075;-47.1;1.435;5099.1;no
+30;self-employed;single;university.degree;no;yes;no;cellular;apr;thu;152;2;999;0;nonexistent;-1.8;93.075;-47.1;1.435;5099.1;yes
+36;retired;married;high.school;no;yes;no;cellular;apr;thu;98;6;999;0;nonexistent;-1.8;93.075;-47.1;1.435;5099.1;no
+41;blue-collar;married;basic.9y;no;unknown;unknown;cellular;apr;thu;268;1;999;1;failure;-1.8;93.075;-47.1;1.435;5099.1;no
+47;technician;divorced;professional.course;no;no;no;cellular;apr;thu;337;2;999;0;nonexistent;-1.8;93.075;-47.1;1.435;5099.1;no
+54;self-employed;married;basic.9y;no;yes;no;cellular;apr;thu;133;1;999;0;nonexistent;-1.8;93.075;-47.1;1.435;5099.1;no
+43;entrepreneur;married;high.school;no;yes;no;cellular;apr;thu;90;2;999;0;nonexistent;-1.8;93.075;-47.1;1.435;5099.1;no
+28;services;single;high.school;no;yes;no;cellular;apr;thu;322;2;999;0;nonexistent;-1.8;93.075;-47.1;1.435;5099.1;no
+46;technician;single;basic.9y;no;no;no;cellular;apr;thu;385;2;999;1;failure;-1.8;93.075;-47.1;1.435;5099.1;no
+45;admin.;married;university.degree;no;yes;yes;cellular;apr;thu;317;5;999;0;nonexistent;-1.8;93.075;-47.1;1.435;5099.1;yes
+36;admin.;single;university.degree;no;no;no;cellular;apr;thu;208;12;999;1;failure;-1.8;93.075;-47.1;1.435;5099.1;no
+48;blue-collar;married;basic.4y;unknown;yes;no;cellular;apr;thu;627;2;5;3;failure;-1.8;93.075;-47.1;1.435;5099.1;no
+29;blue-collar;married;basic.9y;no;yes;no;cellular;apr;thu;1042;2;999;0;nonexistent;-1.8;93.075;-47.1;1.435;5099.1;yes
+41;admin.;married;university.degree;unknown;yes;yes;cellular;apr;thu;240;3;999;0;nonexistent;-1.8;93.075;-47.1;1.435;5099.1;no
+40;services;married;basic.6y;unknown;no;no;cellular;apr;thu;140;2;999;2;failure;-1.8;93.075;-47.1;1.435;5099.1;no
+36;blue-collar;married;basic.9y;no;yes;no;cellular;apr;thu;490;3;999;2;failure;-1.8;93.075;-47.1;1.435;5099.1;yes
+57;services;married;high.school;no;yes;no;cellular;apr;thu;275;2;999;1;failure;-1.8;93.075;-47.1;1.435;5099.1;no
+37;blue-collar;married;professional.course;no;no;no;cellular;apr;thu;188;1;999;0;nonexistent;-1.8;93.075;-47.1;1.435;5099.1;no
+33;services;married;high.school;no;yes;no;cellular;apr;thu;236;1;999;1;failure;-1.8;93.075;-47.1;1.435;5099.1;no
+30;admin.;single;university.degree;no;yes;no;telephone;apr;tue;563;2;999;0;nonexistent;-1.8;93.075;-47.1;1.423;5099.1;no
+26;unemployed;single;university.degree;no;yes;no;cellular;apr;tue;136;3;999;0;nonexistent;-1.8;93.075;-47.1;1.423;5099.1;no
+41;technician;married;high.school;no;yes;yes;cellular;apr;tue;142;2;999;0;nonexistent;-1.8;93.075;-47.1;1.423;5099.1;no
+36;blue-collar;married;basic.4y;unknown;no;no;cellular;apr;tue;283;2;999;0;nonexistent;-1.8;93.075;-47.1;1.423;5099.1;no
+36;blue-collar;married;basic.9y;no;no;no;cellular;apr;tue;129;1;999;0;nonexistent;-1.8;93.075;-47.1;1.423;5099.1;no
+34;self-employed;single;university.degree;no;no;no;telephone;apr;tue;86;6;999;0;nonexistent;-1.8;93.075;-47.1;1.423;5099.1;no
+30;admin.;married;university.degree;no;no;no;cellular;apr;tue;259;1;999;0;nonexistent;-1.8;93.075;-47.1;1.423;5099.1;no
+24;admin.;single;high.school;no;yes;no;cellular;apr;tue;255;1;999;1;failure;-1.8;93.075;-47.1;1.423;5099.1;no
+41;technician;married;professional.course;no;yes;no;cellular;apr;tue;466;5;999;1;failure;-1.8;93.075;-47.1;1.423;5099.1;yes
+41;admin.;divorced;university.degree;no;no;no;cellular;apr;tue;82;4;999;0;nonexistent;-1.8;93.075;-47.1;1.423;5099.1;no
+34;admin.;married;university.degree;no;yes;no;cellular;apr;tue;565;2;999;0;nonexistent;-1.8;93.075;-47.1;1.423;5099.1;no
+42;admin.;single;professional.course;no;yes;no;cellular;apr;tue;251;1;999;0;nonexistent;-1.8;93.075;-47.1;1.423;5099.1;no
+42;admin.;single;professional.course;no;no;no;cellular;apr;tue;262;1;999;0;nonexistent;-1.8;93.075;-47.1;1.423;5099.1;no
+45;blue-collar;married;basic.9y;unknown;yes;no;cellular;apr;tue;269;3;999;1;failure;-1.8;93.075;-47.1;1.423;5099.1;no
+37;admin.;single;university.degree;no;no;no;cellular;apr;tue;283;3;999;0;nonexistent;-1.8;93.075;-47.1;1.423;5099.1;no
+73;retired;divorced;basic.4y;no;no;yes;cellular;apr;tue;342;1;999;0;nonexistent;-1.8;93.075;-47.1;1.423;5099.1;yes
+45;blue-collar;married;basic.9y;unknown;yes;no;cellular;apr;tue;427;4;999;1;failure;-1.8;93.075;-47.1;1.423;5099.1;no
+34;admin.;single;university.degree;no;yes;no;cellular;apr;tue;255;7;999;0;nonexistent;-1.8;93.075;-47.1;1.423;5099.1;no
+38;blue-collar;married;basic.9y;no;no;no;cellular;apr;tue;110;1;999;1;failure;-1.8;93.075;-47.1;1.423;5099.1;no
+34;admin.;single;university.degree;no;yes;no;cellular;apr;tue;461;1;999;0;nonexistent;-1.8;93.075;-47.1;1.423;5099.1;yes
+46;admin.;married;professional.course;no;yes;no;cellular;apr;tue;62;1;999;0;nonexistent;-1.8;93.075;-47.1;1.423;5099.1;no
+34;admin.;single;university.degree;no;yes;no;cellular;apr;tue;145;1;999;0;nonexistent;-1.8;93.075;-47.1;1.423;5099.1;no
+42;services;single;basic.6y;no;yes;yes;cellular;apr;tue;213;3;999;0;nonexistent;-1.8;93.075;-47.1;1.423;5099.1;no
+59;blue-collar;married;basic.9y;no;no;no;telephone;apr;tue;111;3;999;1;failure;-1.8;93.075;-47.1;1.423;5099.1;no
+46;blue-collar;divorced;basic.9y;no;yes;no;telephone;apr;tue;266;3;999;0;nonexistent;-1.8;93.075;-47.1;1.423;5099.1;no
+34;self-employed;single;university.degree;no;yes;no;telephone;apr;tue;118;6;999;0;nonexistent;-1.8;93.075;-47.1;1.423;5099.1;no
+34;admin.;single;university.degree;no;no;no;cellular;apr;tue;142;1;999;0;nonexistent;-1.8;93.075;-47.1;1.423;5099.1;yes
+35;blue-collar;married;basic.9y;no;yes;no;cellular;apr;tue;855;1;999;0;nonexistent;-1.8;93.075;-47.1;1.423;5099.1;no
+34;admin.;single;university.degree;no;no;no;cellular;apr;tue;344;1;999;1;failure;-1.8;93.075;-47.1;1.423;5099.1;yes
+34;unemployed;single;university.degree;no;yes;no;cellular;apr;tue;125;1;999;0;nonexistent;-1.8;93.075;-47.1;1.423;5099.1;yes
+24;services;single;high.school;no;yes;no;cellular;apr;tue;850;2;999;0;nonexistent;-1.8;93.075;-47.1;1.423;5099.1;yes
+48;blue-collar;single;basic.9y;no;yes;no;cellular;apr;tue;85;1;999;1;failure;-1.8;93.075;-47.1;1.423;5099.1;no
+34;admin.;single;university.degree;no;yes;yes;cellular;apr;tue;441;2;999;0;nonexistent;-1.8;93.075;-47.1;1.423;5099.1;no
+24;services;single;high.school;no;yes;no;telephone;apr;tue;104;1;999;1;failure;-1.8;93.075;-47.1;1.423;5099.1;no
+48;blue-collar;single;basic.9y;no;yes;no;cellular;apr;tue;179;1;999;0;nonexistent;-1.8;93.075;-47.1;1.423;5099.1;no
+24;services;single;high.school;no;yes;no;cellular;apr;tue;114;1;999;0;nonexistent;-1.8;93.075;-47.1;1.423;5099.1;no
+24;services;single;high.school;no;yes;no;cellular;apr;tue;114;1;999;0;nonexistent;-1.8;93.075;-47.1;1.423;5099.1;no
+59;retired;married;university.degree;no;no;no;cellular;apr;tue;1073;1;999;0;nonexistent;-1.8;93.075;-47.1;1.423;5099.1;yes
+47;self-employed;married;basic.9y;no;yes;no;telephone;apr;tue;226;5;999;0;nonexistent;-1.8;93.075;-47.1;1.423;5099.1;no
+34;self-employed;single;university.degree;no;no;no;cellular;apr;tue;94;5;999;0;nonexistent;-1.8;93.075;-47.1;1.423;5099.1;no
+24;services;single;high.school;no;yes;no;cellular;apr;tue;1594;1;999;1;failure;-1.8;93.075;-47.1;1.423;5099.1;yes
+24;services;single;high.school;no;no;no;cellular;apr;tue;450;1;999;0;nonexistent;-1.8;93.075;-47.1;1.423;5099.1;yes
+55;admin.;single;high.school;no;yes;no;cellular;apr;tue;461;2;999;1;failure;-1.8;93.075;-47.1;1.423;5099.1;no
+30;admin.;single;university.degree;no;no;yes;cellular;apr;tue;505;1;999;0;nonexistent;-1.8;93.075;-47.1;1.423;5099.1;yes
+55;admin.;married;high.school;no;no;no;cellular;apr;tue;163;2;999;0;nonexistent;-1.8;93.075;-47.1;1.423;5099.1;no
+42;self-employed;married;university.degree;no;no;no;cellular;apr;tue;133;2;999;0;nonexistent;-1.8;93.075;-47.1;1.423;5099.1;yes
+26;unemployed;single;university.degree;no;yes;no;cellular;apr;tue;62;1;999;0;nonexistent;-1.8;93.075;-47.1;1.423;5099.1;no
+26;unemployed;single;university.degree;no;yes;no;cellular;apr;tue;184;1;999;0;nonexistent;-1.8;93.075;-47.1;1.423;5099.1;yes
+26;unemployed;single;university.degree;no;yes;no;cellular;apr;tue;168;1;999;0;nonexistent;-1.8;93.075;-47.1;1.423;5099.1;yes
+28;blue-collar;single;university.degree;no;yes;no;cellular;apr;tue;49;1;999;0;nonexistent;-1.8;93.075;-47.1;1.423;5099.1;no
+35;admin.;married;university.degree;no;no;no;cellular;apr;tue;72;1;999;0;nonexistent;-1.8;93.075;-47.1;1.423;5099.1;no
+44;blue-collar;married;basic.6y;no;no;no;cellular;apr;tue;314;1;999;0;nonexistent;-1.8;93.075;-47.1;1.423;5099.1;no
+30;admin.;single;university.degree;no;yes;yes;cellular;apr;tue;178;1;999;0;nonexistent;-1.8;93.075;-47.1;1.423;5099.1;no
+57;technician;married;professional.course;no;yes;no;cellular;apr;tue;232;1;999;0;nonexistent;-1.8;93.075;-47.1;1.423;5099.1;no
+57;technician;married;professional.course;no;yes;no;cellular;apr;tue;324;1;999;0;nonexistent;-1.8;93.075;-47.1;1.423;5099.1;yes
+45;blue-collar;married;basic.9y;unknown;yes;no;cellular;apr;tue;252;5;999;0;nonexistent;-1.8;93.075;-47.1;1.423;5099.1;no
+56;management;married;basic.9y;unknown;no;no;cellular;apr;tue;584;1;999;0;nonexistent;-1.8;93.075;-47.1;1.423;5099.1;no
+30;admin.;married;university.degree;no;no;no;cellular;apr;tue;161;1;999;0;nonexistent;-1.8;93.075;-47.1;1.423;5099.1;yes
+30;admin.;married;university.degree;no;yes;no;cellular;apr;tue;496;1;999;0;nonexistent;-1.8;93.075;-47.1;1.423;5099.1;yes
+45;blue-collar;married;basic.9y;unknown;yes;no;cellular;apr;tue;95;2;999;0;nonexistent;-1.8;93.075;-47.1;1.423;5099.1;no
+46;blue-collar;divorced;basic.9y;no;no;no;cellular;apr;tue;332;3;999;0;nonexistent;-1.8;93.075;-47.1;1.423;5099.1;no
+30;admin.;married;university.degree;no;yes;yes;cellular;apr;tue;111;1;999;0;nonexistent;-1.8;93.075;-47.1;1.423;5099.1;yes
+39;admin.;married;university.degree;no;yes;yes;cellular;apr;tue;308;2;999;0;nonexistent;-1.8;93.075;-47.1;1.423;5099.1;no
+71;retired;married;basic.4y;no;no;no;telephone;apr;tue;129;2;999;0;nonexistent;-1.8;93.075;-47.1;1.423;5099.1;no
+25;admin.;single;university.degree;no;no;no;cellular;apr;tue;247;1;999;0;nonexistent;-1.8;93.075;-47.1;1.423;5099.1;no
+28;blue-collar;single;university.degree;no;no;no;cellular;apr;tue;107;3;999;0;nonexistent;-1.8;93.075;-47.1;1.423;5099.1;yes
+42;self-employed;married;university.degree;no;yes;no;cellular;apr;tue;216;1;999;1;failure;-1.8;93.075;-47.1;1.423;5099.1;yes
+46;technician;married;professional.course;no;no;no;cellular;apr;tue;279;1;999;0;nonexistent;-1.8;93.075;-47.1;1.423;5099.1;yes
+31;blue-collar;single;unknown;no;no;no;cellular;apr;tue;424;2;999;2;failure;-1.8;93.075;-47.1;1.423;5099.1;no
+34;blue-collar;single;high.school;no;no;no;cellular;apr;tue;259;2;999;2;failure;-1.8;93.075;-47.1;1.423;5099.1;no
+57;admin.;married;high.school;no;yes;no;cellular;apr;tue;111;1;999;0;nonexistent;-1.8;93.075;-47.1;1.423;5099.1;yes
+33;management;married;university.degree;unknown;yes;yes;cellular;apr;tue;258;8;999;0;nonexistent;-1.8;93.075;-47.1;1.423;5099.1;no
+61;retired;married;university.degree;no;yes;no;cellular;apr;tue;216;1;999;0;nonexistent;-1.8;93.075;-47.1;1.423;5099.1;yes
+36;services;married;high.school;no;unknown;unknown;cellular;apr;tue;104;3;999;0;nonexistent;-1.8;93.075;-47.1;1.423;5099.1;no
+45;admin.;single;basic.9y;no;yes;yes;cellular;apr;tue;119;2;999;1;failure;-1.8;93.075;-47.1;1.423;5099.1;no
+36;admin.;married;university.degree;no;no;no;cellular;apr;tue;108;6;999;1;failure;-1.8;93.075;-47.1;1.423;5099.1;no
+45;blue-collar;married;basic.9y;unknown;yes;no;cellular;apr;tue;72;4;999;0;nonexistent;-1.8;93.075;-47.1;1.423;5099.1;no
+42;admin.;married;university.degree;no;yes;yes;cellular;apr;tue;101;5;999;0;nonexistent;-1.8;93.075;-47.1;1.423;5099.1;no
+69;retired;divorced;university.degree;no;yes;no;cellular;apr;tue;207;2;999;0;nonexistent;-1.8;93.075;-47.1;1.423;5099.1;yes
+26;unemployed;single;university.degree;no;yes;no;telephone;apr;tue;300;3;999;0;nonexistent;-1.8;93.075;-47.1;1.423;5099.1;yes
+28;admin.;single;university.degree;no;yes;no;cellular;apr;tue;295;5;999;0;nonexistent;-1.8;93.075;-47.1;1.423;5099.1;yes
+23;technician;single;professional.course;no;no;yes;cellular;apr;tue;422;4;999;0;nonexistent;-1.8;93.075;-47.1;1.423;5099.1;no
+29;admin.;single;university.degree;no;yes;no;telephone;apr;tue;61;3;999;0;nonexistent;-1.8;93.075;-47.1;1.423;5099.1;no
+38;admin.;married;university.degree;no;yes;no;cellular;apr;tue;108;2;999;0;nonexistent;-1.8;93.075;-47.1;1.423;5099.1;no
+47;blue-collar;married;professional.course;no;yes;no;cellular;apr;tue;225;4;999;1;failure;-1.8;93.075;-47.1;1.423;5099.1;no
+41;blue-collar;married;basic.6y;no;yes;yes;cellular;apr;tue;608;2;999;0;nonexistent;-1.8;93.075;-47.1;1.423;5099.1;no
+42;blue-collar;married;basic.9y;unknown;yes;no;cellular;apr;tue;189;2;999;0;nonexistent;-1.8;93.075;-47.1;1.423;5099.1;no
+46;admin.;divorced;university.degree;no;yes;no;cellular;apr;wed;201;6;999;1;failure;-1.8;93.075;-47.1;1.415;5099.1;no
+49;admin.;married;unknown;no;yes;yes;cellular;apr;wed;61;3;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;no
+70;retired;married;basic.4y;no;yes;no;cellular;apr;wed;223;2;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;yes
+67;retired;married;professional.course;no;no;no;telephone;apr;wed;47;2;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;no
+39;technician;single;professional.course;no;yes;no;cellular;apr;wed;226;2;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;no
+56;admin.;married;basic.9y;no;yes;no;cellular;apr;wed;431;2;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;no
+23;student;single;basic.4y;no;yes;no;cellular;apr;wed;1372;4;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;no
+37;self-employed;divorced;basic.9y;no;yes;no;cellular;apr;wed;343;2;999;1;failure;-1.8;93.075;-47.1;1.415;5099.1;no
+56;entrepreneur;married;basic.9y;no;yes;no;cellular;apr;wed;141;12;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;no
+38;technician;divorced;university.degree;no;no;no;cellular;apr;wed;141;2;999;2;failure;-1.8;93.075;-47.1;1.415;5099.1;no
+32;unemployed;single;university.degree;no;yes;no;telephone;apr;wed;165;2;999;1;failure;-1.8;93.075;-47.1;1.415;5099.1;yes
+34;technician;divorced;professional.course;no;yes;no;cellular;apr;wed;139;2;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;no
+70;retired;married;basic.4y;no;no;no;cellular;apr;wed;167;2;999;1;failure;-1.8;93.075;-47.1;1.415;5099.1;yes
+56;blue-collar;married;basic.9y;unknown;yes;no;cellular;apr;wed;332;2;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;no
+56;blue-collar;married;basic.9y;unknown;no;yes;cellular;apr;wed;87;2;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;no
+43;management;married;basic.6y;no;no;no;cellular;apr;wed;945;1;999;1;failure;-1.8;93.075;-47.1;1.415;5099.1;yes
+25;student;single;high.school;no;yes;yes;cellular;apr;wed;82;1;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;yes
+47;admin.;married;high.school;no;yes;no;cellular;apr;wed;903;2;999;1;failure;-1.8;93.075;-47.1;1.415;5099.1;yes
+58;retired;divorced;university.degree;no;yes;no;cellular;apr;wed;282;2;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;yes
+30;admin.;married;university.degree;no;no;yes;cellular;apr;wed;389;2;999;1;failure;-1.8;93.075;-47.1;1.415;5099.1;no
+45;services;married;high.school;no;yes;no;cellular;apr;wed;651;4;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;no
+30;management;single;university.degree;no;yes;no;cellular;apr;wed;692;1;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;no
+29;unemployed;single;high.school;no;no;no;cellular;apr;wed;217;2;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;no
+36;self-employed;divorced;basic.9y;no;yes;no;cellular;apr;wed;93;1;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;no
+66;retired;married;basic.4y;no;yes;no;cellular;apr;wed;253;2;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;no
+44;management;married;basic.6y;no;yes;no;cellular;apr;wed;139;1;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;no
+44;management;married;basic.6y;no;yes;yes;cellular;apr;wed;154;1;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;no
+40;management;single;basic.9y;no;yes;no;cellular;apr;wed;601;1;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;no
+53;retired;married;high.school;no;no;no;telephone;apr;wed;44;1;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;no
+53;retired;married;high.school;no;no;no;cellular;apr;wed;349;1;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;no
+35;technician;married;professional.course;no;no;no;cellular;apr;wed;225;2;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;no
+41;entrepreneur;single;professional.course;no;yes;no;cellular;apr;wed;103;2;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;no
+44;technician;single;professional.course;no;yes;no;cellular;apr;wed;75;1;999;1;failure;-1.8;93.075;-47.1;1.415;5099.1;no
+35;technician;married;professional.course;no;yes;no;cellular;apr;wed;251;1;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;no
+44;technician;single;professional.course;no;no;no;cellular;apr;wed;609;1;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;no
+41;services;single;high.school;no;no;no;cellular;apr;wed;134;1;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;no
+32;admin.;married;university.degree;no;yes;no;cellular;apr;wed;166;1;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;no
+41;services;married;high.school;no;yes;yes;cellular;apr;wed;301;1;999;1;failure;-1.8;93.075;-47.1;1.415;5099.1;no
+32;admin.;married;university.degree;no;yes;no;cellular;apr;wed;177;1;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;no
+52;entrepreneur;married;university.degree;no;yes;no;cellular;apr;wed;126;1;999;2;failure;-1.8;93.075;-47.1;1.415;5099.1;no
+44;technician;married;professional.course;no;yes;no;cellular;apr;wed;56;1;999;1;failure;-1.8;93.075;-47.1;1.415;5099.1;no
+60;housemaid;married;basic.4y;no;no;no;cellular;apr;wed;85;1;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;no
+40;blue-collar;divorced;unknown;unknown;no;no;cellular;apr;wed;149;1;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;no
+59;admin.;divorced;university.degree;no;no;no;cellular;apr;wed;194;1;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;no
+49;management;married;university.degree;no;no;no;cellular;apr;wed;1214;1;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;yes
+21;admin.;single;high.school;no;yes;no;cellular;apr;wed;122;1;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;no
+32;unemployed;single;university.degree;no;no;no;cellular;apr;wed;110;1;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;yes
+32;unemployed;single;university.degree;no;yes;no;cellular;apr;wed;187;1;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;no
+44;unemployed;divorced;basic.9y;no;no;no;cellular;apr;wed;114;1;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;no
+36;housemaid;married;basic.4y;no;yes;no;cellular;apr;wed;310;7;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;no
+42;blue-collar;married;basic.4y;no;no;no;cellular;apr;wed;1217;3;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;yes
+29;technician;single;university.degree;no;yes;no;cellular;apr;wed;389;2;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;yes
+58;retired;divorced;university.degree;no;yes;no;cellular;apr;wed;48;1;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;no
+26;admin.;single;high.school;no;no;no;cellular;apr;wed;171;1;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;yes
+66;retired;married;basic.4y;no;yes;no;cellular;apr;wed;512;11;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;yes
+32;unemployed;single;university.degree;no;yes;no;cellular;apr;wed;125;2;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;no
+44;technician;single;professional.course;no;yes;no;cellular;apr;wed;412;2;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;no
+32;admin.;single;high.school;no;yes;yes;cellular;apr;wed;120;1;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;no
+70;retired;married;basic.4y;no;no;no;cellular;apr;wed;86;1;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;no
+67;retired;married;professional.course;no;yes;no;cellular;apr;wed;140;1;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;yes
+27;technician;single;professional.course;no;no;no;cellular;apr;wed;72;1;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;no
+37;admin.;married;university.degree;no;yes;no;cellular;apr;wed;135;1;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;yes
+52;blue-collar;married;basic.4y;no;yes;no;cellular;apr;wed;437;1;999;1;failure;-1.8;93.075;-47.1;1.415;5099.1;no
+33;admin.;married;university.degree;no;no;no;cellular;apr;wed;441;1;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;yes
+52;blue-collar;married;basic.4y;no;no;no;cellular;apr;wed;358;1;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;no
+33;admin.;married;university.degree;no;yes;no;cellular;apr;wed;355;1;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;yes
+57;technician;married;high.school;no;yes;no;cellular;apr;wed;82;1;999;1;failure;-1.8;93.075;-47.1;1.415;5099.1;no
+26;admin.;single;high.school;no;yes;no;telephone;apr;wed;170;3;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;yes
+57;technician;married;high.school;no;no;no;cellular;apr;wed;469;1;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;no
+57;technician;married;high.school;no;yes;no;cellular;apr;wed;99;1;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;no
+58;retired;divorced;university.degree;no;yes;no;cellular;apr;wed;129;1;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;yes
+31;admin.;married;university.degree;no;no;no;telephone;apr;wed;118;3;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;yes
+43;management;married;basic.6y;no;no;no;cellular;apr;wed;121;1;999;1;failure;-1.8;93.075;-47.1;1.415;5099.1;no
+25;student;single;high.school;no;no;no;telephone;apr;wed;405;1;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;yes
+25;student;single;high.school;no;no;no;cellular;apr;wed;442;1;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;no
+25;student;single;high.school;no;no;no;cellular;apr;wed;54;1;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;no
+30;admin.;married;university.degree;no;no;no;cellular;apr;wed;1038;2;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;yes
+33;admin.;single;university.degree;no;yes;yes;telephone;apr;wed;117;1;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;no
+31;admin.;single;university.degree;no;no;no;telephone;apr;wed;85;2;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;no
+55;blue-collar;single;basic.4y;no;yes;no;cellular;apr;wed;171;2;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;no
+37;services;married;basic.9y;no;yes;no;cellular;apr;wed;103;2;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;no
+33;blue-collar;married;basic.9y;no;no;no;cellular;apr;wed;397;2;999;1;failure;-1.8;93.075;-47.1;1.415;5099.1;no
+51;management;married;unknown;no;yes;no;cellular;apr;wed;309;2;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;no
+37;admin.;married;university.degree;no;yes;no;cellular;apr;wed;142;5;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;no
+56;entrepreneur;married;basic.9y;no;yes;no;cellular;apr;wed;185;2;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;no
+30;admin.;married;university.degree;no;no;no;cellular;apr;wed;520;3;999;1;failure;-1.8;93.075;-47.1;1.415;5099.1;no
+66;retired;married;basic.4y;no;no;yes;cellular;apr;wed;139;5;999;1;failure;-1.8;93.075;-47.1;1.415;5099.1;yes
+30;management;single;university.degree;no;no;no;cellular;apr;wed;244;3;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;no
+45;management;married;university.degree;no;no;no;telephone;apr;wed;221;4;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;no
+54;blue-collar;married;basic.4y;no;no;no;cellular;apr;wed;266;2;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;no
+43;blue-collar;married;basic.6y;no;no;no;cellular;apr;wed;623;2;999;2;failure;-1.8;93.075;-47.1;1.415;5099.1;no
+71;retired;married;high.school;no;yes;no;cellular;apr;wed;162;2;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;no
+39;technician;single;professional.course;no;yes;no;cellular;apr;wed;80;3;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;no
+40;blue-collar;single;basic.4y;unknown;no;no;cellular;apr;wed;158;2;999;1;failure;-1.8;93.075;-47.1;1.415;5099.1;no
+39;technician;single;professional.course;no;no;no;cellular;apr;wed;540;3;9;1;success;-1.8;93.075;-47.1;1.415;5099.1;no
+55;admin.;married;high.school;no;yes;no;cellular;apr;wed;140;3;999;1;failure;-1.8;93.075;-47.1;1.415;5099.1;no
+41;services;single;high.school;no;yes;yes;cellular;apr;wed;264;2;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;yes
+36;management;married;university.degree;no;no;no;cellular;apr;wed;353;2;999;0;nonexistent;-1.8;93.075;-47.1;1.415;5099.1;yes
+51;entrepreneur;married;illiterate;no;no;no;cellular;apr;thu;87;2;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+51;entrepreneur;married;illiterate;no;yes;no;cellular;apr;thu;838;3;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;yes
+63;retired;married;unknown;no;yes;no;cellular;apr;thu;144;4;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;yes
+26;blue-collar;married;basic.9y;no;no;no;cellular;apr;thu;78;2;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;yes
+42;blue-collar;married;basic.9y;no;no;no;cellular;apr;thu;55;4;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+47;entrepreneur;married;university.degree;no;no;no;cellular;apr;thu;206;3;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+30;admin.;married;high.school;unknown;yes;no;cellular;apr;thu;648;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;yes
+26;blue-collar;married;basic.9y;no;yes;yes;cellular;apr;thu;251;2;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;yes
+39;management;single;university.degree;unknown;no;no;cellular;apr;thu;370;1;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+26;blue-collar;married;basic.9y;no;no;no;cellular;apr;thu;334;2;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;yes
+35;services;married;high.school;no;yes;no;cellular;apr;thu;137;1;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+29;admin.;married;university.degree;no;yes;yes;telephone;apr;thu;122;3;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+39;management;single;university.degree;unknown;yes;no;telephone;apr;thu;75;2;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+57;technician;married;university.degree;no;yes;no;cellular;apr;thu;836;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;yes
+40;entrepreneur;married;professional.course;unknown;yes;no;cellular;apr;thu;176;1;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+29;admin.;single;university.degree;no;no;no;cellular;apr;thu;271;2;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;yes
+33;blue-collar;married;basic.9y;no;yes;no;cellular;apr;thu;827;1;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+38;blue-collar;married;basic.9y;no;yes;no;cellular;apr;thu;218;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+38;blue-collar;married;basic.4y;unknown;yes;no;cellular;apr;thu;258;1;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+64;retired;married;basic.6y;no;yes;no;cellular;apr;thu;67;4;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+57;retired;married;basic.4y;no;no;no;cellular;apr;thu;199;2;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+29;admin.;single;university.degree;no;no;no;cellular;apr;thu;71;2;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+48;blue-collar;married;basic.4y;no;no;yes;cellular;apr;thu;220;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+33;admin.;married;university.degree;no;yes;no;cellular;apr;thu;124;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+42;services;married;high.school;unknown;yes;yes;cellular;apr;thu;243;1;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+52;services;divorced;high.school;no;no;no;cellular;apr;thu;198;2;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+54;entrepreneur;divorced;unknown;no;no;yes;cellular;apr;thu;461;2;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+45;entrepreneur;married;university.degree;no;no;no;cellular;apr;thu;82;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+37;entrepreneur;married;professional.course;no;no;no;cellular;apr;thu;284;1;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+52;retired;married;basic.4y;unknown;no;no;cellular;apr;thu;204;1;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+31;technician;married;university.degree;no;yes;no;cellular;apr;thu;35;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+52;blue-collar;divorced;basic.4y;no;yes;no;cellular;apr;thu;291;1;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+27;services;single;university.degree;no;yes;no;cellular;apr;thu;201;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+27;services;single;university.degree;no;yes;no;cellular;apr;thu;297;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+27;services;single;university.degree;no;yes;no;cellular;apr;thu;384;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+35;admin.;married;university.degree;no;no;no;cellular;apr;thu;250;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+45;blue-collar;married;basic.4y;unknown;yes;no;cellular;apr;thu;479;1;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+40;blue-collar;married;basic.9y;unknown;yes;no;cellular;apr;thu;324;1;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+44;entrepreneur;divorced;university.degree;no;no;no;cellular;apr;thu;404;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+27;blue-collar;single;basic.4y;no;yes;no;cellular;apr;thu;156;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+27;blue-collar;single;basic.4y;no;yes;no;cellular;apr;thu;240;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+43;services;married;high.school;no;no;no;cellular;apr;thu;60;1;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+36;blue-collar;married;basic.4y;unknown;yes;no;cellular;apr;thu;403;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+32;blue-collar;married;basic.9y;no;yes;no;cellular;apr;thu;114;1;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+42;blue-collar;married;basic.4y;no;yes;yes;cellular;apr;thu;35;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+32;blue-collar;married;basic.9y;no;yes;no;cellular;apr;thu;188;1;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+45;entrepreneur;married;basic.4y;unknown;yes;no;cellular;apr;thu;618;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+27;blue-collar;single;basic.4y;no;yes;no;cellular;apr;thu;528;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+54;blue-collar;married;basic.4y;no;no;no;cellular;apr;thu;104;1;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+27;blue-collar;single;basic.4y;no;no;no;cellular;apr;thu;622;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+32;blue-collar;married;basic.9y;no;no;no;cellular;apr;thu;583;1;5;1;success;-1.8;93.075;-47.1;1.41;5099.1;yes
+44;technician;divorced;professional.course;unknown;yes;no;cellular;apr;thu;18;3;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+24;management;single;university.degree;no;yes;no;cellular;apr;thu;91;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+54;blue-collar;married;basic.4y;no;yes;no;cellular;apr;thu;743;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+40;blue-collar;married;basic.9y;unknown;yes;no;cellular;apr;thu;283;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+44;technician;divorced;professional.course;unknown;yes;no;cellular;apr;thu;172;2;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+31;blue-collar;married;basic.4y;no;yes;no;cellular;apr;thu;39;1;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+52;blue-collar;divorced;basic.4y;no;no;no;cellular;apr;thu;474;2;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+29;admin.;single;high.school;no;yes;no;cellular;apr;thu;275;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+32;admin.;married;university.degree;no;yes;no;cellular;apr;thu;361;1;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+24;management;single;university.degree;no;yes;no;cellular;apr;thu;124;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+44;blue-collar;married;high.school;unknown;yes;no;cellular;apr;thu;253;1;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+29;blue-collar;single;basic.9y;no;unknown;unknown;cellular;apr;thu;350;1;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+46;technician;married;professional.course;no;yes;no;cellular;apr;thu;309;1;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+54;management;married;university.degree;no;no;no;cellular;apr;thu;339;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+26;blue-collar;married;basic.9y;no;yes;no;cellular;apr;thu;77;3;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+37;admin.;married;university.degree;no;no;no;cellular;apr;thu;58;3;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+40;entrepreneur;married;basic.9y;no;yes;no;cellular;apr;thu;125;2;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+35;admin.;married;professional.course;no;no;yes;cellular;apr;thu;34;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+27;blue-collar;single;basic.4y;no;yes;no;cellular;apr;thu;191;2;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+45;services;divorced;basic.4y;no;no;yes;cellular;apr;thu;1579;1;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;yes
+40;services;married;high.school;no;yes;no;cellular;apr;thu;228;2;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+41;blue-collar;married;basic.4y;no;no;no;cellular;apr;thu;316;1;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+43;management;married;unknown;unknown;no;no;cellular;apr;thu;177;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+43;management;married;unknown;unknown;no;yes;cellular;apr;thu;35;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+32;admin.;single;university.degree;no;yes;no;cellular;apr;thu;495;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;yes
+51;blue-collar;married;basic.6y;no;yes;no;cellular;apr;thu;150;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+37;admin.;single;high.school;no;no;no;cellular;apr;thu;617;1;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+35;admin.;single;high.school;no;yes;no;cellular;apr;thu;352;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+37;technician;divorced;professional.course;no;yes;no;cellular;apr;thu;211;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+50;blue-collar;married;basic.9y;unknown;yes;no;cellular;apr;thu;99;1;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+59;blue-collar;married;basic.9y;no;yes;no;cellular;apr;thu;177;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+38;entrepreneur;married;university.degree;unknown;yes;no;cellular;apr;thu;137;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+39;blue-collar;married;unknown;unknown;no;no;cellular;apr;thu;156;1;9;1;success;-1.8;93.075;-47.1;1.41;5099.1;no
+45;blue-collar;married;unknown;no;yes;no;cellular;apr;thu;268;1;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+31;technician;single;professional.course;no;yes;no;cellular;apr;thu;270;1;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+56;admin.;married;basic.9y;no;no;no;cellular;apr;thu;94;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+38;technician;married;professional.course;no;yes;no;cellular;apr;thu;54;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+32;admin.;single;university.degree;no;no;no;cellular;apr;thu;670;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+47;admin.;single;high.school;no;no;no;cellular;apr;thu;1025;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;yes
+46;self-employed;divorced;basic.9y;no;yes;yes;cellular;apr;thu;168;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+47;admin.;single;high.school;no;yes;yes;cellular;apr;thu;1122;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+55;management;married;basic.4y;unknown;no;no;cellular;apr;thu;98;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+43;management;married;unknown;unknown;no;no;cellular;apr;thu;75;2;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+26;admin.;single;university.degree;no;unknown;unknown;cellular;apr;thu;176;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+36;blue-collar;married;unknown;no;yes;yes;cellular;apr;thu;90;1;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+31;blue-collar;married;basic.9y;no;yes;no;cellular;apr;thu;172;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+41;self-employed;married;university.degree;no;yes;no;cellular;apr;thu;884;1;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+29;admin.;single;university.degree;no;no;no;cellular;apr;thu;298;4;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;yes
+69;retired;married;unknown;no;no;no;cellular;apr;thu;117;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+36;blue-collar;married;unknown;no;no;no;cellular;apr;thu;1174;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;yes
+27;admin.;single;high.school;no;no;no;cellular;apr;thu;229;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+27;admin.;single;high.school;no;no;no;cellular;apr;thu;284;1;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+44;blue-collar;married;basic.6y;no;yes;no;telephone;apr;thu;272;2;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+19;student;single;basic.9y;no;no;no;cellular;apr;thu;165;3;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+45;blue-collar;married;basic.9y;unknown;yes;no;cellular;apr;thu;244;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+70;retired;married;unknown;no;yes;no;cellular;apr;thu;346;2;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;yes
+47;entrepreneur;married;university.degree;no;yes;no;cellular;apr;thu;150;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+20;student;single;high.school;no;yes;no;telephone;apr;thu;80;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+31;blue-collar;married;basic.9y;no;yes;yes;cellular;apr;thu;126;2;999;2;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+47;blue-collar;married;basic.9y;no;yes;no;cellular;apr;thu;693;2;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+33;blue-collar;divorced;basic.9y;unknown;no;no;cellular;apr;thu;129;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+32;admin.;single;university.degree;no;yes;no;cellular;apr;thu;83;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+38;services;married;high.school;no;yes;no;cellular;apr;thu;144;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+31;blue-collar;married;basic.9y;no;yes;no;cellular;apr;thu;257;2;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+50;self-employed;married;university.degree;no;yes;no;cellular;apr;thu;1463;2;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;yes
+42;entrepreneur;married;basic.9y;no;yes;no;cellular;apr;thu;76;3;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+33;technician;married;professional.course;no;no;no;cellular;apr;thu;285;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;yes
+37;blue-collar;married;basic.9y;no;yes;no;cellular;apr;thu;218;1;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+34;blue-collar;married;basic.4y;unknown;yes;no;cellular;apr;thu;570;2;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+42;blue-collar;married;basic.4y;no;yes;no;cellular;apr;thu;174;2;999;2;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+29;blue-collar;single;basic.9y;no;unknown;unknown;cellular;apr;thu;462;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+26;student;single;university.degree;no;yes;no;cellular;apr;thu;76;4;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+45;entrepreneur;married;basic.4y;unknown;no;no;cellular;apr;thu;281;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+37;admin.;married;professional.course;no;yes;no;cellular;apr;thu;1087;2;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+44;blue-collar;married;basic.4y;no;yes;no;cellular;apr;thu;178;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+33;technician;married;professional.course;no;no;yes;cellular;apr;thu;667;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;yes
+37;technician;divorced;professional.course;no;yes;no;cellular;apr;thu;62;1;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+29;admin.;divorced;basic.9y;no;yes;no;cellular;apr;thu;114;4;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+41;services;married;high.school;no;yes;no;cellular;apr;thu;60;2;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+47;blue-collar;married;basic.9y;no;yes;no;cellular;apr;thu;563;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+35;unemployed;married;professional.course;no;yes;no;cellular;apr;thu;79;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+53;services;divorced;high.school;unknown;yes;no;cellular;apr;thu;198;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+38;admin.;married;high.school;no;yes;no;cellular;apr;thu;118;2;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+27;admin.;single;high.school;no;no;no;cellular;apr;thu;314;2;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+28;blue-collar;single;basic.9y;unknown;yes;no;cellular;apr;thu;241;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+53;services;divorced;high.school;unknown;no;yes;cellular;apr;thu;653;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+59;blue-collar;married;basic.9y;no;yes;no;cellular;apr;thu;66;1;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+40;management;married;basic.6y;no;yes;no;cellular;apr;thu;77;1;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+24;blue-collar;married;basic.9y;no;no;no;cellular;apr;thu;178;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+24;admin.;single;university.degree;no;yes;no;cellular;apr;thu;127;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;yes
+33;services;single;basic.9y;no;yes;no;cellular;apr;thu;483;2;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+33;admin.;single;university.degree;no;yes;no;cellular;apr;thu;308;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+49;management;married;university.degree;no;no;no;cellular;apr;thu;289;1;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+49;management;married;university.degree;no;yes;no;cellular;apr;thu;44;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+34;technician;married;university.degree;no;yes;yes;cellular;apr;thu;168;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+32;technician;married;university.degree;no;no;no;telephone;apr;thu;130;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+70;retired;married;unknown;no;yes;yes;cellular;apr;thu;96;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+34;blue-collar;married;basic.4y;unknown;yes;no;cellular;apr;thu;249;2;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+24;admin.;single;university.degree;no;yes;no;telephone;apr;thu;100;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+29;services;single;basic.9y;unknown;yes;no;cellular;apr;thu;105;2;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+30;admin.;single;high.school;no;no;no;cellular;apr;thu;75;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+56;services;divorced;high.school;unknown;yes;no;cellular;apr;thu;144;2;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+46;blue-collar;married;basic.4y;no;no;no;cellular;apr;thu;357;2;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+46;entrepreneur;married;university.degree;no;yes;yes;cellular;apr;thu;285;5;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+37;admin.;married;professional.course;no;yes;yes;cellular;apr;thu;700;5;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;yes
+45;blue-collar;married;basic.4y;no;no;no;cellular;apr;thu;257;2;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+39;admin.;married;high.school;no;yes;no;cellular;apr;thu;487;3;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+48;services;divorced;high.school;unknown;no;no;cellular;apr;thu;235;2;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+41;services;single;university.degree;no;no;no;cellular;apr;thu;290;2;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+31;admin.;married;high.school;no;no;no;cellular;apr;thu;125;2;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+50;unemployed;married;basic.4y;unknown;yes;no;cellular;apr;thu;241;2;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+55;blue-collar;married;basic.4y;no;yes;yes;cellular;apr;thu;772;4;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+32;blue-collar;divorced;basic.4y;no;no;no;cellular;apr;thu;657;4;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+29;admin.;single;high.school;no;yes;yes;cellular;apr;thu;123;3;9;1;success;-1.8;93.075;-47.1;1.41;5099.1;no
+37;entrepreneur;married;professional.course;no;no;no;cellular;apr;thu;255;2;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+46;technician;married;university.degree;no;yes;no;cellular;apr;thu;375;2;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+32;admin.;single;university.degree;no;yes;no;cellular;apr;thu;386;2;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+53;management;married;high.school;no;yes;no;cellular;apr;thu;280;2;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+32;blue-collar;married;basic.4y;no;no;no;cellular;apr;thu;772;2;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+42;admin.;divorced;high.school;no;no;no;cellular;apr;thu;380;3;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+38;admin.;married;high.school;no;yes;no;cellular;apr;thu;302;2;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+47;admin.;married;basic.6y;unknown;yes;no;cellular;apr;thu;399;2;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+46;self-employed;divorced;basic.9y;no;yes;no;cellular;apr;thu;453;2;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+45;entrepreneur;married;university.degree;no;yes;no;cellular;apr;thu;567;2;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+40;services;single;high.school;no;yes;no;cellular;apr;thu;91;2;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+37;technician;single;high.school;no;yes;no;cellular;apr;thu;44;2;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+24;management;single;university.degree;no;no;no;cellular;apr;thu;640;2;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+38;services;married;basic.9y;no;yes;no;cellular;apr;thu;417;2;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+50;blue-collar;married;basic.9y;no;yes;no;cellular;apr;thu;1365;2;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;yes
+40;admin.;divorced;university.degree;no;yes;no;cellular;apr;thu;194;2;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+31;blue-collar;married;basic.9y;unknown;yes;no;cellular;apr;thu;176;3;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+28;technician;single;professional.course;no;unknown;unknown;cellular;apr;thu;71;2;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+37;technician;single;high.school;no;yes;no;telephone;apr;thu;63;2;999;2;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+39;admin.;divorced;high.school;no;yes;yes;cellular;apr;thu;433;2;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+42;entrepreneur;married;basic.9y;no;no;yes;cellular;apr;thu;127;2;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+52;retired;married;basic.4y;unknown;yes;yes;cellular;apr;thu;449;2;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+32;services;single;high.school;no;no;no;cellular;apr;thu;472;2;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+39;services;single;high.school;no;yes;no;cellular;apr;thu;1007;3;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+33;technician;married;professional.course;no;no;yes;cellular;apr;thu;383;3;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+41;blue-collar;divorced;basic.4y;no;yes;no;cellular;apr;thu;256;3;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+36;blue-collar;single;high.school;no;yes;no;telephone;apr;thu;668;3;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+36;entrepreneur;married;university.degree;no;no;no;cellular;apr;thu;211;2;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+24;blue-collar;married;professional.course;unknown;no;no;cellular;apr;thu;348;2;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+44;admin.;married;high.school;no;no;no;cellular;apr;thu;792;2;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+41;blue-collar;married;high.school;no;no;yes;telephone;apr;thu;55;2;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+47;entrepreneur;married;university.degree;no;yes;no;cellular;apr;thu;282;2;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+27;admin.;single;high.school;no;no;no;telephone;apr;thu;198;3;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+31;blue-collar;married;basic.9y;no;no;no;cellular;apr;thu;104;1;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+45;technician;single;professional.course;no;no;no;cellular;apr;thu;370;3;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+50;blue-collar;married;basic.9y;unknown;yes;no;cellular;apr;thu;1285;2;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+28;technician;single;high.school;no;yes;yes;cellular;apr;thu;48;4;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+41;blue-collar;divorced;basic.4y;no;no;yes;cellular;apr;thu;316;2;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+38;technician;divorced;high.school;no;yes;yes;cellular;apr;thu;279;3;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+33;blue-collar;married;basic.9y;no;no;no;cellular;apr;thu;225;1;5;1;success;-1.8;93.075;-47.1;1.41;5099.1;no
+56;admin.;married;basic.9y;no;yes;no;cellular;apr;thu;299;2;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;yes
+47;blue-collar;married;basic.9y;no;yes;no;telephone;apr;thu;193;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+44;admin.;single;high.school;no;yes;no;cellular;apr;thu;804;2;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+55;admin.;married;university.degree;no;yes;no;cellular;apr;thu;211;3;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+36;admin.;single;university.degree;no;yes;no;cellular;apr;thu;274;2;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+31;admin.;married;high.school;no;yes;no;cellular;apr;thu;399;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+38;entrepreneur;married;basic.4y;unknown;yes;no;cellular;apr;thu;691;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+28;self-employed;married;university.degree;no;yes;no;cellular;apr;thu;344;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+30;blue-collar;married;basic.9y;no;yes;no;telephone;apr;thu;426;3;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;yes
+25;student;single;university.degree;no;no;no;cellular;apr;thu;539;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+40;services;married;high.school;no;no;no;cellular;apr;thu;161;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;yes
+44;management;married;university.degree;no;yes;no;cellular;apr;thu;137;2;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+44;entrepreneur;divorced;university.degree;no;yes;no;cellular;apr;thu;580;1;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+50;services;single;basic.6y;unknown;no;no;cellular;apr;thu;119;1;10;1;success;-1.8;93.075;-47.1;1.41;5099.1;no
+45;services;divorced;basic.4y;no;no;no;cellular;apr;thu;296;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+40;management;married;basic.6y;no;yes;no;cellular;apr;thu;179;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+50;services;single;basic.6y;unknown;no;no;cellular;apr;thu;169;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+50;services;single;basic.6y;unknown;yes;no;cellular;apr;thu;429;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+28;technician;married;basic.9y;no;yes;no;cellular;apr;thu;137;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+36;blue-collar;married;unknown;no;yes;no;cellular;apr;thu;466;4;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+28;technician;married;basic.9y;no;no;no;cellular;apr;thu;263;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+28;technician;married;basic.9y;no;yes;no;cellular;apr;thu;75;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+23;blue-collar;single;basic.4y;no;yes;no;telephone;apr;thu;287;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+43;management;married;university.degree;unknown;no;no;cellular;apr;thu;176;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+28;technician;married;basic.9y;no;no;no;cellular;apr;thu;442;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+44;blue-collar;married;basic.6y;no;yes;no;cellular;apr;thu;304;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+55;management;married;basic.4y;unknown;no;no;cellular;apr;thu;594;2;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+28;technician;married;basic.9y;no;yes;no;cellular;apr;thu;772;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+30;services;married;high.school;no;no;no;cellular;apr;thu;647;2;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+45;blue-collar;married;unknown;no;yes;no;cellular;apr;thu;263;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+25;student;married;university.degree;no;yes;yes;telephone;apr;thu;127;7;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+47;entrepreneur;divorced;high.school;no;no;no;cellular;apr;thu;71;5;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+45;blue-collar;married;unknown;no;yes;no;cellular;apr;thu;432;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+59;blue-collar;married;basic.9y;no;no;no;cellular;apr;thu;332;2;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+45;blue-collar;married;unknown;no;no;no;cellular;apr;thu;829;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+45;blue-collar;married;unknown;no;yes;yes;cellular;apr;thu;614;1;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+45;blue-collar;married;unknown;no;yes;no;cellular;apr;thu;797;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+31;student;single;unknown;unknown;no;no;cellular;apr;thu;102;1;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+29;blue-collar;single;basic.6y;no;yes;yes;cellular;apr;thu;1410;1;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+45;blue-collar;married;unknown;no;yes;no;cellular;apr;thu;944;1;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;yes
+31;student;single;unknown;unknown;no;yes;cellular;apr;thu;246;1;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+34;blue-collar;married;basic.9y;no;no;no;cellular;apr;thu;234;1;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+26;student;single;university.degree;no;no;yes;cellular;apr;thu;551;2;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;yes
+31;student;single;unknown;unknown;yes;no;cellular;apr;thu;427;1;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+34;blue-collar;married;basic.9y;no;no;no;cellular;apr;thu;340;1;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;no
+42;blue-collar;married;basic.4y;no;no;yes;cellular;apr;thu;579;3;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+47;services;married;basic.9y;no;yes;no;cellular;apr;thu;561;3;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+31;student;single;unknown;unknown;yes;no;cellular;apr;thu;1156;1;999;1;failure;-1.8;93.075;-47.1;1.41;5099.1;yes
+39;blue-collar;married;unknown;unknown;yes;no;cellular;apr;thu;307;1;999;0;nonexistent;-1.8;93.075;-47.1;1.41;5099.1;no
+43;admin.;single;high.school;no;yes;no;cellular;apr;fri;192;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+42;entrepreneur;married;university.degree;unknown;no;no;cellular;apr;fri;46;4;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+33;management;married;basic.9y;no;no;yes;cellular;apr;fri;71;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+35;blue-collar;single;basic.9y;unknown;yes;no;telephone;apr;fri;109;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+51;blue-collar;married;basic.9y;unknown;yes;no;cellular;apr;fri;35;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+42;admin.;single;high.school;no;no;no;cellular;apr;fri;377;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+51;blue-collar;married;basic.9y;unknown;yes;no;cellular;apr;fri;81;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+37;blue-collar;single;professional.course;no;no;no;cellular;apr;fri;360;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+38;admin.;single;high.school;no;yes;no;cellular;apr;fri;141;1;999;2;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+29;admin.;married;university.degree;no;yes;no;cellular;apr;fri;430;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+37;blue-collar;single;basic.9y;no;no;no;cellular;apr;fri;282;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+47;technician;married;professional.course;unknown;yes;no;cellular;apr;fri;260;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+47;admin.;married;university.degree;unknown;no;no;cellular;apr;fri;226;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+38;blue-collar;married;basic.9y;unknown;no;no;cellular;apr;fri;164;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+37;blue-collar;married;basic.4y;no;no;yes;cellular;apr;fri;125;4;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+41;admin.;divorced;high.school;no;no;no;cellular;apr;fri;620;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+34;technician;married;professional.course;no;no;no;cellular;apr;fri;141;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+42;blue-collar;married;basic.4y;unknown;no;no;cellular;apr;fri;557;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+48;blue-collar;married;basic.9y;no;no;no;cellular;apr;fri;50;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+39;admin.;married;high.school;unknown;yes;no;cellular;apr;fri;222;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+42;blue-collar;married;unknown;no;yes;no;cellular;apr;fri;434;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+37;blue-collar;married;basic.4y;no;no;no;cellular;apr;fri;180;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+19;student;single;unknown;no;yes;no;cellular;apr;fri;156;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+45;management;married;university.degree;no;yes;no;cellular;apr;fri;345;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+25;technician;single;university.degree;no;no;no;cellular;apr;fri;118;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+48;admin.;divorced;unknown;no;no;no;cellular;apr;fri;85;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+36;blue-collar;married;basic.6y;no;yes;no;cellular;apr;fri;233;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+41;management;married;university.degree;no;yes;yes;cellular;apr;fri;249;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+35;services;single;high.school;no;yes;no;cellular;apr;fri;179;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+54;entrepreneur;married;basic.9y;no;yes;yes;cellular;apr;fri;52;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+41;self-employed;married;basic.9y;no;no;no;cellular;apr;fri;112;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+42;admin.;single;high.school;no;yes;no;cellular;apr;fri;392;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+54;blue-collar;married;unknown;unknown;yes;no;cellular;apr;fri;113;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+35;blue-collar;married;basic.4y;no;yes;no;cellular;apr;fri;119;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+28;student;married;university.degree;unknown;yes;no;telephone;apr;fri;98;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+34;entrepreneur;married;university.degree;no;no;no;cellular;apr;fri;85;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+57;blue-collar;married;basic.9y;no;no;no;cellular;apr;fri;515;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+54;services;married;high.school;unknown;no;no;cellular;apr;fri;402;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+54;services;married;high.school;unknown;no;no;cellular;apr;fri;408;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+34;technician;divorced;basic.9y;no;yes;no;cellular;apr;fri;76;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+28;student;married;university.degree;unknown;no;no;cellular;apr;fri;224;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+36;services;married;high.school;unknown;yes;yes;cellular;apr;fri;294;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+54;retired;married;basic.4y;no;yes;no;cellular;apr;fri;420;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+28;student;married;university.degree;unknown;yes;no;cellular;apr;fri;346;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+55;admin.;married;basic.4y;no;no;no;cellular;apr;fri;198;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+34;entrepreneur;married;university.degree;no;yes;yes;cellular;apr;fri;108;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+31;admin.;married;high.school;no;no;no;cellular;apr;fri;238;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+55;admin.;married;basic.4y;no;yes;no;cellular;apr;fri;548;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+59;admin.;divorced;university.degree;no;yes;no;cellular;apr;fri;416;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+35;technician;married;professional.course;no;yes;no;cellular;apr;fri;86;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+48;blue-collar;married;basic.6y;unknown;no;no;cellular;apr;fri;599;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+34;blue-collar;married;basic.9y;no;yes;no;cellular;apr;fri;210;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+39;blue-collar;divorced;basic.6y;no;yes;no;cellular;apr;fri;344;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+34;admin.;married;high.school;no;yes;yes;cellular;apr;fri;329;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+34;self-employed;married;basic.4y;unknown;yes;no;cellular;apr;fri;236;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+32;management;single;university.degree;no;no;no;cellular;apr;fri;82;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+34;management;married;university.degree;no;yes;no;cellular;apr;fri;416;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+38;blue-collar;married;basic.9y;no;yes;no;cellular;apr;fri;612;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+39;management;married;basic.6y;no;yes;no;cellular;apr;fri;177;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+29;admin.;single;university.degree;no;no;no;cellular;apr;fri;678;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+43;blue-collar;married;basic.6y;no;no;yes;cellular;apr;fri;150;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+35;blue-collar;married;basic.4y;no;yes;no;cellular;apr;fri;199;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+47;blue-collar;married;basic.9y;no;no;no;cellular;apr;fri;112;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+50;management;married;basic.6y;no;yes;no;cellular;apr;fri;704;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+43;blue-collar;married;basic.6y;no;yes;no;cellular;apr;fri;372;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+32;blue-collar;married;basic.9y;no;no;no;cellular;apr;fri;135;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+42;blue-collar;married;basic.4y;no;yes;no;cellular;apr;fri;486;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+32;management;single;university.degree;no;yes;no;cellular;apr;fri;709;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+50;unemployed;married;basic.4y;unknown;yes;no;cellular;apr;fri;71;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+32;blue-collar;married;basic.9y;no;no;no;cellular;apr;fri;462;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+37;admin.;divorced;high.school;no;no;no;cellular;apr;fri;156;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+35;admin.;married;university.degree;no;no;no;cellular;apr;fri;203;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+35;blue-collar;married;basic.6y;no;no;no;cellular;apr;fri;77;3;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+36;entrepreneur;married;university.degree;no;yes;no;cellular;apr;fri;486;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+39;admin.;single;high.school;no;yes;no;cellular;apr;fri;341;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+48;services;single;high.school;no;yes;no;cellular;apr;fri;267;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+33;technician;single;high.school;no;no;no;cellular;apr;fri;1017;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+41;unemployed;married;basic.9y;unknown;yes;no;telephone;apr;fri;246;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+57;services;married;basic.9y;unknown;yes;no;cellular;apr;fri;185;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+36;self-employed;married;basic.9y;no;yes;no;cellular;apr;fri;313;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+35;admin.;single;university.degree;no;yes;no;cellular;apr;fri;115;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+34;blue-collar;married;professional.course;no;yes;no;cellular;apr;fri;377;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+33;blue-collar;married;basic.9y;no;yes;no;cellular;apr;fri;135;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+30;services;single;high.school;unknown;yes;no;cellular;apr;fri;451;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+38;technician;single;university.degree;no;yes;no;cellular;apr;fri;351;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+39;management;married;university.degree;no;yes;no;cellular;apr;fri;126;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+38;technician;single;university.degree;no;yes;no;cellular;apr;fri;456;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+39;management;married;university.degree;no;yes;no;cellular;apr;fri;306;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+25;admin.;single;high.school;no;no;no;cellular;apr;fri;178;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+37;management;married;university.degree;unknown;no;yes;cellular;apr;fri;76;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+37;technician;married;professional.course;no;no;no;cellular;apr;fri;292;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+34;blue-collar;divorced;basic.4y;no;yes;no;cellular;apr;fri;406;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+44;blue-collar;married;basic.6y;no;no;no;cellular;apr;fri;239;1;999;2;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+40;blue-collar;married;basic.9y;no;yes;no;cellular;apr;fri;514;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+43;admin.;single;high.school;no;no;no;telephone;apr;fri;51;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+36;technician;married;professional.course;no;yes;no;cellular;apr;fri;1095;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;yes
+44;blue-collar;married;basic.6y;no;no;no;cellular;apr;fri;468;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+34;technician;divorced;professional.course;no;yes;no;cellular;apr;fri;172;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+34;technician;divorced;professional.course;no;yes;no;cellular;apr;fri;122;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+19;student;single;unknown;no;yes;no;cellular;apr;fri;452;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+34;technician;divorced;professional.course;no;no;no;cellular;apr;fri;185;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+47;admin.;married;basic.9y;no;yes;no;cellular;apr;fri;196;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+42;admin.;married;high.school;no;yes;no;cellular;apr;fri;88;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+38;technician;single;university.degree;no;yes;no;cellular;apr;fri;31;3;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+29;entrepreneur;single;university.degree;no;yes;yes;cellular;apr;fri;268;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+38;management;married;high.school;unknown;yes;no;cellular;apr;fri;143;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+53;management;married;university.degree;no;yes;no;cellular;apr;fri;111;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+43;blue-collar;married;basic.9y;unknown;yes;no;cellular;apr;fri;357;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+38;services;married;high.school;no;no;no;cellular;apr;fri;151;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+41;blue-collar;married;unknown;unknown;yes;no;cellular;apr;fri;400;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+42;admin.;married;unknown;no;no;no;cellular;apr;fri;952;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;yes
+34;housemaid;divorced;university.degree;no;yes;yes;cellular;apr;fri;73;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+49;blue-collar;married;basic.9y;no;yes;no;cellular;apr;fri;832;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+41;blue-collar;married;basic.9y;unknown;no;yes;cellular;apr;fri;251;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+45;blue-collar;married;unknown;unknown;yes;no;cellular;apr;fri;303;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+36;services;married;high.school;no;yes;no;cellular;apr;fri;101;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+46;management;married;university.degree;unknown;no;no;cellular;apr;fri;79;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+35;blue-collar;married;basic.6y;no;yes;no;cellular;apr;fri;113;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+46;management;married;university.degree;unknown;yes;no;cellular;apr;fri;268;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+35;blue-collar;married;unknown;no;no;no;cellular;apr;fri;172;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+48;admin.;single;university.degree;no;yes;no;cellular;apr;fri;237;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+47;admin.;married;high.school;unknown;no;yes;cellular;apr;fri;517;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+42;management;married;university.degree;unknown;no;no;cellular;apr;fri;981;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+32;retired;married;basic.4y;no;yes;no;cellular;apr;fri;531;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+36;entrepreneur;married;basic.9y;no;yes;no;cellular;apr;fri;158;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+45;blue-collar;married;unknown;no;no;no;cellular;apr;fri;106;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+49;management;married;university.degree;no;yes;no;cellular;apr;fri;58;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+53;admin.;single;basic.6y;unknown;no;yes;cellular;apr;fri;351;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+36;entrepreneur;married;basic.9y;no;no;no;cellular;apr;fri;299;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+41;blue-collar;married;basic.9y;no;yes;no;cellular;apr;fri;69;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+44;blue-collar;married;basic.9y;unknown;yes;yes;cellular;apr;fri;418;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+41;blue-collar;married;basic.9y;no;no;yes;cellular;apr;fri;351;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+41;admin.;divorced;high.school;no;no;no;cellular;apr;fri;471;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+32;blue-collar;married;basic.9y;no;no;no;cellular;apr;fri;47;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+42;blue-collar;married;basic.4y;unknown;no;no;cellular;apr;fri;264;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+42;admin.;divorced;high.school;no;yes;yes;cellular;apr;fri;57;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+47;technician;married;professional.course;unknown;yes;no;cellular;apr;fri;53;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+34;admin.;single;high.school;no;yes;no;cellular;apr;fri;183;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+40;blue-collar;single;basic.6y;unknown;no;no;cellular;apr;fri;139;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+24;services;single;high.school;no;yes;no;cellular;apr;fri;515;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+40;blue-collar;single;basic.6y;unknown;no;no;cellular;apr;fri;289;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+34;technician;married;professional.course;no;no;no;cellular;apr;fri;132;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+37;blue-collar;divorced;basic.9y;no;yes;yes;cellular;apr;fri;83;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+54;retired;married;basic.4y;no;yes;no;cellular;apr;fri;840;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+44;blue-collar;married;high.school;no;yes;no;cellular;apr;fri;921;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+55;management;married;university.degree;no;no;no;cellular;apr;fri;519;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+36;admin.;single;high.school;no;yes;yes;cellular;apr;fri;299;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+57;admin.;divorced;high.school;no;yes;no;cellular;apr;fri;97;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+35;services;married;high.school;no;yes;no;cellular;apr;fri;84;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+39;admin.;married;university.degree;no;yes;no;cellular;apr;fri;73;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+43;management;married;university.degree;unknown;yes;yes;cellular;apr;fri;307;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+37;admin.;divorced;high.school;no;yes;no;cellular;apr;fri;1311;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+24;technician;divorced;professional.course;no;yes;no;cellular;apr;fri;107;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+48;services;married;high.school;no;yes;no;cellular;apr;fri;193;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+55;blue-collar;married;basic.4y;no;yes;no;cellular;apr;fri;248;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+55;admin.;divorced;unknown;no;no;no;cellular;apr;fri;386;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+24;technician;divorced;professional.course;no;no;no;cellular;apr;fri;332;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+47;admin.;married;high.school;unknown;unknown;unknown;cellular;apr;fri;499;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+34;unemployed;married;basic.9y;unknown;yes;no;cellular;apr;fri;71;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+45;management;married;university.degree;no;yes;yes;cellular;apr;fri;362;1;999;2;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+34;unemployed;married;basic.9y;unknown;no;no;cellular;apr;fri;181;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+38;technician;single;high.school;no;no;no;cellular;apr;fri;161;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+32;blue-collar;married;basic.9y;no;no;no;cellular;apr;fri;334;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+43;blue-collar;married;high.school;no;no;no;cellular;apr;fri;997;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;yes
+38;technician;single;high.school;no;yes;no;cellular;apr;fri;183;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+56;self-employed;divorced;university.degree;unknown;no;no;telephone;apr;fri;42;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+29;admin.;married;university.degree;no;unknown;unknown;cellular;apr;fri;462;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+41;blue-collar;married;professional.course;unknown;yes;no;cellular;apr;fri;74;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+47;management;married;high.school;no;unknown;unknown;cellular;apr;fri;234;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+47;management;married;high.school;no;no;yes;cellular;apr;fri;245;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+30;technician;single;high.school;no;yes;no;cellular;apr;fri;218;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+44;blue-collar;married;basic.9y;unknown;yes;no;cellular;apr;fri;574;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;yes
+19;student;single;unknown;no;yes;no;telephone;apr;fri;1161;5;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+29;services;married;basic.6y;no;no;yes;cellular;apr;fri;754;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+46;admin.;married;professional.course;no;no;no;cellular;apr;fri;609;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+36;blue-collar;divorced;basic.6y;unknown;yes;no;cellular;apr;fri;235;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+34;technician;married;university.degree;no;no;no;cellular;apr;fri;146;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+55;admin.;married;high.school;no;no;no;cellular;apr;fri;518;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+44;management;married;professional.course;no;yes;no;cellular;apr;fri;345;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+43;blue-collar;married;high.school;unknown;unknown;unknown;cellular;apr;fri;239;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+32;admin.;married;high.school;no;yes;yes;cellular;apr;fri;218;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+26;admin.;single;university.degree;no;no;no;telephone;apr;fri;52;6;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+42;admin.;single;university.degree;no;no;no;telephone;apr;fri;82;4;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+36;admin.;single;high.school;no;no;no;cellular;apr;fri;140;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+41;admin.;single;high.school;no;no;no;cellular;apr;fri;68;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+34;services;single;high.school;no;no;no;cellular;apr;fri;707;1;999;2;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+41;management;married;university.degree;no;yes;no;cellular;apr;fri;212;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+41;technician;married;professional.course;no;yes;no;cellular;apr;fri;51;6;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+27;admin.;single;university.degree;no;yes;no;cellular;apr;fri;156;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+47;technician;divorced;university.degree;no;no;no;cellular;apr;fri;53;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+46;blue-collar;married;unknown;no;no;no;cellular;apr;fri;193;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+50;management;married;university.degree;no;yes;no;telephone;apr;fri;198;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+19;student;single;unknown;no;no;no;cellular;apr;fri;108;5;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+39;services;married;high.school;no;yes;no;telephone;apr;fri;137;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+38;blue-collar;married;basic.9y;no;no;no;cellular;apr;fri;9;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+47;technician;married;professional.course;unknown;no;no;cellular;apr;fri;92;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+43;admin.;divorced;university.degree;no;yes;no;cellular;apr;fri;882;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+48;blue-collar;married;basic.6y;unknown;no;no;cellular;apr;fri;576;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+45;admin.;married;high.school;no;no;no;cellular;apr;fri;191;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+35;blue-collar;married;basic.4y;no;yes;no;cellular;apr;fri;98;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+36;admin.;single;high.school;no;yes;no;telephone;apr;fri;777;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+39;admin.;married;university.degree;no;yes;no;cellular;apr;fri;161;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+36;admin.;divorced;high.school;no;yes;no;cellular;apr;fri;117;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+50;management;married;basic.9y;no;yes;no;cellular;apr;fri;329;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+55;admin.;married;basic.4y;no;no;no;cellular;apr;fri;155;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+55;admin.;married;basic.4y;no;no;yes;cellular;apr;fri;106;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+33;admin.;single;university.degree;no;yes;no;cellular;apr;fri;76;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+35;admin.;single;university.degree;no;yes;no;cellular;apr;fri;1007;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+33;admin.;single;university.degree;no;yes;no;cellular;apr;fri;382;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+42;blue-collar;married;unknown;no;yes;no;cellular;apr;fri;496;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+41;services;married;high.school;no;no;no;cellular;apr;fri;464;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+39;management;married;university.degree;no;no;yes;cellular;apr;fri;82;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+41;blue-collar;married;basic.9y;unknown;no;no;cellular;apr;fri;343;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+40;entrepreneur;married;basic.9y;no;no;no;cellular;apr;fri;75;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+33;admin.;single;university.degree;unknown;no;yes;cellular;apr;fri;526;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+37;blue-collar;married;basic.9y;no;yes;yes;cellular;apr;fri;43;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+55;services;married;high.school;unknown;yes;no;cellular;apr;fri;45;7;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+38;technician;married;professional.course;unknown;no;no;cellular;apr;fri;1624;1;999;2;failure;-1.8;93.075;-47.1;1.405;5099.1;yes
+33;blue-collar;married;basic.4y;no;no;no;cellular;apr;fri;95;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+37;services;married;high.school;no;no;yes;cellular;apr;fri;175;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+32;blue-collar;married;basic.9y;no;no;no;cellular;apr;fri;208;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+39;services;married;high.school;unknown;yes;no;cellular;apr;fri;87;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+53;blue-collar;married;basic.9y;no;no;yes;telephone;apr;fri;26;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+34;blue-collar;married;basic.9y;no;yes;no;cellular;apr;fri;218;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+32;blue-collar;married;basic.9y;no;no;no;cellular;apr;fri;342;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+28;blue-collar;married;basic.9y;unknown;yes;no;telephone;apr;fri;254;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+31;admin.;single;university.degree;no;no;yes;cellular;apr;fri;85;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+28;technician;single;university.degree;no;yes;no;cellular;apr;fri;73;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+41;blue-collar;married;basic.4y;unknown;yes;no;cellular;apr;fri;145;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+37;admin.;married;high.school;no;yes;yes;cellular;apr;fri;171;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+37;technician;married;professional.course;no;yes;no;cellular;apr;fri;372;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+33;technician;married;professional.course;no;yes;no;cellular;apr;fri;108;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+56;blue-collar;married;basic.4y;no;no;no;cellular;apr;fri;153;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+30;self-employed;married;university.degree;no;no;yes;cellular;apr;fri;138;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+45;blue-collar;married;basic.9y;no;no;yes;cellular;apr;fri;175;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+41;blue-collar;married;professional.course;unknown;no;no;cellular;apr;fri;247;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+33;technician;married;professional.course;no;no;yes;cellular;apr;fri;404;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;yes
+26;technician;single;professional.course;no;yes;no;cellular;apr;fri;362;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+39;services;divorced;basic.6y;no;no;no;cellular;apr;fri;286;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+40;technician;married;professional.course;no;no;no;cellular;apr;fri;316;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+41;blue-collar;married;professional.course;unknown;yes;no;cellular;apr;fri;251;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+41;blue-collar;married;professional.course;unknown;no;no;cellular;apr;fri;370;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+44;admin.;married;university.degree;no;yes;yes;cellular;apr;fri;274;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+48;admin.;married;university.degree;no;no;no;cellular;apr;fri;324;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+50;management;married;university.degree;no;yes;yes;cellular;apr;fri;206;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+33;admin.;single;high.school;no;yes;no;cellular;apr;fri;191;1;999;2;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+41;blue-collar;married;basic.9y;no;no;no;cellular;apr;fri;367;3;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;yes
+43;management;married;university.degree;unknown;yes;no;telephone;apr;fri;141;4;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+45;blue-collar;divorced;basic.9y;no;no;no;cellular;apr;fri;200;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+27;unemployed;single;basic.9y;no;yes;no;cellular;apr;fri;279;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+36;self-employed;married;basic.9y;no;no;no;cellular;apr;fri;214;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+36;admin.;single;professional.course;no;no;no;cellular;apr;fri;122;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+34;admin.;divorced;university.degree;no;yes;no;cellular;apr;fri;649;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+54;blue-collar;single;basic.9y;no;yes;no;cellular;apr;fri;14;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+39;management;married;university.degree;no;unknown;unknown;cellular;apr;fri;397;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+54;retired;married;basic.4y;no;yes;no;cellular;apr;fri;263;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+19;student;single;unknown;no;yes;yes;cellular;apr;fri;72;4;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+34;management;married;university.degree;no;no;no;cellular;apr;fri;433;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+39;blue-collar;married;basic.9y;no;no;no;cellular;apr;fri;407;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+45;blue-collar;married;unknown;no;no;no;cellular;apr;fri;278;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+39;blue-collar;married;basic.9y;no;yes;no;cellular;apr;fri;216;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+45;admin.;married;high.school;no;yes;no;cellular;apr;fri;33;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+31;unemployed;single;basic.9y;no;yes;no;cellular;apr;fri;55;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+33;blue-collar;single;basic.9y;no;no;no;cellular;apr;fri;419;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+34;admin.;married;high.school;no;yes;no;cellular;apr;fri;113;2;999;2;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+34;blue-collar;married;basic.9y;no;yes;no;cellular;apr;fri;157;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+49;management;married;university.degree;no;yes;yes;cellular;apr;fri;40;8;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+40;technician;single;professional.course;no;yes;no;cellular;apr;fri;53;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+53;admin.;married;basic.6y;no;yes;no;cellular;apr;fri;100;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+45;blue-collar;married;unknown;no;yes;yes;cellular;apr;fri;637;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+37;services;married;high.school;no;yes;no;cellular;apr;fri;317;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+31;admin.;single;high.school;no;no;no;cellular;apr;fri;294;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+34;entrepreneur;married;university.degree;no;no;yes;cellular;apr;fri;77;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+39;technician;married;university.degree;no;yes;no;cellular;apr;fri;492;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+34;blue-collar;married;basic.9y;no;yes;no;cellular;apr;fri;70;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+55;retired;married;high.school;no;no;no;cellular;apr;fri;401;1;8;1;success;-1.8;93.075;-47.1;1.405;5099.1;no
+34;blue-collar;married;basic.9y;no;yes;no;cellular;apr;fri;238;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+34;entrepreneur;married;university.degree;no;yes;yes;telephone;apr;fri;130;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+35;blue-collar;divorced;basic.6y;no;yes;no;cellular;apr;fri;212;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+35;services;married;high.school;no;yes;no;cellular;apr;fri;36;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+43;blue-collar;married;basic.6y;no;yes;no;cellular;apr;fri;611;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+41;blue-collar;married;basic.4y;unknown;yes;no;cellular;apr;fri;359;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+35;services;married;high.school;no;no;no;cellular;apr;fri;280;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+35;services;divorced;high.school;no;yes;yes;cellular;apr;fri;107;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+45;blue-collar;married;basic.9y;no;yes;no;cellular;apr;fri;654;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+58;unemployed;married;basic.9y;unknown;no;no;cellular;apr;fri;834;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+45;services;single;unknown;no;no;no;cellular;apr;fri;345;1;6;1;success;-1.8;93.075;-47.1;1.405;5099.1;yes
+39;blue-collar;married;unknown;no;no;no;cellular;apr;fri;79;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+22;admin.;married;high.school;no;yes;yes;cellular;apr;fri;156;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+41;admin.;single;professional.course;no;yes;yes;cellular;apr;fri;41;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+32;self-employed;married;basic.6y;no;no;no;cellular;apr;fri;211;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+37;technician;married;professional.course;no;no;no;cellular;apr;fri;54;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+32;blue-collar;single;high.school;no;yes;no;cellular;apr;fri;1080;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+38;technician;single;university.degree;no;no;no;cellular;apr;fri;301;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+41;blue-collar;married;unknown;unknown;no;no;cellular;apr;fri;203;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+43;blue-collar;married;basic.6y;unknown;yes;no;cellular;apr;fri;19;4;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+45;blue-collar;married;basic.9y;no;unknown;unknown;cellular;apr;fri;182;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+27;admin.;single;university.degree;no;yes;no;cellular;apr;fri;401;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+42;admin.;divorced;university.degree;no;yes;no;cellular;apr;fri;237;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+39;admin.;married;university.degree;no;unknown;unknown;cellular;apr;fri;198;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+38;unemployed;divorced;high.school;no;yes;yes;cellular;apr;fri;715;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;yes
+30;technician;single;professional.course;no;yes;no;cellular;apr;fri;346;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+36;admin.;single;high.school;no;yes;no;cellular;apr;fri;508;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+37;management;divorced;professional.course;no;yes;no;cellular;apr;fri;115;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+37;admin.;married;high.school;no;no;yes;cellular;apr;fri;463;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+42;services;married;high.school;no;yes;yes;telephone;apr;fri;73;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+40;self-employed;married;university.degree;no;no;no;cellular;apr;fri;775;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+36;admin.;single;high.school;no;yes;no;cellular;apr;fri;140;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+41;blue-collar;married;basic.4y;unknown;no;no;cellular;apr;fri;100;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+45;services;single;unknown;no;no;no;cellular;apr;fri;301;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+36;blue-collar;married;unknown;no;no;no;cellular;apr;fri;231;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+33;management;married;basic.9y;no;no;no;cellular;apr;fri;727;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+42;admin.;married;unknown;no;no;no;cellular;apr;fri;42;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+31;services;single;high.school;no;no;no;cellular;apr;fri;160;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+42;blue-collar;single;unknown;no;yes;no;cellular;apr;fri;130;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+35;admin.;married;university.degree;no;no;no;cellular;apr;fri;222;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+35;blue-collar;married;basic.9y;no;no;no;cellular;apr;fri;402;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+39;admin.;single;high.school;no;no;no;cellular;apr;fri;297;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+37;admin.;married;high.school;no;yes;no;cellular;apr;fri;207;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+41;unemployed;married;basic.9y;unknown;no;no;cellular;apr;fri;135;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+56;blue-collar;unknown;basic.4y;no;no;no;cellular;apr;fri;422;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+29;blue-collar;single;basic.9y;unknown;no;no;cellular;apr;fri;22;1;999;2;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+38;admin.;married;university.degree;no;yes;no;cellular;apr;fri;107;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+44;entrepreneur;married;university.degree;no;yes;no;cellular;apr;fri;1034;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+40;admin.;married;high.school;no;yes;no;cellular;apr;fri;326;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+36;blue-collar;married;basic.6y;no;yes;yes;cellular;apr;fri;91;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+30;services;single;high.school;unknown;yes;no;telephone;apr;fri;40;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+32;management;single;university.degree;unknown;yes;yes;cellular;apr;fri;333;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+41;admin.;married;university.degree;no;no;no;cellular;apr;fri;476;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+33;admin.;single;university.degree;no;no;no;cellular;apr;fri;326;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+27;admin.;single;high.school;no;yes;no;cellular;apr;fri;108;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+45;blue-collar;married;basic.9y;no;no;no;cellular;apr;fri;99;3;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+42;blue-collar;married;basic.6y;no;yes;no;cellular;apr;fri;240;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+39;technician;married;basic.6y;no;no;yes;cellular;apr;fri;158;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+34;blue-collar;married;professional.course;no;no;no;cellular;apr;fri;365;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+41;technician;married;professional.course;no;no;no;cellular;apr;fri;219;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+37;technician;divorced;high.school;no;no;no;cellular;apr;fri;188;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+29;student;single;professional.course;no;yes;no;cellular;apr;fri;96;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+22;admin.;single;university.degree;no;no;no;cellular;apr;fri;149;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+41;blue-collar;married;basic.6y;no;no;no;cellular;apr;fri;412;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+51;housemaid;divorced;high.school;unknown;no;no;cellular;apr;fri;145;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+44;management;married;professional.course;no;no;no;cellular;apr;fri;65;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+34;housemaid;divorced;university.degree;no;unknown;unknown;cellular;apr;fri;182;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+41;admin.;divorced;high.school;no;yes;no;cellular;apr;fri;114;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+41;blue-collar;married;basic.4y;unknown;yes;no;cellular;apr;fri;194;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+71;retired;single;unknown;no;yes;no;cellular;apr;fri;188;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+47;admin.;married;university.degree;unknown;yes;yes;cellular;apr;fri;126;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+50;technician;married;professional.course;no;no;no;cellular;apr;fri;93;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+34;technician;married;university.degree;no;no;no;cellular;apr;fri;772;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+28;admin.;single;university.degree;no;no;no;cellular;apr;fri;69;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+36;admin.;divorced;high.school;no;no;no;cellular;apr;fri;165;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+44;admin.;single;university.degree;no;yes;no;cellular;apr;fri;395;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+34;blue-collar;married;professional.course;no;no;no;cellular;apr;fri;345;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+44;admin.;single;university.degree;no;no;no;cellular;apr;fri;815;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+43;blue-collar;married;basic.9y;no;no;yes;cellular;apr;fri;147;3;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+48;admin.;married;basic.4y;no;yes;no;cellular;apr;fri;224;3;999;2;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+41;blue-collar;married;basic.4y;unknown;yes;no;cellular;apr;fri;150;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+25;student;married;university.degree;no;no;yes;cellular;apr;fri;74;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+33;technician;single;high.school;no;no;no;cellular;apr;fri;124;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+53;admin.;married;university.degree;no;yes;no;cellular;apr;fri;771;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+45;housemaid;married;university.degree;no;yes;no;telephone;apr;fri;460;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+49;services;divorced;high.school;no;no;no;cellular;apr;fri;300;3;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+36;technician;married;professional.course;no;yes;no;cellular;apr;fri;17;4;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+33;self-employed;single;university.degree;no;yes;no;cellular;apr;fri;254;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+47;management;married;professional.course;no;yes;no;cellular;apr;fri;239;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+30;technician;single;professional.course;no;no;no;cellular;apr;fri;73;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+29;services;single;high.school;no;no;no;cellular;apr;fri;473;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+31;admin.;married;high.school;no;yes;no;cellular;apr;fri;139;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+59;admin.;divorced;university.degree;no;yes;no;cellular;apr;fri;128;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+33;admin.;single;high.school;no;no;no;cellular;apr;fri;405;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+38;services;married;high.school;no;no;no;cellular;apr;fri;52;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+34;unemployed;married;basic.9y;unknown;yes;no;cellular;apr;fri;153;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+48;unemployed;married;high.school;no;yes;no;cellular;apr;fri;370;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+47;technician;divorced;university.degree;no;no;yes;cellular;apr;fri;642;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+38;technician;married;professional.course;unknown;no;no;cellular;apr;fri;232;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+29;student;single;unknown;no;yes;no;cellular;apr;fri;170;5;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+34;blue-collar;married;basic.9y;no;yes;no;cellular;apr;fri;333;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+36;admin.;single;high.school;no;yes;no;cellular;apr;fri;413;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+33;blue-collar;married;basic.4y;no;no;yes;cellular;apr;fri;163;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+36;blue-collar;married;basic.9y;unknown;no;no;telephone;apr;fri;599;4;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+31;admin.;married;high.school;no;no;no;cellular;apr;fri;246;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+36;technician;married;professional.course;unknown;no;no;cellular;apr;fri;322;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+28;technician;single;university.degree;no;no;no;cellular;apr;fri;232;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+75;housemaid;divorced;basic.4y;no;no;no;cellular;apr;fri;95;4;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+37;technician;married;professional.course;no;no;no;cellular;apr;fri;181;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+34;entrepreneur;married;university.degree;no;yes;no;cellular;apr;fri;104;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+30;services;single;professional.course;no;yes;no;cellular;apr;fri;186;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+47;technician;single;university.degree;no;no;no;cellular;apr;fri;115;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+37;admin.;married;high.school;no;yes;no;cellular;apr;fri;598;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+36;admin.;divorced;high.school;no;yes;no;cellular;apr;fri;323;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+36;entrepreneur;married;basic.9y;no;yes;no;cellular;apr;fri;273;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+43;blue-collar;married;basic.6y;no;yes;no;cellular;apr;fri;160;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+28;services;married;high.school;no;no;no;cellular;apr;fri;134;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+57;retired;married;basic.6y;unknown;no;no;cellular;apr;fri;203;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+51;blue-collar;married;basic.9y;unknown;no;no;cellular;apr;fri;541;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+40;blue-collar;single;basic.6y;unknown;no;yes;cellular;apr;fri;266;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+49;technician;married;unknown;no;no;no;cellular;apr;fri;378;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+33;admin.;married;high.school;unknown;no;no;cellular;apr;fri;220;6;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+37;services;married;high.school;no;no;no;cellular;apr;fri;606;2;1;1;success;-1.8;93.075;-47.1;1.405;5099.1;no
+48;services;single;high.school;no;no;no;cellular;apr;fri;105;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+26;technician;single;professional.course;no;yes;no;cellular;apr;fri;378;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+60;admin.;married;university.degree;no;no;no;cellular;apr;fri;246;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+37;entrepreneur;married;basic.4y;no;yes;no;cellular;apr;fri;1130;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+39;blue-collar;married;basic.4y;no;yes;no;cellular;apr;fri;156;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+55;management;married;university.degree;no;yes;no;cellular;apr;fri;949;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+44;services;single;high.school;no;no;no;cellular;apr;fri;276;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+40;housemaid;married;basic.6y;unknown;unknown;unknown;cellular;apr;fri;2926;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+49;admin.;divorced;high.school;no;unknown;unknown;cellular;apr;fri;88;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+40;blue-collar;single;basic.6y;unknown;yes;no;cellular;apr;fri;155;3;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+39;services;married;high.school;no;no;no;cellular;apr;fri;185;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+39;management;single;university.degree;no;no;no;cellular;apr;fri;278;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+31;entrepreneur;married;university.degree;unknown;yes;no;cellular;apr;fri;273;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+55;management;married;university.degree;no;no;no;cellular;apr;fri;171;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+42;admin.;single;high.school;no;no;no;cellular;apr;fri;166;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+24;services;single;high.school;no;no;yes;cellular;apr;fri;1426;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+47;admin.;married;basic.9y;no;yes;yes;cellular;apr;fri;795;3;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+49;admin.;single;basic.6y;no;yes;yes;cellular;apr;fri;441;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+37;services;married;high.school;no;yes;yes;cellular;apr;fri;398;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+32;services;married;high.school;no;no;yes;cellular;apr;fri;340;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+31;blue-collar;married;basic.9y;no;yes;no;cellular;apr;fri;308;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+36;blue-collar;married;basic.9y;no;yes;no;cellular;apr;fri;218;4;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+37;management;divorced;high.school;no;yes;no;cellular;apr;fri;647;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+41;admin.;married;high.school;no;no;yes;cellular;apr;fri;57;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+30;student;single;professional.course;no;no;yes;cellular;apr;fri;170;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+45;blue-collar;married;unknown;no;yes;no;cellular;apr;fri;666;3;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+38;technician;married;basic.4y;no;no;yes;cellular;apr;fri;244;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+35;admin.;single;high.school;no;no;no;cellular;apr;fri;146;2;5;2;success;-1.8;93.075;-47.1;1.405;5099.1;no
+37;technician;divorced;high.school;no;no;yes;telephone;apr;fri;318;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+55;admin.;divorced;high.school;no;unknown;unknown;cellular;apr;fri;278;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+33;admin.;single;university.degree;no;no;no;cellular;apr;fri;426;5;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+35;blue-collar;married;basic.6y;no;no;yes;cellular;apr;fri;229;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+38;admin.;single;high.school;no;yes;no;cellular;apr;fri;74;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+37;blue-collar;married;basic.9y;no;no;yes;cellular;apr;fri;1184;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+41;admin.;single;unknown;unknown;yes;no;cellular;apr;fri;464;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+35;admin.;single;university.degree;no;yes;no;cellular;apr;fri;334;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+38;blue-collar;married;basic.9y;unknown;no;yes;cellular;apr;fri;61;2;999;2;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+37;blue-collar;divorced;basic.4y;no;no;no;cellular;apr;fri;2053;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+46;entrepreneur;married;professional.course;no;no;yes;cellular;apr;fri;69;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+42;services;married;high.school;no;no;no;cellular;apr;fri;277;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+36;blue-collar;married;basic.9y;no;yes;no;cellular;apr;fri;1064;3;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+46;blue-collar;single;basic.4y;no;unknown;unknown;cellular;apr;fri;163;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+40;services;divorced;high.school;no;yes;no;telephone;apr;fri;501;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+36;admin.;single;high.school;no;yes;no;cellular;apr;fri;245;5;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+29;entrepreneur;single;university.degree;no;yes;no;cellular;apr;fri;738;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+55;retired;married;high.school;unknown;yes;no;cellular;apr;fri;87;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+43;blue-collar;married;basic.6y;unknown;no;no;cellular;apr;fri;335;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+34;blue-collar;divorced;basic.4y;no;no;no;cellular;apr;fri;204;5;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+34;management;divorced;professional.course;no;yes;no;cellular;apr;fri;140;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+33;technician;married;professional.course;unknown;yes;no;cellular;apr;fri;446;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+45;services;single;unknown;no;yes;no;cellular;apr;fri;164;4;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+40;blue-collar;married;basic.4y;no;yes;no;cellular;apr;fri;179;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+32;blue-collar;single;high.school;no;no;no;cellular;apr;fri;151;4;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+46;entrepreneur;married;professional.course;no;yes;yes;cellular;apr;fri;65;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+40;blue-collar;married;basic.6y;no;no;no;cellular;apr;fri;174;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+40;admin.;married;university.degree;no;yes;no;cellular;apr;fri;489;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+29;entrepreneur;single;university.degree;no;no;no;cellular;apr;fri;758;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+36;services;married;high.school;no;no;no;cellular;apr;fri;469;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+27;unemployed;single;basic.9y;no;no;no;cellular;apr;fri;48;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+40;services;married;high.school;no;no;no;cellular;apr;fri;368;6;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+29;admin.;single;university.degree;no;no;no;telephone;apr;fri;48;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+42;blue-collar;single;unknown;no;no;no;cellular;apr;fri;54;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+53;blue-collar;married;basic.4y;no;yes;no;cellular;apr;fri;342;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+46;management;married;university.degree;unknown;no;no;cellular;apr;fri;183;3;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+33;services;single;high.school;no;yes;no;cellular;apr;fri;73;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+43;blue-collar;married;basic.6y;unknown;no;no;cellular;apr;fri;315;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+28;admin.;single;university.degree;no;no;no;telephone;apr;fri;394;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+45;admin.;married;high.school;no;yes;yes;cellular;apr;fri;636;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+22;student;single;high.school;no;yes;no;cellular;apr;fri;14;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+38;technician;divorced;high.school;no;no;no;telephone;apr;fri;320;3;6;1;success;-1.8;93.075;-47.1;1.405;5099.1;yes
+26;technician;single;professional.course;no;yes;no;telephone;apr;fri;100;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+34;admin.;divorced;high.school;no;yes;yes;cellular;apr;fri;238;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+35;blue-collar;married;professional.course;no;no;no;cellular;apr;fri;317;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+39;management;single;university.degree;no;yes;no;cellular;apr;fri;271;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+40;admin.;single;high.school;no;yes;no;cellular;apr;fri;202;3;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+37;blue-collar;single;basic.6y;no;yes;no;cellular;apr;fri;99;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+41;blue-collar;married;unknown;unknown;yes;no;cellular;apr;fri;50;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+29;admin.;divorced;basic.9y;no;yes;no;cellular;apr;fri;321;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+36;admin.;single;high.school;no;yes;no;cellular;apr;fri;202;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+39;management;married;university.degree;no;no;yes;cellular;apr;fri;177;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+42;services;divorced;unknown;no;no;no;cellular;apr;fri;211;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+22;admin.;married;high.school;no;no;yes;cellular;apr;fri;108;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+35;blue-collar;married;basic.6y;no;no;no;cellular;apr;fri;672;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+44;blue-collar;single;basic.9y;unknown;yes;no;cellular;apr;fri;225;3;999;2;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+39;management;single;university.degree;no;no;no;cellular;apr;fri;952;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+45;blue-collar;married;unknown;no;no;no;cellular;apr;fri;119;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+38;management;divorced;university.degree;no;no;yes;cellular;apr;fri;131;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+34;technician;married;professional.course;no;yes;no;cellular;apr;fri;171;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+36;technician;married;professional.course;no;no;yes;cellular;apr;fri;239;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+36;admin.;single;high.school;no;no;no;cellular;apr;fri;193;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+42;services;single;high.school;no;no;no;cellular;apr;fri;544;3;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+48;admin.;divorced;high.school;no;no;yes;cellular;apr;fri;2139;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+60;retired;married;basic.4y;unknown;yes;no;cellular;apr;fri;314;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+41;blue-collar;married;basic.9y;unknown;yes;no;cellular;apr;fri;1038;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+40;self-employed;married;university.degree;no;no;no;cellular;apr;fri;625;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+31;student;single;high.school;no;yes;no;cellular;apr;fri;756;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+41;blue-collar;married;basic.4y;no;no;no;cellular;apr;fri;191;4;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+40;entrepreneur;married;basic.9y;no;yes;no;cellular;apr;fri;1013;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+33;admin.;divorced;high.school;no;no;no;telephone;apr;fri;392;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+49;technician;married;unknown;no;no;no;cellular;apr;fri;119;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+50;management;married;basic.6y;no;no;no;cellular;apr;fri;324;4;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+36;blue-collar;married;basic.6y;no;no;no;cellular;apr;fri;427;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+34;technician;divorced;professional.course;no;yes;yes;cellular;apr;fri;180;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+43;blue-collar;married;basic.6y;no;no;no;cellular;apr;fri;200;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+29;admin.;divorced;university.degree;no;yes;no;cellular;apr;fri;660;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+45;services;single;unknown;no;no;no;telephone;apr;fri;541;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+35;blue-collar;married;professional.course;no;yes;yes;telephone;apr;fri;114;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+36;services;married;high.school;no;no;no;cellular;apr;fri;291;4;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+39;admin.;married;university.degree;no;no;yes;cellular;apr;fri;72;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+41;blue-collar;married;basic.4y;unknown;yes;no;cellular;apr;fri;184;4;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+39;admin.;married;high.school;no;yes;no;cellular;apr;fri;479;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+33;blue-collar;married;high.school;no;yes;no;cellular;apr;mon;114;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+37;blue-collar;married;high.school;no;yes;no;cellular;apr;mon;196;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+33;technician;single;professional.course;no;no;no;cellular;apr;mon;148;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+45;housemaid;married;basic.4y;no;yes;no;cellular;apr;mon;158;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+34;admin.;married;basic.9y;no;yes;no;cellular;apr;mon;12;5;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+37;services;married;high.school;no;yes;yes;cellular;apr;mon;345;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+38;services;married;high.school;no;no;no;cellular;apr;mon;95;3;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+32;admin.;married;high.school;no;no;no;cellular;apr;mon;9;5;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+58;technician;married;professional.course;unknown;yes;no;cellular;apr;mon;483;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+34;self-employed;single;university.degree;no;yes;yes;cellular;apr;mon;152;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+36;technician;single;professional.course;unknown;yes;no;cellular;apr;mon;415;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+19;student;single;unknown;no;yes;yes;cellular;apr;mon;206;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+46;entrepreneur;married;basic.4y;unknown;yes;no;cellular;apr;mon;630;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+60;retired;married;basic.6y;no;yes;yes;telephone;apr;mon;384;5;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+32;technician;married;professional.course;no;no;no;cellular;apr;mon;322;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+38;blue-collar;married;basic.4y;no;no;yes;cellular;apr;mon;287;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+45;services;married;high.school;unknown;yes;no;cellular;apr;mon;184;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+19;student;single;unknown;no;yes;no;cellular;apr;mon;438;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+40;services;single;high.school;no;no;no;cellular;apr;mon;1332;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+31;management;married;university.degree;unknown;no;no;cellular;apr;mon;397;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+28;entrepreneur;married;university.degree;unknown;no;no;cellular;apr;mon;774;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+43;services;married;high.school;no;no;no;cellular;apr;mon;390;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+25;self-employed;divorced;university.degree;no;yes;no;telephone;apr;mon;173;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+40;technician;single;professional.course;no;yes;no;cellular;apr;mon;430;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+51;blue-collar;married;basic.9y;unknown;no;no;cellular;apr;mon;12;5;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+68;retired;married;high.school;no;no;yes;cellular;apr;mon;263;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+49;entrepreneur;married;basic.4y;no;no;no;cellular;apr;mon;383;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+42;blue-collar;married;high.school;no;yes;no;cellular;apr;mon;360;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+47;blue-collar;married;basic.4y;no;yes;no;cellular;apr;mon;311;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+40;blue-collar;married;basic.6y;unknown;yes;no;cellular;apr;mon;88;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+35;technician;married;university.degree;no;no;no;cellular;apr;mon;124;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+48;services;single;high.school;no;yes;no;cellular;apr;mon;1202;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+47;blue-collar;married;basic.9y;no;yes;yes;cellular;apr;mon;390;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+32;technician;divorced;basic.9y;no;no;no;cellular;apr;mon;105;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+30;student;single;university.degree;no;yes;yes;telephone;apr;mon;37;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+45;services;married;high.school;unknown;yes;no;cellular;apr;mon;79;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+32;services;married;high.school;no;yes;no;cellular;apr;mon;14;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+36;admin.;married;university.degree;no;yes;no;cellular;apr;mon;506;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+49;management;married;university.degree;no;no;no;cellular;apr;mon;257;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+36;management;single;high.school;no;no;no;cellular;apr;mon;150;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+37;blue-collar;divorced;basic.9y;no;yes;yes;cellular;apr;mon;156;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+46;entrepreneur;single;university.degree;no;yes;yes;cellular;apr;mon;142;12;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+48;services;married;high.school;no;no;no;cellular;apr;mon;1112;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+45;blue-collar;married;basic.4y;no;yes;no;telephone;apr;mon;169;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+36;blue-collar;divorced;basic.6y;no;yes;no;cellular;apr;mon;339;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+42;admin.;divorced;high.school;no;no;no;cellular;apr;mon;220;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+52;retired;married;high.school;no;yes;no;cellular;apr;mon;525;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+40;blue-collar;married;basic.6y;no;yes;no;cellular;apr;mon;374;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+33;blue-collar;single;basic.4y;no;no;no;cellular;apr;mon;210;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+36;unemployed;single;professional.course;unknown;yes;no;cellular;apr;mon;533;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+24;technician;single;high.school;no;yes;no;cellular;apr;mon;390;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+32;management;single;university.degree;no;yes;no;cellular;apr;mon;122;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+36;blue-collar;single;professional.course;unknown;yes;yes;telephone;apr;mon;73;3;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+34;services;single;basic.6y;no;yes;no;cellular;apr;mon;249;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+38;technician;married;professional.course;no;yes;no;cellular;apr;mon;136;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+37;blue-collar;married;basic.9y;no;yes;no;cellular;apr;mon;186;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+42;admin.;married;basic.9y;no;no;no;telephone;apr;mon;406;3;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+30;admin.;married;high.school;no;no;no;cellular;apr;mon;566;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+56;blue-collar;married;basic.6y;no;yes;yes;cellular;apr;mon;223;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+39;blue-collar;married;basic.4y;no;yes;no;cellular;apr;mon;421;4;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+40;blue-collar;married;basic.6y;no;no;no;cellular;apr;mon;83;5;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+25;self-employed;divorced;university.degree;no;yes;no;cellular;apr;mon;227;5;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+59;self-employed;married;professional.course;no;yes;no;cellular;apr;mon;860;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+29;technician;single;university.degree;no;no;no;cellular;apr;mon;354;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+35;blue-collar;married;basic.9y;no;no;no;cellular;apr;mon;207;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+39;entrepreneur;married;university.degree;unknown;yes;no;cellular;apr;mon;68;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+53;blue-collar;married;high.school;unknown;yes;yes;cellular;apr;mon;62;4;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+38;technician;single;professional.course;no;no;no;cellular;apr;mon;17;6;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+46;entrepreneur;single;university.degree;no;no;no;cellular;apr;mon;89;3;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+47;technician;married;high.school;unknown;no;no;cellular;apr;mon;267;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+29;services;single;high.school;no;no;no;cellular;apr;mon;386;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+53;blue-collar;married;high.school;unknown;no;no;cellular;apr;mon;193;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+59;self-employed;married;professional.course;no;unknown;unknown;cellular;apr;mon;69;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+35;admin.;divorced;high.school;no;unknown;unknown;cellular;apr;mon;214;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+41;blue-collar;married;high.school;no;no;no;cellular;apr;mon;239;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+40;blue-collar;married;basic.4y;no;no;no;cellular;apr;mon;1550;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+42;blue-collar;single;unknown;unknown;no;no;cellular;apr;mon;241;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+35;blue-collar;married;high.school;unknown;no;no;cellular;apr;mon;29;3;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+38;admin.;married;high.school;unknown;no;no;telephone;apr;mon;121;4;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+26;admin.;married;high.school;no;yes;no;cellular;apr;mon;61;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+42;services;married;high.school;no;yes;yes;cellular;apr;mon;234;5;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+35;technician;married;university.degree;no;yes;no;cellular;apr;mon;185;3;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+44;blue-collar;married;basic.9y;unknown;yes;no;cellular;apr;mon;399;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+31;blue-collar;married;basic.9y;no;yes;no;cellular;apr;mon;19;6;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+34;blue-collar;married;basic.9y;no;no;yes;cellular;apr;mon;96;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+31;blue-collar;single;basic.9y;no;yes;yes;cellular;apr;mon;218;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+43;technician;divorced;professional.course;unknown;no;no;cellular;apr;mon;131;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+43;services;married;high.school;no;no;no;cellular;apr;mon;26;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+51;blue-collar;married;basic.9y;unknown;yes;no;cellular;apr;mon;143;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+39;admin.;single;high.school;no;no;no;cellular;apr;mon;159;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+31;blue-collar;single;basic.9y;no;no;no;cellular;apr;mon;386;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+41;admin.;single;university.degree;no;yes;no;cellular;apr;mon;279;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+29;admin.;married;university.degree;no;yes;yes;cellular;apr;mon;245;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+31;admin.;single;university.degree;no;yes;no;cellular;apr;mon;201;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+44;blue-collar;married;basic.6y;no;no;no;cellular;apr;mon;428;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+29;self-employed;single;university.degree;no;yes;no;cellular;apr;mon;128;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+30;student;single;high.school;no;yes;no;cellular;apr;mon;7;6;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+46;entrepreneur;married;unknown;no;yes;no;cellular;apr;mon;466;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+37;blue-collar;single;professional.course;no;yes;no;cellular;apr;mon;304;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+53;admin.;married;professional.course;no;yes;no;cellular;apr;mon;185;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+48;services;divorced;high.school;no;yes;yes;cellular;apr;mon;108;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+48;services;divorced;high.school;no;yes;no;cellular;apr;mon;90;3;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+34;technician;married;professional.course;no;yes;no;cellular;apr;mon;122;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+48;services;divorced;high.school;no;yes;no;cellular;apr;mon;365;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+38;admin.;single;university.degree;no;yes;no;cellular;apr;mon;285;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+38;admin.;single;university.degree;no;yes;no;cellular;apr;mon;275;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+44;blue-collar;married;basic.6y;no;yes;yes;cellular;apr;mon;7;6;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+34;admin.;single;university.degree;no;yes;no;cellular;apr;mon;285;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+73;retired;married;basic.4y;no;yes;no;cellular;apr;mon;158;1;6;1;success;-1.8;93.075;-47.1;1.405;5099.1;no
+54;technician;married;high.school;no;yes;no;cellular;apr;mon;178;5;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+31;technician;single;professional.course;no;yes;no;cellular;apr;mon;199;6;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+46;blue-collar;married;basic.9y;unknown;no;no;cellular;apr;mon;63;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+31;blue-collar;single;basic.9y;no;no;no;cellular;apr;mon;65;5;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+56;retired;divorced;university.degree;no;yes;no;cellular;apr;mon;199;5;9;1;success;-1.8;93.075;-47.1;1.405;5099.1;no
+46;blue-collar;married;basic.9y;unknown;yes;no;cellular;apr;mon;188;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+40;blue-collar;married;basic.6y;unknown;yes;no;telephone;apr;mon;534;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+37;management;married;university.degree;no;yes;no;cellular;apr;mon;198;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+54;technician;married;professional.course;unknown;yes;no;cellular;apr;mon;130;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+37;management;married;university.degree;no;no;no;cellular;apr;mon;352;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+29;technician;single;university.degree;no;yes;no;cellular;apr;mon;210;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+43;admin.;single;university.degree;no;yes;no;cellular;apr;mon;670;4;11;1;success;-1.8;93.075;-47.1;1.405;5099.1;yes
+53;services;married;high.school;no;yes;no;cellular;apr;mon;62;4;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+35;technician;single;university.degree;unknown;no;no;cellular;apr;mon;712;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+37;management;married;university.degree;no;no;no;cellular;apr;mon;401;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+33;technician;married;high.school;no;yes;no;cellular;apr;mon;59;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+42;services;married;university.degree;no;yes;no;cellular;apr;mon;17;6;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+41;services;married;high.school;no;no;no;cellular;apr;mon;319;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+36;services;single;high.school;no;yes;no;cellular;apr;mon;142;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+40;technician;married;professional.course;no;yes;yes;cellular;apr;mon;314;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+40;management;married;university.degree;unknown;no;no;cellular;apr;mon;28;7;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+40;admin.;single;high.school;no;yes;no;cellular;apr;mon;133;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+34;admin.;married;basic.9y;no;yes;no;cellular;apr;mon;317;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+35;admin.;single;basic.9y;no;yes;no;cellular;apr;mon;79;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+26;admin.;single;high.school;no;yes;no;cellular;apr;mon;190;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+41;blue-collar;divorced;high.school;unknown;yes;no;cellular;apr;mon;111;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+29;technician;single;university.degree;no;no;yes;cellular;apr;mon;222;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+34;blue-collar;married;basic.9y;unknown;no;yes;cellular;apr;mon;49;5;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+38;technician;married;professional.course;no;no;no;cellular;apr;mon;277;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+37;blue-collar;married;high.school;no;yes;no;cellular;apr;mon;9;5;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+54;technician;married;professional.course;unknown;yes;no;cellular;apr;mon;698;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+57;entrepreneur;single;university.degree;no;no;yes;cellular;apr;mon;7;4;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+37;management;married;university.degree;no;yes;no;cellular;apr;mon;13;5;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+39;technician;single;professional.course;no;no;no;cellular;apr;mon;714;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+42;services;married;university.degree;no;yes;no;cellular;apr;mon;257;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+26;admin.;single;high.school;no;no;no;cellular;apr;mon;785;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+57;management;divorced;university.degree;unknown;no;no;cellular;apr;mon;322;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+36;admin.;married;high.school;no;no;no;cellular;apr;mon;658;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+50;blue-collar;married;basic.9y;no;no;no;cellular;apr;mon;98;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+42;management;single;university.degree;unknown;no;yes;cellular;apr;mon;144;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+36;technician;married;high.school;no;yes;yes;cellular;apr;mon;42;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+50;services;married;high.school;no;yes;no;cellular;apr;mon;12;6;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+41;admin.;married;high.school;no;yes;yes;cellular;apr;mon;254;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+52;admin.;divorced;basic.9y;no;yes;yes;cellular;apr;mon;9;5;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+26;admin.;single;high.school;no;no;no;cellular;apr;mon;123;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+40;blue-collar;married;basic.6y;no;no;no;cellular;apr;mon;97;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+46;entrepreneur;married;unknown;no;yes;yes;cellular;apr;mon;207;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+32;student;single;university.degree;no;yes;no;cellular;apr;mon;712;4;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+59;self-employed;married;professional.course;no;yes;no;cellular;apr;mon;274;5;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+40;services;married;high.school;no;yes;no;cellular;apr;mon;72;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+36;technician;married;high.school;no;no;no;cellular;apr;mon;207;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+38;blue-collar;divorced;basic.6y;no;yes;yes;cellular;apr;mon;37;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+35;blue-collar;married;high.school;unknown;yes;no;cellular;apr;mon;19;5;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+36;technician;married;high.school;no;no;no;cellular;apr;mon;517;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+32;admin.;married;high.school;no;yes;yes;telephone;apr;mon;24;1;999;2;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+33;services;married;high.school;no;yes;yes;cellular;apr;mon;18;5;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+40;admin.;divorced;university.degree;no;yes;no;cellular;apr;mon;238;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+36;management;married;university.degree;no;yes;yes;cellular;apr;mon;163;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+41;admin.;married;high.school;no;yes;yes;cellular;apr;mon;982;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+45;services;divorced;basic.9y;no;no;no;cellular;apr;mon;231;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+33;blue-collar;married;high.school;no;no;no;cellular;apr;mon;164;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+41;blue-collar;single;basic.4y;no;yes;no;cellular;apr;mon;94;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+36;management;married;university.degree;no;no;no;cellular;apr;mon;450;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+34;management;married;university.degree;no;yes;yes;cellular;apr;mon;107;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+42;services;married;high.school;no;yes;no;cellular;apr;mon;274;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+42;services;married;high.school;no;yes;no;cellular;apr;mon;200;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+34;blue-collar;single;basic.9y;unknown;yes;no;cellular;apr;mon;90;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+68;retired;married;high.school;no;yes;no;cellular;apr;mon;194;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+40;technician;single;professional.course;no;yes;no;cellular;apr;mon;250;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+35;technician;single;university.degree;no;yes;no;cellular;apr;mon;79;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+40;technician;single;professional.course;no;yes;yes;cellular;apr;mon;538;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+42;blue-collar;married;basic.4y;no;yes;no;cellular;apr;mon;257;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+43;management;married;university.degree;no;yes;yes;cellular;apr;mon;21;5;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+33;blue-collar;married;basic.9y;unknown;yes;no;cellular;apr;mon;335;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+30;technician;divorced;university.degree;no;no;no;cellular;apr;mon;96;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+38;management;divorced;university.degree;no;no;yes;cellular;apr;mon;72;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+40;retired;single;high.school;no;yes;no;cellular;apr;mon;166;4;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+37;services;divorced;high.school;unknown;yes;yes;cellular;apr;mon;92;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+35;blue-collar;married;high.school;unknown;no;no;cellular;apr;mon;63;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+36;management;single;high.school;no;yes;no;cellular;apr;mon;508;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+35;services;married;high.school;unknown;yes;no;cellular;apr;mon;219;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+47;management;married;university.degree;no;no;no;cellular;apr;mon;51;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+30;blue-collar;married;basic.4y;no;no;no;cellular;apr;mon;19;5;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+58;services;married;basic.6y;no;yes;no;cellular;apr;mon;41;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+45;technician;single;professional.course;no;unknown;unknown;cellular;apr;mon;80;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+35;admin.;single;university.degree;no;unknown;unknown;cellular;apr;mon;59;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+49;unemployed;married;basic.6y;unknown;no;no;cellular;apr;mon;68;5;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+38;management;divorced;university.degree;no;no;no;cellular;apr;mon;611;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+57;entrepreneur;single;university.degree;no;yes;yes;cellular;apr;mon;45;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+26;admin.;single;high.school;no;no;no;telephone;apr;mon;216;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+35;services;single;professional.course;unknown;no;no;cellular;apr;mon;204;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+31;management;single;university.degree;no;yes;no;cellular;apr;mon;92;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+46;admin.;married;high.school;unknown;no;no;cellular;apr;mon;11;5;999;2;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+34;admin.;divorced;university.degree;no;no;yes;cellular;apr;mon;473;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+34;technician;married;basic.9y;no;no;no;cellular;apr;mon;110;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+30;blue-collar;married;basic.4y;no;no;no;cellular;apr;mon;87;4;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+44;blue-collar;married;basic.4y;no;no;no;cellular;apr;mon;92;3;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+57;entrepreneur;single;university.degree;no;yes;no;cellular;apr;mon;720;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+43;services;single;university.degree;no;yes;no;cellular;apr;mon;178;4;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+29;blue-collar;married;basic.6y;no;no;no;cellular;apr;mon;84;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+38;blue-collar;married;professional.course;no;no;yes;cellular;apr;mon;123;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+48;services;single;basic.9y;no;yes;no;cellular;apr;mon;16;5;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+34;technician;married;basic.9y;no;no;no;cellular;apr;mon;617;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+36;services;single;high.school;unknown;no;yes;cellular;apr;mon;76;5;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+43;management;married;university.degree;no;no;no;telephone;apr;mon;205;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+32;technician;single;professional.course;no;no;no;cellular;apr;mon;62;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+32;technician;single;professional.course;no;no;no;cellular;apr;mon;33;1;6;1;success;-1.8;93.075;-47.1;1.405;5099.1;no
+43;management;married;university.degree;no;no;no;cellular;apr;mon;246;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+52;services;married;basic.6y;no;no;yes;cellular;apr;mon;44;2;999;2;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+56;self-employed;married;university.degree;no;no;no;cellular;apr;mon;83;3;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+19;student;single;unknown;no;unknown;unknown;cellular;apr;mon;213;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+26;blue-collar;single;basic.9y;no;no;no;cellular;apr;mon;586;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+43;management;married;university.degree;no;no;yes;cellular;apr;mon;443;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+35;services;married;basic.9y;unknown;yes;no;cellular;apr;mon;201;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+31;services;divorced;high.school;no;no;no;cellular;apr;mon;379;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+31;services;divorced;high.school;no;no;no;cellular;apr;mon;330;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+47;admin.;divorced;university.degree;no;yes;no;cellular;apr;mon;40;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+21;services;single;basic.9y;no;no;no;cellular;apr;mon;293;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+34;blue-collar;married;basic.9y;no;yes;no;cellular;apr;mon;240;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+45;services;married;basic.4y;no;unknown;unknown;cellular;apr;mon;130;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+37;technician;single;university.degree;no;no;no;cellular;apr;mon;190;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+36;technician;divorced;professional.course;no;no;no;cellular;apr;mon;15;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+36;technician;single;professional.course;unknown;yes;no;cellular;apr;mon;59;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+48;services;divorced;high.school;no;yes;yes;cellular;apr;mon;111;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+57;services;married;high.school;unknown;yes;no;cellular;apr;mon;157;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+53;housemaid;married;basic.6y;unknown;unknown;unknown;cellular;apr;mon;372;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+73;retired;married;basic.4y;no;yes;yes;cellular;apr;mon;128;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+23;student;single;high.school;no;yes;no;cellular;apr;mon;637;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+32;technician;married;professional.course;no;yes;no;cellular;apr;mon;140;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+56;self-employed;married;university.degree;no;yes;no;cellular;apr;mon;222;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+37;technician;single;professional.course;no;yes;no;cellular;apr;mon;20;4;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+34;blue-collar;married;basic.9y;no;yes;no;cellular;apr;mon;151;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+51;services;married;high.school;no;yes;no;cellular;apr;mon;272;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+56;services;married;basic.4y;no;yes;yes;cellular;apr;mon;15;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+28;self-employed;single;university.degree;no;yes;no;cellular;apr;mon;64;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+37;technician;single;professional.course;no;no;no;cellular;apr;mon;147;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+31;technician;single;professional.course;no;yes;no;cellular;apr;mon;170;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+31;technician;single;professional.course;no;no;no;cellular;apr;mon;217;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+46;services;married;high.school;no;no;no;cellular;apr;mon;53;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+28;self-employed;single;university.degree;no;yes;no;cellular;apr;mon;187;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+46;services;married;high.school;no;no;no;telephone;apr;mon;60;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+46;services;married;high.school;no;yes;no;cellular;apr;mon;180;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+30;admin.;single;university.degree;unknown;no;no;cellular;apr;mon;162;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+46;admin.;married;university.degree;no;yes;no;cellular;apr;mon;75;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+39;blue-collar;married;basic.4y;unknown;yes;no;cellular;apr;mon;405;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+43;management;married;university.degree;no;yes;no;cellular;apr;mon;818;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+57;services;married;high.school;unknown;yes;no;cellular;apr;mon;297;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+19;student;single;unknown;no;yes;no;cellular;apr;mon;159;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+45;blue-collar;married;basic.6y;no;no;no;cellular;apr;mon;293;1;1;1;success;-1.8;93.075;-47.1;1.405;5099.1;no
+32;technician;single;professional.course;no;yes;no;cellular;apr;mon;54;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+55;services;married;high.school;no;yes;yes;cellular;apr;mon;691;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+48;retired;divorced;basic.4y;unknown;yes;no;cellular;apr;mon;132;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+50;blue-collar;married;basic.9y;no;yes;no;cellular;apr;mon;567;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+40;self-employed;married;basic.9y;no;yes;yes;cellular;apr;mon;64;4;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+33;blue-collar;married;high.school;no;unknown;unknown;cellular;apr;mon;19;5;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+39;unemployed;single;high.school;no;yes;no;telephone;apr;mon;22;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+34;technician;married;basic.9y;no;yes;no;cellular;apr;mon;904;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+31;admin.;single;university.degree;no;yes;no;cellular;apr;mon;239;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+53;blue-collar;married;high.school;unknown;yes;no;cellular;apr;mon;354;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+47;self-employed;married;university.degree;no;no;no;cellular;apr;mon;145;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+52;admin.;married;university.degree;no;yes;no;cellular;apr;mon;95;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+44;blue-collar;married;basic.6y;no;no;no;cellular;apr;mon;400;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+41;blue-collar;married;basic.4y;unknown;no;no;cellular;apr;mon;197;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+40;admin.;single;university.degree;no;yes;no;cellular;apr;mon;221;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+34;blue-collar;married;basic.9y;no;yes;no;cellular;apr;mon;318;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+40;management;married;university.degree;no;yes;no;cellular;apr;mon;96;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+46;blue-collar;married;basic.9y;unknown;no;yes;cellular;apr;mon;222;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+44;blue-collar;married;basic.4y;no;unknown;unknown;cellular;apr;mon;308;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+29;blue-collar;married;basic.9y;unknown;no;no;cellular;apr;mon;54;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+71;retired;married;university.degree;no;no;no;cellular;apr;mon;349;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+38;admin.;single;university.degree;no;yes;yes;cellular;apr;mon;6;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+46;services;married;high.school;no;no;no;cellular;apr;mon;91;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+52;services;married;basic.6y;no;yes;no;cellular;apr;mon;44;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+49;entrepreneur;married;university.degree;no;yes;no;cellular;apr;mon;48;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+52;services;married;basic.6y;no;no;no;cellular;apr;mon;157;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+48;services;divorced;high.school;no;no;no;cellular;apr;mon;715;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+33;blue-collar;married;high.school;no;no;no;cellular;apr;mon;87;2;999;2;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+56;housemaid;married;basic.4y;no;yes;no;cellular;apr;mon;325;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+49;entrepreneur;married;university.degree;no;yes;no;cellular;apr;mon;334;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+46;admin.;married;high.school;unknown;yes;no;cellular;apr;mon;9;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+46;blue-collar;married;basic.9y;unknown;yes;no;cellular;apr;mon;72;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+47;blue-collar;married;basic.9y;no;yes;no;cellular;apr;mon;238;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+37;admin.;married;university.degree;no;yes;yes;cellular;apr;mon;245;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+75;retired;divorced;basic.4y;no;no;no;cellular;apr;mon;227;4;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+23;admin.;married;high.school;no;no;no;cellular;apr;mon;297;4;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+57;management;divorced;university.degree;unknown;yes;no;cellular;apr;mon;108;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+50;technician;married;professional.course;no;yes;no;cellular;apr;mon;38;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+53;admin.;single;university.degree;no;no;no;cellular;apr;mon;59;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+47;technician;married;high.school;unknown;no;no;cellular;apr;mon;222;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+37;blue-collar;divorced;basic.9y;no;yes;no;cellular;apr;mon;23;4;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+41;blue-collar;married;basic.9y;no;yes;no;cellular;apr;mon;148;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+52;admin.;married;university.degree;no;yes;no;cellular;apr;mon;181;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+29;management;single;university.degree;no;no;no;cellular;apr;mon;190;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+54;technician;married;high.school;no;yes;no;cellular;apr;mon;82;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+31;services;married;high.school;no;no;no;telephone;apr;mon;151;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+30;admin.;single;high.school;no;yes;no;cellular;apr;mon;180;3;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+33;blue-collar;married;basic.9y;no;yes;no;cellular;apr;mon;253;3;999;2;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+30;blue-collar;married;basic.4y;no;yes;no;cellular;apr;mon;202;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+45;admin.;divorced;high.school;unknown;yes;no;cellular;apr;mon;47;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+33;technician;married;high.school;no;no;no;cellular;apr;mon;211;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+53;management;divorced;university.degree;unknown;unknown;unknown;cellular;apr;mon;249;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+34;admin.;married;basic.9y;no;yes;no;cellular;apr;mon;63;4;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+38;admin.;single;university.degree;no;unknown;unknown;cellular;apr;mon;147;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+45;blue-collar;married;basic.6y;no;yes;no;cellular;apr;mon;170;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+34;entrepreneur;single;university.degree;no;no;no;cellular;apr;mon;151;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+22;services;single;high.school;no;yes;no;cellular;apr;mon;224;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+36;blue-collar;married;basic.9y;no;yes;no;cellular;apr;mon;430;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+35;blue-collar;married;basic.4y;unknown;yes;no;cellular;apr;mon;107;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+19;student;single;unknown;no;yes;no;cellular;apr;mon;205;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;yes
+40;self-employed;single;university.degree;no;yes;no;cellular;apr;mon;379;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+30;blue-collar;married;basic.4y;no;yes;no;cellular;apr;mon;42;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+35;admin.;married;university.degree;no;yes;no;cellular;apr;mon;129;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+35;entrepreneur;divorced;university.degree;no;no;no;cellular;apr;mon;76;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+52;admin.;divorced;basic.9y;no;yes;yes;cellular;apr;mon;20;5;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+31;services;divorced;high.school;no;no;no;cellular;apr;mon;379;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+40;admin.;divorced;university.degree;no;yes;no;telephone;apr;mon;180;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+45;technician;married;high.school;no;yes;no;cellular;apr;mon;116;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+33;technician;divorced;professional.course;no;yes;no;cellular;apr;mon;153;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+38;self-employed;married;university.degree;unknown;yes;no;cellular;apr;mon;93;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+37;services;divorced;high.school;unknown;yes;no;cellular;apr;mon;369;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+31;self-employed;married;university.degree;no;yes;no;cellular;apr;mon;291;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+43;blue-collar;married;basic.4y;no;yes;no;cellular;apr;mon;268;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+34;blue-collar;married;high.school;no;yes;no;cellular;apr;mon;143;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+40;services;married;high.school;unknown;yes;no;cellular;apr;mon;78;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+40;services;married;high.school;unknown;yes;no;cellular;apr;mon;226;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+45;blue-collar;married;basic.9y;no;yes;no;cellular;apr;mon;174;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+55;admin.;married;university.degree;no;yes;no;cellular;apr;mon;247;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+56;housemaid;married;university.degree;no;yes;no;cellular;apr;mon;148;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+31;admin.;single;university.degree;no;yes;no;cellular;apr;mon;98;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+59;self-employed;married;professional.course;no;yes;no;cellular;apr;mon;121;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+33;housemaid;single;high.school;unknown;yes;yes;cellular;apr;mon;114;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+37;blue-collar;single;basic.4y;no;yes;no;cellular;apr;mon;326;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+60;blue-collar;married;basic.4y;unknown;yes;no;cellular;apr;mon;89;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+30;technician;divorced;university.degree;no;no;no;cellular;apr;mon;281;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+32;technician;married;university.degree;no;no;no;cellular;apr;mon;345;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+41;blue-collar;married;high.school;no;yes;no;cellular;apr;mon;53;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+24;admin.;single;professional.course;no;yes;no;cellular;apr;mon;97;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+53;management;divorced;university.degree;unknown;yes;no;cellular;apr;mon;165;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+57;services;married;high.school;no;yes;no;cellular;apr;mon;113;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+33;blue-collar;married;high.school;no;no;no;cellular;apr;mon;207;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+59;technician;divorced;professional.course;no;no;no;cellular;apr;mon;185;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+40;blue-collar;married;basic.6y;unknown;unknown;unknown;cellular;apr;mon;121;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+30;technician;single;university.degree;no;unknown;unknown;cellular;apr;mon;112;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+29;technician;single;basic.9y;no;unknown;unknown;telephone;apr;mon;116;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+50;admin.;married;high.school;no;no;no;cellular;apr;mon;177;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+25;self-employed;divorced;university.degree;no;no;no;cellular;apr;mon;111;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+35;technician;single;university.degree;unknown;yes;yes;cellular;apr;mon;378;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+44;management;married;university.degree;no;no;no;cellular;apr;mon;44;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+25;self-employed;divorced;university.degree;no;no;no;cellular;apr;mon;241;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+25;self-employed;divorced;university.degree;no;no;yes;cellular;apr;mon;163;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+32;admin.;single;university.degree;no;yes;no;cellular;apr;mon;237;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+37;management;married;university.degree;no;no;no;cellular;apr;mon;666;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+50;admin.;divorced;basic.9y;no;yes;yes;cellular;apr;mon;137;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+39;management;married;university.degree;no;yes;no;cellular;apr;mon;305;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+43;management;married;university.degree;no;yes;no;cellular;apr;mon;87;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+37;admin.;married;high.school;no;no;no;cellular;apr;mon;131;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+21;student;single;high.school;no;yes;no;cellular;apr;mon;110;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+32;management;single;university.degree;no;no;no;cellular;apr;mon;333;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+39;management;single;university.degree;no;yes;no;cellular;apr;mon;48;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+34;blue-collar;married;basic.9y;no;no;no;cellular;apr;mon;86;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+36;technician;married;basic.9y;no;yes;no;cellular;apr;mon;419;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+51;blue-collar;divorced;basic.4y;no;no;yes;cellular;apr;mon;16;5;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+45;services;divorced;basic.9y;no;yes;no;cellular;apr;mon;325;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+46;services;married;high.school;unknown;yes;no;cellular;apr;mon;766;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+21;self-employed;single;university.degree;no;yes;yes;cellular;apr;mon;169;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+31;services;divorced;high.school;no;yes;no;cellular;apr;mon;97;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+54;technician;married;high.school;no;no;no;cellular;apr;mon;58;3;999;2;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+31;services;divorced;high.school;no;yes;no;cellular;apr;mon;267;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+21;self-employed;single;university.degree;no;yes;no;cellular;apr;mon;345;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+53;admin.;married;professional.course;no;yes;no;cellular;apr;mon;476;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+41;admin.;single;university.degree;no;no;no;cellular;apr;mon;115;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+50;entrepreneur;married;high.school;no;yes;no;cellular;apr;mon;257;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+34;management;married;university.degree;no;no;no;cellular;apr;mon;163;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+38;admin.;unknown;university.degree;no;no;no;cellular;apr;mon;517;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+38;blue-collar;married;high.school;no;no;no;telephone;apr;mon;340;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+48;services;divorced;high.school;no;unknown;unknown;cellular;apr;mon;124;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+23;student;single;university.degree;no;unknown;unknown;cellular;apr;mon;131;6;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+48;services;divorced;high.school;no;yes;no;cellular;apr;mon;436;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+36;admin.;married;high.school;no;yes;no;cellular;apr;mon;53;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+42;blue-collar;married;basic.4y;no;yes;yes;cellular;apr;mon;172;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+39;technician;single;university.degree;no;yes;yes;cellular;apr;mon;861;6;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+53;management;divorced;university.degree;unknown;no;no;cellular;apr;mon;414;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+31;services;married;basic.9y;no;no;no;cellular;apr;mon;74;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+34;admin.;single;basic.6y;no;no;no;cellular;apr;mon;28;5;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+44;blue-collar;divorced;basic.4y;unknown;yes;yes;cellular;apr;mon;542;3;999;2;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+34;admin.;single;basic.6y;no;no;no;cellular;apr;mon;170;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+36;admin.;single;university.degree;unknown;yes;no;cellular;apr;mon;198;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+24;admin.;single;university.degree;no;yes;no;cellular;apr;mon;393;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+41;technician;married;professional.course;no;yes;yes;cellular;apr;mon;168;3;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+32;technician;single;professional.course;no;yes;yes;cellular;apr;mon;230;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+43;management;married;university.degree;no;no;no;cellular;apr;mon;48;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+41;blue-collar;married;basic.4y;no;no;no;cellular;apr;mon;243;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+46;blue-collar;single;university.degree;no;no;no;cellular;apr;mon;1422;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+31;services;divorced;high.school;no;no;no;cellular;apr;mon;150;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+36;services;single;high.school;unknown;no;yes;cellular;apr;mon;18;5;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+41;admin.;married;high.school;no;no;yes;cellular;apr;mon;239;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+24;admin.;single;professional.course;no;no;no;cellular;apr;mon;267;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+40;blue-collar;married;basic.4y;no;yes;yes;cellular;apr;mon;45;4;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+41;admin.;married;professional.course;no;yes;yes;cellular;apr;mon;528;3;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+39;admin.;single;high.school;no;yes;yes;cellular;apr;mon;55;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+39;admin.;single;university.degree;no;yes;no;cellular;apr;mon;72;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+31;technician;single;professional.course;no;yes;no;telephone;apr;mon;16;12;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+39;services;single;basic.9y;unknown;yes;no;cellular;apr;mon;54;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+50;management;married;university.degree;no;yes;yes;cellular;apr;mon;228;3;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+19;student;single;unknown;no;yes;no;cellular;apr;mon;104;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+33;admin.;single;university.degree;unknown;no;no;cellular;apr;mon;73;4;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+40;blue-collar;married;basic.4y;no;no;no;cellular;apr;mon;687;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+35;technician;married;university.degree;no;yes;no;cellular;apr;mon;90;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+43;technician;divorced;professional.course;unknown;yes;no;cellular;apr;mon;104;5;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+29;technician;single;basic.9y;no;yes;no;cellular;apr;mon;114;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+37;blue-collar;married;high.school;no;yes;no;cellular;apr;mon;233;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+21;student;single;high.school;no;no;no;cellular;apr;mon;258;4;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+36;services;married;high.school;no;yes;no;cellular;apr;mon;334;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+50;management;married;university.degree;no;yes;no;cellular;apr;mon;143;4;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+27;technician;single;university.degree;no;no;yes;cellular;apr;mon;400;5;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+31;services;single;high.school;no;yes;yes;cellular;apr;mon;289;3;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+35;management;married;university.degree;no;no;no;cellular;apr;mon;81;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+37;blue-collar;married;basic.4y;unknown;no;yes;cellular;apr;mon;64;3;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+42;services;married;university.degree;no;yes;no;cellular;apr;mon;155;4;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+25;self-employed;single;university.degree;unknown;yes;no;cellular;apr;mon;66;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+37;services;married;high.school;no;no;no;cellular;apr;mon;1010;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+54;management;married;university.degree;unknown;no;yes;cellular;apr;mon;1817;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+25;admin.;married;university.degree;no;yes;no;cellular;apr;mon;137;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+52;entrepreneur;married;basic.9y;no;yes;yes;telephone;apr;mon;67;5;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+25;admin.;single;university.degree;no;no;yes;cellular;apr;mon;120;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+31;services;married;basic.9y;no;yes;no;cellular;apr;mon;1030;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+47;technician;married;basic.9y;no;yes;no;cellular;apr;mon;151;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+35;admin.;divorced;university.degree;no;yes;yes;cellular;apr;mon;121;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+37;blue-collar;married;basic.4y;unknown;yes;yes;cellular;apr;mon;17;6;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+31;admin.;single;university.degree;no;yes;yes;cellular;apr;mon;885;5;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;yes
+69;retired;divorced;basic.4y;no;no;no;cellular;apr;mon;92;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+37;blue-collar;married;basic.6y;no;yes;no;cellular;apr;mon;724;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+47;blue-collar;single;basic.9y;unknown;yes;no;cellular;apr;mon;68;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+36;blue-collar;single;professional.course;unknown;no;no;cellular;apr;mon;36;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+69;retired;divorced;basic.4y;no;yes;no;cellular;apr;mon;453;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+34;admin.;single;university.degree;no;yes;no;cellular;apr;mon;58;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+37;admin.;married;basic.9y;no;yes;no;cellular;apr;mon;304;7;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+45;blue-collar;married;basic.9y;unknown;yes;no;cellular;apr;mon;282;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+33;admin.;single;high.school;unknown;yes;no;telephone;apr;mon;58;5;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+46;services;divorced;high.school;unknown;yes;no;cellular;apr;mon;81;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+34;admin.;married;basic.9y;no;yes;no;cellular;apr;mon;401;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+50;blue-collar;married;basic.4y;no;no;no;cellular;apr;mon;246;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+46;services;married;high.school;unknown;no;no;cellular;apr;mon;270;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+33;blue-collar;single;basic.4y;no;yes;no;cellular;apr;mon;108;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+31;services;married;basic.9y;no;no;no;cellular;apr;mon;643;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+39;management;married;university.degree;no;no;yes;cellular;apr;mon;76;4;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+33;blue-collar;married;basic.9y;unknown;no;no;cellular;apr;mon;11;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+35;admin.;single;basic.9y;no;no;no;cellular;apr;mon;91;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+32;blue-collar;single;basic.6y;no;no;no;cellular;apr;mon;87;4;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+42;blue-collar;married;high.school;no;yes;no;cellular;apr;mon;89;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+34;admin.;single;university.degree;no;yes;no;cellular;apr;mon;81;4;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+37;blue-collar;married;professional.course;no;yes;no;cellular;apr;mon;93;4;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+52;entrepreneur;divorced;university.degree;unknown;yes;no;telephone;apr;mon;70;4;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+35;services;married;high.school;no;no;no;cellular;apr;mon;226;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+33;housemaid;married;basic.4y;no;yes;no;cellular;apr;mon;172;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+39;admin.;single;high.school;no;no;no;cellular;apr;mon;121;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+50;blue-collar;married;basic.9y;no;yes;no;cellular;apr;mon;249;3;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+34;blue-collar;single;basic.9y;no;yes;no;cellular;apr;mon;8;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+33;blue-collar;divorced;basic.9y;no;no;no;cellular;apr;mon;10;6;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+45;blue-collar;married;basic.6y;no;yes;no;cellular;apr;mon;132;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+42;services;married;university.degree;no;no;no;cellular;apr;mon;890;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+31;admin.;single;university.degree;no;yes;no;cellular;apr;mon;10;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+27;blue-collar;married;basic.9y;unknown;yes;no;cellular;apr;mon;294;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+57;self-employed;married;basic.4y;no;yes;no;telephone;apr;mon;534;3;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+56;retired;divorced;university.degree;no;yes;no;cellular;apr;mon;529;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+43;blue-collar;married;basic.9y;no;yes;no;cellular;apr;mon;8;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+36;technician;married;basic.9y;no;yes;yes;cellular;apr;mon;7;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+33;housemaid;married;basic.4y;no;yes;no;cellular;apr;mon;8;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+44;blue-collar;married;basic.9y;unknown;yes;no;cellular;apr;mon;81;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+41;admin.;married;professional.course;no;no;no;cellular;apr;mon;9;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+34;blue-collar;married;basic.9y;unknown;yes;no;cellular;apr;mon;10;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+23;student;single;high.school;no;no;no;cellular;apr;mon;400;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+24;technician;single;professional.course;no;yes;no;cellular;apr;mon;200;3;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+38;services;married;high.school;no;yes;no;cellular;apr;mon;22;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+40;management;married;university.degree;unknown;yes;no;cellular;apr;mon;241;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+29;admin.;single;high.school;no;yes;no;telephone;apr;mon;32;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+33;blue-collar;married;high.school;no;yes;no;cellular;apr;mon;52;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+33;technician;single;professional.course;no;no;no;cellular;apr;mon;69;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+30;blue-collar;single;basic.9y;unknown;yes;no;cellular;apr;mon;145;4;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+50;admin.;married;high.school;no;yes;no;cellular;apr;mon;562;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+35;services;married;basic.9y;no;yes;no;telephone;apr;mon;26;4;999;2;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+46;services;married;high.school;no;no;no;cellular;apr;mon;124;4;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+43;technician;divorced;professional.course;unknown;yes;no;telephone;apr;mon;18;5;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+33;services;single;high.school;no;no;no;cellular;apr;mon;11;5;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+31;technician;single;professional.course;no;yes;no;cellular;apr;mon;21;5;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+29;technician;single;unknown;no;no;no;cellular;apr;mon;415;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+40;admin.;single;university.degree;no;no;no;cellular;apr;mon;140;4;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+43;blue-collar;married;basic.6y;no;no;no;cellular;apr;mon;87;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+54;management;married;university.degree;unknown;no;no;cellular;apr;mon;138;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+44;blue-collar;divorced;basic.4y;unknown;yes;no;cellular;apr;mon;16;3;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+37;blue-collar;married;basic.9y;no;no;yes;cellular;apr;mon;116;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+36;technician;married;basic.6y;no;no;no;cellular;apr;mon;316;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+60;blue-collar;married;basic.4y;unknown;no;no;cellular;apr;mon;198;3;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+24;admin.;married;professional.course;no;yes;no;cellular;apr;mon;102;6;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+57;technician;married;university.degree;no;no;no;cellular;apr;mon;72;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+40;management;married;university.degree;no;no;no;cellular;apr;mon;31;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+47;blue-collar;married;basic.9y;no;yes;no;cellular;apr;mon;9;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+42;admin.;divorced;high.school;no;no;no;cellular;apr;mon;190;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+31;blue-collar;married;professional.course;unknown;yes;no;cellular;apr;mon;280;4;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+38;technician;single;professional.course;no;yes;no;cellular;apr;mon;152;5;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+34;blue-collar;single;basic.9y;unknown;no;no;cellular;apr;mon;36;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+46;entrepreneur;married;unknown;no;yes;no;cellular;apr;mon;58;4;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+38;entrepreneur;married;basic.9y;no;yes;no;cellular;apr;mon;13;4;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+49;admin.;married;university.degree;no;yes;no;cellular;apr;mon;404;6;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+56;technician;married;professional.course;unknown;no;no;cellular;apr;mon;136;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+34;blue-collar;married;basic.6y;no;yes;no;telephone;apr;mon;7;5;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+46;admin.;single;university.degree;no;no;no;cellular;apr;mon;277;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+37;services;single;professional.course;no;yes;no;cellular;apr;mon;93;3;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+30;student;single;university.degree;no;yes;no;cellular;apr;mon;23;6;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+49;entrepreneur;married;university.degree;no;no;yes;cellular;apr;mon;281;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+35;technician;married;university.degree;no;yes;no;cellular;apr;mon;20;4;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+41;blue-collar;married;professional.course;no;no;no;cellular;apr;mon;233;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+45;blue-collar;divorced;basic.4y;no;no;no;telephone;apr;mon;197;4;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+42;blue-collar;married;basic.4y;no;no;no;cellular;apr;mon;220;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+28;admin.;single;high.school;no;no;no;cellular;apr;mon;1333;5;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+51;blue-collar;married;basic.9y;no;yes;no;cellular;apr;mon;104;4;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+42;blue-collar;married;basic.4y;no;yes;no;cellular;apr;mon;179;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+37;blue-collar;single;professional.course;no;yes;no;cellular;apr;mon;12;5;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+37;admin.;married;university.degree;no;no;no;cellular;apr;mon;69;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+60;retired;married;basic.6y;no;yes;no;cellular;apr;mon;579;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+49;services;married;high.school;no;no;no;cellular;apr;mon;173;4;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+34;blue-collar;married;basic.9y;no;no;no;cellular;apr;mon;231;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+32;services;married;high.school;no;no;no;cellular;apr;mon;259;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+33;blue-collar;married;basic.9y;no;no;yes;cellular;apr;mon;780;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+46;admin.;married;basic.9y;no;no;no;cellular;apr;mon;405;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+42;blue-collar;divorced;basic.9y;no;no;no;cellular;apr;mon;20;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+55;admin.;married;university.degree;no;yes;yes;cellular;apr;mon;204;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+54;blue-collar;married;basic.4y;unknown;yes;no;cellular;apr;mon;847;5;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+33;blue-collar;single;basic.4y;no;no;no;cellular;apr;mon;242;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+33;blue-collar;married;basic.9y;unknown;no;yes;cellular;apr;mon;243;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+39;admin.;married;university.degree;no;no;no;cellular;apr;mon;505;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+39;admin.;married;university.degree;no;no;no;cellular;apr;mon;355;3;999;2;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+37;services;single;professional.course;no;yes;no;cellular;apr;mon;307;4;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+47;blue-collar;married;basic.9y;no;unknown;unknown;cellular;apr;mon;72;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+38;services;married;high.school;no;no;no;cellular;apr;mon;250;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+31;admin.;single;university.degree;no;no;no;cellular;apr;mon;164;6;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+60;blue-collar;married;basic.4y;unknown;yes;no;cellular;apr;mon;18;4;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+36;blue-collar;married;basic.9y;no;yes;no;cellular;apr;mon;57;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+39;admin.;single;university.degree;unknown;yes;no;cellular;apr;mon;372;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+43;blue-collar;married;basic.6y;unknown;yes;no;cellular;apr;mon;353;4;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+40;technician;single;professional.course;no;yes;no;cellular;apr;mon;8;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+46;blue-collar;married;basic.9y;unknown;yes;no;cellular;apr;mon;250;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+38;admin.;divorced;basic.9y;no;yes;no;cellular;apr;mon;39;4;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+38;blue-collar;married;basic.9y;no;yes;no;cellular;apr;mon;22;4;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+33;technician;married;high.school;no;unknown;unknown;cellular;apr;mon;122;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+27;management;single;university.degree;no;yes;yes;cellular;apr;mon;21;4;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+34;blue-collar;married;basic.9y;no;no;no;cellular;apr;mon;31;4;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+39;blue-collar;married;basic.4y;no;yes;no;cellular;apr;mon;554;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+35;blue-collar;married;basic.4y;unknown;no;no;cellular;apr;mon;212;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+40;blue-collar;married;basic.9y;unknown;no;no;cellular;apr;mon;144;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+33;blue-collar;divorced;basic.9y;no;no;yes;cellular;apr;mon;34;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+40;admin.;married;professional.course;unknown;no;no;cellular;apr;mon;98;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+34;self-employed;single;university.degree;no;yes;no;cellular;apr;mon;639;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+37;services;married;high.school;no;yes;no;cellular;apr;mon;106;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+54;technician;married;high.school;no;yes;no;cellular;apr;mon;94;3;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+32;services;married;high.school;no;yes;yes;cellular;apr;mon;6;6;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+40;admin.;single;university.degree;no;yes;yes;cellular;apr;mon;8;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+38;entrepreneur;single;basic.4y;no;yes;yes;cellular;apr;mon;7;4;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+34;technician;married;professional.course;no;no;no;cellular;apr;mon;1156;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+42;blue-collar;married;high.school;no;no;yes;cellular;apr;mon;178;5;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+53;blue-collar;married;basic.6y;no;yes;yes;cellular;apr;mon;208;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+52;technician;married;professional.course;no;yes;no;telephone;apr;mon;43;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+48;services;divorced;high.school;no;yes;no;cellular;apr;mon;25;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+37;technician;single;university.degree;no;yes;no;cellular;apr;mon;6;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+57;self-employed;married;basic.4y;no;yes;no;cellular;apr;mon;659;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+36;admin.;married;university.degree;no;yes;no;telephone;apr;mon;5;3;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+39;admin.;married;high.school;no;yes;no;cellular;apr;mon;149;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+57;self-employed;married;basic.4y;no;yes;no;cellular;apr;mon;627;5;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+37;blue-collar;married;high.school;no;no;no;cellular;apr;mon;943;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+34;admin.;single;university.degree;no;yes;no;cellular;apr;mon;305;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+54;admin.;married;university.degree;no;yes;yes;cellular;apr;tue;235;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+64;retired;married;university.degree;no;yes;no;cellular;apr;tue;146;4;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+31;technician;single;university.degree;no;no;yes;cellular;apr;tue;333;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+56;self-employed;married;university.degree;no;no;no;cellular;apr;tue;110;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+75;retired;married;basic.4y;no;no;no;cellular;apr;tue;186;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+64;retired;married;university.degree;no;yes;yes;cellular;apr;tue;159;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+53;admin.;married;university.degree;no;yes;no;cellular;apr;tue;142;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+54;management;married;university.degree;no;yes;no;cellular;apr;tue;336;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+78;retired;married;basic.4y;no;yes;no;cellular;apr;tue;274;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+57;retired;married;basic.4y;no;yes;yes;telephone;apr;tue;1348;4;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+19;student;single;unknown;no;yes;no;telephone;apr;tue;396;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+31;technician;single;university.degree;no;no;no;telephone;apr;tue;207;17;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+75;retired;married;basic.4y;no;no;no;cellular;apr;tue;109;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;yes
+44;unknown;divorced;unknown;no;no;no;cellular;apr;tue;189;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+41;technician;married;university.degree;no;no;no;cellular;apr;tue;219;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+31;technician;single;university.degree;no;unknown;unknown;telephone;apr;tue;222;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+47;housemaid;single;professional.course;no;yes;no;cellular;apr;tue;100;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+61;retired;married;professional.course;no;unknown;unknown;cellular;apr;tue;164;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+70;retired;married;basic.6y;no;yes;no;cellular;apr;tue;252;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+54;management;married;university.degree;no;yes;no;cellular;apr;tue;211;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+54;management;married;university.degree;no;no;no;cellular;apr;tue;243;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+78;retired;married;basic.4y;no;yes;yes;cellular;apr;tue;75;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+66;retired;married;basic.4y;no;yes;no;cellular;apr;tue;63;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+29;technician;single;university.degree;no;no;no;cellular;apr;tue;95;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+65;self-employed;married;professional.course;no;no;no;telephone;apr;tue;110;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+65;retired;married;basic.4y;no;unknown;unknown;cellular;apr;tue;106;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+20;student;single;unknown;no;yes;yes;cellular;apr;tue;47;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+47;housemaid;married;basic.4y;no;no;no;cellular;apr;tue;645;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+34;admin.;divorced;high.school;no;no;no;cellular;apr;tue;446;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+34;admin.;divorced;high.school;no;yes;no;cellular;apr;tue;121;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+34;admin.;divorced;high.school;no;yes;no;telephone;apr;tue;946;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+75;retired;married;basic.4y;no;no;no;cellular;apr;tue;356;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;yes
+53;admin.;married;university.degree;no;yes;no;cellular;apr;tue;158;2;6;1;success;-1.8;93.075;-47.1;1.405;5099.1;yes
+31;technician;single;university.degree;no;yes;no;telephone;apr;tue;847;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+47;housemaid;single;professional.course;no;yes;no;cellular;apr;tue;242;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+78;retired;married;basic.4y;no;yes;no;telephone;apr;tue;137;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+19;student;single;unknown;no;yes;yes;cellular;apr;tue;278;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+85;retired;married;basic.4y;unknown;yes;no;cellular;apr;tue;129;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+64;retired;married;university.degree;no;no;no;cellular;apr;tue;157;4;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+27;services;single;high.school;no;yes;no;cellular;apr;tue;204;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+31;technician;single;university.degree;no;no;no;telephone;apr;tue;126;4;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+61;admin.;married;university.degree;no;yes;no;cellular;apr;wed;183;5;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+46;admin.;married;university.degree;no;yes;no;telephone;apr;wed;94;7;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+46;admin.;married;university.degree;no;yes;no;telephone;apr;wed;154;8;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+23;admin.;single;university.degree;no;yes;no;cellular;apr;wed;71;7;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+33;admin.;single;university.degree;no;yes;no;telephone;apr;wed;220;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+29;admin.;single;high.school;no;yes;yes;telephone;apr;wed;186;4;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+23;admin.;single;university.degree;no;no;yes;cellular;apr;wed;343;5;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+23;admin.;single;university.degree;no;no;no;cellular;apr;wed;341;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+30;unemployed;single;university.degree;no;yes;no;cellular;apr;wed;400;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+23;admin.;single;university.degree;no;yes;no;cellular;apr;wed;621;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+23;admin.;single;university.degree;no;yes;no;cellular;apr;wed;219;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+52;blue-collar;married;basic.4y;no;yes;no;cellular;apr;wed;315;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+45;self-employed;single;basic.9y;no;yes;no;cellular;apr;wed;156;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+23;admin.;single;university.degree;no;no;no;cellular;apr;wed;314;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;yes
+45;technician;divorced;university.degree;no;no;yes;telephone;apr;wed;101;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+29;admin.;single;high.school;no;no;yes;cellular;apr;wed;319;1;6;1;success;-1.8;93.075;-47.1;1.405;5099.1;yes
+46;admin.;married;university.degree;no;yes;no;cellular;apr;wed;164;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+64;retired;married;basic.4y;no;yes;no;cellular;apr;wed;104;1;999;2;failure;-1.8;93.075;-47.1;1.405;5099.1;yes
+29;admin.;single;university.degree;no;yes;no;cellular;apr;wed;145;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+64;retired;married;university.degree;no;yes;no;cellular;apr;wed;102;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+39;admin.;married;university.degree;no;no;no;cellular;apr;wed;94;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+37;services;single;high.school;no;yes;no;cellular;apr;wed;165;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+25;admin.;single;high.school;no;yes;no;cellular;apr;wed;416;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+55;admin.;married;high.school;no;no;yes;cellular;apr;wed;307;1;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;yes
+54;technician;married;professional.course;no;yes;no;cellular;apr;wed;138;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+48;admin.;married;university.degree;no;yes;no;cellular;apr;wed;87;9;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+57;management;divorced;unknown;no;no;no;cellular;apr;wed;279;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+50;technician;divorced;basic.9y;no;yes;no;cellular;apr;wed;91;2;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+25;admin.;single;high.school;no;yes;no;cellular;apr;wed;108;3;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;no
+61;retired;married;basic.4y;no;yes;no;cellular;apr;wed;245;4;999;1;failure;-1.8;93.075;-47.1;1.405;5099.1;yes
+65;retired;married;university.degree;no;no;no;cellular;apr;wed;124;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+60;technician;married;professional.course;no;no;no;cellular;apr;wed;107;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+30;student;single;unknown;no;yes;no;cellular;apr;wed;176;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+39;admin.;married;university.degree;no;no;no;cellular;apr;wed;382;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+30;student;single;unknown;no;yes;no;cellular;apr;wed;116;4;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;no
+52;blue-collar;married;basic.4y;no;yes;no;cellular;apr;wed;229;5;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+58;retired;single;professional.course;no;yes;no;cellular;apr;wed;1288;3;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+60;blue-collar;married;professional.course;no;yes;no;cellular;apr;wed;545;1;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+19;student;single;basic.4y;no;no;yes;cellular;apr;wed;371;2;999;0;nonexistent;-1.8;93.075;-47.1;1.405;5099.1;yes
+25;admin.;single;university.degree;no;yes;no;cellular;apr;thu;229;2;999;0;nonexistent;-1.8;93.075;-47.1;1.406;5099.1;yes
+34;unknown;married;basic.4y;no;yes;no;cellular;apr;thu;328;1;999;0;nonexistent;-1.8;93.075;-47.1;1.406;5099.1;yes
+62;self-employed;married;university.degree;no;yes;yes;telephone;apr;thu;164;4;999;0;nonexistent;-1.8;93.075;-47.1;1.406;5099.1;no
+53;retired;married;basic.9y;no;no;no;telephone;apr;thu;67;3;999;0;nonexistent;-1.8;93.075;-47.1;1.406;5099.1;no
+34;unknown;married;basic.4y;no;yes;no;cellular;apr;thu;477;2;999;0;nonexistent;-1.8;93.075;-47.1;1.406;5099.1;no
+34;unknown;married;basic.4y;no;yes;yes;cellular;apr;thu;94;1;999;0;nonexistent;-1.8;93.075;-47.1;1.406;5099.1;no
+61;admin.;married;university.degree;no;yes;yes;cellular;apr;thu;266;5;999;0;nonexistent;-1.8;93.075;-47.1;1.406;5099.1;yes
+52;blue-collar;married;basic.6y;no;no;no;cellular;apr;thu;247;5;999;0;nonexistent;-1.8;93.075;-47.1;1.406;5099.1;yes
+37;technician;single;high.school;no;yes;no;telephone;apr;thu;201;1;999;0;nonexistent;-1.8;93.075;-47.1;1.406;5099.1;no
+44;admin.;married;university.degree;no;no;no;cellular;apr;thu;172;1;999;0;nonexistent;-1.8;93.075;-47.1;1.406;5099.1;yes
+35;technician;married;university.degree;no;no;no;cellular;apr;thu;270;2;999;0;nonexistent;-1.8;93.075;-47.1;1.406;5099.1;yes
+50;admin.;married;university.degree;no;yes;yes;telephone;apr;thu;413;3;999;0;nonexistent;-1.8;93.075;-47.1;1.406;5099.1;yes
+27;student;single;university.degree;no;no;no;telephone;apr;thu;141;1;999;0;nonexistent;-1.8;93.075;-47.1;1.406;5099.1;no
+38;technician;married;professional.course;no;yes;yes;cellular;apr;thu;117;1;999;0;nonexistent;-1.8;93.075;-47.1;1.406;5099.1;no
+42;technician;married;high.school;no;yes;no;cellular;apr;thu;163;1;999;0;nonexistent;-1.8;93.075;-47.1;1.406;5099.1;yes
+33;self-employed;married;university.degree;no;no;no;telephone;apr;thu;155;1;999;0;nonexistent;-1.8;93.075;-47.1;1.406;5099.1;no
+43;admin.;married;university.degree;no;no;no;cellular;apr;thu;522;4;999;0;nonexistent;-1.8;93.075;-47.1;1.406;5099.1;yes
+34;unknown;married;basic.4y;no;yes;yes;cellular;apr;thu;91;4;999;0;nonexistent;-1.8;93.075;-47.1;1.406;5099.1;no
+28;blue-collar;single;basic.9y;no;yes;no;cellular;apr;thu;106;3;999;0;nonexistent;-1.8;93.075;-47.1;1.406;5099.1;no
+28;blue-collar;single;basic.9y;no;yes;yes;cellular;apr;thu;333;2;999;0;nonexistent;-1.8;93.075;-47.1;1.406;5099.1;no
+26;student;single;high.school;no;yes;no;cellular;apr;thu;116;4;999;0;nonexistent;-1.8;93.075;-47.1;1.406;5099.1;yes
+37;technician;single;high.school;no;yes;no;telephone;apr;thu;77;2;999;0;nonexistent;-1.8;93.075;-47.1;1.406;5099.1;no
+29;student;single;high.school;no;no;no;cellular;apr;thu;86;1;999;0;nonexistent;-1.8;93.075;-47.1;1.406;5099.1;no
+85;retired;married;basic.4y;no;yes;no;cellular;apr;thu;191;1;999;0;nonexistent;-1.8;93.075;-47.1;1.406;5099.1;no
+31;admin.;single;university.degree;no;no;no;cellular;apr;thu;115;16;999;0;nonexistent;-1.8;93.075;-47.1;1.406;5099.1;no
+28;blue-collar;single;basic.9y;no;yes;no;cellular;apr;fri;65;2;999;0;nonexistent;-1.8;93.075;-47.1;1.4;5099.1;no
+30;technician;single;university.degree;no;yes;no;cellular;apr;fri;143;1;999;1;failure;-1.8;93.075;-47.1;1.4;5099.1;no
+50;admin.;married;university.degree;no;yes;no;cellular;apr;fri;160;1;999;0;nonexistent;-1.8;93.075;-47.1;1.4;5099.1;yes
+36;admin.;married;high.school;no;no;no;cellular;apr;fri;78;2;999;0;nonexistent;-1.8;93.075;-47.1;1.4;5099.1;no
+85;retired;married;basic.4y;no;yes;no;cellular;apr;fri;117;2;999;0;nonexistent;-1.8;93.075;-47.1;1.4;5099.1;no
+80;blue-collar;married;high.school;no;no;no;cellular;apr;fri;105;6;999;3;failure;-1.8;93.075;-47.1;1.4;5099.1;no
+64;retired;married;high.school;no;yes;no;cellular;apr;fri;111;1;999;0;nonexistent;-1.8;93.075;-47.1;1.4;5099.1;no
+64;management;married;high.school;no;yes;no;cellular;apr;fri;693;2;999;0;nonexistent;-1.8;93.075;-47.1;1.4;5099.1;yes
+27;student;single;university.degree;no;no;no;cellular;apr;fri;227;1;999;1;failure;-1.8;93.075;-47.1;1.4;5099.1;yes
+38;technician;single;university.degree;no;no;no;cellular;apr;fri;202;5;999;1;failure;-1.8;93.075;-47.1;1.4;5099.1;yes
+66;retired;married;professional.course;no;yes;yes;cellular;apr;fri;222;4;999;0;nonexistent;-1.8;93.075;-47.1;1.4;5099.1;no
+64;retired;married;university.degree;no;no;no;cellular;apr;fri;173;2;999;0;nonexistent;-1.8;93.075;-47.1;1.4;5099.1;no
+34;unknown;married;basic.4y;no;no;yes;cellular;apr;fri;83;2;999;0;nonexistent;-1.8;93.075;-47.1;1.4;5099.1;no
+33;services;single;high.school;no;yes;no;cellular;apr;mon;44;3;999;0;nonexistent;-1.8;93.075;-47.1;1.392;5099.1;no
+71;retired;married;university.degree;no;yes;yes;telephone;apr;mon;89;12;999;0;nonexistent;-1.8;93.075;-47.1;1.392;5099.1;no
+38;admin.;married;university.degree;no;unknown;unknown;cellular;apr;mon;124;1;999;0;nonexistent;-1.8;93.075;-47.1;1.392;5099.1;yes
+27;management;married;university.degree;no;no;no;cellular;apr;mon;54;1;999;0;nonexistent;-1.8;93.075;-47.1;1.392;5099.1;no
+36;management;married;university.degree;no;no;no;cellular;apr;mon;98;1;999;0;nonexistent;-1.8;93.075;-47.1;1.392;5099.1;no
+28;unemployed;single;high.school;no;no;no;cellular;apr;mon;97;1;999;0;nonexistent;-1.8;93.075;-47.1;1.392;5099.1;yes
+28;blue-collar;single;basic.9y;no;no;no;cellular;apr;mon;218;1;999;0;nonexistent;-1.8;93.075;-47.1;1.392;5099.1;no
+28;blue-collar;single;basic.9y;no;no;no;cellular;apr;mon;107;1;999;0;nonexistent;-1.8;93.075;-47.1;1.392;5099.1;no
+64;retired;married;university.degree;no;no;no;telephone;apr;mon;227;3;999;0;nonexistent;-1.8;93.075;-47.1;1.392;5099.1;no
+27;admin.;single;university.degree;no;yes;no;cellular;apr;mon;148;1;999;0;nonexistent;-1.8;93.075;-47.1;1.392;5099.1;yes
+27;management;married;university.degree;no;no;no;cellular;apr;mon;444;1;999;0;nonexistent;-1.8;93.075;-47.1;1.392;5099.1;yes
+55;services;divorced;professional.course;no;no;no;cellular;apr;mon;88;1;999;1;failure;-1.8;93.075;-47.1;1.392;5099.1;no
+41;admin.;married;high.school;no;no;no;cellular;apr;mon;160;1;999;0;nonexistent;-1.8;93.075;-47.1;1.392;5099.1;no
+53;admin.;single;high.school;no;yes;no;cellular;apr;mon;167;1;999;0;nonexistent;-1.8;93.075;-47.1;1.392;5099.1;no
+38;admin.;divorced;university.degree;no;no;no;cellular;apr;mon;360;1;999;0;nonexistent;-1.8;93.075;-47.1;1.392;5099.1;yes
+38;admin.;divorced;university.degree;no;no;no;cellular;apr;mon;62;1;999;0;nonexistent;-1.8;93.075;-47.1;1.392;5099.1;no
+85;retired;married;basic.4y;no;no;no;cellular;apr;mon;81;1;999;0;nonexistent;-1.8;93.075;-47.1;1.392;5099.1;no
+62;self-employed;married;university.degree;no;no;no;cellular;apr;mon;66;1;999;0;nonexistent;-1.8;93.075;-47.1;1.392;5099.1;no
+23;management;single;university.degree;no;yes;no;cellular;apr;mon;122;1;999;0;nonexistent;-1.8;93.075;-47.1;1.392;5099.1;yes
+38;technician;married;professional.course;no;yes;no;cellular;apr;mon;90;2;999;0;nonexistent;-1.8;93.075;-47.1;1.392;5099.1;no
+34;unknown;married;basic.4y;no;no;no;telephone;apr;mon;151;3;999;0;nonexistent;-1.8;93.075;-47.1;1.392;5099.1;no
+27;admin.;single;university.degree;no;yes;no;cellular;apr;tue;151;3;999;0;nonexistent;-1.8;93.075;-47.1;1.384;5099.1;no
+52;blue-collar;married;basic.6y;no;no;no;cellular;apr;tue;139;2;999;0;nonexistent;-1.8;93.075;-47.1;1.384;5099.1;no
+85;retired;married;basic.4y;no;no;no;cellular;apr;tue;165;3;999;0;nonexistent;-1.8;93.075;-47.1;1.384;5099.1;no
+61;retired;divorced;university.degree;no;yes;no;cellular;apr;tue;118;2;999;0;nonexistent;-1.8;93.075;-47.1;1.384;5099.1;no
+38;admin.;divorced;university.degree;no;yes;no;cellular;apr;tue;177;2;999;0;nonexistent;-1.8;93.075;-47.1;1.384;5099.1;yes
+38;services;married;high.school;no;no;no;cellular;apr;tue;186;2;999;0;nonexistent;-1.8;93.075;-47.1;1.384;5099.1;no
+61;technician;married;university.degree;no;no;no;cellular;apr;tue;50;2;999;0;nonexistent;-1.8;93.075;-47.1;1.384;5099.1;no
+23;management;single;university.degree;no;yes;no;cellular;apr;tue;56;2;999;0;nonexistent;-1.8;93.075;-47.1;1.384;5099.1;no
+31;admin.;single;university.degree;no;yes;no;cellular;apr;tue;101;2;999;0;nonexistent;-1.8;93.075;-47.1;1.384;5099.1;no
+51;blue-collar;married;basic.6y;no;yes;no;cellular;apr;wed;89;2;999;0;nonexistent;-1.8;93.075;-47.1;1.372;5099.1;no
+33;admin.;single;high.school;no;yes;no;cellular;apr;wed;507;3;999;0;nonexistent;-1.8;93.075;-47.1;1.372;5099.1;yes
+47;services;married;high.school;no;yes;no;cellular;apr;wed;636;2;999;0;nonexistent;-1.8;93.075;-47.1;1.372;5099.1;yes
+33;admin.;single;high.school;no;yes;no;cellular;apr;wed;961;2;999;1;failure;-1.8;93.075;-47.1;1.372;5099.1;yes
+30;technician;single;university.degree;no;no;no;cellular;apr;wed;80;5;999;0;nonexistent;-1.8;93.075;-47.1;1.372;5099.1;no
+53;admin.;single;high.school;no;yes;yes;telephone;apr;wed;75;3;999;0;nonexistent;-1.8;93.075;-47.1;1.372;5099.1;no
+69;retired;married;high.school;no;yes;no;cellular;apr;wed;153;4;999;1;failure;-1.8;93.075;-47.1;1.372;5099.1;no
+55;services;divorced;professional.course;no;yes;no;telephone;apr;wed;164;23;999;0;nonexistent;-1.8;93.075;-47.1;1.372;5099.1;no
+30;technician;single;university.degree;no;yes;no;telephone;apr;wed;169;8;999;0;nonexistent;-1.8;93.075;-47.1;1.372;5099.1;no
+52;management;divorced;professional.course;no;yes;no;cellular;apr;wed;85;7;999;0;nonexistent;-1.8;93.075;-47.1;1.372;5099.1;no
+24;technician;single;university.degree;no;yes;no;cellular;apr;thu;170;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+31;management;single;university.degree;no;yes;no;cellular;apr;thu;211;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+24;technician;single;university.degree;no;yes;no;cellular;apr;thu;192;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+33;admin.;married;university.degree;no;no;no;cellular;apr;thu;179;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+35;admin.;single;university.degree;no;yes;yes;cellular;apr;thu;358;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+27;admin.;single;university.degree;no;no;no;cellular;apr;thu;523;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+79;retired;married;basic.9y;no;yes;no;cellular;apr;thu;510;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+60;admin.;married;professional.course;no;yes;no;cellular;apr;thu;571;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+60;retired;married;high.school;no;no;no;cellular;apr;thu;400;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+58;retired;married;basic.4y;no;yes;no;cellular;apr;thu;185;1;2;1;success;-1.8;93.075;-47.1;1.365;5099.1;no
+39;technician;married;professional.course;no;yes;no;cellular;apr;thu;67;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+60;retired;divorced;professional.course;no;yes;no;cellular;apr;thu;968;1;5;2;failure;-1.8;93.075;-47.1;1.365;5099.1;yes
+31;technician;single;university.degree;no;yes;no;cellular;apr;thu;701;1;5;1;success;-1.8;93.075;-47.1;1.365;5099.1;yes
+39;technician;married;professional.course;no;yes;no;cellular;apr;thu;381;1;999;1;failure;-1.8;93.075;-47.1;1.365;5099.1;yes
+28;admin.;single;high.school;no;no;no;cellular;apr;thu;571;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+18;student;single;basic.4y;no;no;no;cellular;apr;thu;108;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+26;admin.;single;university.degree;no;yes;no;cellular;apr;thu;239;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+44;admin.;married;university.degree;no;no;no;cellular;apr;thu;109;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+55;admin.;married;unknown;no;yes;no;cellular;apr;thu;525;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+30;admin.;single;university.degree;no;no;no;cellular;apr;thu;224;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+31;admin.;single;university.degree;no;yes;no;cellular;apr;thu;63;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+30;admin.;single;university.degree;no;no;no;cellular;apr;thu;662;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+53;admin.;single;university.degree;no;no;no;cellular;apr;thu;494;1;2;1;success;-1.8;93.075;-47.1;1.365;5099.1;yes
+46;admin.;married;high.school;no;no;no;cellular;apr;thu;243;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+46;management;married;university.degree;no;yes;no;cellular;apr;thu;364;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+39;services;married;high.school;no;yes;no;cellular;apr;thu;243;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+35;services;married;high.school;no;yes;no;cellular;apr;thu;412;1;5;1;success;-1.8;93.075;-47.1;1.365;5099.1;yes
+31;admin.;single;university.degree;no;no;no;cellular;apr;thu;353;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+46;admin.;married;high.school;no;no;no;telephone;apr;thu;268;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+21;admin.;single;high.school;no;no;no;cellular;apr;thu;264;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+60;admin.;married;high.school;no;unknown;unknown;cellular;apr;thu;208;1;2;1;success;-1.8;93.075;-47.1;1.365;5099.1;yes
+40;admin.;married;university.degree;no;no;yes;cellular;apr;thu;499;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+51;services;married;basic.6y;no;no;no;cellular;apr;thu;407;1;2;1;success;-1.8;93.075;-47.1;1.365;5099.1;yes
+45;management;married;university.degree;unknown;yes;no;cellular;apr;thu;220;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+60;admin.;married;high.school;no;no;no;cellular;apr;thu;447;1;2;1;success;-1.8;93.075;-47.1;1.365;5099.1;yes
+48;entrepreneur;married;university.degree;no;yes;no;cellular;apr;thu;62;1;2;1;success;-1.8;93.075;-47.1;1.365;5099.1;no
+57;retired;married;university.degree;no;yes;yes;telephone;apr;thu;41;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+54;management;married;university.degree;no;yes;no;cellular;apr;thu;85;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+54;management;married;university.degree;no;yes;no;cellular;apr;thu;121;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+40;admin.;married;high.school;no;yes;no;cellular;apr;thu;160;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+48;entrepreneur;married;university.degree;no;no;no;cellular;apr;thu;619;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+49;management;married;university.degree;no;yes;no;cellular;apr;thu;387;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+40;admin.;married;high.school;no;yes;no;cellular;apr;thu;401;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+33;services;married;high.school;no;yes;no;cellular;apr;thu;239;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+77;retired;divorced;basic.4y;no;no;no;cellular;apr;thu;155;1;999;1;failure;-1.8;93.075;-47.1;1.365;5099.1;no
+34;technician;single;professional.course;no;yes;no;cellular;apr;thu;313;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+53;management;divorced;university.degree;no;no;no;cellular;apr;thu;152;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+48;entrepreneur;married;university.degree;no;yes;no;cellular;apr;thu;871;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+53;management;divorced;university.degree;no;yes;no;cellular;apr;thu;297;1;2;1;success;-1.8;93.075;-47.1;1.365;5099.1;yes
+24;student;single;professional.course;no;yes;no;cellular;apr;thu;413;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+46;admin.;married;high.school;no;yes;no;cellular;apr;thu;231;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+43;admin.;married;university.degree;no;no;no;cellular;apr;thu;104;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+40;blue-collar;married;basic.9y;no;no;no;cellular;apr;thu;328;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+41;management;married;basic.6y;no;no;no;cellular;apr;thu;281;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+31;admin.;single;high.school;no;yes;no;cellular;apr;thu;119;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+29;admin.;single;high.school;no;yes;no;cellular;apr;thu;733;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+40;technician;divorced;university.degree;no;yes;no;cellular;apr;thu;335;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+31;admin.;single;high.school;no;no;no;cellular;apr;thu;252;1;5;1;success;-1.8;93.075;-47.1;1.365;5099.1;yes
+40;admin.;married;university.degree;no;no;no;cellular;apr;thu;815;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+39;technician;married;basic.9y;no;yes;no;cellular;apr;thu;620;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+31;admin.;single;high.school;no;no;no;cellular;apr;thu;706;1;999;1;failure;-1.8;93.075;-47.1;1.365;5099.1;no
+45;admin.;single;high.school;no;yes;no;cellular;apr;thu;354;1;2;1;success;-1.8;93.075;-47.1;1.365;5099.1;yes
+41;technician;divorced;professional.course;no;unknown;unknown;cellular;apr;thu;347;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+30;management;married;university.degree;no;yes;no;cellular;apr;thu;271;1;2;1;success;-1.8;93.075;-47.1;1.365;5099.1;yes
+38;technician;married;professional.course;no;yes;no;cellular;apr;thu;110;1;999;1;failure;-1.8;93.075;-47.1;1.365;5099.1;no
+46;technician;married;unknown;no;no;no;cellular;apr;thu;551;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+30;admin.;single;university.degree;no;no;no;cellular;apr;thu;222;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+48;entrepreneur;married;university.degree;no;no;no;cellular;apr;thu;294;2;2;1;success;-1.8;93.075;-47.1;1.365;5099.1;yes
+31;self-employed;single;university.degree;no;yes;no;cellular;apr;thu;383;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+54;housemaid;married;high.school;no;yes;no;cellular;apr;thu;41;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+34;admin.;married;university.degree;no;yes;yes;cellular;apr;thu;177;2;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+30;admin.;single;university.degree;no;no;no;cellular;apr;thu;368;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+53;technician;married;university.degree;no;no;yes;cellular;apr;thu;126;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+41;admin.;single;university.degree;no;unknown;unknown;cellular;apr;thu;1277;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+54;housemaid;married;high.school;no;yes;yes;cellular;apr;thu;267;1;999;1;failure;-1.8;93.075;-47.1;1.365;5099.1;no
+38;admin.;married;high.school;no;yes;yes;cellular;apr;thu;390;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+54;housemaid;married;high.school;no;no;no;cellular;apr;thu;381;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+40;self-employed;married;university.degree;no;no;no;cellular;apr;thu;187;10;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+30;student;single;university.degree;no;no;no;cellular;apr;thu;200;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+28;unemployed;single;basic.4y;no;yes;no;cellular;apr;thu;156;2;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+36;technician;single;professional.course;no;yes;no;cellular;apr;thu;218;1;2;2;success;-1.8;93.075;-47.1;1.365;5099.1;yes
+32;admin.;married;university.degree;no;yes;no;cellular;apr;thu;116;1;999;1;failure;-1.8;93.075;-47.1;1.365;5099.1;no
+37;self-employed;single;university.degree;no;yes;no;cellular;apr;thu;465;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+33;services;married;high.school;no;yes;no;cellular;apr;thu;900;2;999;2;failure;-1.8;93.075;-47.1;1.365;5099.1;yes
+23;admin.;single;high.school;no;yes;no;cellular;apr;thu;132;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+32;admin.;married;university.degree;no;yes;no;cellular;apr;thu;394;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+35;management;married;university.degree;no;no;no;cellular;apr;thu;127;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+83;retired;married;basic.4y;no;yes;no;cellular;apr;thu;321;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+59;retired;married;basic.4y;no;yes;no;cellular;apr;thu;381;1;999;1;failure;-1.8;93.075;-47.1;1.365;5099.1;yes
+34;admin.;married;university.degree;no;no;no;cellular;apr;thu;279;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+30;entrepreneur;single;university.degree;no;no;no;cellular;apr;thu;202;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+35;management;married;university.degree;no;no;no;cellular;apr;thu;375;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+38;self-employed;married;professional.course;no;yes;no;cellular;apr;thu;779;2;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+27;blue-collar;single;university.degree;no;yes;no;cellular;apr;thu;246;2;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+35;management;married;university.degree;no;yes;no;cellular;apr;thu;584;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+35;management;married;university.degree;no;yes;no;cellular;apr;thu;878;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+44;technician;married;university.degree;no;yes;yes;cellular;apr;thu;504;2;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+20;student;single;high.school;no;yes;no;cellular;apr;thu;195;2;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+81;retired;married;professional.course;no;yes;no;cellular;apr;thu;99;2;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+49;admin.;single;university.degree;no;no;no;cellular;apr;thu;222;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+71;self-employed;married;university.degree;no;yes;no;cellular;apr;thu;78;2;5;1;success;-1.8;93.075;-47.1;1.365;5099.1;no
+35;admin.;single;university.degree;no;yes;yes;cellular;apr;thu;58;1;999;1;failure;-1.8;93.075;-47.1;1.365;5099.1;no
+31;technician;married;professional.course;no;yes;no;cellular;apr;thu;160;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+35;technician;married;professional.course;no;no;no;cellular;apr;thu;337;2;5;1;success;-1.8;93.075;-47.1;1.365;5099.1;yes
+51;technician;married;professional.course;no;yes;yes;cellular;apr;thu;200;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+51;technician;married;professional.course;no;yes;no;cellular;apr;thu;115;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+46;technician;married;professional.course;no;yes;no;cellular;apr;thu;369;2;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+51;technician;married;professional.course;no;yes;no;cellular;apr;thu;341;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+51;technician;married;professional.course;no;yes;yes;cellular;apr;thu;297;1;2;2;success;-1.8;93.075;-47.1;1.365;5099.1;yes
+39;services;married;university.degree;no;no;no;cellular;apr;thu;237;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+55;admin.;married;unknown;no;yes;no;cellular;apr;thu;110;2;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+51;technician;married;professional.course;no;yes;no;cellular;apr;thu;687;1;0;1;success;-1.8;93.075;-47.1;1.365;5099.1;yes
+27;admin.;single;university.degree;no;yes;no;cellular;apr;thu;193;1;999;1;failure;-1.8;93.075;-47.1;1.365;5099.1;no
+49;admin.;married;high.school;no;yes;no;cellular;apr;thu;216;2;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+81;retired;married;professional.course;no;no;no;cellular;apr;thu;135;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+60;retired;divorced;professional.course;no;yes;no;cellular;apr;thu;126;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+36;technician;married;professional.course;no;yes;yes;cellular;apr;thu;266;2;2;2;success;-1.8;93.075;-47.1;1.365;5099.1;yes
+44;blue-collar;married;basic.9y;no;yes;no;telephone;apr;thu;455;2;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+47;admin.;married;university.degree;no;yes;no;cellular;apr;thu;53;1;999;1;failure;-1.8;93.075;-47.1;1.365;5099.1;no
+33;services;married;high.school;no;yes;no;cellular;apr;thu;524;2;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+39;technician;married;professional.course;no;no;no;cellular;apr;thu;225;1;2;1;success;-1.8;93.075;-47.1;1.365;5099.1;yes
+34;technician;married;professional.course;no;yes;no;cellular;apr;thu;258;2;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+25;technician;single;professional.course;no;yes;yes;cellular;apr;thu;104;1;999;1;failure;-1.8;93.075;-47.1;1.365;5099.1;no
+40;services;married;high.school;no;yes;no;cellular;apr;thu;124;1;999;1;failure;-1.8;93.075;-47.1;1.365;5099.1;no
+30;admin.;married;university.degree;no;unknown;unknown;cellular;apr;thu;308;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+42;services;married;high.school;no;yes;no;cellular;apr;thu;344;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+48;technician;divorced;high.school;no;yes;no;cellular;apr;thu;400;1;999;1;failure;-1.8;93.075;-47.1;1.365;5099.1;yes
+24;admin.;single;university.degree;no;yes;no;cellular;apr;thu;103;3;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+56;entrepreneur;married;university.degree;no;no;no;cellular;apr;thu;24;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+48;technician;divorced;university.degree;no;yes;no;cellular;apr;thu;132;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+56;entrepreneur;married;university.degree;no;yes;no;telephone;apr;thu;141;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+56;entrepreneur;married;university.degree;no;yes;no;cellular;apr;thu;207;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+56;entrepreneur;married;university.degree;no;no;no;cellular;apr;thu;284;1;999;1;failure;-1.8;93.075;-47.1;1.365;5099.1;no
+29;admin.;single;university.degree;no;no;no;cellular;apr;thu;800;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+56;entrepreneur;married;university.degree;no;no;no;cellular;apr;thu;204;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+56;entrepreneur;married;university.degree;no;no;no;cellular;apr;thu;85;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+56;entrepreneur;married;university.degree;no;yes;no;cellular;apr;thu;472;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+56;entrepreneur;married;university.degree;no;no;no;cellular;apr;thu;99;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+56;entrepreneur;married;university.degree;no;no;no;cellular;apr;thu;196;1;2;1;success;-1.8;93.075;-47.1;1.365;5099.1;no
+45;management;married;university.degree;unknown;yes;no;cellular;apr;thu;452;2;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+53;admin.;single;university.degree;no;no;yes;cellular;apr;thu;586;2;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+30;admin.;married;university.degree;no;yes;no;cellular;apr;thu;316;1;999;1;failure;-1.8;93.075;-47.1;1.365;5099.1;yes
+37;self-employed;single;university.degree;no;yes;no;cellular;apr;thu;270;2;999;1;failure;-1.8;93.075;-47.1;1.365;5099.1;no
+30;admin.;married;university.degree;no;yes;no;cellular;apr;thu;461;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+27;admin.;single;high.school;no;yes;no;cellular;apr;thu;127;2;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+25;self-employed;single;university.degree;no;yes;no;cellular;apr;thu;113;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+51;technician;married;university.degree;no;yes;no;cellular;apr;thu;526;2;999;1;failure;-1.8;93.075;-47.1;1.365;5099.1;yes
+28;blue-collar;single;basic.9y;no;yes;no;cellular;apr;thu;315;1;2;1;success;-1.8;93.075;-47.1;1.365;5099.1;yes
+29;admin.;single;professional.course;no;yes;no;cellular;apr;thu;130;2;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+49;management;married;university.degree;no;no;no;cellular;apr;thu;97;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+39;technician;married;professional.course;no;yes;no;cellular;apr;thu;423;2;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+54;management;married;university.degree;no;yes;no;cellular;apr;thu;311;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+49;unemployed;married;university.degree;no;no;no;cellular;apr;thu;171;1;999;1;failure;-1.8;93.075;-47.1;1.365;5099.1;no
+20;student;single;basic.4y;no;yes;no;cellular;apr;thu;209;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+43;technician;single;university.degree;no;no;no;cellular;apr;thu;64;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+24;student;single;high.school;no;no;yes;cellular;apr;thu;209;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+56;entrepreneur;married;university.degree;no;no;no;cellular;apr;thu;457;1;2;1;success;-1.8;93.075;-47.1;1.365;5099.1;yes
+25;unemployed;single;university.degree;no;yes;no;cellular;apr;thu;260;2;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+46;services;married;high.school;no;no;no;cellular;apr;thu;146;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+46;services;married;high.school;no;yes;yes;cellular;apr;thu;354;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+42;technician;married;professional.course;no;no;no;cellular;apr;thu;94;1;999;1;failure;-1.8;93.075;-47.1;1.365;5099.1;no
+60;admin.;married;high.school;no;yes;yes;cellular;apr;thu;482;2;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+47;blue-collar;single;basic.6y;no;no;no;cellular;apr;thu;309;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+48;technician;divorced;university.degree;no;yes;yes;cellular;apr;thu;173;2;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+37;admin.;single;university.degree;no;yes;no;cellular;apr;thu;261;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+47;blue-collar;married;high.school;no;no;no;cellular;apr;thu;439;2;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+36;blue-collar;married;basic.9y;no;no;no;cellular;apr;thu;171;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+69;retired;married;university.degree;no;yes;no;cellular;apr;thu;616;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+63;retired;married;high.school;no;no;no;cellular;apr;thu;198;1;999;1;failure;-1.8;93.075;-47.1;1.365;5099.1;no
+28;admin.;single;university.degree;no;yes;yes;cellular;apr;thu;76;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+46;admin.;married;basic.6y;no;no;no;cellular;apr;thu;278;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+28;admin.;single;university.degree;no;yes;no;cellular;apr;thu;280;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+28;admin.;single;university.degree;no;yes;no;cellular;apr;thu;249;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+28;admin.;single;university.degree;no;yes;yes;cellular;apr;thu;68;1;2;1;success;-1.8;93.075;-47.1;1.365;5099.1;no
+48;technician;married;professional.course;no;yes;yes;cellular;apr;thu;269;1;999;1;failure;-1.8;93.075;-47.1;1.365;5099.1;yes
+49;admin.;divorced;university.degree;no;no;no;cellular;apr;thu;532;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+30;technician;married;university.degree;no;yes;yes;cellular;apr;thu;1373;2;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+21;admin.;single;high.school;no;no;no;cellular;apr;thu;97;2;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+31;admin.;single;university.degree;no;yes;yes;cellular;apr;thu;102;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+37;self-employed;single;university.degree;no;yes;no;cellular;apr;thu;48;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+37;admin.;married;high.school;no;yes;no;cellular;apr;thu;226;1;2;1;success;-1.8;93.075;-47.1;1.365;5099.1;no
+24;student;single;high.school;no;yes;no;cellular;apr;thu;88;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+37;admin.;married;high.school;no;yes;no;cellular;apr;thu;574;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+28;admin.;single;university.degree;no;no;yes;telephone;apr;thu;917;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+48;unemployed;single;basic.9y;no;yes;no;cellular;apr;thu;242;1;2;1;success;-1.8;93.075;-47.1;1.365;5099.1;yes
+58;retired;divorced;professional.course;no;no;no;cellular;apr;thu;430;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+48;unemployed;single;basic.9y;no;yes;no;cellular;apr;thu;228;1;999;1;failure;-1.8;93.075;-47.1;1.365;5099.1;no
+36;admin.;married;university.degree;no;yes;no;cellular;apr;thu;483;1;0;1;success;-1.8;93.075;-47.1;1.365;5099.1;yes
+39;management;married;professional.course;no;no;no;cellular;apr;thu;156;3;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+51;technician;divorced;high.school;no;no;yes;cellular;apr;thu;306;2;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+34;admin.;single;professional.course;no;no;no;telephone;apr;thu;130;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+29;technician;single;professional.course;no;no;no;cellular;apr;thu;96;2;2;1;success;-1.8;93.075;-47.1;1.365;5099.1;no
+33;blue-collar;single;basic.4y;no;no;no;cellular;apr;thu;452;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+35;admin.;divorced;high.school;no;yes;no;cellular;apr;thu;285;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+30;entrepreneur;single;university.degree;no;yes;no;cellular;apr;thu;666;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+27;student;single;unknown;unknown;yes;no;cellular;apr;thu;458;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+60;admin.;married;professional.course;no;yes;no;cellular;apr;thu;473;1;999;1;failure;-1.8;93.075;-47.1;1.365;5099.1;yes
+24;student;single;high.school;no;yes;no;cellular;apr;thu;209;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+30;admin.;single;university.degree;no;no;no;cellular;apr;thu;69;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+33;blue-collar;single;basic.4y;no;yes;no;cellular;apr;thu;352;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+48;entrepreneur;married;university.degree;no;no;no;cellular;apr;thu;27;1;999;2;failure;-1.8;93.075;-47.1;1.365;5099.1;no
+57;retired;married;university.degree;no;no;no;cellular;apr;thu;81;1;999;1;failure;-1.8;93.075;-47.1;1.365;5099.1;no
+55;admin.;divorced;university.degree;no;no;no;cellular;apr;thu;260;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+22;student;single;high.school;no;no;no;cellular;apr;thu;780;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+54;management;married;university.degree;no;no;no;telephone;apr;thu;107;1;2;1;success;-1.8;93.075;-47.1;1.365;5099.1;no
+40;technician;married;professional.course;no;yes;no;cellular;apr;thu;580;2;2;1;success;-1.8;93.075;-47.1;1.365;5099.1;yes
+31;admin.;single;high.school;no;yes;yes;cellular;apr;thu;398;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+73;retired;married;university.degree;no;yes;no;cellular;apr;thu;79;1;999;1;failure;-1.8;93.075;-47.1;1.365;5099.1;no
+71;retired;divorced;basic.4y;no;no;yes;cellular;apr;thu;214;1;999;1;failure;-1.8;93.075;-47.1;1.365;5099.1;no
+28;admin.;married;university.degree;no;no;no;cellular;apr;thu;258;1;2;2;success;-1.8;93.075;-47.1;1.365;5099.1;yes
+41;technician;divorced;professional.course;no;yes;no;cellular;apr;thu;834;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+43;admin.;married;university.degree;no;yes;no;cellular;apr;thu;114;2;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+35;management;married;university.degree;no;yes;yes;cellular;apr;thu;435;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+58;retired;divorced;university.degree;no;no;no;cellular;apr;thu;211;1;2;1;success;-1.8;93.075;-47.1;1.365;5099.1;no
+32;self-employed;single;university.degree;no;yes;no;cellular;apr;thu;441;2;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+20;student;single;high.school;no;yes;no;cellular;apr;thu;615;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+38;admin.;single;university.degree;no;yes;yes;cellular;apr;thu;555;2;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+47;admin.;married;university.degree;no;yes;yes;cellular;apr;thu;149;1;2;1;success;-1.8;93.075;-47.1;1.365;5099.1;no
+40;self-employed;single;university.degree;unknown;yes;no;cellular;apr;thu;384;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+34;admin.;single;professional.course;no;no;no;cellular;apr;thu;168;2;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+28;student;single;high.school;no;no;no;cellular;apr;thu;319;3;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+41;admin.;single;high.school;no;unknown;unknown;cellular;apr;thu;664;2;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+18;student;single;basic.4y;no;yes;yes;cellular;apr;thu;184;2;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+41;technician;divorced;professional.course;no;yes;no;cellular;apr;thu;811;2;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+25;admin.;single;university.degree;no;no;yes;telephone;apr;thu;71;2;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+23;student;single;high.school;no;yes;no;cellular;apr;thu;354;3;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+47;unknown;married;unknown;no;no;no;cellular;apr;thu;85;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+44;technician;single;professional.course;no;no;no;cellular;apr;thu;116;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+56;entrepreneur;married;university.degree;no;no;yes;cellular;apr;thu;488;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+33;blue-collar;single;basic.4y;no;yes;yes;cellular;apr;thu;460;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+24;technician;single;university.degree;no;yes;no;cellular;apr;thu;477;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+28;admin.;married;university.degree;no;yes;no;cellular;apr;thu;63;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+36;admin.;married;university.degree;no;yes;no;cellular;apr;thu;970;1;999;1;failure;-1.8;93.075;-47.1;1.365;5099.1;yes
+58;retired;married;basic.4y;no;no;no;cellular;apr;thu;266;1;999;1;failure;-1.8;93.075;-47.1;1.365;5099.1;yes
+49;technician;married;professional.course;no;no;no;cellular;apr;thu;618;2;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+41;technician;divorced;professional.course;no;no;no;cellular;apr;thu;774;2;999;1;failure;-1.8;93.075;-47.1;1.365;5099.1;yes
+51;housemaid;married;unknown;no;yes;yes;cellular;apr;thu;132;2;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+28;student;single;high.school;no;yes;no;cellular;apr;thu;121;1;999;1;failure;-1.8;93.075;-47.1;1.365;5099.1;no
+45;management;married;university.degree;unknown;yes;no;cellular;apr;thu;175;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+49;technician;single;university.degree;no;yes;no;cellular;apr;thu;861;2;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+49;management;married;university.degree;no;no;yes;cellular;apr;thu;296;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+49;management;married;university.degree;no;yes;no;cellular;apr;thu;240;1;999;1;failure;-1.8;93.075;-47.1;1.365;5099.1;yes
+29;management;single;high.school;no;yes;no;cellular;apr;thu;329;2;999;1;failure;-1.8;93.075;-47.1;1.365;5099.1;no
+59;admin.;married;high.school;no;yes;no;cellular;apr;thu;147;3;999;1;failure;-1.8;93.075;-47.1;1.365;5099.1;no
+33;admin.;married;high.school;no;no;no;cellular;apr;thu;113;2;999;1;failure;-1.8;93.075;-47.1;1.365;5099.1;no
+48;entrepreneur;married;university.degree;no;no;no;cellular;apr;thu;327;2;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+40;services;married;basic.9y;no;yes;no;cellular;apr;thu;264;2;999;1;failure;-1.8;93.075;-47.1;1.365;5099.1;no
+28;admin.;married;university.degree;no;no;no;cellular;apr;thu;115;2;999;1;failure;-1.8;93.075;-47.1;1.365;5099.1;no
+34;technician;married;university.degree;no;no;no;cellular;apr;thu;82;6;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+32;blue-collar;married;professional.course;unknown;yes;yes;cellular;apr;thu;127;3;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+30;admin.;single;university.degree;no;yes;yes;telephone;apr;thu;874;2;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+37;self-employed;single;university.degree;no;yes;no;telephone;apr;thu;44;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+66;unemployed;single;basic.4y;no;no;no;telephone;apr;thu;56;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+38;admin.;single;university.degree;no;yes;no;cellular;apr;thu;510;2;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+46;admin.;married;basic.6y;no;yes;no;cellular;apr;thu;513;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+38;retired;divorced;basic.9y;unknown;yes;no;cellular;apr;thu;189;3;999;1;failure;-1.8;93.075;-47.1;1.365;5099.1;no
+66;unemployed;single;basic.4y;no;yes;no;cellular;apr;thu;416;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+35;services;divorced;high.school;no;no;no;cellular;apr;thu;301;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+41;management;married;high.school;no;yes;no;cellular;apr;thu;243;2;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+32;blue-collar;married;professional.course;unknown;no;no;cellular;apr;thu;140;2;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+25;blue-collar;single;basic.9y;no;yes;no;cellular;apr;thu;109;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+48;entrepreneur;married;university.degree;no;yes;no;cellular;apr;thu;126;3;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+33;blue-collar;single;professional.course;no;yes;no;cellular;apr;thu;652;2;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+71;retired;divorced;basic.4y;no;yes;no;telephone;apr;thu;96;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+33;technician;married;basic.9y;no;yes;no;cellular;apr;thu;144;2;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+25;student;single;university.degree;no;yes;no;cellular;apr;thu;92;1;999;1;failure;-1.8;93.075;-47.1;1.365;5099.1;no
+30;admin.;married;university.degree;no;yes;no;cellular;apr;thu;475;2;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+25;student;single;university.degree;no;no;no;cellular;apr;thu;236;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+34;technician;married;university.degree;no;yes;no;cellular;apr;thu;193;2;8;1;success;-1.8;93.075;-47.1;1.365;5099.1;no
+38;admin.;single;university.degree;no;yes;no;cellular;apr;thu;645;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+24;admin.;single;university.degree;no;yes;no;cellular;apr;thu;342;3;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+32;blue-collar;married;professional.course;unknown;yes;no;cellular;apr;thu;73;2;999;1;failure;-1.8;93.075;-47.1;1.365;5099.1;no
+53;technician;married;professional.course;no;yes;no;cellular;apr;thu;301;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+32;admin.;single;high.school;no;no;no;cellular;apr;thu;1143;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+33;admin.;single;high.school;no;no;no;cellular;apr;thu;380;3;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+49;management;married;university.degree;no;yes;no;cellular;apr;thu;210;3;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+29;admin.;single;professional.course;no;no;no;cellular;apr;thu;427;3;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+31;admin.;single;university.degree;no;yes;no;cellular;apr;thu;370;3;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+37;admin.;married;high.school;no;no;no;cellular;apr;thu;73;3;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+61;retired;divorced;university.degree;no;no;no;cellular;apr;thu;949;2;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+32;student;married;high.school;no;yes;no;cellular;apr;thu;753;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+60;unemployed;married;high.school;no;yes;no;cellular;apr;thu;1260;2;2;1;success;-1.8;93.075;-47.1;1.365;5099.1;yes
+60;admin.;married;professional.course;no;yes;no;cellular;apr;thu;108;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+56;entrepreneur;married;university.degree;no;no;no;telephone;apr;thu;95;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+32;blue-collar;married;professional.course;no;yes;no;cellular;apr;thu;652;2;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+35;services;married;high.school;no;no;no;cellular;apr;thu;1034;2;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+64;admin.;married;university.degree;no;no;yes;telephone;apr;thu;766;3;2;1;success;-1.8;93.075;-47.1;1.365;5099.1;yes
+56;entrepreneur;married;university.degree;no;yes;no;cellular;apr;thu;266;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+27;student;single;unknown;unknown;yes;no;cellular;apr;thu;35;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+39;services;married;university.degree;no;yes;no;cellular;apr;thu;369;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+30;admin.;single;university.degree;no;yes;no;cellular;apr;thu;502;1;0;1;success;-1.8;93.075;-47.1;1.365;5099.1;yes
+40;self-employed;single;university.degree;unknown;yes;yes;cellular;apr;thu;509;1;2;1;success;-1.8;93.075;-47.1;1.365;5099.1;yes
+30;admin.;married;university.degree;no;no;no;cellular;apr;thu;132;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+30;student;single;high.school;no;yes;no;telephone;apr;thu;136;2;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+32;student;married;high.school;no;no;no;cellular;apr;thu;567;2;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+42;services;married;high.school;no;yes;no;cellular;apr;thu;501;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+57;retired;married;university.degree;no;yes;no;cellular;apr;thu;374;1;2;1;success;-1.8;93.075;-47.1;1.365;5099.1;no
+25;unknown;single;university.degree;no;yes;no;telephone;apr;thu;712;2;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+27;admin.;single;professional.course;no;yes;yes;telephone;apr;thu;117;3;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+49;admin.;divorced;university.degree;no;yes;no;cellular;apr;thu;347;3;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+24;student;single;high.school;no;no;yes;cellular;apr;thu;157;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+56;entrepreneur;married;university.degree;no;yes;yes;cellular;apr;thu;259;1;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;yes
+66;unemployed;single;basic.4y;no;yes;no;cellular;apr;thu;1958;11;999;0;nonexistent;-1.8;93.075;-47.1;1.365;5099.1;no
+88;retired;divorced;high.school;no;yes;no;cellular;may;mon;119;2;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+63;retired;married;high.school;no;yes;no;telephone;may;mon;87;3;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+38;management;married;university.degree;no;no;no;cellular;may;mon;208;3;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+57;entrepreneur;married;basic.9y;no;yes;no;cellular;may;mon;47;2;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+35;blue-collar;single;basic.9y;no;yes;no;cellular;may;mon;265;2;3;1;success;-1.8;92.893;-46.2;1.354;5099.1;yes
+61;retired;married;high.school;no;yes;no;cellular;may;mon;104;5;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+21;student;single;unknown;no;yes;yes;cellular;may;mon;374;2;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;yes
+59;housemaid;married;professional.course;no;no;no;cellular;may;mon;675;2;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;yes
+46;technician;married;high.school;no;no;no;cellular;may;mon;60;5;3;1;success;-1.8;92.893;-46.2;1.354;5099.1;no
+36;entrepreneur;married;university.degree;no;no;no;telephone;may;mon;410;4;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;yes
+33;technician;married;professional.course;no;yes;no;telephone;may;mon;390;3;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+39;admin.;married;high.school;no;yes;no;cellular;may;mon;303;3;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;yes
+42;services;married;high.school;no;no;no;cellular;may;mon;312;2;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+31;admin.;single;university.degree;no;yes;no;cellular;may;mon;244;1;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+30;admin.;single;university.degree;no;yes;no;cellular;may;mon;160;4;999;1;failure;-1.8;92.893;-46.2;1.354;5099.1;no
+35;admin.;single;high.school;no;yes;yes;cellular;may;mon;130;1;999;1;failure;-1.8;92.893;-46.2;1.354;5099.1;no
+44;entrepreneur;single;professional.course;no;no;no;cellular;may;mon;74;1;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+60;management;married;university.degree;no;yes;no;telephone;may;mon;364;1;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+35;services;married;basic.6y;no;no;no;cellular;may;mon;392;2;3;2;success;-1.8;92.893;-46.2;1.354;5099.1;yes
+28;self-employed;single;university.degree;no;yes;no;cellular;may;mon;63;1;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+60;blue-collar;married;basic.9y;no;yes;no;cellular;may;mon;193;1;999;1;failure;-1.8;92.893;-46.2;1.354;5099.1;yes
+36;management;married;university.degree;no;yes;no;cellular;may;mon;267;1;999;1;failure;-1.8;92.893;-46.2;1.354;5099.1;yes
+60;admin.;married;university.degree;no;yes;no;cellular;may;mon;1602;2;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;yes
+31;admin.;divorced;university.degree;no;no;no;cellular;may;mon;200;1;999;1;failure;-1.8;92.893;-46.2;1.354;5099.1;no
+26;services;single;high.school;no;yes;no;cellular;may;mon;244;1;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;yes
+30;unknown;married;professional.course;no;yes;no;cellular;may;mon;359;1;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+49;admin.;married;university.degree;no;yes;yes;telephone;may;mon;16;1;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+58;retired;married;university.degree;no;yes;no;cellular;may;mon;45;1;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+30;management;single;university.degree;no;yes;yes;cellular;may;mon;447;1;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;yes
+31;admin.;divorced;university.degree;no;yes;no;cellular;may;mon;226;1;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;yes
+81;retired;married;basic.9y;no;no;no;cellular;may;mon;170;2;999;1;failure;-1.8;92.893;-46.2;1.354;5099.1;no
+39;admin.;married;high.school;no;no;no;cellular;may;mon;597;1;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;yes
+41;technician;married;unknown;no;yes;yes;cellular;may;mon;963;1;3;2;success;-1.8;92.893;-46.2;1.354;5099.1;yes
+30;unemployed;married;high.school;no;no;no;cellular;may;mon;417;1;3;1;success;-1.8;92.893;-46.2;1.354;5099.1;yes
+39;admin.;married;high.school;no;yes;no;cellular;may;mon;301;3;3;1;success;-1.8;92.893;-46.2;1.354;5099.1;yes
+35;services;married;basic.6y;no;yes;no;cellular;may;mon;136;1;999;1;failure;-1.8;92.893;-46.2;1.354;5099.1;no
+36;admin.;married;high.school;no;yes;no;telephone;may;mon;133;1;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+65;management;married;university.degree;no;no;no;telephone;may;mon;1076;3;6;1;success;-1.8;92.893;-46.2;1.354;5099.1;yes
+28;admin.;married;university.degree;no;yes;no;cellular;may;mon;643;1;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;yes
+36;blue-collar;married;basic.9y;no;yes;no;telephone;may;mon;47;1;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+34;services;married;professional.course;no;yes;yes;cellular;may;mon;275;3;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+36;unemployed;single;university.degree;no;yes;no;cellular;may;mon;251;4;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;yes
+50;blue-collar;married;basic.6y;no;yes;no;cellular;may;mon;293;3;3;1;success;-1.8;92.893;-46.2;1.354;5099.1;yes
+35;services;married;basic.6y;no;no;no;cellular;may;mon;592;1;3;1;success;-1.8;92.893;-46.2;1.354;5099.1;yes
+26;student;single;university.degree;no;no;yes;cellular;may;mon;90;2;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+52;admin.;single;high.school;no;no;no;cellular;may;mon;437;3;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+34;services;married;professional.course;no;yes;no;cellular;may;mon;101;2;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+25;technician;unknown;university.degree;no;yes;no;cellular;may;mon;346;2;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+28;blue-collar;married;basic.6y;unknown;no;no;cellular;may;mon;364;2;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+43;entrepreneur;married;basic.6y;no;yes;no;cellular;may;mon;195;3;999;1;failure;-1.8;92.893;-46.2;1.354;5099.1;no
+51;blue-collar;married;basic.4y;no;yes;no;cellular;may;mon;59;2;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+30;services;single;high.school;no;yes;yes;cellular;may;mon;95;2;999;1;failure;-1.8;92.893;-46.2;1.354;5099.1;no
+59;retired;married;basic.6y;no;no;no;cellular;may;mon;233;2;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+27;student;single;high.school;no;no;no;cellular;may;mon;64;2;999;1;failure;-1.8;92.893;-46.2;1.354;5099.1;no
+27;management;single;university.degree;no;yes;no;cellular;may;mon;77;2;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+32;student;single;unknown;no;no;yes;cellular;may;mon;77;2;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+66;management;married;university.degree;no;no;no;cellular;may;mon;98;4;3;1;success;-1.8;92.893;-46.2;1.354;5099.1;no
+31;admin.;single;university.degree;no;yes;no;cellular;may;mon;274;2;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;yes
+49;admin.;married;university.degree;no;yes;no;telephone;may;mon;15;5;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+52;admin.;single;high.school;no;no;no;cellular;may;mon;127;2;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+57;admin.;single;university.degree;no;no;yes;cellular;may;mon;532;3;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;yes
+31;student;single;unknown;no;no;yes;cellular;may;mon;535;2;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+25;technician;married;university.degree;no;no;no;cellular;may;mon;106;1;999;2;failure;-1.8;92.893;-46.2;1.354;5099.1;no
+36;technician;married;university.degree;no;no;yes;cellular;may;mon;287;2;999;1;failure;-1.8;92.893;-46.2;1.354;5099.1;yes
+42;admin.;married;professional.course;no;yes;no;cellular;may;mon;174;1;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+62;retired;married;professional.course;no;yes;no;cellular;may;mon;212;4;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+42;admin.;married;professional.course;no;no;yes;cellular;may;mon;300;1;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;yes
+53;admin.;divorced;university.degree;no;yes;no;cellular;may;mon;367;1;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;yes
+27;management;single;university.degree;no;no;no;cellular;may;mon;52;4;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+35;services;married;high.school;no;no;no;cellular;may;mon;297;4;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+26;admin.;single;university.degree;no;yes;no;telephone;may;mon;77;2;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+30;unemployed;married;high.school;no;yes;no;cellular;may;mon;214;3;3;1;success;-1.8;92.893;-46.2;1.354;5099.1;yes
+59;retired;married;basic.6y;no;yes;no;cellular;may;mon;228;6;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;yes
+39;blue-collar;married;basic.9y;no;no;no;cellular;may;mon;378;3;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+45;blue-collar;married;basic.9y;no;yes;yes;cellular;may;mon;7;4;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+43;admin.;single;university.degree;no;yes;no;telephone;may;mon;34;6;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+33;services;married;high.school;no;no;yes;cellular;may;mon;347;2;999;1;failure;-1.8;92.893;-46.2;1.354;5099.1;no
+35;blue-collar;married;basic.4y;no;yes;no;cellular;may;mon;291;3;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+34;services;married;professional.course;no;no;no;cellular;may;mon;190;3;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+33;blue-collar;married;high.school;unknown;yes;yes;cellular;may;mon;164;2;999;1;failure;-1.8;92.893;-46.2;1.354;5099.1;no
+33;blue-collar;married;high.school;unknown;yes;no;cellular;may;mon;92;2;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+60;blue-collar;married;unknown;unknown;yes;no;cellular;may;mon;26;5;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+34;services;married;professional.course;no;no;no;cellular;may;mon;90;4;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+30;admin.;single;university.degree;no;no;no;telephone;may;mon;222;6;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+42;services;married;high.school;no;yes;no;cellular;may;mon;74;3;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+53;management;married;high.school;no;yes;no;cellular;may;mon;383;2;999;1;failure;-1.8;92.893;-46.2;1.354;5099.1;no
+31;admin.;single;university.degree;no;yes;no;cellular;may;mon;434;4;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;yes
+42;admin.;married;professional.course;no;yes;yes;cellular;may;mon;172;2;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+45;blue-collar;married;basic.9y;no;yes;no;cellular;may;mon;54;2;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+49;unemployed;married;high.school;no;yes;no;telephone;may;mon;96;1;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+57;technician;married;university.degree;no;yes;no;cellular;may;mon;334;2;999;1;failure;-1.8;92.893;-46.2;1.354;5099.1;no
+55;technician;married;basic.9y;unknown;no;no;cellular;may;mon;180;1;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+25;technician;unknown;university.degree;no;yes;yes;cellular;may;mon;150;1;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+35;admin.;married;professional.course;no;yes;no;cellular;may;mon;76;2;3;1;success;-1.8;92.893;-46.2;1.354;5099.1;no
+27;blue-collar;unknown;high.school;no;no;no;cellular;may;mon;173;2;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+31;student;single;unknown;no;no;yes;cellular;may;mon;63;3;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+58;retired;married;university.degree;no;yes;no;telephone;may;mon;101;2;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+43;admin.;married;professional.course;no;yes;yes;cellular;may;mon;238;3;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+31;admin.;divorced;university.degree;no;yes;yes;cellular;may;mon;79;3;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+31;services;married;high.school;unknown;no;no;cellular;may;mon;619;6;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;yes
+38;admin.;single;university.degree;no;no;no;cellular;may;mon;190;3;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+36;entrepreneur;married;basic.9y;no;no;no;cellular;may;mon;257;2;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+42;admin.;married;university.degree;no;yes;no;cellular;may;mon;370;5;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+41;admin.;single;high.school;no;yes;no;cellular;may;mon;306;3;999;1;failure;-1.8;92.893;-46.2;1.354;5099.1;no
+35;services;married;high.school;no;no;no;cellular;may;mon;130;3;999;1;failure;-1.8;92.893;-46.2;1.354;5099.1;no
+39;technician;married;professional.course;no;yes;no;cellular;may;mon;1046;3;11;1;success;-1.8;92.893;-46.2;1.354;5099.1;yes
+27;technician;single;university.degree;no;yes;no;cellular;may;mon;77;6;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+27;technician;single;university.degree;no;yes;no;cellular;may;mon;90;4;999;1;failure;-1.8;92.893;-46.2;1.354;5099.1;no
+53;admin.;married;high.school;unknown;yes;no;cellular;may;mon;181;2;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+19;student;single;unknown;no;yes;no;cellular;may;mon;121;5;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+27;technician;single;university.degree;no;yes;no;telephone;may;mon;336;9;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+44;admin.;divorced;high.school;no;yes;no;cellular;may;mon;72;4;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+20;technician;single;university.degree;no;no;no;cellular;may;mon;237;5;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;yes
+45;entrepreneur;married;basic.4y;unknown;no;no;cellular;may;mon;211;5;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+42;admin.;married;professional.course;no;yes;no;cellular;may;mon;458;3;9;2;failure;-1.8;92.893;-46.2;1.354;5099.1;yes
+36;management;married;university.degree;no;no;yes;cellular;may;mon;110;4;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+31;blue-collar;married;basic.6y;no;yes;no;cellular;may;mon;392;7;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+34;self-employed;married;basic.4y;unknown;no;no;cellular;may;mon;100;2;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+39;blue-collar;married;basic.9y;no;no;yes;cellular;may;mon;124;3;999;2;failure;-1.8;92.893;-46.2;1.354;5099.1;no
+35;admin.;married;professional.course;no;yes;no;cellular;may;mon;115;3;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+44;self-employed;single;professional.course;no;yes;no;cellular;may;mon;922;4;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;yes
+30;self-employed;married;university.degree;no;no;no;cellular;may;mon;107;4;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+51;blue-collar;married;basic.4y;no;yes;no;cellular;may;mon;77;2;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+31;technician;single;university.degree;no;no;no;cellular;may;mon;220;4;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+34;admin.;single;university.degree;no;no;no;cellular;may;mon;75;5;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+51;blue-collar;married;basic.4y;no;yes;no;cellular;may;mon;601;3;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;yes
+39;admin.;single;university.degree;no;no;no;cellular;may;mon;198;2;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+54;blue-collar;married;basic.4y;no;no;no;cellular;may;mon;191;3;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+52;admin.;married;university.degree;no;no;yes;cellular;may;mon;434;2;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+28;admin.;single;university.degree;no;no;no;cellular;may;mon;497;3;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+48;admin.;married;university.degree;no;no;yes;cellular;may;mon;312;3;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+42;housemaid;single;high.school;no;yes;no;telephone;may;mon;186;4;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+53;technician;married;professional.course;no;yes;no;telephone;may;mon;25;1;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+39;blue-collar;single;basic.9y;no;yes;yes;cellular;may;mon;78;3;3;1;success;-1.8;92.893;-46.2;1.354;5099.1;no
+39;blue-collar;single;basic.9y;no;no;no;cellular;may;mon;264;3;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+58;admin.;married;university.degree;no;yes;yes;cellular;may;mon;353;2;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;yes
+56;housemaid;married;high.school;no;yes;yes;telephone;may;mon;290;3;999;1;failure;-1.8;92.893;-46.2;1.354;5099.1;no
+30;technician;single;professional.course;no;no;no;cellular;may;mon;79;4;999;1;failure;-1.8;92.893;-46.2;1.354;5099.1;no
+57;self-employed;married;university.degree;no;yes;no;cellular;may;mon;949;3;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;yes
+39;admin.;married;high.school;no;unknown;unknown;cellular;may;mon;99;2;999;2;failure;-1.8;92.893;-46.2;1.354;5099.1;no
+56;admin.;married;basic.9y;no;yes;yes;cellular;may;mon;313;2;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+30;unemployed;married;high.school;no;yes;yes;telephone;may;mon;104;4;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+30;admin.;married;university.degree;no;yes;yes;cellular;may;mon;742;4;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;yes
+22;student;single;high.school;no;yes;yes;cellular;may;mon;1370;3;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;yes
+42;admin.;married;university.degree;no;yes;no;cellular;may;mon;20;5;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+52;blue-collar;married;basic.4y;unknown;no;no;cellular;may;mon;528;3;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+34;services;married;professional.course;no;yes;yes;cellular;may;mon;675;3;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+28;technician;single;high.school;no;yes;no;cellular;may;mon;134;3;999;1;failure;-1.8;92.893;-46.2;1.354;5099.1;no
+35;housemaid;single;university.degree;no;no;yes;cellular;may;mon;126;4;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+35;admin.;married;high.school;no;yes;yes;telephone;may;mon;159;10;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+32;self-employed;married;basic.6y;no;yes;no;cellular;may;mon;1121;3;3;1;success;-1.8;92.893;-46.2;1.354;5099.1;no
+61;technician;divorced;professional.course;no;yes;no;cellular;may;mon;268;3;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;yes
+42;admin.;married;university.degree;no;yes;no;cellular;may;mon;230;6;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+50;self-employed;married;high.school;no;yes;no;cellular;may;mon;172;3;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+41;services;single;high.school;no;yes;no;cellular;may;mon;417;2;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+26;student;single;high.school;no;no;no;cellular;may;mon;716;3;999;1;failure;-1.8;92.893;-46.2;1.354;5099.1;yes
+40;admin.;married;university.degree;no;no;no;cellular;may;mon;365;4;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;yes
+38;blue-collar;married;basic.9y;no;yes;no;cellular;may;mon;240;5;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+36;entrepreneur;married;basic.9y;no;no;no;cellular;may;mon;104;3;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+81;retired;married;basic.4y;no;no;no;cellular;may;mon;617;2;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;yes
+46;services;married;basic.6y;no;yes;no;telephone;may;mon;89;5;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+56;technician;married;professional.course;no;yes;yes;cellular;may;mon;333;2;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;yes
+59;retired;married;basic.4y;no;no;no;cellular;may;mon;13;6;999;1;failure;-1.8;92.893;-46.2;1.354;5099.1;no
+21;student;single;unknown;no;no;no;cellular;may;mon;288;5;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;yes
+44;technician;married;high.school;no;no;no;cellular;may;mon;174;5;999;1;failure;-1.8;92.893;-46.2;1.354;5099.1;no
+50;blue-collar;married;basic.6y;no;yes;no;telephone;may;mon;483;4;3;2;success;-1.8;92.893;-46.2;1.354;5099.1;yes
+51;technician;married;professional.course;no;yes;no;cellular;may;mon;8;4;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+39;admin.;married;high.school;no;no;no;telephone;may;mon;6;4;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+46;blue-collar;married;basic.6y;no;yes;no;cellular;may;mon;1091;3;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;yes
+53;technician;married;professional.course;no;no;no;cellular;may;mon;206;3;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;yes
+29;management;married;university.degree;no;no;no;telephone;may;mon;150;5;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+39;admin.;married;high.school;no;no;no;cellular;may;mon;1063;5;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;yes
+39;admin.;married;university.degree;no;yes;no;telephone;may;mon;36;6;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+37;entrepreneur;married;university.degree;no;yes;no;cellular;may;mon;79;5;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+53;management;married;high.school;no;yes;no;cellular;may;mon;8;3;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+37;technician;single;professional.course;no;no;no;telephone;may;mon;21;5;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+43;blue-collar;married;basic.9y;no;yes;yes;cellular;may;mon;99;4;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+34;services;married;professional.course;no;yes;no;cellular;may;mon;72;5;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+27;student;single;university.degree;no;yes;no;telephone;may;mon;354;2;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+42;services;married;high.school;no;yes;no;cellular;may;mon;520;2;3;1;success;-1.8;92.893;-46.2;1.354;5099.1;no
+59;management;married;university.degree;no;no;no;telephone;may;mon;340;8;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;yes
+45;admin.;married;university.degree;no;yes;no;cellular;may;mon;254;4;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+43;admin.;married;high.school;no;yes;no;cellular;may;mon;76;4;3;1;success;-1.8;92.893;-46.2;1.354;5099.1;no
+44;self-employed;married;high.school;no;yes;no;cellular;may;mon;108;1;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+57;entrepreneur;married;basic.9y;no;yes;no;cellular;may;mon;429;4;999;1;failure;-1.8;92.893;-46.2;1.354;5099.1;yes
+59;unknown;married;unknown;no;yes;no;cellular;may;mon;399;2;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+48;unemployed;married;professional.course;no;yes;yes;cellular;may;mon;10;4;999;1;failure;-1.8;92.893;-46.2;1.354;5099.1;no
+32;services;single;high.school;no;no;no;cellular;may;mon;196;1;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+30;unknown;married;professional.course;no;no;no;cellular;may;mon;399;1;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+50;entrepreneur;married;basic.9y;no;yes;no;telephone;may;mon;331;5;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;yes
+29;admin.;married;university.degree;unknown;yes;no;cellular;may;mon;11;4;3;1;success;-1.8;92.893;-46.2;1.354;5099.1;no
+44;self-employed;single;professional.course;no;yes;no;cellular;may;mon;775;5;999;1;failure;-1.8;92.893;-46.2;1.354;5099.1;yes
+37;technician;single;professional.course;no;yes;no;cellular;may;mon;78;4;999;1;failure;-1.8;92.893;-46.2;1.354;5099.1;no
+46;admin.;single;high.school;no;no;yes;cellular;may;mon;83;5;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+49;technician;married;high.school;no;yes;no;cellular;may;mon;143;1;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+53;admin.;married;basic.9y;no;no;no;telephone;may;mon;40;5;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+51;unemployed;married;high.school;no;no;no;cellular;may;mon;14;5;3;1;success;-1.8;92.893;-46.2;1.354;5099.1;no
+24;technician;single;high.school;no;yes;no;cellular;may;mon;841;4;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;yes
+44;self-employed;single;professional.course;no;no;no;cellular;may;mon;230;6;12;1;success;-1.8;92.893;-46.2;1.354;5099.1;no
+37;unknown;single;university.degree;no;yes;no;cellular;may;mon;23;5;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+44;self-employed;married;high.school;no;no;yes;cellular;may;mon;15;4;999;2;failure;-1.8;92.893;-46.2;1.354;5099.1;no
+36;management;married;university.degree;no;yes;no;cellular;may;mon;7;6;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+39;unemployed;single;basic.9y;no;yes;no;telephone;may;mon;846;2;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+31;services;married;high.school;unknown;no;no;telephone;may;mon;211;3;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+56;housemaid;married;high.school;no;no;no;cellular;may;mon;9;8;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+56;services;divorced;high.school;no;no;no;telephone;may;mon;640;7;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;yes
+49;admin.;divorced;university.degree;no;no;no;cellular;may;mon;124;5;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+36;technician;married;professional.course;no;yes;no;cellular;may;mon;16;5;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+50;self-employed;married;basic.9y;no;yes;yes;cellular;may;mon;673;6;3;1;success;-1.8;92.893;-46.2;1.354;5099.1;yes
+25;management;single;university.degree;no;yes;no;cellular;may;mon;362;5;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+56;services;married;high.school;no;yes;no;cellular;may;mon;520;2;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+34;admin.;married;university.degree;no;yes;yes;telephone;may;mon;75;3;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+59;unknown;married;unknown;no;yes;no;cellular;may;mon;8;7;6;1;success;-1.8;92.893;-46.2;1.354;5099.1;no
+45;admin.;married;university.degree;no;yes;yes;telephone;may;mon;157;3;999;0;nonexistent;-1.8;92.893;-46.2;1.354;5099.1;no
+60;admin.;married;university.degree;no;yes;no;cellular;may;mon;226;2;11;1;success;-1.8;92.893;-46.2;1.354;5099.1;yes
+39;blue-collar;single;basic.4y;no;no;yes;cellular;may;tue;205;2;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+36;services;married;high.school;no;yes;no;cellular;may;tue;574;2;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+29;admin.;single;university.degree;no;yes;no;cellular;may;tue;159;8;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+37;blue-collar;married;basic.6y;no;yes;no;cellular;may;tue;85;4;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+25;services;married;high.school;no;no;no;cellular;may;tue;171;2;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+36;admin.;divorced;high.school;no;yes;no;cellular;may;tue;136;5;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+33;retired;married;high.school;no;yes;no;cellular;may;tue;762;3;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;yes
+32;blue-collar;single;basic.4y;no;yes;no;cellular;may;tue;813;2;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+28;services;single;unknown;no;no;no;cellular;may;tue;466;2;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+34;admin.;married;university.degree;no;yes;no;cellular;may;tue;88;3;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+58;services;divorced;high.school;unknown;yes;no;cellular;may;tue;29;6;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+40;admin.;single;high.school;no;yes;no;cellular;may;tue;142;3;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+36;blue-collar;married;basic.6y;no;yes;no;cellular;may;tue;94;5;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+33;management;married;university.degree;no;yes;no;cellular;may;tue;35;6;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+38;admin.;married;university.degree;no;no;no;telephone;may;tue;11;6;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+48;services;married;basic.4y;no;no;no;cellular;may;tue;17;5;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+57;retired;married;basic.6y;no;no;no;cellular;may;tue;148;4;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+41;blue-collar;married;basic.9y;no;yes;no;cellular;may;tue;155;4;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+55;retired;married;basic.4y;no;no;no;cellular;may;tue;43;5;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+40;blue-collar;married;basic.9y;unknown;no;no;cellular;may;tue;307;4;999;2;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+36;admin.;divorced;high.school;no;yes;no;telephone;may;tue;19;2;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+32;technician;single;professional.course;no;no;no;cellular;may;tue;146;2;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+36;blue-collar;married;basic.9y;unknown;yes;no;cellular;may;tue;39;5;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+19;student;single;high.school;unknown;no;yes;cellular;may;tue;106;4;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+44;blue-collar;married;basic.4y;no;yes;no;telephone;may;tue;15;7;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+37;admin.;married;basic.9y;no;yes;no;cellular;may;tue;272;2;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+44;services;married;high.school;no;yes;no;cellular;may;tue;10;5;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+29;admin.;single;university.degree;no;no;no;cellular;may;tue;245;6;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+44;admin.;single;professional.course;unknown;no;no;cellular;may;tue;18;6;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+37;blue-collar;married;basic.6y;no;no;no;cellular;may;tue;84;5;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+37;admin.;married;basic.9y;no;yes;no;cellular;may;tue;24;7;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+33;housemaid;married;basic.9y;unknown;yes;no;cellular;may;tue;145;1;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+40;blue-collar;married;basic.9y;no;yes;no;cellular;may;tue;337;3;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+43;blue-collar;married;basic.4y;no;no;no;cellular;may;tue;184;1;999;2;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+42;blue-collar;married;basic.9y;no;no;no;cellular;may;tue;632;5;10;1;success;-1.8;92.893;-46.2;1.344;5099.1;no
+38;admin.;divorced;high.school;no;no;no;cellular;may;tue;326;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+34;blue-collar;married;basic.9y;no;yes;no;cellular;may;tue;222;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+34;blue-collar;married;basic.9y;no;no;no;cellular;may;tue;169;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+32;blue-collar;married;basic.6y;unknown;yes;no;cellular;may;tue;105;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+34;blue-collar;married;basic.9y;no;yes;no;telephone;may;tue;363;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+34;blue-collar;married;basic.9y;no;yes;no;cellular;may;tue;332;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+42;blue-collar;married;basic.9y;no;no;no;cellular;may;tue;334;1;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+32;blue-collar;married;basic.9y;no;yes;no;cellular;may;tue;72;1;999;2;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+35;blue-collar;married;basic.6y;unknown;yes;no;cellular;may;tue;214;1;0;1;success;-1.8;92.893;-46.2;1.344;5099.1;no
+38;blue-collar;married;basic.9y;unknown;yes;no;cellular;may;tue;276;1;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+34;management;married;university.degree;no;yes;yes;cellular;may;tue;106;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+37;admin.;divorced;high.school;no;no;yes;cellular;may;tue;461;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+35;services;married;high.school;unknown;yes;no;cellular;may;tue;31;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+32;technician;single;university.degree;no;yes;no;cellular;may;tue;51;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+35;services;married;high.school;unknown;yes;no;cellular;may;tue;215;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+36;blue-collar;married;basic.9y;no;no;no;cellular;may;tue;133;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+36;blue-collar;married;basic.9y;no;yes;no;cellular;may;tue;301;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+36;blue-collar;married;basic.9y;no;yes;no;cellular;may;tue;415;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+33;admin.;married;high.school;unknown;yes;no;cellular;may;tue;17;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+36;blue-collar;married;basic.9y;no;no;no;cellular;may;tue;151;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+29;services;divorced;high.school;no;no;no;cellular;may;tue;259;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+41;admin.;married;high.school;no;yes;no;cellular;may;tue;181;1;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+33;admin.;married;high.school;unknown;yes;no;cellular;may;tue;169;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+33;admin.;married;high.school;unknown;no;no;cellular;may;tue;168;1;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+47;technician;married;professional.course;unknown;yes;no;cellular;may;tue;60;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+41;blue-collar;married;basic.9y;no;yes;no;cellular;may;tue;98;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+41;blue-collar;married;basic.9y;no;yes;no;cellular;may;tue;123;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+41;blue-collar;married;basic.9y;no;yes;no;cellular;may;tue;243;1;999;2;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+47;services;married;high.school;unknown;yes;no;cellular;may;tue;377;1;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+49;admin.;married;high.school;no;no;no;cellular;may;tue;57;1;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+41;blue-collar;married;basic.4y;no;yes;no;cellular;may;tue;234;1;999;2;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+36;blue-collar;married;basic.4y;unknown;no;no;cellular;may;tue;234;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+40;admin.;single;high.school;no;no;no;cellular;may;tue;17;6;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+34;blue-collar;married;basic.9y;no;no;no;cellular;may;tue;129;2;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+30;admin.;single;high.school;no;no;no;cellular;may;tue;154;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+39;blue-collar;married;basic.9y;no;yes;no;telephone;may;tue;29;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+38;entrepreneur;married;professional.course;no;no;yes;cellular;may;tue;266;1;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+39;blue-collar;married;basic.9y;no;no;no;cellular;may;tue;163;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+38;entrepreneur;married;professional.course;no;yes;no;cellular;may;tue;382;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+39;blue-collar;married;basic.9y;no;no;no;cellular;may;tue;225;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+58;admin.;single;university.degree;no;no;no;cellular;may;tue;358;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+49;admin.;married;high.school;no;yes;no;cellular;may;tue;668;1;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;yes
+44;blue-collar;married;basic.9y;no;yes;yes;cellular;may;tue;180;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+39;blue-collar;married;basic.9y;no;yes;yes;cellular;may;tue;494;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;yes
+49;blue-collar;married;professional.course;no;yes;yes;cellular;may;tue;121;1;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+38;blue-collar;divorced;basic.9y;no;yes;no;cellular;may;tue;391;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+51;admin.;married;basic.4y;unknown;no;no;cellular;may;tue;142;1;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+41;blue-collar;married;basic.9y;no;no;no;cellular;may;tue;1240;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;yes
+35;blue-collar;married;high.school;no;no;no;cellular;may;tue;895;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;yes
+58;admin.;single;university.degree;no;yes;no;cellular;may;tue;851;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;yes
+49;blue-collar;married;professional.course;no;yes;yes;cellular;may;tue;145;1;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+49;blue-collar;married;professional.course;no;no;no;cellular;may;tue;118;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+50;blue-collar;married;basic.4y;no;yes;no;cellular;may;tue;392;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;yes
+43;blue-collar;married;basic.6y;no;no;yes;cellular;may;tue;175;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+36;self-employed;married;basic.9y;no;yes;yes;cellular;may;tue;731;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;yes
+35;technician;divorced;professional.course;no;no;no;cellular;may;tue;301;1;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+38;technician;married;university.degree;no;yes;no;cellular;may;tue;55;1;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+43;blue-collar;married;basic.6y;no;yes;no;cellular;may;tue;286;1;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+47;management;married;university.degree;no;no;no;cellular;may;tue;242;1;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+51;admin.;married;basic.4y;unknown;no;no;cellular;may;tue;516;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+34;blue-collar;married;unknown;no;yes;no;cellular;may;tue;163;1;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+31;services;single;basic.9y;no;no;no;cellular;may;tue;163;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+35;blue-collar;single;high.school;no;yes;no;cellular;may;tue;173;1;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+45;blue-collar;married;basic.6y;no;no;no;cellular;may;tue;86;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+34;blue-collar;married;high.school;no;yes;no;cellular;may;tue;863;1;3;2;success;-1.8;92.893;-46.2;1.344;5099.1;yes
+35;admin.;single;university.degree;no;yes;no;telephone;may;tue;227;3;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+29;student;single;high.school;unknown;no;yes;cellular;may;tue;139;1;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+36;admin.;single;high.school;no;yes;no;cellular;may;tue;479;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+31;services;single;high.school;no;yes;no;cellular;may;tue;28;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+45;entrepreneur;divorced;basic.9y;no;yes;yes;cellular;may;tue;17;3;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+31;services;single;high.school;no;yes;no;cellular;may;tue;62;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+42;blue-collar;married;basic.9y;no;no;no;cellular;may;tue;80;1;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+41;blue-collar;divorced;basic.9y;no;yes;no;cellular;may;tue;48;2;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+40;management;married;university.degree;no;yes;no;cellular;may;tue;459;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+44;services;married;high.school;no;yes;no;cellular;may;tue;358;1;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+48;blue-collar;single;basic.4y;unknown;yes;yes;cellular;may;tue;233;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+35;blue-collar;divorced;high.school;no;yes;no;cellular;may;tue;187;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+45;blue-collar;married;unknown;unknown;yes;no;cellular;may;tue;131;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+39;retired;divorced;basic.4y;no;yes;no;cellular;may;tue;188;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+50;technician;married;unknown;no;no;no;cellular;may;tue;95;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+35;blue-collar;single;high.school;no;no;no;cellular;may;tue;1090;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;yes
+55;self-employed;married;basic.9y;no;yes;no;cellular;may;tue;604;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+41;management;single;basic.9y;no;no;no;cellular;may;tue;381;1;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+39;blue-collar;married;basic.6y;no;yes;no;cellular;may;tue;103;1;999;2;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+54;blue-collar;married;high.school;unknown;yes;yes;cellular;may;tue;197;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+34;entrepreneur;single;university.degree;no;yes;no;cellular;may;tue;168;2;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+39;blue-collar;married;basic.6y;no;yes;yes;cellular;may;tue;225;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+43;blue-collar;married;basic.9y;unknown;unknown;unknown;cellular;may;tue;46;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+40;management;married;professional.course;no;unknown;unknown;cellular;may;tue;247;2;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+50;technician;married;unknown;no;yes;yes;cellular;may;tue;400;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;yes
+54;blue-collar;married;high.school;unknown;yes;no;cellular;may;tue;323;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+57;blue-collar;married;basic.9y;no;yes;no;cellular;may;tue;269;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+50;technician;married;unknown;no;yes;no;cellular;may;tue;500;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+43;blue-collar;married;basic.9y;unknown;yes;no;cellular;may;tue;180;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+37;management;married;university.degree;no;no;yes;cellular;may;tue;252;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+43;blue-collar;married;basic.9y;unknown;yes;no;cellular;may;tue;545;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+45;technician;divorced;university.degree;unknown;yes;no;cellular;may;tue;298;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+28;blue-collar;single;basic.9y;unknown;no;no;cellular;may;tue;718;1;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+36;blue-collar;married;basic.9y;no;yes;no;cellular;may;tue;620;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+37;blue-collar;married;unknown;no;yes;no;cellular;may;tue;696;1;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+36;blue-collar;married;basic.9y;no;no;yes;cellular;may;tue;239;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+33;services;married;professional.course;no;yes;no;cellular;may;tue;44;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+37;blue-collar;married;basic.6y;no;yes;yes;cellular;may;tue;98;4;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+43;blue-collar;married;basic.9y;unknown;no;no;cellular;may;tue;68;1;6;1;success;-1.8;92.893;-46.2;1.344;5099.1;no
+38;technician;married;professional.course;no;no;no;cellular;may;tue;188;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+43;blue-collar;married;basic.9y;unknown;unknown;unknown;cellular;may;tue;123;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+48;services;married;basic.4y;no;no;no;cellular;may;tue;1130;4;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+35;services;married;basic.6y;unknown;yes;no;cellular;may;tue;136;2;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+30;admin.;married;high.school;no;no;yes;cellular;may;tue;838;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;yes
+34;technician;single;professional.course;no;yes;no;cellular;may;tue;325;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+45;blue-collar;married;basic.4y;unknown;no;yes;cellular;may;tue;397;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+46;blue-collar;married;high.school;no;no;yes;cellular;may;tue;173;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+44;blue-collar;married;basic.4y;unknown;no;no;cellular;may;tue;659;1;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+44;admin.;married;university.degree;no;yes;no;cellular;may;tue;201;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+30;blue-collar;single;basic.9y;no;no;yes;cellular;may;tue;143;1;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+30;technician;single;university.degree;no;no;yes;cellular;may;tue;39;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+46;blue-collar;married;high.school;no;no;no;cellular;may;tue;456;1;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+42;blue-collar;married;basic.4y;no;yes;no;cellular;may;tue;196;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+30;technician;single;university.degree;no;yes;no;cellular;may;tue;150;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+36;blue-collar;single;basic.6y;unknown;yes;no;cellular;may;tue;108;1;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+36;blue-collar;single;basic.6y;unknown;no;no;cellular;may;tue;141;1;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+36;admin.;divorced;high.school;no;yes;no;cellular;may;tue;236;1;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+38;technician;married;university.degree;no;no;no;telephone;may;tue;125;2;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+46;blue-collar;married;high.school;no;yes;no;cellular;may;tue;675;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+44;entrepreneur;married;basic.4y;no;unknown;unknown;cellular;may;tue;84;1;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+48;blue-collar;married;basic.9y;no;yes;no;cellular;may;tue;258;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+33;admin.;single;high.school;no;no;no;telephone;may;tue;60;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+40;admin.;single;high.school;no;no;no;cellular;may;tue;18;6;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+44;entrepreneur;married;basic.4y;no;unknown;unknown;cellular;may;tue;241;1;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+33;admin.;single;high.school;no;no;no;cellular;may;tue;151;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+33;admin.;single;high.school;no;no;no;cellular;may;tue;154;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+33;admin.;single;high.school;no;no;no;cellular;may;tue;399;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+37;technician;married;university.degree;no;no;no;cellular;may;tue;34;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+47;blue-collar;divorced;basic.9y;no;no;no;cellular;may;tue;295;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+51;blue-collar;married;professional.course;unknown;yes;no;cellular;may;tue;273;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+33;admin.;single;high.school;no;yes;no;cellular;may;tue;659;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+33;admin.;married;high.school;no;yes;no;cellular;may;tue;345;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+39;services;divorced;professional.course;no;yes;yes;cellular;may;tue;227;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+32;admin.;married;high.school;no;yes;no;cellular;may;tue;323;2;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+40;blue-collar;married;basic.9y;unknown;no;no;cellular;may;tue;335;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+32;admin.;divorced;high.school;no;yes;no;cellular;may;tue;294;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+54;self-employed;married;university.degree;no;no;yes;cellular;may;tue;388;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+49;entrepreneur;married;high.school;no;no;no;cellular;may;tue;123;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+28;services;single;unknown;no;yes;no;cellular;may;tue;87;4;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+49;entrepreneur;married;high.school;no;no;no;cellular;may;tue;141;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+58;retired;married;high.school;unknown;no;no;cellular;may;tue;127;1;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+32;services;married;high.school;no;no;no;cellular;may;tue;106;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+32;services;married;high.school;no;no;no;cellular;may;tue;79;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+47;entrepreneur;married;unknown;unknown;yes;no;telephone;may;tue;22;1;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+58;retired;married;high.school;unknown;yes;no;cellular;may;tue;159;1;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+32;technician;married;high.school;no;yes;no;cellular;may;tue;67;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+45;blue-collar;single;basic.9y;unknown;yes;no;cellular;may;tue;623;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+47;entrepreneur;married;unknown;unknown;yes;no;cellular;may;tue;197;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+44;admin.;single;professional.course;unknown;yes;no;cellular;may;tue;54;4;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+37;blue-collar;married;unknown;unknown;no;no;cellular;may;tue;409;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+45;blue-collar;married;basic.4y;unknown;yes;no;cellular;may;tue;335;2;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+35;technician;married;professional.course;no;yes;no;cellular;may;tue;206;1;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+40;technician;married;high.school;no;yes;no;cellular;may;tue;394;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+51;blue-collar;married;basic.6y;no;unknown;unknown;cellular;may;tue;811;2;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;yes
+42;blue-collar;married;basic.4y;no;no;no;cellular;may;tue;272;2;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+35;blue-collar;married;basic.4y;no;yes;no;cellular;may;tue;65;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+57;blue-collar;married;basic.4y;no;yes;no;cellular;may;tue;145;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+42;blue-collar;married;basic.4y;no;yes;no;cellular;may;tue;442;2;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+49;blue-collar;married;basic.6y;unknown;no;no;cellular;may;tue;568;1;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;yes
+34;admin.;married;high.school;no;yes;yes;cellular;may;tue;259;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;yes
+36;admin.;single;high.school;no;yes;no;cellular;may;tue;220;1;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+32;management;divorced;university.degree;no;yes;no;cellular;may;tue;59;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+37;management;single;university.degree;no;yes;no;cellular;may;tue;42;1;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+32;management;divorced;university.degree;no;yes;no;cellular;may;tue;313;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+45;entrepreneur;divorced;basic.9y;no;yes;no;cellular;may;tue;29;3;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+43;blue-collar;married;basic.9y;no;no;no;cellular;may;tue;13;5;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+39;blue-collar;single;basic.4y;no;no;no;cellular;may;tue;231;4;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+32;technician;married;professional.course;no;yes;no;cellular;may;tue;235;2;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+44;entrepreneur;married;basic.4y;no;yes;no;cellular;may;tue;955;2;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;yes
+37;management;divorced;unknown;no;yes;no;cellular;may;tue;221;2;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+52;blue-collar;married;basic.6y;no;yes;no;cellular;may;tue;157;2;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+30;admin.;single;university.degree;no;yes;no;cellular;may;tue;359;2;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+53;admin.;single;high.school;no;yes;no;cellular;may;tue;470;2;999;2;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+31;unemployed;single;university.degree;no;yes;no;cellular;may;tue;11;9;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+33;admin.;married;high.school;no;yes;no;cellular;may;tue;495;1;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+29;entrepreneur;married;basic.6y;no;yes;no;cellular;may;tue;383;5;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+34;admin.;married;high.school;no;no;no;cellular;may;tue;295;2;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+35;blue-collar;married;basic.6y;no;yes;no;cellular;may;tue;155;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+37;management;single;university.degree;no;no;no;cellular;may;tue;107;1;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+36;retired;single;university.degree;no;yes;no;cellular;may;tue;93;4;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+37;management;single;university.degree;no;yes;no;cellular;may;tue;277;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+50;blue-collar;married;basic.4y;no;no;no;cellular;may;tue;166;2;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+34;services;married;high.school;no;no;no;cellular;may;tue;542;4;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+37;management;single;university.degree;no;yes;no;cellular;may;tue;58;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+58;services;divorced;high.school;unknown;yes;no;cellular;may;tue;237;4;999;2;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+38;entrepreneur;married;basic.4y;no;no;no;cellular;may;tue;184;1;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+49;blue-collar;married;professional.course;no;no;no;cellular;may;tue;325;2;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+34;technician;single;professional.course;no;no;no;cellular;may;tue;1221;2;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;yes
+38;entrepreneur;married;basic.4y;no;yes;no;cellular;may;tue;360;1;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+34;services;married;high.school;unknown;no;no;cellular;may;tue;245;5;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+36;admin.;single;high.school;no;yes;no;cellular;may;tue;67;2;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+52;blue-collar;married;high.school;no;yes;no;cellular;may;tue;131;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+52;blue-collar;married;high.school;no;no;no;cellular;may;tue;57;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+37;services;single;basic.9y;no;no;no;cellular;may;tue;37;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+39;blue-collar;married;basic.9y;no;yes;no;cellular;may;tue;257;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+39;blue-collar;married;basic.6y;unknown;no;no;cellular;may;tue;132;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+37;services;single;basic.9y;no;no;no;cellular;may;tue;247;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+37;services;single;basic.9y;no;no;no;cellular;may;tue;348;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+54;services;divorced;university.degree;no;yes;no;cellular;may;tue;335;1;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+43;blue-collar;married;basic.4y;no;no;no;cellular;may;tue;217;2;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+33;admin.;married;basic.9y;no;no;no;cellular;may;tue;127;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+30;services;married;high.school;no;yes;no;cellular;may;tue;93;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+54;services;divorced;university.degree;no;no;no;cellular;may;tue;499;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;yes
+44;management;married;university.degree;no;yes;no;cellular;may;tue;71;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+30;services;married;high.school;no;no;no;cellular;may;tue;414;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+27;blue-collar;single;basic.9y;no;no;no;cellular;may;tue;64;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+27;blue-collar;single;basic.9y;no;yes;no;cellular;may;tue;352;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+51;services;divorced;high.school;unknown;no;no;cellular;may;tue;398;2;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+57;blue-collar;married;basic.9y;no;yes;no;cellular;may;tue;399;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+36;blue-collar;married;basic.9y;no;no;no;cellular;may;tue;253;3;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+47;blue-collar;divorced;basic.4y;no;no;no;cellular;may;tue;227;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+41;blue-collar;married;basic.9y;no;yes;no;cellular;may;tue;160;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+32;management;divorced;university.degree;no;yes;yes;cellular;may;tue;160;2;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+40;blue-collar;married;basic.6y;no;no;no;cellular;may;tue;316;1;11;1;success;-1.8;92.893;-46.2;1.344;5099.1;no
+29;admin.;single;university.degree;no;yes;no;cellular;may;tue;69;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+29;admin.;single;university.degree;no;no;no;cellular;may;tue;41;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+29;admin.;single;university.degree;no;yes;yes;cellular;may;tue;76;1;999;2;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+31;services;married;high.school;no;no;yes;cellular;may;tue;284;3;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+29;admin.;single;university.degree;no;yes;no;cellular;may;tue;90;1;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+29;admin.;single;university.degree;no;no;no;cellular;may;tue;206;1;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+37;services;married;high.school;no;no;no;cellular;may;tue;157;4;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+36;blue-collar;married;basic.4y;unknown;no;no;cellular;may;tue;246;1;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+34;blue-collar;married;basic.6y;no;yes;no;cellular;may;tue;162;1;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+40;admin.;single;professional.course;no;yes;no;cellular;may;tue;43;1;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+41;blue-collar;married;basic.4y;unknown;yes;no;cellular;may;tue;259;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+28;blue-collar;single;university.degree;no;no;no;cellular;may;tue;585;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+39;retired;divorced;basic.4y;no;yes;yes;cellular;may;tue;209;2;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+31;admin.;divorced;university.degree;no;no;no;cellular;may;tue;290;2;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+31;admin.;married;high.school;no;yes;no;cellular;may;tue;387;2;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+36;technician;married;basic.9y;no;yes;yes;cellular;may;tue;67;1;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+39;blue-collar;married;basic.9y;no;yes;no;cellular;may;tue;253;1;12;1;success;-1.8;92.893;-46.2;1.344;5099.1;no
+32;self-employed;married;basic.9y;no;no;no;cellular;may;tue;301;2;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+33;blue-collar;married;basic.4y;unknown;yes;yes;cellular;may;tue;106;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+36;entrepreneur;married;high.school;no;no;no;cellular;may;tue;179;1;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+36;entrepreneur;married;high.school;no;yes;no;cellular;may;tue;283;1;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+37;services;married;basic.6y;no;yes;no;cellular;may;tue;114;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+54;management;married;university.degree;no;no;no;cellular;may;tue;159;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+32;technician;married;basic.9y;no;no;no;cellular;may;tue;64;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+54;management;married;university.degree;no;yes;yes;cellular;may;tue;198;1;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+47;blue-collar;single;basic.4y;unknown;no;no;cellular;may;tue;343;4;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+39;services;married;high.school;no;yes;yes;cellular;may;tue;200;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+54;management;married;university.degree;no;yes;yes;cellular;may;tue;552;1;999;2;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+30;management;single;university.degree;no;yes;yes;cellular;may;tue;228;1;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+30;management;single;university.degree;no;no;no;cellular;may;tue;223;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+30;management;single;university.degree;no;no;yes;cellular;may;tue;496;1;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+51;management;married;high.school;unknown;yes;no;cellular;may;tue;397;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+48;blue-collar;married;basic.9y;no;yes;no;cellular;may;tue;88;2;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+30;management;single;university.degree;no;yes;no;cellular;may;tue;876;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+45;admin.;single;high.school;no;yes;no;cellular;may;tue;305;2;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+31;admin.;divorced;high.school;no;no;no;cellular;may;tue;101;2;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+36;blue-collar;married;basic.9y;no;yes;no;cellular;may;tue;334;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+38;blue-collar;married;basic.6y;no;yes;no;cellular;may;tue;788;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;yes
+31;blue-collar;married;basic.9y;no;no;yes;cellular;may;tue;183;1;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+33;admin.;married;basic.9y;no;yes;no;cellular;may;tue;118;2;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+33;services;married;high.school;no;no;no;cellular;may;tue;69;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+42;entrepreneur;divorced;professional.course;no;yes;no;cellular;may;tue;355;2;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+41;blue-collar;married;basic.4y;no;yes;no;cellular;may;tue;894;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;yes
+41;blue-collar;married;basic.4y;no;yes;no;cellular;may;tue;1101;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+36;blue-collar;divorced;basic.9y;unknown;yes;no;telephone;may;tue;170;2;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+26;student;single;high.school;unknown;yes;no;cellular;may;tue;205;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+43;blue-collar;married;basic.4y;unknown;yes;no;cellular;may;tue;325;2;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+41;blue-collar;married;basic.6y;no;yes;no;cellular;may;tue;150;2;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+34;admin.;married;university.degree;no;yes;no;cellular;may;tue;442;2;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+31;blue-collar;divorced;basic.9y;no;yes;no;cellular;may;tue;160;2;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+32;admin.;single;university.degree;no;yes;no;cellular;may;tue;85;8;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+28;services;single;unknown;no;yes;no;cellular;may;tue;83;9;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+44;management;married;university.degree;no;yes;no;cellular;may;tue;281;2;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+34;services;unknown;high.school;no;yes;yes;cellular;may;tue;369;2;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+58;blue-collar;single;basic.4y;unknown;no;no;cellular;may;tue;304;2;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+46;management;divorced;professional.course;no;no;no;cellular;may;tue;159;2;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+35;services;single;high.school;no;no;no;cellular;may;tue;71;2;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+30;services;single;high.school;no;no;no;cellular;may;tue;263;2;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+37;technician;married;university.degree;no;no;no;cellular;may;tue;219;2;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+32;management;divorced;university.degree;no;no;no;cellular;may;tue;342;3;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+33;services;married;professional.course;no;yes;no;cellular;may;tue;335;2;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+38;blue-collar;divorced;high.school;no;yes;no;cellular;may;tue;334;6;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+37;admin.;single;university.degree;no;yes;no;cellular;may;tue;414;5;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+37;services;divorced;high.school;unknown;no;no;cellular;may;tue;342;2;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+45;admin.;single;high.school;no;yes;no;cellular;may;tue;200;3;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+36;technician;married;basic.9y;no;yes;no;cellular;may;tue;297;2;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+32;technician;married;basic.9y;no;yes;no;cellular;may;tue;500;2;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;yes
+26;management;single;university.degree;no;no;no;cellular;may;tue;279;2;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+19;student;single;high.school;unknown;yes;no;cellular;may;tue;338;4;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+45;admin.;single;high.school;no;yes;no;cellular;may;tue;318;3;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+43;blue-collar;married;basic.9y;no;no;no;cellular;may;tue;322;4;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+37;management;divorced;unknown;no;yes;no;cellular;may;tue;147;2;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+42;blue-collar;married;basic.9y;no;yes;yes;cellular;may;tue;63;4;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+55;blue-collar;married;high.school;no;no;no;cellular;may;tue;306;2;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+49;entrepreneur;married;high.school;no;yes;yes;cellular;may;tue;214;3;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+32;technician;married;professional.course;no;yes;no;cellular;may;tue;81;9;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+37;services;married;high.school;no;no;no;cellular;may;tue;378;3;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+26;student;single;high.school;unknown;no;no;cellular;may;tue;176;2;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+33;blue-collar;married;basic.6y;unknown;yes;no;cellular;may;tue;670;2;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;yes
+43;management;married;university.degree;unknown;no;no;cellular;may;tue;167;2;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+36;blue-collar;married;basic.6y;no;yes;yes;cellular;may;tue;333;2;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+52;management;married;basic.4y;no;yes;no;cellular;may;tue;1100;3;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+36;blue-collar;married;basic.4y;unknown;yes;no;cellular;may;tue;192;2;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+39;self-employed;single;university.degree;no;no;no;cellular;may;tue;180;2;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+34;blue-collar;married;basic.6y;no;yes;no;cellular;may;tue;477;3;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+35;blue-collar;married;basic.6y;no;yes;no;cellular;may;tue;240;2;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+41;blue-collar;married;basic.4y;unknown;unknown;unknown;cellular;may;tue;124;2;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+34;admin.;married;university.degree;no;yes;no;cellular;may;tue;122;2;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+38;technician;divorced;professional.course;no;yes;yes;cellular;may;tue;351;2;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+31;blue-collar;married;basic.9y;no;yes;no;cellular;may;tue;180;3;999;2;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+35;services;married;basic.6y;unknown;no;no;cellular;may;tue;178;2;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+43;blue-collar;divorced;basic.4y;no;unknown;unknown;cellular;may;tue;157;7;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+34;blue-collar;married;basic.4y;no;no;no;cellular;may;tue;211;2;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+36;admin.;single;university.degree;no;yes;no;telephone;may;tue;521;6;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;yes
+48;blue-collar;married;basic.6y;no;yes;no;cellular;may;tue;862;3;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;yes
+48;blue-collar;married;basic.9y;no;yes;no;cellular;may;tue;169;2;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+34;blue-collar;married;basic.6y;no;no;no;cellular;may;tue;319;2;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+53;unemployed;married;basic.9y;unknown;yes;no;cellular;may;tue;67;4;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+37;blue-collar;married;basic.6y;no;no;no;cellular;may;tue;75;7;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+57;blue-collar;married;basic.4y;no;no;no;cellular;may;tue;674;2;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+39;admin.;single;professional.course;no;yes;no;cellular;may;tue;209;5;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+34;technician;married;professional.course;no;yes;no;cellular;may;tue;185;2;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+40;technician;married;professional.course;no;yes;no;cellular;may;tue;211;2;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+44;admin.;married;university.degree;no;yes;no;cellular;may;tue;203;2;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+34;admin.;married;high.school;no;no;no;cellular;may;tue;205;2;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+47;management;married;university.degree;no;yes;no;cellular;may;tue;469;2;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+35;blue-collar;divorced;basic.9y;no;yes;no;cellular;may;tue;523;1;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+36;blue-collar;married;basic.9y;no;yes;yes;telephone;may;tue;36;7;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+38;technician;married;professional.course;no;no;no;cellular;may;tue;371;2;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+34;blue-collar;married;basic.9y;no;no;no;cellular;may;tue;52;3;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+55;self-employed;married;basic.9y;no;yes;yes;cellular;may;tue;475;2;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+39;blue-collar;married;basic.9y;no;no;no;cellular;may;tue;233;2;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+45;blue-collar;married;basic.9y;no;yes;no;cellular;may;tue;672;2;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;yes
+46;blue-collar;married;high.school;no;yes;yes;telephone;may;tue;328;3;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+37;blue-collar;married;basic.6y;no;no;no;cellular;may;tue;1085;3;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;yes
+29;entrepreneur;married;basic.6y;no;no;no;cellular;may;tue;118;3;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+31;admin.;married;university.degree;no;no;no;cellular;may;tue;102;5;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+31;services;single;high.school;no;no;no;cellular;may;tue;206;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+35;blue-collar;divorced;basic.9y;no;no;no;cellular;may;tue;176;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+37;technician;married;university.degree;no;yes;no;cellular;may;tue;370;3;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+41;blue-collar;married;basic.6y;unknown;no;no;cellular;may;tue;278;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+42;admin.;married;high.school;no;yes;no;cellular;may;tue;111;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+48;blue-collar;single;basic.4y;no;no;no;cellular;may;tue;275;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+41;blue-collar;married;basic.9y;no;yes;yes;cellular;may;tue;320;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+37;admin.;married;high.school;no;no;no;cellular;may;tue;305;5;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+31;admin.;divorced;university.degree;no;yes;no;telephone;may;tue;259;2;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+36;blue-collar;married;basic.9y;no;yes;no;telephone;may;tue;399;2;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+26;management;single;university.degree;no;yes;no;cellular;may;tue;165;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+27;technician;single;professional.course;unknown;yes;no;cellular;may;tue;126;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+36;admin.;single;high.school;no;no;no;cellular;may;tue;189;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+46;technician;married;professional.course;no;yes;no;telephone;may;tue;193;1;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+49;admin.;married;high.school;no;no;no;cellular;may;tue;104;1;6;1;success;-1.8;92.893;-46.2;1.344;5099.1;no
+38;blue-collar;married;professional.course;no;yes;no;cellular;may;tue;418;3;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+33;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;tue;408;2;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+40;services;married;high.school;no;no;no;cellular;may;tue;74;8;999;1;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+44;management;divorced;university.degree;no;yes;no;cellular;may;tue;195;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+42;technician;divorced;basic.6y;no;yes;no;cellular;may;tue;221;1;999;2;failure;-1.8;92.893;-46.2;1.344;5099.1;no
+46;admin.;divorced;high.school;no;no;no;cellular;may;tue;84;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+46;technician;married;high.school;no;yes;no;cellular;may;tue;368;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+40;admin.;married;professional.course;no;unknown;unknown;cellular;may;tue;305;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+35;admin.;single;university.degree;no;yes;no;cellular;may;tue;614;1;999;0;nonexistent;-1.8;92.893;-46.2;1.344;5099.1;no
+53;admin.;married;university.degree;unknown;no;no;cellular;may;wed;160;7;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+34;housemaid;married;high.school;unknown;no;no;cellular;may;wed;104;2;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+34;housemaid;married;high.school;unknown;no;no;cellular;may;wed;142;3;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+31;blue-collar;single;basic.9y;unknown;yes;yes;cellular;may;wed;55;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+31;admin.;married;unknown;no;yes;no;cellular;may;wed;7;11;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+33;technician;married;professional.course;no;yes;no;cellular;may;wed;199;7;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+33;admin.;married;high.school;no;no;no;cellular;may;wed;105;4;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+50;services;divorced;high.school;no;no;no;cellular;may;wed;148;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+35;admin.;single;university.degree;no;no;no;cellular;may;wed;88;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+42;services;married;high.school;no;yes;no;cellular;may;wed;87;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+36;blue-collar;married;basic.6y;unknown;no;no;cellular;may;wed;54;1;999;2;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+39;blue-collar;single;basic.9y;unknown;yes;no;cellular;may;wed;201;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+36;blue-collar;single;professional.course;unknown;yes;no;cellular;may;wed;206;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+52;management;divorced;university.degree;no;no;no;cellular;may;wed;451;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;yes
+38;technician;married;university.degree;no;yes;no;cellular;may;wed;147;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+38;technician;married;university.degree;no;yes;yes;cellular;may;wed;121;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+54;blue-collar;married;basic.9y;unknown;yes;no;cellular;may;wed;303;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+48;blue-collar;married;basic.4y;unknown;no;no;cellular;may;wed;78;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+36;management;married;basic.9y;no;yes;yes;cellular;may;wed;438;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+39;blue-collar;married;basic.9y;no;yes;no;cellular;may;wed;219;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+33;management;married;university.degree;no;no;no;cellular;may;wed;210;2;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+46;blue-collar;married;basic.9y;no;yes;no;cellular;may;wed;113;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+36;admin.;married;university.degree;no;yes;no;cellular;may;wed;241;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+51;admin.;divorced;professional.course;no;no;no;cellular;may;wed;194;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+38;technician;married;university.degree;no;yes;no;cellular;may;wed;814;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+47;blue-collar;married;high.school;no;no;no;cellular;may;wed;327;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+35;services;married;high.school;unknown;yes;yes;cellular;may;wed;224;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+38;admin.;married;high.school;no;no;no;cellular;may;wed;275;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+35;services;married;high.school;unknown;yes;no;cellular;may;wed;257;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+35;blue-collar;married;basic.9y;no;yes;no;cellular;may;wed;248;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+38;blue-collar;single;basic.4y;no;no;no;cellular;may;wed;207;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+38;admin.;married;high.school;no;yes;no;cellular;may;wed;197;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+34;admin.;single;high.school;no;yes;no;cellular;may;wed;653;1;11;1;success;-1.8;92.893;-46.2;1.334;5099.1;yes
+40;services;single;high.school;no;no;no;cellular;may;wed;197;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+35;services;single;high.school;no;yes;no;cellular;may;wed;87;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+31;blue-collar;married;high.school;no;yes;no;cellular;may;wed;207;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+58;services;married;basic.6y;unknown;no;no;cellular;may;wed;327;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+29;admin.;single;university.degree;no;yes;no;cellular;may;wed;215;3;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+36;technician;married;professional.course;no;yes;no;cellular;may;wed;62;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+33;blue-collar;married;basic.9y;no;yes;no;cellular;may;wed;293;1;11;1;success;-1.8;92.893;-46.2;1.334;5099.1;no
+48;blue-collar;married;basic.6y;unknown;yes;no;cellular;may;wed;334;2;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+37;blue-collar;married;basic.9y;no;no;no;cellular;may;wed;372;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+37;blue-collar;married;basic.9y;no;yes;no;cellular;may;wed;345;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+36;admin.;single;high.school;no;no;no;cellular;may;wed;473;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+29;admin.;single;university.degree;no;yes;no;cellular;may;wed;133;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+35;blue-collar;married;high.school;no;no;no;cellular;may;wed;285;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+36;admin.;married;university.degree;no;yes;no;cellular;may;wed;128;3;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+41;entrepreneur;married;basic.4y;no;yes;no;cellular;may;wed;26;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+36;technician;married;professional.course;no;yes;no;cellular;may;wed;731;1;10;1;success;-1.8;92.893;-46.2;1.334;5099.1;yes
+41;blue-collar;married;basic.6y;no;yes;no;cellular;may;wed;488;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;yes
+29;admin.;single;university.degree;no;no;no;cellular;may;wed;401;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+36;management;single;university.degree;no;yes;no;cellular;may;wed;38;1;999;2;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+29;admin.;single;university.degree;no;yes;yes;cellular;may;wed;74;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+46;admin.;married;high.school;unknown;yes;no;cellular;may;wed;293;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+33;blue-collar;married;basic.6y;no;no;no;cellular;may;wed;473;4;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+25;student;single;basic.9y;no;no;yes;cellular;may;wed;219;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+48;blue-collar;married;basic.6y;unknown;no;no;cellular;may;wed;14;11;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+50;services;divorced;high.school;no;no;yes;cellular;may;wed;178;5;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+32;technician;single;professional.course;no;no;no;cellular;may;wed;362;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+39;blue-collar;married;basic.9y;unknown;no;yes;cellular;may;wed;343;3;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+27;services;married;high.school;no;yes;no;cellular;may;wed;152;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+53;blue-collar;married;professional.course;unknown;no;no;cellular;may;wed;403;4;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+41;entrepreneur;married;basic.4y;no;no;yes;cellular;may;wed;767;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;yes
+45;housemaid;married;basic.6y;no;yes;no;cellular;may;wed;236;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+55;blue-collar;married;basic.9y;no;yes;no;cellular;may;wed;249;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+36;blue-collar;married;basic.9y;no;yes;no;cellular;may;wed;227;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+41;self-employed;married;unknown;unknown;no;no;cellular;may;wed;100;2;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+45;entrepreneur;married;university.degree;no;no;no;cellular;may;wed;139;6;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+53;blue-collar;married;professional.course;unknown;no;yes;cellular;may;wed;595;5;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+48;technician;single;professional.course;no;yes;no;cellular;may;wed;142;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+35;admin.;married;university.degree;no;yes;no;cellular;may;wed;376;2;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+33;services;married;professional.course;unknown;yes;no;cellular;may;wed;160;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+54;technician;divorced;university.degree;no;yes;no;cellular;may;wed;132;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+37;blue-collar;divorced;basic.9y;no;yes;no;cellular;may;wed;438;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+38;blue-collar;married;basic.4y;no;yes;no;cellular;may;wed;100;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+44;blue-collar;married;basic.4y;no;yes;yes;cellular;may;wed;94;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+46;services;divorced;basic.9y;no;unknown;unknown;cellular;may;wed;222;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+34;blue-collar;married;basic.9y;no;no;yes;cellular;may;wed;50;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+40;blue-collar;married;basic.9y;no;yes;no;cellular;may;wed;954;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;yes
+46;services;divorced;basic.9y;no;yes;no;cellular;may;wed;403;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+39;blue-collar;divorced;basic.9y;unknown;no;no;cellular;may;wed;106;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+30;blue-collar;divorced;high.school;unknown;no;no;cellular;may;wed;848;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;yes
+39;blue-collar;divorced;basic.9y;unknown;yes;no;cellular;may;wed;304;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+34;blue-collar;married;basic.9y;no;no;yes;cellular;may;wed;439;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+48;entrepreneur;married;basic.6y;no;no;no;cellular;may;wed;119;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+34;admin.;single;university.degree;no;yes;no;cellular;may;wed;36;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+57;admin.;married;high.school;no;no;no;cellular;may;wed;644;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+31;services;married;high.school;no;no;yes;cellular;may;wed;109;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+39;blue-collar;married;basic.6y;no;yes;no;cellular;may;wed;34;9;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+42;blue-collar;single;basic.9y;no;yes;yes;cellular;may;wed;200;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+39;blue-collar;married;professional.course;no;yes;no;cellular;may;wed;145;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+39;blue-collar;married;professional.course;no;yes;no;cellular;may;wed;72;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+46;blue-collar;married;basic.6y;unknown;no;no;cellular;may;wed;19;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+39;blue-collar;married;basic.4y;no;no;no;cellular;may;wed;272;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+39;blue-collar;married;professional.course;no;yes;no;cellular;may;wed;177;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+31;blue-collar;single;high.school;no;no;no;cellular;may;wed;90;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+31;blue-collar;single;high.school;no;yes;no;cellular;may;wed;125;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+31;services;married;high.school;no;no;no;cellular;may;wed;339;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+31;blue-collar;single;high.school;no;no;no;cellular;may;wed;153;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+36;admin.;single;university.degree;unknown;yes;no;cellular;may;wed;530;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;yes
+31;blue-collar;single;high.school;no;yes;no;cellular;may;wed;291;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+28;admin.;single;university.degree;no;no;yes;cellular;may;wed;223;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+37;admin.;married;university.degree;no;no;no;cellular;may;wed;208;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+35;technician;married;professional.course;no;yes;no;cellular;may;wed;54;2;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+36;management;married;basic.9y;no;yes;no;cellular;may;wed;503;2;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+39;technician;single;professional.course;no;no;no;cellular;may;wed;174;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+39;blue-collar;divorced;basic.9y;unknown;no;no;cellular;may;wed;95;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+31;blue-collar;single;high.school;no;no;no;cellular;may;wed;465;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+35;services;married;high.school;unknown;no;no;cellular;may;wed;257;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+44;blue-collar;married;basic.6y;no;yes;no;cellular;may;wed;168;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+35;services;married;high.school;unknown;yes;no;cellular;may;wed;404;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+27;student;single;university.degree;no;no;no;cellular;may;wed;253;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+43;blue-collar;married;basic.4y;unknown;yes;no;cellular;may;wed;147;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+43;blue-collar;married;basic.4y;unknown;no;yes;cellular;may;wed;153;1;999;2;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+41;blue-collar;single;basic.9y;no;no;no;cellular;may;wed;128;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+27;student;single;university.degree;no;no;no;cellular;may;wed;274;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+44;blue-collar;married;basic.6y;no;yes;no;cellular;may;wed;278;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+51;blue-collar;married;basic.9y;no;yes;no;cellular;may;wed;55;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+25;admin.;single;university.degree;no;no;no;cellular;may;wed;101;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+49;admin.;married;high.school;no;yes;no;cellular;may;wed;115;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+41;blue-collar;single;basic.9y;no;yes;yes;cellular;may;wed;366;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+30;blue-collar;married;basic.9y;no;no;no;cellular;may;wed;129;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+45;unemployed;divorced;high.school;no;no;no;cellular;may;wed;90;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+28;technician;single;high.school;no;yes;no;cellular;may;wed;576;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;yes
+25;admin.;single;university.degree;no;yes;no;cellular;may;wed;209;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+41;blue-collar;single;basic.9y;no;yes;no;cellular;may;wed;597;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;yes
+45;unemployed;divorced;high.school;no;yes;yes;cellular;may;wed;274;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+41;admin.;single;basic.9y;unknown;no;no;cellular;may;wed;195;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+31;blue-collar;married;basic.6y;unknown;no;no;cellular;may;wed;188;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+37;housemaid;married;basic.6y;unknown;no;no;cellular;may;wed;177;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+35;technician;married;professional.course;no;yes;yes;cellular;may;wed;137;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+38;blue-collar;single;basic.6y;unknown;no;yes;cellular;may;wed;42;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+39;services;single;high.school;no;yes;no;cellular;may;wed;305;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+39;blue-collar;married;basic.4y;unknown;no;yes;cellular;may;wed;162;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+42;blue-collar;married;basic.4y;no;no;no;cellular;may;wed;151;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+36;technician;single;professional.course;no;no;no;cellular;may;wed;340;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+48;blue-collar;married;basic.4y;no;no;no;cellular;may;wed;109;1;12;1;success;-1.8;92.893;-46.2;1.334;5099.1;no
+26;blue-collar;married;basic.9y;no;yes;no;cellular;may;wed;209;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+48;blue-collar;married;basic.4y;no;no;yes;cellular;may;wed;170;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+47;blue-collar;married;basic.4y;no;yes;no;cellular;may;wed;569;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+39;technician;divorced;professional.course;no;yes;no;cellular;may;wed;597;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;yes
+48;technician;married;professional.course;unknown;yes;no;cellular;may;wed;274;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+46;services;married;basic.9y;no;no;no;cellular;may;wed;984;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;yes
+31;services;single;high.school;no;yes;no;cellular;may;wed;234;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+35;technician;married;professional.course;no;yes;no;cellular;may;wed;156;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+35;technician;married;professional.course;no;no;no;cellular;may;wed;339;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+33;entrepreneur;married;university.degree;unknown;no;no;cellular;may;wed;205;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+43;management;married;university.degree;no;yes;no;cellular;may;wed;124;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+42;blue-collar;married;high.school;no;yes;no;cellular;may;wed;597;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+43;management;married;university.degree;no;no;yes;cellular;may;wed;226;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+35;blue-collar;single;basic.9y;no;yes;no;cellular;may;wed;143;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+35;blue-collar;single;basic.9y;no;yes;no;cellular;may;wed;181;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+46;services;divorced;basic.9y;no;no;no;cellular;may;wed;96;2;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+48;blue-collar;married;basic.6y;unknown;yes;no;cellular;may;wed;164;5;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+48;blue-collar;married;basic.4y;no;yes;no;cellular;may;wed;238;3;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+57;entrepreneur;divorced;basic.9y;no;yes;no;cellular;may;wed;236;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+39;admin.;single;high.school;no;no;no;cellular;may;wed;158;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+33;admin.;married;basic.9y;no;yes;yes;telephone;may;wed;26;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+20;blue-collar;single;high.school;no;yes;no;cellular;may;wed;159;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+34;blue-collar;married;basic.4y;no;yes;yes;cellular;may;wed;338;4;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+36;entrepreneur;married;university.degree;no;yes;no;cellular;may;wed;187;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+32;blue-collar;married;basic.9y;no;yes;yes;cellular;may;wed;159;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+28;technician;single;professional.course;no;no;no;cellular;may;wed;116;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+28;technician;single;professional.course;no;yes;yes;cellular;may;wed;196;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+33;admin.;married;high.school;no;yes;no;cellular;may;wed;49;2;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+20;blue-collar;single;high.school;no;yes;no;cellular;may;wed;410;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+42;services;married;high.school;no;no;no;cellular;may;wed;990;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+28;technician;single;professional.course;no;yes;no;cellular;may;wed;244;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+39;blue-collar;single;basic.6y;unknown;no;no;cellular;may;wed;47;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+39;technician;divorced;professional.course;no;no;no;cellular;may;wed;258;8;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+34;blue-collar;married;basic.9y;no;no;no;cellular;may;wed;267;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+34;blue-collar;married;unknown;no;yes;no;cellular;may;wed;123;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+36;admin.;married;university.degree;no;no;no;cellular;may;wed;37;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+33;blue-collar;married;high.school;no;yes;no;telephone;may;wed;186;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+53;admin.;married;university.degree;unknown;yes;no;cellular;may;wed;59;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+25;services;single;high.school;no;no;no;cellular;may;wed;333;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+58;retired;married;basic.9y;no;no;yes;cellular;may;wed;144;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+37;blue-collar;married;basic.9y;no;no;no;cellular;may;wed;225;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+38;admin.;married;basic.9y;no;yes;no;cellular;may;wed;472;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+36;technician;single;professional.course;no;no;no;cellular;may;wed;45;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+39;blue-collar;single;basic.4y;no;unknown;unknown;cellular;may;wed;1079;3;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+41;blue-collar;married;basic.9y;no;no;no;cellular;may;wed;94;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+38;blue-collar;married;basic.4y;no;no;no;cellular;may;wed;161;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+36;technician;single;professional.course;no;no;no;cellular;may;wed;199;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+39;admin.;single;university.degree;no;no;no;cellular;may;wed;68;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+30;admin.;single;university.degree;no;yes;no;cellular;may;wed;60;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+39;blue-collar;single;basic.6y;unknown;yes;no;cellular;may;wed;686;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+42;self-employed;married;university.degree;unknown;unknown;unknown;cellular;may;wed;64;2;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+29;admin.;single;high.school;no;unknown;unknown;cellular;may;wed;249;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+38;blue-collar;married;high.school;unknown;yes;no;cellular;may;wed;198;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+38;admin.;married;university.degree;no;unknown;unknown;cellular;may;wed;118;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+51;admin.;single;university.degree;no;no;no;cellular;may;wed;187;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+50;blue-collar;married;basic.4y;no;yes;no;cellular;may;wed;146;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+37;blue-collar;married;basic.6y;no;no;yes;cellular;may;wed;364;4;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+31;admin.;married;unknown;no;yes;no;cellular;may;wed;208;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+47;services;married;high.school;unknown;no;no;cellular;may;wed;378;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+31;technician;single;unknown;no;yes;no;cellular;may;wed;84;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+54;management;divorced;university.degree;no;no;no;telephone;may;wed;10;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+54;management;divorced;university.degree;no;yes;yes;telephone;may;wed;39;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+35;technician;married;professional.course;no;no;no;cellular;may;wed;66;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+34;admin.;single;high.school;no;yes;no;cellular;may;wed;78;1;12;1;success;-1.8;92.893;-46.2;1.334;5099.1;no
+31;services;married;high.school;no;yes;no;cellular;may;wed;611;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;yes
+46;services;single;high.school;unknown;yes;no;cellular;may;wed;193;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+38;self-employed;married;basic.9y;no;yes;no;cellular;may;wed;155;5;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+29;blue-collar;married;basic.9y;no;yes;no;cellular;may;wed;318;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+27;admin.;married;high.school;no;yes;no;cellular;may;wed;175;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+57;management;married;university.degree;no;no;no;cellular;may;wed;1205;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;yes
+29;blue-collar;married;basic.9y;no;no;no;cellular;may;wed;413;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+53;technician;divorced;university.degree;no;yes;no;cellular;may;wed;167;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+27;admin.;married;high.school;no;no;yes;cellular;may;wed;251;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+46;services;married;high.school;no;yes;yes;cellular;may;wed;270;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+32;blue-collar;married;basic.9y;no;yes;no;cellular;may;wed;211;1;10;1;success;-1.8;92.893;-46.2;1.334;5099.1;no
+32;blue-collar;married;basic.4y;no;yes;yes;cellular;may;wed;107;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+46;admin.;married;high.school;no;no;no;cellular;may;wed;124;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+33;technician;married;professional.course;no;no;yes;cellular;may;wed;17;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+48;blue-collar;married;basic.4y;no;yes;no;cellular;may;wed;477;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+34;admin.;single;university.degree;no;yes;no;cellular;may;wed;265;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+46;admin.;married;high.school;no;no;no;cellular;may;wed;159;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+29;blue-collar;married;basic.9y;no;no;yes;cellular;may;wed;837;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;yes
+33;technician;married;professional.course;no;yes;no;cellular;may;wed;221;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+37;blue-collar;married;basic.9y;no;unknown;unknown;cellular;may;wed;136;5;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+33;technician;married;professional.course;no;yes;no;cellular;may;wed;318;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+42;blue-collar;married;basic.9y;no;no;no;cellular;may;wed;51;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+37;services;married;high.school;unknown;yes;no;cellular;may;wed;285;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+42;blue-collar;married;basic.6y;unknown;no;yes;cellular;may;wed;29;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+33;entrepreneur;married;university.degree;unknown;yes;no;cellular;may;wed;585;2;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+34;blue-collar;married;unknown;no;no;yes;cellular;may;wed;106;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+46;management;married;university.degree;unknown;no;no;telephone;may;wed;16;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+36;blue-collar;married;basic.9y;no;yes;no;cellular;may;wed;184;2;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+41;services;divorced;high.school;no;no;no;cellular;may;wed;52;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+32;admin.;married;high.school;no;yes;no;cellular;may;wed;128;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+48;blue-collar;married;basic.6y;unknown;yes;no;cellular;may;wed;282;4;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+28;self-employed;single;university.degree;no;yes;no;cellular;may;wed;57;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+38;blue-collar;married;high.school;unknown;yes;no;cellular;may;wed;839;2;7;1;success;-1.8;92.893;-46.2;1.334;5099.1;yes
+36;management;married;basic.9y;no;no;no;cellular;may;wed;50;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+31;housemaid;divorced;basic.6y;no;no;yes;cellular;may;wed;457;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+42;technician;married;university.degree;unknown;yes;no;cellular;may;wed;301;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+31;technician;single;high.school;no;no;no;cellular;may;wed;37;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+32;services;single;basic.9y;no;no;yes;cellular;may;wed;148;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+28;admin.;married;high.school;no;yes;no;cellular;may;wed;72;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+38;blue-collar;single;basic.4y;no;yes;no;cellular;may;wed;203;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+31;blue-collar;married;basic.6y;unknown;no;no;cellular;may;wed;18;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+51;blue-collar;married;basic.9y;unknown;yes;no;cellular;may;wed;254;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+28;admin.;married;high.school;no;no;no;cellular;may;wed;204;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+51;blue-collar;married;basic.9y;unknown;yes;no;cellular;may;wed;451;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+36;blue-collar;married;basic.9y;no;no;no;cellular;may;wed;334;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+36;blue-collar;married;basic.9y;no;no;no;cellular;may;wed;428;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+59;admin.;married;high.school;no;no;no;cellular;may;wed;289;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+36;technician;single;university.degree;no;yes;no;cellular;may;wed;317;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+31;blue-collar;married;basic.6y;unknown;yes;no;cellular;may;wed;153;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+37;services;single;high.school;no;no;no;cellular;may;wed;150;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+55;retired;married;basic.9y;unknown;no;no;cellular;may;wed;674;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+37;services;single;high.school;no;yes;no;cellular;may;wed;445;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;yes
+51;entrepreneur;single;basic.9y;no;no;no;cellular;may;wed;123;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+30;blue-collar;married;basic.9y;unknown;yes;no;cellular;may;wed;176;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+30;blue-collar;married;basic.9y;unknown;yes;no;cellular;may;wed;297;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+34;technician;single;university.degree;no;yes;no;telephone;may;wed;92;3;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+41;blue-collar;married;basic.6y;no;yes;no;cellular;may;wed;189;2;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+44;admin.;single;high.school;no;yes;no;cellular;may;wed;728;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+36;admin.;married;university.degree;no;yes;no;cellular;may;wed;127;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+43;blue-collar;married;basic.9y;no;no;yes;cellular;may;wed;179;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+28;blue-collar;married;basic.4y;no;yes;no;cellular;may;wed;98;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+49;admin.;single;basic.6y;unknown;no;no;cellular;may;wed;135;2;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+28;admin.;single;high.school;no;no;no;cellular;may;wed;251;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+30;blue-collar;married;basic.9y;no;yes;no;cellular;may;wed;1131;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+31;blue-collar;married;basic.6y;unknown;yes;no;cellular;may;wed;148;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+34;blue-collar;married;basic.9y;no;no;no;cellular;may;wed;156;2;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+33;technician;single;professional.course;no;yes;no;cellular;may;wed;519;2;999;2;failure;-1.8;92.893;-46.2;1.334;5099.1;yes
+31;services;single;high.school;no;no;no;cellular;may;wed;343;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+41;admin.;married;high.school;no;no;no;cellular;may;wed;64;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+27;services;married;high.school;no;yes;no;cellular;may;wed;903;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+33;services;married;high.school;no;no;no;cellular;may;wed;106;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+31;blue-collar;single;basic.9y;no;no;no;cellular;may;wed;459;4;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+35;admin.;single;university.degree;no;no;no;cellular;may;wed;109;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+39;unemployed;married;high.school;no;no;no;cellular;may;wed;100;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+34;admin.;unknown;university.degree;no;no;no;cellular;may;wed;139;2;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+47;blue-collar;single;basic.9y;unknown;no;no;cellular;may;wed;159;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+58;retired;married;professional.course;no;yes;no;cellular;may;wed;47;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+37;blue-collar;single;professional.course;no;yes;yes;cellular;may;wed;161;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+31;services;married;high.school;no;yes;no;cellular;may;wed;322;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+26;blue-collar;married;basic.9y;no;no;no;cellular;may;wed;45;2;999;2;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+36;blue-collar;divorced;basic.6y;no;yes;no;cellular;may;wed;197;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+28;technician;single;professional.course;no;no;no;cellular;may;wed;687;2;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;yes
+51;entrepreneur;single;basic.9y;no;no;yes;cellular;may;wed;89;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+32;admin.;married;high.school;no;yes;yes;cellular;may;wed;231;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+32;blue-collar;married;basic.9y;no;yes;yes;cellular;may;wed;230;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+41;blue-collar;married;basic.4y;no;yes;yes;cellular;may;wed;389;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+40;admin.;married;basic.9y;unknown;yes;yes;cellular;may;wed;323;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+34;admin.;single;high.school;no;yes;yes;cellular;may;wed;125;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+46;services;married;high.school;no;no;no;cellular;may;wed;174;3;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+49;technician;married;university.degree;no;yes;no;cellular;may;wed;89;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+58;blue-collar;married;basic.4y;unknown;yes;yes;cellular;may;wed;74;2;999;2;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+41;blue-collar;single;basic.9y;no;no;yes;cellular;may;wed;540;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;yes
+44;blue-collar;married;basic.9y;unknown;no;no;cellular;may;wed;181;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+45;blue-collar;married;basic.4y;unknown;no;no;cellular;may;wed;193;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+44;blue-collar;married;basic.6y;no;no;no;cellular;may;wed;288;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+37;admin.;married;university.degree;no;no;no;cellular;may;wed;305;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+33;blue-collar;married;basic.9y;no;no;no;cellular;may;wed;353;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+47;blue-collar;married;basic.9y;unknown;no;no;cellular;may;wed;169;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+47;blue-collar;married;basic.9y;unknown;no;no;cellular;may;wed;139;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+54;management;divorced;university.degree;no;yes;no;cellular;may;wed;127;2;12;1;success;-1.8;92.893;-46.2;1.334;5099.1;no
+37;blue-collar;married;basic.9y;no;yes;no;cellular;may;wed;204;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+33;admin.;married;high.school;no;yes;no;cellular;may;wed;137;2;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+35;admin.;married;professional.course;no;yes;no;cellular;may;wed;827;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+31;blue-collar;married;basic.4y;unknown;yes;no;cellular;may;wed;150;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+36;admin.;single;basic.6y;no;yes;no;cellular;may;wed;402;2;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+27;admin.;married;high.school;no;yes;no;cellular;may;wed;319;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+35;blue-collar;divorced;basic.9y;no;yes;no;cellular;may;wed;203;2;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+39;blue-collar;married;basic.6y;no;no;no;cellular;may;wed;109;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+38;blue-collar;unknown;high.school;no;no;no;cellular;may;wed;311;1;6;1;success;-1.8;92.893;-46.2;1.334;5099.1;no
+39;blue-collar;married;basic.6y;no;no;no;cellular;may;wed;110;2;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+42;blue-collar;divorced;high.school;unknown;yes;no;cellular;may;wed;175;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+34;admin.;divorced;university.degree;no;no;no;cellular;may;wed;207;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+33;entrepreneur;married;university.degree;unknown;yes;no;cellular;may;wed;92;2;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+52;admin.;single;unknown;unknown;yes;no;cellular;may;wed;147;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+33;admin.;married;high.school;no;yes;no;telephone;may;wed;48;2;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+37;blue-collar;married;basic.4y;no;yes;no;cellular;may;wed;164;3;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+52;admin.;single;unknown;unknown;no;no;cellular;may;wed;321;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+31;management;single;high.school;no;no;no;cellular;may;wed;90;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+34;admin.;married;high.school;no;no;no;cellular;may;wed;191;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+37;services;married;high.school;no;yes;no;cellular;may;wed;130;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+37;services;married;high.school;no;no;no;cellular;may;wed;317;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+34;admin.;married;university.degree;no;no;no;cellular;may;wed;138;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+33;admin.;single;university.degree;no;yes;no;cellular;may;wed;194;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+28;technician;married;professional.course;no;no;no;cellular;may;wed;550;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;yes
+34;admin.;married;high.school;no;no;yes;cellular;may;wed;811;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+36;admin.;single;basic.6y;no;yes;no;telephone;may;wed;125;2;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+33;blue-collar;married;basic.9y;unknown;no;no;cellular;may;wed;430;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;yes
+53;admin.;married;university.degree;unknown;yes;no;cellular;may;wed;124;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+54;blue-collar;married;high.school;no;yes;yes;cellular;may;wed;184;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+27;services;single;high.school;unknown;yes;no;cellular;may;wed;124;2;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+40;blue-collar;married;basic.6y;unknown;yes;no;cellular;may;wed;182;2;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+38;blue-collar;married;high.school;unknown;yes;no;cellular;may;wed;118;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+48;blue-collar;married;basic.4y;no;no;no;cellular;may;wed;79;2;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+37;blue-collar;married;basic.9y;unknown;no;no;cellular;may;wed;138;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+29;technician;single;professional.course;no;no;yes;cellular;may;wed;289;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+39;blue-collar;divorced;basic.9y;unknown;no;no;cellular;may;wed;482;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+36;technician;single;professional.course;unknown;no;no;cellular;may;wed;654;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+29;admin.;single;university.degree;no;no;no;cellular;may;wed;198;2;999;2;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+35;blue-collar;married;basic.9y;no;no;no;cellular;may;wed;145;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+33;blue-collar;single;basic.9y;no;yes;no;cellular;may;wed;116;2;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+35;blue-collar;married;basic.9y;unknown;yes;yes;cellular;may;wed;500;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+29;services;married;high.school;unknown;unknown;unknown;cellular;may;wed;141;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+48;blue-collar;married;basic.9y;unknown;yes;no;cellular;may;wed;68;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+44;admin.;married;high.school;no;yes;no;cellular;may;wed;346;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+40;blue-collar;married;basic.9y;unknown;yes;yes;cellular;may;wed;131;2;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+51;blue-collar;married;basic.9y;unknown;yes;yes;cellular;may;wed;220;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+36;blue-collar;married;basic.9y;no;yes;no;cellular;may;wed;181;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+37;housemaid;married;basic.6y;unknown;yes;yes;cellular;may;wed;756;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+41;blue-collar;married;basic.9y;no;no;no;cellular;may;wed;309;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+54;technician;divorced;university.degree;no;no;no;cellular;may;wed;91;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+33;services;married;high.school;no;yes;yes;cellular;may;wed;323;2;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+30;admin.;single;university.degree;no;no;no;cellular;may;wed;82;2;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+51;admin.;divorced;high.school;no;yes;yes;cellular;may;wed;316;2;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+39;blue-collar;married;basic.9y;no;no;no;cellular;may;wed;283;3;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+24;student;single;basic.9y;no;no;no;cellular;may;wed;133;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+51;admin.;single;university.degree;no;yes;yes;cellular;may;wed;120;3;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+48;blue-collar;married;basic.9y;no;yes;yes;cellular;may;wed;189;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+58;blue-collar;single;basic.9y;no;yes;no;cellular;may;wed;127;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+53;blue-collar;married;professional.course;unknown;yes;no;cellular;may;wed;251;4;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+27;technician;single;university.degree;no;yes;yes;cellular;may;wed;754;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;yes
+37;blue-collar;single;professional.course;no;no;no;cellular;may;wed;84;2;999;2;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+33;blue-collar;married;basic.6y;unknown;no;no;cellular;may;wed;320;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+39;unemployed;married;basic.9y;no;yes;no;cellular;may;wed;222;2;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+28;self-employed;single;university.degree;no;no;no;cellular;may;wed;554;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;yes
+32;blue-collar;married;basic.9y;no;no;no;cellular;may;wed;302;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+52;blue-collar;married;basic.4y;unknown;no;no;cellular;may;wed;239;3;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+51;entrepreneur;single;basic.9y;no;yes;no;cellular;may;wed;396;3;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;yes
+58;self-employed;married;unknown;unknown;no;no;cellular;may;wed;250;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+33;technician;married;professional.course;unknown;no;no;cellular;may;wed;167;3;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+40;housemaid;divorced;high.school;no;yes;no;cellular;may;wed;136;3;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+37;housemaid;married;basic.6y;unknown;no;no;cellular;may;wed;322;2;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+32;technician;single;professional.course;no;yes;no;cellular;may;wed;97;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+42;blue-collar;married;basic.4y;no;no;no;cellular;may;wed;206;2;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+37;admin.;single;university.degree;no;no;no;cellular;may;wed;51;4;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+35;services;single;high.school;no;no;no;cellular;may;wed;281;2;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+34;housemaid;married;high.school;unknown;yes;yes;cellular;may;wed;17;4;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+39;management;married;university.degree;unknown;no;no;cellular;may;wed;825;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+30;admin.;divorced;high.school;no;yes;no;telephone;may;wed;62;4;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+28;admin.;single;high.school;no;yes;yes;cellular;may;wed;253;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+48;entrepreneur;married;basic.9y;unknown;no;no;cellular;may;wed;487;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+49;admin.;married;university.degree;no;no;no;cellular;may;wed;155;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+33;admin.;single;university.degree;no;yes;no;cellular;may;wed;96;2;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+34;blue-collar;married;basic.9y;no;yes;no;cellular;may;wed;311;3;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+51;blue-collar;married;basic.9y;no;yes;no;telephone;may;wed;90;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+30;management;single;high.school;no;no;yes;cellular;may;wed;402;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+51;blue-collar;married;basic.9y;unknown;no;yes;cellular;may;wed;22;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+33;services;married;high.school;no;yes;no;cellular;may;wed;89;2;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+36;technician;single;professional.course;unknown;yes;no;cellular;may;wed;228;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+34;admin.;married;high.school;no;no;no;cellular;may;wed;350;2;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+34;technician;divorced;professional.course;no;yes;no;telephone;may;wed;175;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+28;blue-collar;married;basic.9y;no;no;no;cellular;may;wed;549;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+36;blue-collar;married;basic.9y;no;no;no;cellular;may;wed;133;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+32;technician;married;professional.course;no;yes;yes;cellular;may;wed;160;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+43;management;married;university.degree;no;yes;no;cellular;may;wed;192;1;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+32;technician;divorced;basic.9y;no;yes;yes;cellular;may;wed;103;3;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+46;services;married;high.school;unknown;no;no;cellular;may;wed;765;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;yes
+40;blue-collar;married;unknown;no;yes;no;cellular;may;wed;88;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+30;admin.;divorced;high.school;no;yes;no;cellular;may;wed;422;1;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+47;blue-collar;married;basic.9y;no;yes;yes;cellular;may;wed;74;6;999;2;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+34;admin.;married;university.degree;no;no;no;telephone;may;wed;149;4;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+30;services;single;high.school;unknown;yes;no;cellular;may;wed;70;3;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+29;blue-collar;single;professional.course;no;yes;no;cellular;may;wed;87;3;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+41;blue-collar;married;basic.9y;no;yes;no;cellular;may;wed;233;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+43;blue-collar;married;basic.4y;unknown;yes;no;cellular;may;wed;28;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+52;admin.;single;unknown;unknown;no;yes;cellular;may;wed;346;3;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+46;management;married;university.degree;unknown;yes;yes;cellular;may;wed;172;4;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+35;services;married;basic.9y;no;yes;no;cellular;may;wed;523;2;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+36;management;single;university.degree;no;yes;yes;cellular;may;wed;147;2;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+54;management;divorced;university.degree;no;yes;yes;cellular;may;wed;265;2;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+54;technician;divorced;university.degree;no;yes;no;cellular;may;wed;57;2;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+40;services;married;high.school;no;no;no;cellular;may;wed;246;4;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+39;blue-collar;single;basic.9y;unknown;yes;no;cellular;may;wed;82;2;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+33;entrepreneur;single;high.school;no;yes;yes;cellular;may;wed;328;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+37;admin.;single;high.school;no;no;no;cellular;may;wed;151;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+33;management;married;university.degree;no;yes;no;cellular;may;wed;85;4;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+51;management;divorced;university.degree;no;no;no;cellular;may;wed;345;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+34;blue-collar;married;basic.6y;no;no;no;cellular;may;wed;168;3;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+36;entrepreneur;married;university.degree;no;yes;no;cellular;may;wed;239;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+52;services;married;basic.6y;no;yes;no;cellular;may;wed;169;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+58;retired;married;basic.4y;no;yes;no;cellular;may;wed;358;2;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+31;blue-collar;single;high.school;no;yes;no;cellular;may;wed;116;2;999;2;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+35;blue-collar;married;basic.9y;no;yes;no;cellular;may;wed;222;2;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+33;technician;married;university.degree;no;no;no;cellular;may;wed;1489;3;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;yes
+33;entrepreneur;married;basic.9y;no;no;no;cellular;may;wed;349;2;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+30;services;married;high.school;unknown;no;yes;cellular;may;wed;102;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+41;admin.;single;university.degree;no;no;yes;cellular;may;wed;593;2;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+36;blue-collar;single;high.school;no;no;yes;cellular;may;wed;1347;2;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;yes
+28;admin.;single;university.degree;no;yes;no;cellular;may;wed;69;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+36;technician;single;university.degree;no;no;no;cellular;may;wed;307;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+31;blue-collar;married;basic.9y;unknown;no;no;cellular;may;wed;242;2;999;2;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+37;self-employed;divorced;university.degree;no;no;no;cellular;may;wed;143;3;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+39;blue-collar;married;basic.9y;no;no;no;cellular;may;wed;129;3;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+42;blue-collar;married;basic.6y;no;no;no;cellular;may;wed;320;3;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+31;blue-collar;married;basic.6y;unknown;yes;no;cellular;may;wed;290;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+44;unemployed;married;basic.9y;no;yes;no;cellular;may;wed;206;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+38;self-employed;married;basic.9y;no;no;no;cellular;may;wed;270;4;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+48;entrepreneur;married;basic.6y;no;no;no;cellular;may;wed;1369;3;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+35;technician;married;professional.course;no;yes;no;cellular;may;wed;456;3;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+41;blue-collar;married;basic.4y;unknown;no;yes;cellular;may;wed;17;3;999;2;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+49;services;single;high.school;no;no;yes;cellular;may;wed;231;2;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+28;admin.;married;high.school;no;yes;no;cellular;may;wed;293;3;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+34;services;married;high.school;no;no;no;cellular;may;wed;215;2;999;2;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+35;technician;married;professional.course;no;no;yes;cellular;may;wed;273;4;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+33;blue-collar;married;basic.9y;unknown;no;no;cellular;may;wed;804;2;9;1;success;-1.8;92.893;-46.2;1.334;5099.1;no
+48;entrepreneur;single;professional.course;no;yes;no;cellular;may;wed;606;3;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+29;admin.;single;university.degree;no;no;no;cellular;may;wed;142;3;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+44;admin.;married;basic.9y;unknown;no;no;cellular;may;wed;217;3;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+35;admin.;single;university.degree;no;no;no;cellular;may;wed;261;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+32;services;married;high.school;no;yes;no;telephone;may;wed;309;3;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+37;admin.;married;university.degree;no;no;no;cellular;may;wed;232;2;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+48;blue-collar;married;basic.6y;unknown;no;yes;cellular;may;wed;152;4;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+50;admin.;divorced;university.degree;no;yes;no;cellular;may;wed;335;3;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+52;blue-collar;married;basic.4y;no;no;no;cellular;may;wed;437;4;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+33;admin.;married;high.school;no;no;no;telephone;may;wed;167;3;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+29;blue-collar;married;basic.4y;no;yes;no;cellular;may;wed;140;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+42;blue-collar;married;basic.6y;unknown;yes;no;cellular;may;wed;458;3;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+34;technician;married;professional.course;no;yes;no;cellular;may;wed;91;3;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+36;blue-collar;married;basic.9y;no;yes;no;cellular;may;wed;284;3;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+45;services;divorced;high.school;unknown;no;no;cellular;may;wed;185;3;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+28;blue-collar;single;basic.9y;unknown;no;no;cellular;may;wed;77;3;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+29;student;single;basic.9y;no;no;no;cellular;may;wed;467;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+41;blue-collar;married;basic.4y;no;yes;no;cellular;may;wed;187;8;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+45;entrepreneur;married;university.degree;no;yes;no;cellular;may;wed;1074;4;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;yes
+37;blue-collar;married;basic.9y;unknown;no;no;telephone;may;wed;97;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+34;services;married;high.school;no;no;yes;cellular;may;wed;362;2;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+39;technician;divorced;professional.course;no;no;yes;cellular;may;wed;445;2;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+46;services;married;basic.9y;no;no;yes;cellular;may;wed;227;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+33;admin.;single;high.school;no;yes;no;cellular;may;wed;281;3;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+52;blue-collar;married;basic.4y;no;no;no;cellular;may;wed;667;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;yes
+33;blue-collar;married;basic.6y;no;yes;yes;cellular;may;wed;686;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;yes
+34;blue-collar;married;basic.9y;no;yes;no;cellular;may;wed;157;3;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+48;blue-collar;married;basic.6y;unknown;no;no;telephone;may;wed;22;6;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+34;services;married;high.school;no;yes;no;telephone;may;wed;276;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+34;blue-collar;married;unknown;no;no;no;cellular;may;wed;232;6;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+43;unemployed;married;basic.4y;no;no;no;cellular;may;wed;117;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+59;admin.;married;high.school;no;no;no;cellular;may;wed;232;2;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+39;technician;single;professional.course;no;no;no;cellular;may;wed;940;3;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+42;services;married;high.school;no;yes;no;cellular;may;wed;337;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+34;housemaid;married;high.school;unknown;no;no;cellular;may;wed;361;5;999;1;failure;-1.8;92.893;-46.2;1.334;5099.1;no
+31;blue-collar;married;basic.4y;no;yes;no;cellular;may;wed;796;2;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;no
+38;technician;single;university.degree;no;yes;yes;cellular;may;wed;606;3;999;0;nonexistent;-1.8;92.893;-46.2;1.334;5099.1;yes
+39;technician;married;professional.course;no;no;no;cellular;may;thu;31;2;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+57;admin.;married;high.school;unknown;yes;no;cellular;may;thu;55;5;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+30;technician;single;professional.course;no;no;no;cellular;may;thu;86;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+38;admin.;single;university.degree;no;no;no;cellular;may;thu;219;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+38;management;married;unknown;no;no;no;telephone;may;thu;25;5;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+31;blue-collar;married;basic.4y;unknown;no;no;cellular;may;thu;210;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+42;blue-collar;single;basic.9y;unknown;yes;no;cellular;may;thu;16;5;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+51;services;married;professional.course;unknown;no;no;cellular;may;thu;113;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+44;blue-collar;married;basic.9y;no;no;no;cellular;may;thu;315;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+28;services;married;basic.9y;unknown;yes;no;cellular;may;thu;343;3;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+34;management;married;basic.4y;no;no;no;cellular;may;thu;175;4;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+35;blue-collar;married;basic.9y;no;no;no;telephone;may;thu;82;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+45;admin.;divorced;basic.9y;unknown;no;no;cellular;may;thu;270;3;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+34;technician;married;university.degree;no;yes;no;cellular;may;thu;83;4;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+44;blue-collar;married;basic.6y;no;no;no;cellular;may;thu;57;4;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+34;management;married;basic.4y;no;yes;no;cellular;may;thu;124;5;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+27;admin.;single;high.school;no;yes;no;cellular;may;thu;240;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+32;blue-collar;married;basic.9y;no;yes;no;cellular;may;thu;413;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+33;technician;married;university.degree;no;yes;no;telephone;may;thu;755;3;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+35;admin.;single;high.school;no;yes;yes;cellular;may;thu;106;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+35;admin.;single;high.school;no;yes;no;cellular;may;thu;187;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+31;housemaid;single;high.school;no;yes;no;cellular;may;thu;633;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+50;blue-collar;married;professional.course;no;yes;no;cellular;may;thu;247;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+35;management;married;university.degree;no;no;no;cellular;may;thu;370;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+30;blue-collar;married;basic.4y;no;no;no;cellular;may;thu;205;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+50;blue-collar;married;professional.course;unknown;yes;no;cellular;may;thu;51;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+32;admin.;single;university.degree;no;yes;yes;cellular;may;thu;195;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+50;blue-collar;married;professional.course;unknown;yes;no;cellular;may;thu;157;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+26;blue-collar;married;basic.9y;no;yes;yes;cellular;may;thu;531;3;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+30;technician;single;professional.course;no;yes;no;cellular;may;thu;512;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+45;admin.;married;high.school;no;yes;no;cellular;may;thu;155;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+33;blue-collar;married;basic.9y;no;yes;no;cellular;may;thu;263;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+37;blue-collar;married;basic.4y;no;yes;no;cellular;may;thu;204;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+36;blue-collar;married;basic.9y;no;yes;no;cellular;may;thu;98;1;999;2;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+36;blue-collar;married;basic.9y;no;yes;no;cellular;may;thu;82;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+36;blue-collar;married;basic.9y;no;yes;no;cellular;may;thu;31;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+35;admin.;single;high.school;no;no;no;cellular;may;thu;923;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;yes
+36;blue-collar;married;basic.4y;no;unknown;unknown;cellular;may;thu;92;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+36;blue-collar;married;basic.4y;no;yes;no;cellular;may;thu;47;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+34;admin.;single;basic.6y;no;no;no;cellular;may;thu;22;11;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+30;entrepreneur;divorced;basic.6y;no;no;yes;cellular;may;thu;149;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+54;blue-collar;married;basic.9y;unknown;no;no;cellular;may;thu;98;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+32;admin.;married;university.degree;no;yes;no;cellular;may;thu;62;6;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+37;blue-collar;single;university.degree;unknown;no;no;cellular;may;thu;203;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+24;services;single;high.school;unknown;yes;no;cellular;may;thu;689;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+29;blue-collar;married;basic.6y;no;no;no;cellular;may;thu;102;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+36;technician;married;professional.course;no;yes;no;cellular;may;thu;191;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+36;admin.;single;high.school;no;yes;no;cellular;may;thu;27;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+28;admin.;single;high.school;no;yes;no;cellular;may;thu;203;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+36;admin.;single;high.school;no;yes;yes;cellular;may;thu;277;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+30;technician;single;university.degree;unknown;yes;no;cellular;may;thu;722;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+36;technician;married;professional.course;no;yes;no;cellular;may;thu;449;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+38;management;married;high.school;no;yes;no;telephone;may;thu;224;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+30;services;single;high.school;no;yes;no;cellular;may;thu;189;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+39;services;married;high.school;no;yes;no;telephone;may;thu;45;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+36;blue-collar;married;basic.4y;unknown;yes;no;cellular;may;thu;248;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+36;admin.;single;high.school;no;yes;yes;cellular;may;thu;127;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+39;admin.;single;university.degree;no;no;no;cellular;may;thu;189;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+40;blue-collar;married;basic.9y;no;yes;yes;cellular;may;thu;549;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+30;admin.;single;professional.course;no;yes;yes;cellular;may;thu;104;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+39;entrepreneur;married;unknown;no;yes;yes;cellular;may;thu;85;3;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+30;blue-collar;single;basic.9y;no;no;yes;cellular;may;thu;252;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+54;technician;single;university.degree;no;yes;yes;cellular;may;thu;121;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+43;services;married;high.school;no;yes;no;cellular;may;thu;197;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+30;blue-collar;single;basic.9y;no;yes;no;cellular;may;thu;348;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+57;retired;divorced;high.school;no;yes;yes;cellular;may;thu;265;5;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+54;technician;single;university.degree;no;yes;no;cellular;may;thu;333;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+36;blue-collar;married;unknown;no;yes;no;cellular;may;thu;25;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+30;blue-collar;single;basic.9y;no;yes;no;cellular;may;thu;623;1;10;1;success;-1.8;92.893;-46.2;1.327;5099.1;yes
+32;admin.;married;high.school;no;no;no;cellular;may;thu;84;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+36;blue-collar;married;unknown;no;yes;no;cellular;may;thu;131;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+32;admin.;married;high.school;no;yes;no;cellular;may;thu;132;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+32;admin.;married;high.school;no;no;no;cellular;may;thu;104;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+45;admin.;single;high.school;no;yes;no;cellular;may;thu;19;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+32;admin.;married;high.school;no;no;no;cellular;may;thu;187;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+33;entrepreneur;single;university.degree;no;no;no;cellular;may;thu;197;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+41;blue-collar;married;basic.9y;no;unknown;unknown;cellular;may;thu;50;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+38;blue-collar;married;basic.9y;unknown;yes;no;cellular;may;thu;201;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+33;admin.;married;university.degree;no;yes;no;cellular;may;thu;171;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+29;services;married;high.school;unknown;yes;no;cellular;may;thu;63;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+42;blue-collar;single;basic.9y;unknown;no;no;cellular;may;thu;183;4;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+29;admin.;married;basic.9y;no;no;no;cellular;may;thu;113;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+36;blue-collar;married;basic.9y;no;yes;no;telephone;may;thu;317;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+29;admin.;married;high.school;no;no;no;cellular;may;thu;329;1;6;1;success;-1.8;92.893;-46.2;1.327;5099.1;no
+43;blue-collar;married;basic.6y;no;yes;yes;cellular;may;thu;95;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+33;services;married;basic.9y;no;yes;no;cellular;may;thu;144;3;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+31;blue-collar;married;basic.9y;no;yes;no;cellular;may;thu;1957;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+29;admin.;married;high.school;no;yes;no;cellular;may;thu;556;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+26;blue-collar;married;basic.9y;unknown;yes;no;cellular;may;thu;49;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+43;blue-collar;married;basic.6y;no;yes;no;cellular;may;thu;393;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+34;management;married;university.degree;unknown;yes;no;cellular;may;thu;383;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+39;admin.;married;high.school;no;yes;no;cellular;may;thu;141;8;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+34;services;married;university.degree;no;no;no;cellular;may;thu;70;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+43;blue-collar;single;basic.9y;no;yes;no;cellular;may;thu;327;4;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+33;blue-collar;married;basic.6y;no;yes;no;cellular;may;thu;375;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+47;technician;divorced;university.degree;unknown;yes;no;cellular;may;thu;101;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+41;self-employed;married;professional.course;no;yes;no;cellular;may;thu;46;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+35;services;single;high.school;no;no;no;cellular;may;thu;146;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+35;services;single;high.school;no;no;yes;cellular;may;thu;184;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+26;technician;single;professional.course;no;yes;no;cellular;may;thu;176;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+31;admin.;married;university.degree;no;yes;yes;cellular;may;thu;148;2;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+50;services;divorced;basic.9y;no;yes;no;cellular;may;thu;429;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+25;services;single;high.school;no;no;no;cellular;may;thu;213;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+28;technician;married;university.degree;no;yes;no;cellular;may;thu;402;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+30;blue-collar;married;basic.9y;no;unknown;unknown;cellular;may;thu;155;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+33;self-employed;divorced;university.degree;no;yes;no;cellular;may;thu;130;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+33;self-employed;divorced;university.degree;no;yes;no;cellular;may;thu;155;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+32;admin.;single;professional.course;no;no;no;cellular;may;thu;290;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+60;admin.;single;university.degree;no;yes;yes;cellular;may;thu;107;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+60;admin.;single;university.degree;no;no;no;cellular;may;thu;87;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+38;technician;single;high.school;unknown;yes;yes;cellular;may;thu;754;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+29;services;married;professional.course;no;yes;yes;telephone;may;thu;29;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+33;self-employed;divorced;university.degree;no;no;no;cellular;may;thu;345;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+29;services;married;professional.course;no;no;no;cellular;may;thu;48;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+29;services;married;professional.course;no;yes;no;cellular;may;thu;92;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+29;blue-collar;married;basic.9y;no;yes;no;cellular;may;thu;193;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+37;student;single;university.degree;unknown;no;no;telephone;may;thu;149;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+30;blue-collar;married;basic.4y;no;no;no;cellular;may;thu;252;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+52;entrepreneur;married;high.school;no;yes;no;cellular;may;thu;69;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+52;entrepreneur;married;high.school;no;yes;no;cellular;may;thu;198;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+33;services;married;high.school;no;no;no;telephone;may;thu;63;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+34;admin.;single;unknown;no;yes;no;cellular;may;thu;172;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+43;blue-collar;married;basic.9y;no;yes;no;cellular;may;thu;83;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+42;blue-collar;married;university.degree;unknown;yes;no;cellular;may;thu;462;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+33;services;married;high.school;no;yes;no;cellular;may;thu;397;1;999;2;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+36;admin.;married;professional.course;no;no;no;cellular;may;thu;229;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+32;admin.;single;professional.course;no;yes;yes;cellular;may;thu;1046;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;yes
+32;admin.;single;professional.course;no;no;no;cellular;may;thu;1145;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+30;blue-collar;single;basic.6y;no;no;no;cellular;may;thu;159;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+32;services;married;high.school;unknown;no;no;cellular;may;thu;56;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+28;admin.;divorced;university.degree;no;yes;no;cellular;may;thu;1148;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;yes
+40;unemployed;married;professional.course;no;yes;no;cellular;may;thu;609;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+25;blue-collar;single;basic.9y;no;yes;no;cellular;may;thu;133;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+51;services;divorced;high.school;no;no;no;cellular;may;thu;502;1;999;2;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+25;blue-collar;single;basic.9y;no;yes;no;cellular;may;thu;162;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+38;technician;single;professional.course;no;yes;no;cellular;may;thu;855;2;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;yes
+30;blue-collar;single;basic.6y;no;yes;no;cellular;may;thu;542;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;yes
+35;blue-collar;married;basic.9y;unknown;no;no;cellular;may;thu;91;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+34;unemployed;single;university.degree;no;yes;no;cellular;may;thu;245;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+40;blue-collar;married;basic.6y;no;yes;no;cellular;may;thu;123;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+39;blue-collar;divorced;unknown;no;yes;no;cellular;may;thu;40;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+35;blue-collar;married;basic.9y;unknown;no;no;cellular;may;thu;234;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+39;blue-collar;divorced;unknown;no;no;no;cellular;may;thu;126;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+28;technician;single;high.school;no;yes;yes;cellular;may;thu;609;1;11;1;success;-1.8;92.893;-46.2;1.327;5099.1;yes
+45;blue-collar;divorced;basic.6y;unknown;yes;no;cellular;may;thu;219;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+57;retired;married;basic.6y;no;yes;no;cellular;may;thu;128;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+57;retired;married;basic.6y;no;no;yes;cellular;may;thu;93;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+57;retired;married;basic.6y;no;yes;no;cellular;may;thu;189;1;6;2;success;-1.8;92.893;-46.2;1.327;5099.1;no
+37;blue-collar;divorced;high.school;no;yes;no;cellular;may;thu;217;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+29;services;married;basic.9y;no;yes;no;cellular;may;thu;302;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+26;services;single;university.degree;no;yes;no;cellular;may;thu;223;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+44;blue-collar;married;basic.6y;no;yes;no;cellular;may;thu;102;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+36;blue-collar;married;basic.4y;no;no;no;cellular;may;thu;11;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+55;self-employed;married;basic.9y;no;yes;no;cellular;may;thu;1191;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+35;blue-collar;married;basic.6y;no;yes;no;cellular;may;thu;406;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+42;blue-collar;married;basic.4y;unknown;yes;yes;cellular;may;thu;36;3;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+28;blue-collar;single;high.school;no;no;no;cellular;may;thu;16;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+26;services;single;university.degree;no;yes;no;cellular;may;thu;551;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+38;blue-collar;divorced;high.school;no;yes;no;cellular;may;thu;158;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+28;blue-collar;single;high.school;no;no;no;cellular;may;thu;278;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+38;blue-collar;divorced;high.school;no;no;no;cellular;may;thu;192;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+37;blue-collar;married;basic.9y;no;no;no;cellular;may;thu;79;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+34;blue-collar;married;basic.4y;no;no;no;cellular;may;thu;273;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+35;blue-collar;married;basic.6y;unknown;yes;no;cellular;may;thu;143;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+34;blue-collar;married;basic.4y;no;no;yes;cellular;may;thu;346;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+38;blue-collar;divorced;high.school;no;yes;no;cellular;may;thu;272;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+38;blue-collar;divorced;high.school;no;no;no;cellular;may;thu;282;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+33;admin.;married;high.school;no;no;yes;cellular;may;thu;147;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+34;management;married;basic.4y;no;yes;no;cellular;may;thu;60;4;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+43;blue-collar;married;basic.4y;unknown;no;yes;cellular;may;thu;50;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+45;management;married;university.degree;no;yes;no;cellular;may;thu;239;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+38;technician;married;university.degree;no;unknown;unknown;cellular;may;thu;86;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+41;management;married;basic.6y;unknown;no;no;cellular;may;thu;163;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+37;blue-collar;married;basic.9y;no;yes;yes;cellular;may;thu;356;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+31;services;divorced;high.school;unknown;no;no;cellular;may;thu;124;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+36;technician;single;high.school;no;yes;no;cellular;may;thu;229;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+36;technician;single;high.school;no;yes;no;cellular;may;thu;208;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+31;services;divorced;high.school;unknown;yes;no;cellular;may;thu;236;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+45;management;married;university.degree;no;no;no;cellular;may;thu;647;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;yes
+36;technician;single;high.school;no;yes;no;cellular;may;thu;426;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+43;blue-collar;married;basic.4y;unknown;yes;no;cellular;may;thu;625;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;yes
+38;blue-collar;married;basic.9y;no;yes;no;cellular;may;thu;259;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+51;services;divorced;basic.6y;no;no;yes;cellular;may;thu;122;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+38;admin.;married;high.school;no;yes;yes;cellular;may;thu;574;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;yes
+41;management;married;university.degree;no;no;yes;cellular;may;thu;35;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+32;unemployed;single;university.degree;no;no;no;cellular;may;thu;213;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+31;technician;married;professional.course;unknown;yes;no;cellular;may;thu;46;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+42;blue-collar;single;basic.4y;no;no;no;cellular;may;thu;128;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+41;management;married;university.degree;no;yes;no;cellular;may;thu;93;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+29;admin.;single;basic.9y;unknown;yes;no;cellular;may;thu;983;4;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;yes
+35;technician;single;professional.course;no;yes;no;cellular;may;thu;49;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+49;admin.;divorced;high.school;no;yes;no;cellular;may;thu;168;3;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+35;technician;single;professional.course;no;yes;no;cellular;may;thu;141;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+36;technician;divorced;professional.course;no;no;no;cellular;may;thu;31;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+47;management;married;university.degree;unknown;yes;no;cellular;may;thu;72;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+31;technician;married;professional.course;no;yes;no;cellular;may;thu;232;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+39;services;single;professional.course;unknown;yes;no;cellular;may;thu;199;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+39;admin.;married;basic.9y;no;yes;no;cellular;may;thu;279;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+36;blue-collar;married;basic.9y;no;yes;yes;cellular;may;thu;314;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+35;blue-collar;married;basic.9y;unknown;yes;no;cellular;may;thu;282;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+35;blue-collar;married;basic.9y;unknown;yes;no;cellular;may;thu;282;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+37;technician;married;professional.course;no;yes;no;cellular;may;thu;63;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+35;blue-collar;married;basic.9y;unknown;no;no;cellular;may;thu;391;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+48;blue-collar;married;basic.4y;no;unknown;unknown;cellular;may;thu;313;1;999;2;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+47;self-employed;married;basic.4y;unknown;no;no;cellular;may;thu;168;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+30;admin.;single;university.degree;no;no;no;cellular;may;thu;199;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+47;services;married;high.school;no;no;no;cellular;may;thu;176;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+35;blue-collar;married;unknown;no;no;no;cellular;may;thu;446;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+35;blue-collar;married;basic.4y;unknown;yes;no;cellular;may;thu;275;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+37;self-employed;married;basic.4y;no;no;no;cellular;may;thu;281;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+33;admin.;single;university.degree;no;yes;no;cellular;may;thu;143;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+24;student;single;university.degree;no;yes;no;cellular;may;thu;362;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+35;admin.;married;university.degree;no;yes;yes;cellular;may;thu;165;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+41;blue-collar;married;basic.6y;unknown;yes;yes;cellular;may;thu;65;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+33;admin.;single;university.degree;no;yes;no;cellular;may;thu;320;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+37;services;married;basic.9y;no;yes;no;cellular;may;thu;166;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+40;technician;married;university.degree;no;yes;no;cellular;may;thu;248;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+41;blue-collar;married;basic.6y;unknown;no;no;cellular;may;thu;170;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+26;blue-collar;single;basic.4y;no;no;yes;cellular;may;thu;54;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+44;technician;divorced;professional.course;no;no;no;cellular;may;thu;569;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+41;blue-collar;married;basic.6y;unknown;yes;no;cellular;may;thu;220;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+43;services;married;high.school;no;no;no;cellular;may;thu;57;2;999;2;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+33;blue-collar;married;basic.6y;no;no;no;cellular;may;thu;490;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+33;admin.;married;high.school;no;yes;no;cellular;may;thu;59;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+36;blue-collar;married;basic.9y;no;yes;no;cellular;may;thu;158;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+36;blue-collar;married;basic.9y;no;no;no;cellular;may;thu;147;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+35;blue-collar;married;basic.4y;no;yes;yes;cellular;may;thu;195;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+35;blue-collar;married;basic.9y;no;no;no;cellular;may;thu;134;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+37;services;married;basic.9y;no;no;yes;cellular;may;thu;447;2;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+43;admin.;single;high.school;no;yes;no;cellular;may;thu;304;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+35;services;married;professional.course;no;no;no;cellular;may;thu;293;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+31;management;married;university.degree;no;no;yes;cellular;may;thu;130;2;999;2;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+32;services;married;high.school;no;yes;no;cellular;may;thu;1129;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;yes
+34;blue-collar;married;basic.9y;unknown;yes;no;cellular;may;thu;41;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+32;admin.;married;university.degree;no;yes;no;cellular;may;thu;242;3;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+39;technician;married;professional.course;no;yes;yes;cellular;may;thu;113;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+34;blue-collar;married;basic.9y;unknown;no;no;cellular;may;thu;263;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+37;blue-collar;married;basic.9y;no;yes;no;cellular;may;thu;199;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+49;blue-collar;married;basic.9y;no;yes;no;cellular;may;thu;105;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+33;admin.;single;university.degree;no;yes;no;cellular;may;thu;332;4;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+38;management;married;unknown;no;no;no;cellular;may;thu;155;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+37;blue-collar;married;basic.9y;no;yes;no;cellular;may;thu;271;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+32;admin.;married;high.school;no;no;yes;cellular;may;thu;142;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+32;technician;single;high.school;no;yes;no;cellular;may;thu;491;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+34;admin.;married;university.degree;no;yes;no;cellular;may;thu;141;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+37;admin.;married;high.school;no;no;no;cellular;may;thu;176;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+34;admin.;married;high.school;no;no;yes;cellular;may;thu;154;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+32;blue-collar;married;professional.course;unknown;yes;no;cellular;may;thu;196;2;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+37;admin.;married;high.school;no;yes;no;cellular;may;thu;290;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+34;technician;married;university.degree;no;yes;no;telephone;may;thu;309;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+34;technician;married;university.degree;no;yes;no;cellular;may;thu;69;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+28;admin.;single;high.school;unknown;yes;yes;cellular;may;thu;275;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+29;blue-collar;married;basic.6y;no;no;no;cellular;may;thu;481;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;yes
+45;admin.;divorced;basic.9y;unknown;yes;no;cellular;may;thu;355;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+34;services;single;high.school;no;yes;no;cellular;may;thu;230;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+34;services;single;high.school;no;yes;no;telephone;may;thu;207;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+35;admin.;single;high.school;no;yes;yes;cellular;may;thu;326;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+33;blue-collar;single;basic.9y;no;yes;yes;cellular;may;thu;468;2;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+37;blue-collar;married;basic.4y;no;yes;no;cellular;may;thu;125;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+56;blue-collar;married;basic.9y;no;no;no;cellular;may;thu;118;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+31;blue-collar;married;basic.9y;no;yes;no;cellular;may;thu;172;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+23;student;single;basic.9y;no;yes;yes;cellular;may;thu;6;7;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+40;management;married;university.degree;no;yes;no;cellular;may;thu;188;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+45;technician;married;professional.course;no;no;no;cellular;may;thu;55;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+39;management;single;university.degree;unknown;no;no;cellular;may;thu;412;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+40;management;married;university.degree;no;no;no;cellular;may;thu;245;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+38;blue-collar;single;basic.4y;no;no;yes;cellular;may;thu;213;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+31;blue-collar;single;high.school;no;yes;no;cellular;may;thu;361;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+40;blue-collar;married;basic.6y;no;yes;no;cellular;may;thu;160;4;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+26;admin.;single;basic.9y;unknown;yes;no;cellular;may;thu;661;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;yes
+37;management;divorced;university.degree;no;no;no;cellular;may;thu;51;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+45;technician;married;professional.course;no;no;no;cellular;may;thu;183;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+27;blue-collar;single;basic.9y;unknown;yes;no;cellular;may;thu;99;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+27;blue-collar;single;basic.9y;unknown;yes;no;cellular;may;thu;110;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+27;blue-collar;single;basic.9y;unknown;yes;yes;cellular;may;thu;101;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+45;technician;divorced;high.school;no;yes;no;cellular;may;thu;174;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+35;services;single;high.school;no;yes;no;cellular;may;thu;66;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+33;technician;married;university.degree;no;no;no;cellular;may;thu;191;3;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+35;services;single;high.school;no;yes;yes;cellular;may;thu;332;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+39;management;married;university.degree;no;yes;no;cellular;may;thu;162;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+39;management;married;university.degree;no;yes;no;cellular;may;thu;55;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+42;admin.;divorced;high.school;no;yes;no;cellular;may;thu;304;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+39;management;married;university.degree;no;yes;no;cellular;may;thu;141;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+38;unemployed;divorced;high.school;unknown;yes;no;cellular;may;thu;43;3;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+27;blue-collar;single;basic.9y;unknown;yes;yes;cellular;may;thu;623;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;yes
+32;services;married;high.school;no;no;no;cellular;may;thu;213;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+42;blue-collar;married;basic.6y;no;yes;no;cellular;may;thu;56;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+42;blue-collar;married;basic.6y;no;yes;no;cellular;may;thu;219;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+28;technician;single;basic.9y;no;yes;no;cellular;may;thu;263;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+50;admin.;married;basic.9y;no;unknown;unknown;cellular;may;thu;446;6;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+27;blue-collar;married;basic.9y;no;no;no;cellular;may;thu;267;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+27;blue-collar;married;basic.9y;no;yes;no;cellular;may;thu;135;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+40;services;married;high.school;unknown;no;no;cellular;may;thu;67;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+38;blue-collar;married;basic.9y;unknown;no;no;cellular;may;thu;228;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+39;blue-collar;married;basic.6y;no;yes;no;cellular;may;thu;476;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;yes
+41;blue-collar;married;basic.9y;no;yes;no;cellular;may;thu;118;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+39;blue-collar;married;high.school;unknown;no;no;cellular;may;thu;207;2;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+36;blue-collar;married;basic.9y;no;no;no;cellular;may;thu;193;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+41;management;married;university.degree;no;no;no;cellular;may;thu;247;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+42;services;single;high.school;no;no;no;cellular;may;thu;122;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+42;services;married;professional.course;no;yes;no;cellular;may;thu;103;2;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+45;blue-collar;married;basic.4y;no;unknown;unknown;cellular;may;thu;67;3;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+37;blue-collar;single;university.degree;unknown;no;no;cellular;may;thu;159;2;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+45;technician;divorced;high.school;no;yes;no;cellular;may;thu;121;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+45;admin.;married;high.school;no;yes;no;cellular;may;thu;182;2;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+27;student;single;high.school;no;yes;no;cellular;may;thu;101;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+39;management;married;professional.course;no;yes;no;cellular;may;thu;156;1;6;1;success;-1.8;92.893;-46.2;1.327;5099.1;no
+34;services;single;high.school;no;no;no;cellular;may;thu;957;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;yes
+44;self-employed;divorced;professional.course;no;yes;no;cellular;may;thu;652;2;999;2;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+36;technician;married;professional.course;no;yes;no;cellular;may;thu;258;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+32;blue-collar;married;basic.9y;no;no;no;cellular;may;thu;72;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+36;blue-collar;married;unknown;no;yes;no;cellular;may;thu;349;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+34;management;married;university.degree;unknown;yes;no;cellular;may;thu;281;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+43;self-employed;married;professional.course;no;yes;no;cellular;may;thu;104;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+37;management;single;university.degree;no;no;no;telephone;may;thu;287;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+51;management;divorced;university.degree;no;yes;no;cellular;may;thu;154;3;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+27;services;single;high.school;no;yes;no;cellular;may;thu;193;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+52;technician;married;professional.course;no;no;no;cellular;may;thu;94;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+27;services;single;high.school;no;yes;yes;cellular;may;thu;356;2;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+39;management;single;university.degree;no;no;no;cellular;may;thu;122;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+43;management;single;university.degree;no;yes;no;telephone;may;thu;140;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+36;technician;divorced;professional.course;no;yes;no;cellular;may;thu;135;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+59;retired;divorced;high.school;unknown;no;no;cellular;may;thu;97;2;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+48;admin.;divorced;university.degree;no;yes;no;cellular;may;thu;590;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+37;services;married;high.school;no;yes;no;cellular;may;thu;87;2;12;1;success;-1.8;92.893;-46.2;1.327;5099.1;no
+32;admin.;divorced;high.school;no;yes;no;cellular;may;thu;633;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+34;admin.;single;university.degree;no;yes;no;cellular;may;thu;92;3;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+48;blue-collar;married;basic.4y;no;no;yes;cellular;may;thu;370;2;1;1;success;-1.8;92.893;-46.2;1.327;5099.1;no
+42;blue-collar;single;basic.4y;no;yes;no;cellular;may;thu;560;3;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+34;admin.;single;unknown;no;yes;no;cellular;may;thu;473;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+43;blue-collar;married;basic.9y;no;no;no;cellular;may;thu;352;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+51;services;divorced;high.school;unknown;yes;no;cellular;may;thu;295;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+39;entrepreneur;married;basic.6y;no;no;no;cellular;may;thu;121;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+41;admin.;single;high.school;no;yes;no;cellular;may;thu;360;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+39;blue-collar;married;basic.6y;no;yes;yes;cellular;may;thu;195;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+33;services;married;basic.9y;no;no;no;cellular;may;thu;225;3;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+37;blue-collar;single;university.degree;unknown;yes;no;cellular;may;thu;166;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+33;admin.;single;university.degree;no;yes;yes;cellular;may;thu;589;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+39;unemployed;married;basic.4y;no;no;no;cellular;may;thu;228;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+58;technician;divorced;university.degree;no;no;no;cellular;may;thu;101;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+41;blue-collar;divorced;basic.9y;no;yes;no;cellular;may;thu;102;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+32;admin.;married;university.degree;no;yes;yes;cellular;may;thu;178;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+32;admin.;married;university.degree;no;no;no;cellular;may;thu;235;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+34;services;married;professional.course;unknown;yes;yes;cellular;may;thu;18;8;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+37;blue-collar;married;basic.6y;no;no;no;cellular;may;thu;253;2;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+27;technician;married;professional.course;no;no;no;cellular;may;thu;347;2;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;yes
+40;technician;single;university.degree;no;no;no;telephone;may;thu;430;2;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+32;admin.;married;university.degree;no;yes;no;cellular;may;thu;100;4;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+32;admin.;married;university.degree;no;no;no;cellular;may;thu;1030;1;6;1;success;-1.8;92.893;-46.2;1.327;5099.1;yes
+31;services;divorced;high.school;unknown;no;no;cellular;may;thu;45;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+46;blue-collar;married;basic.4y;no;yes;no;cellular;may;thu;127;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+36;blue-collar;married;basic.9y;no;no;no;cellular;may;thu;56;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+39;technician;married;professional.course;no;yes;no;cellular;may;thu;1254;3;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+55;technician;married;university.degree;no;yes;yes;cellular;may;thu;895;2;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;yes
+28;services;married;basic.9y;unknown;yes;yes;cellular;may;thu;65;3;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+35;blue-collar;married;basic.9y;no;no;no;cellular;may;thu;270;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+29;entrepreneur;married;high.school;no;no;no;telephone;may;thu;325;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+27;admin.;married;high.school;no;no;yes;cellular;may;thu;279;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+37;management;married;university.degree;unknown;no;yes;cellular;may;thu;195;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+29;entrepreneur;married;high.school;no;yes;no;cellular;may;thu;539;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+27;admin.;married;high.school;no;no;no;cellular;may;thu;643;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+34;blue-collar;married;basic.4y;unknown;no;yes;cellular;may;thu;262;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+41;self-employed;married;basic.9y;no;no;no;cellular;may;thu;54;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+29;admin.;married;high.school;no;yes;no;cellular;may;thu;798;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;yes
+36;blue-collar;married;basic.9y;no;no;no;cellular;may;thu;115;3;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+50;admin.;married;basic.9y;no;no;no;cellular;may;thu;95;6;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+37;unemployed;married;basic.6y;no;yes;no;cellular;may;thu;425;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+33;blue-collar;married;professional.course;unknown;no;no;cellular;may;thu;153;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+38;admin.;single;university.degree;no;no;yes;cellular;may;thu;266;2;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+43;blue-collar;married;basic.6y;no;yes;no;cellular;may;thu;57;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+26;admin.;single;basic.9y;unknown;yes;no;cellular;may;thu;33;3;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+35;blue-collar;married;basic.4y;unknown;yes;no;cellular;may;thu;330;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+35;management;married;university.degree;no;no;no;cellular;may;thu;304;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+27;blue-collar;single;high.school;no;no;yes;cellular;may;thu;308;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+54;admin.;married;high.school;no;yes;no;cellular;may;thu;594;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;yes
+56;blue-collar;married;basic.4y;unknown;no;no;cellular;may;thu;373;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+41;blue-collar;married;basic.4y;unknown;yes;no;cellular;may;thu;87;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+41;blue-collar;married;basic.4y;unknown;unknown;unknown;cellular;may;thu;314;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+31;services;single;high.school;no;no;yes;cellular;may;thu;50;2;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+46;blue-collar;single;basic.6y;unknown;no;yes;cellular;may;thu;245;2;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+46;management;married;university.degree;no;yes;no;cellular;may;thu;247;2;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+35;management;married;university.degree;no;no;no;cellular;may;thu;437;3;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+46;management;married;university.degree;no;yes;no;cellular;may;thu;458;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+34;blue-collar;married;basic.9y;no;yes;yes;cellular;may;thu;96;3;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+49;technician;single;high.school;no;no;yes;cellular;may;thu;253;4;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+36;admin.;married;professional.course;no;no;no;cellular;may;thu;271;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+36;services;married;high.school;no;no;no;cellular;may;thu;227;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+31;services;married;high.school;no;unknown;unknown;cellular;may;thu;582;2;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+32;technician;single;professional.course;no;no;yes;cellular;may;thu;423;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+30;entrepreneur;divorced;basic.6y;no;no;no;cellular;may;thu;422;3;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+33;admin.;single;university.degree;no;no;yes;cellular;may;thu;49;2;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+44;blue-collar;married;basic.6y;no;no;yes;cellular;may;thu;244;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+31;management;single;university.degree;no;yes;no;cellular;may;thu;924;3;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+35;blue-collar;married;basic.6y;no;no;no;cellular;may;thu;126;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+35;services;married;professional.course;no;yes;no;cellular;may;thu;188;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+59;blue-collar;married;basic.4y;no;no;no;cellular;may;thu;190;2;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+33;blue-collar;married;basic.9y;no;yes;no;cellular;may;thu;580;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+46;admin.;married;university.degree;no;no;no;cellular;may;thu;227;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+59;blue-collar;married;basic.9y;no;no;no;cellular;may;thu;600;2;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+33;blue-collar;married;basic.9y;unknown;yes;no;cellular;may;thu;580;3;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+40;admin.;married;basic.9y;no;yes;yes;cellular;may;thu;639;2;10;1;success;-1.8;92.893;-46.2;1.327;5099.1;no
+30;blue-collar;married;basic.4y;no;no;no;cellular;may;thu;244;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+31;admin.;married;university.degree;no;no;no;cellular;may;thu;245;3;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+36;blue-collar;single;basic.4y;no;no;yes;cellular;may;thu;178;3;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+44;blue-collar;married;basic.6y;no;no;no;cellular;may;thu;212;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+34;technician;married;professional.course;no;unknown;unknown;cellular;may;thu;35;3;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+40;blue-collar;married;basic.9y;no;yes;yes;cellular;may;thu;227;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+33;admin.;divorced;university.degree;no;no;yes;cellular;may;thu;201;8;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+37;services;married;basic.9y;no;yes;no;cellular;may;thu;158;3;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+37;admin.;married;high.school;no;no;yes;cellular;may;thu;198;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+35;blue-collar;single;basic.9y;no;no;no;cellular;may;thu;1806;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;yes
+48;blue-collar;married;professional.course;no;no;no;cellular;may;thu;146;2;999;2;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+54;admin.;married;high.school;no;no;no;cellular;may;thu;202;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+44;blue-collar;married;basic.9y;no;no;no;cellular;may;thu;556;3;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+34;blue-collar;married;basic.9y;unknown;no;no;cellular;may;thu;728;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+39;technician;married;professional.course;no;no;no;cellular;may;thu;189;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+37;services;married;high.school;no;no;no;cellular;may;thu;262;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+28;admin.;single;high.school;unknown;no;no;cellular;may;thu;1391;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;yes
+30;services;single;high.school;no;no;no;cellular;may;thu;132;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+28;services;married;basic.9y;unknown;no;no;telephone;may;thu;11;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+39;blue-collar;married;basic.4y;no;no;no;cellular;may;thu;166;3;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+26;unemployed;married;basic.9y;no;yes;yes;cellular;may;thu;217;2;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+36;blue-collar;single;basic.9y;no;no;yes;cellular;may;thu;1516;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;yes
+41;admin.;single;high.school;no;no;no;telephone;may;thu;202;2;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+45;technician;divorced;university.degree;no;yes;yes;cellular;may;thu;252;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+42;admin.;divorced;high.school;no;yes;no;cellular;may;thu;350;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+43;blue-collar;married;basic.9y;no;yes;no;cellular;may;thu;93;4;999;2;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+44;services;married;professional.course;unknown;yes;no;cellular;may;thu;428;2;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+24;student;single;university.degree;no;no;no;telephone;may;thu;908;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+36;student;single;basic.9y;unknown;yes;no;cellular;may;thu;246;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+36;blue-collar;married;basic.9y;no;yes;no;cellular;may;thu;140;3;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+32;admin.;single;professional.course;no;yes;no;cellular;may;thu;603;2;7;2;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+36;blue-collar;married;basic.6y;no;no;no;cellular;may;thu;592;2;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+35;services;single;high.school;no;no;yes;cellular;may;thu;195;2;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+28;student;single;university.degree;unknown;yes;no;cellular;may;thu;191;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+44;technician;divorced;professional.course;no;yes;no;cellular;may;thu;245;3;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+31;entrepreneur;single;basic.9y;unknown;no;no;cellular;may;thu;300;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+39;services;married;high.school;no;yes;no;cellular;may;thu;739;2;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+56;admin.;married;basic.9y;no;no;yes;cellular;may;thu;225;2;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+35;blue-collar;married;basic.6y;no;yes;no;cellular;may;thu;429;2;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+46;management;married;university.degree;no;yes;no;cellular;may;thu;293;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+41;blue-collar;married;basic.9y;no;yes;no;cellular;may;thu;434;3;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+46;services;married;high.school;unknown;no;no;telephone;may;thu;79;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+40;services;married;high.school;unknown;no;no;cellular;may;thu;388;2;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+31;services;married;high.school;no;yes;no;cellular;may;thu;128;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+34;services;single;high.school;no;yes;yes;cellular;may;thu;269;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+33;services;married;high.school;no;yes;yes;cellular;may;thu;273;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+48;blue-collar;married;professional.course;no;no;yes;cellular;may;thu;291;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+46;blue-collar;single;basic.9y;no;yes;no;cellular;may;thu;364;3;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+36;blue-collar;married;unknown;no;no;no;cellular;may;thu;249;4;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+29;services;married;professional.course;no;yes;no;cellular;may;thu;109;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+43;services;single;high.school;no;no;no;cellular;may;thu;337;5;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+30;blue-collar;married;basic.4y;no;yes;no;cellular;may;thu;219;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+35;blue-collar;married;basic.9y;unknown;yes;yes;cellular;may;thu;235;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+31;unemployed;married;professional.course;no;yes;no;cellular;may;thu;700;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+26;admin.;single;basic.9y;unknown;yes;yes;cellular;may;thu;161;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+35;technician;single;professional.course;no;no;yes;cellular;may;thu;181;2;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+36;student;single;basic.9y;unknown;yes;yes;cellular;may;thu;432;3;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+31;technician;married;professional.course;unknown;yes;no;cellular;may;thu;476;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+44;blue-collar;divorced;basic.6y;unknown;no;no;cellular;may;thu;877;3;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;yes
+24;services;single;high.school;unknown;yes;no;cellular;may;thu;263;2;10;1;success;-1.8;92.893;-46.2;1.327;5099.1;no
+36;blue-collar;married;unknown;no;no;no;cellular;may;thu;156;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+46;blue-collar;married;basic.9y;no;no;no;cellular;may;thu;792;3;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;yes
+49;blue-collar;married;basic.9y;no;no;no;cellular;may;thu;589;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+31;services;married;high.school;no;unknown;unknown;cellular;may;thu;215;2;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+46;management;married;university.degree;no;yes;yes;cellular;may;thu;84;3;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+33;blue-collar;married;basic.9y;unknown;no;no;cellular;may;thu;329;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+48;technician;married;basic.9y;no;no;no;cellular;may;thu;553;3;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;yes
+38;technician;married;university.degree;no;yes;no;cellular;may;thu;174;3;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+47;admin.;single;basic.9y;no;no;no;cellular;may;thu;253;2;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+47;management;married;university.degree;no;yes;no;cellular;may;thu;127;6;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+45;management;married;university.degree;no;yes;yes;cellular;may;thu;265;3;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+36;management;married;university.degree;no;no;no;cellular;may;thu;272;4;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+37;admin.;married;high.school;unknown;yes;no;cellular;may;thu;113;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+42;admin.;divorced;professional.course;no;no;no;cellular;may;thu;37;2;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+41;self-employed;married;basic.9y;no;yes;no;cellular;may;thu;1135;3;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;yes
+31;management;single;university.degree;no;yes;no;cellular;may;thu;239;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+53;blue-collar;married;basic.9y;no;no;no;telephone;may;thu;376;2;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+37;admin.;single;university.degree;no;yes;no;cellular;may;thu;255;6;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+49;blue-collar;married;basic.9y;no;no;no;cellular;may;thu;324;2;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+32;blue-collar;married;basic.9y;no;no;no;cellular;may;thu;228;4;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+39;technician;married;professional.course;no;no;no;cellular;may;thu;20;8;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+37;blue-collar;married;basic.6y;unknown;no;no;cellular;may;thu;635;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+43;admin.;single;high.school;no;no;no;cellular;may;thu;209;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+43;management;single;university.degree;no;unknown;unknown;cellular;may;thu;274;3;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+39;technician;married;professional.course;no;no;yes;cellular;may;thu;831;4;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+34;services;single;high.school;no;yes;no;cellular;may;thu;541;3;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+46;blue-collar;unknown;unknown;no;no;no;cellular;may;thu;162;7;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+43;admin.;divorced;high.school;no;yes;yes;cellular;may;thu;892;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+39;admin.;married;basic.6y;no;yes;no;telephone;may;thu;123;3;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+30;technician;single;university.degree;unknown;yes;no;cellular;may;thu;63;3;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+46;blue-collar;married;basic.4y;unknown;yes;no;cellular;may;thu;882;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;yes
+46;admin.;married;high.school;no;yes;no;telephone;may;thu;146;4;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+30;blue-collar;married;basic.4y;no;yes;yes;cellular;may;thu;463;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+51;self-employed;married;high.school;no;yes;no;cellular;may;thu;43;2;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+55;unemployed;divorced;university.degree;no;no;no;cellular;may;thu;190;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+36;services;married;high.school;no;no;no;cellular;may;thu;62;2;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+36;blue-collar;married;basic.4y;unknown;yes;yes;cellular;may;thu;350;3;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+26;blue-collar;married;basic.9y;unknown;no;no;cellular;may;thu;273;4;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+43;blue-collar;married;basic.6y;unknown;yes;no;cellular;may;thu;172;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+46;blue-collar;single;basic.6y;unknown;yes;no;cellular;may;thu;304;3;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+33;admin.;married;university.degree;no;no;no;cellular;may;thu;245;5;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+49;blue-collar;married;basic.9y;no;yes;no;cellular;may;thu;411;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+50;blue-collar;married;basic.4y;no;no;no;cellular;may;thu;251;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+26;services;single;high.school;no;yes;no;cellular;may;thu;177;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+25;services;single;high.school;no;yes;no;cellular;may;thu;239;3;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+35;technician;single;professional.course;no;yes;no;cellular;may;thu;100;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+42;admin.;married;high.school;no;unknown;unknown;cellular;may;thu;878;3;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;yes
+41;services;single;unknown;no;yes;no;cellular;may;thu;206;3;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+35;blue-collar;married;unknown;no;yes;no;cellular;may;thu;1262;3;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;yes
+35;management;married;university.degree;no;no;no;cellular;may;thu;597;3;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;yes
+50;admin.;married;basic.9y;no;yes;no;telephone;may;thu;138;4;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+50;blue-collar;married;basic.4y;unknown;no;no;cellular;may;thu;857;3;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+45;admin.;divorced;basic.9y;unknown;no;no;cellular;may;thu;133;1;12;1;success;-1.8;92.893;-46.2;1.327;5099.1;no
+46;blue-collar;married;basic.4y;no;no;no;telephone;may;thu;10;4;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+43;technician;married;professional.course;unknown;no;no;cellular;may;thu;681;5;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+29;services;married;professional.course;no;no;no;cellular;may;thu;1051;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+36;technician;single;university.degree;no;no;no;cellular;may;thu;235;4;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+36;admin.;single;high.school;no;no;no;cellular;may;thu;42;2;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+41;technician;single;university.degree;no;yes;no;cellular;may;thu;59;4;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+56;blue-collar;married;basic.9y;no;no;no;cellular;may;thu;369;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+31;blue-collar;married;basic.9y;no;no;no;cellular;may;thu;212;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+36;blue-collar;married;unknown;no;no;no;telephone;may;thu;55;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+36;blue-collar;married;basic.4y;no;yes;yes;cellular;may;thu;490;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+36;blue-collar;married;basic.4y;no;no;no;cellular;may;thu;227;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+48;services;married;high.school;no;no;no;cellular;may;thu;388;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+45;technician;married;professional.course;no;yes;yes;cellular;may;thu;702;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+43;blue-collar;married;basic.9y;no;no;no;cellular;may;thu;1297;2;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+28;technician;married;university.degree;no;yes;no;cellular;may;thu;201;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+39;blue-collar;married;basic.4y;no;no;no;cellular;may;thu;155;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+30;blue-collar;married;basic.4y;no;no;no;cellular;may;thu;208;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+36;blue-collar;married;basic.9y;no;no;no;cellular;may;thu;189;3;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+30;blue-collar;single;high.school;unknown;yes;no;cellular;may;thu;340;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+44;blue-collar;married;basic.4y;unknown;yes;yes;cellular;may;thu;148;5;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+41;services;married;basic.6y;unknown;yes;no;cellular;may;thu;378;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+58;technician;divorced;university.degree;no;no;no;cellular;may;thu;181;1;999;0;nonexistent;-1.8;92.893;-46.2;1.327;5099.1;no
+41;blue-collar;married;unknown;no;no;yes;cellular;may;thu;373;2;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+57;retired;married;basic.6y;no;no;no;cellular;may;thu;873;1;999;1;failure;-1.8;92.893;-46.2;1.327;5099.1;no
+41;technician;married;university.degree;no;yes;yes;cellular;may;fri;170;4;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+35;admin.;married;high.school;no;yes;no;cellular;may;fri;141;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+28;blue-collar;married;basic.9y;unknown;no;no;cellular;may;fri;182;2;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+25;admin.;single;high.school;no;no;no;telephone;may;fri;128;8;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+31;management;divorced;university.degree;no;yes;no;cellular;may;fri;156;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+50;blue-collar;divorced;basic.9y;no;no;no;cellular;may;fri;262;3;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+33;blue-collar;single;basic.4y;no;no;yes;cellular;may;fri;328;2;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+30;blue-collar;married;basic.4y;unknown;no;no;telephone;may;fri;142;3;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+32;admin.;married;high.school;unknown;yes;no;telephone;may;fri;17;9;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+39;blue-collar;married;basic.9y;unknown;unknown;unknown;telephone;may;fri;143;4;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+39;technician;married;professional.course;unknown;yes;no;cellular;may;fri;608;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+39;admin.;single;university.degree;no;yes;no;cellular;may;fri;150;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+35;management;single;high.school;no;yes;yes;cellular;may;fri;130;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+31;admin.;single;university.degree;unknown;no;no;telephone;may;fri;145;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+38;admin.;single;unknown;no;yes;no;cellular;may;fri;191;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+34;management;single;university.degree;no;no;yes;cellular;may;fri;662;4;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;yes
+38;services;married;high.school;no;yes;yes;cellular;may;fri;302;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+31;admin.;single;university.degree;unknown;yes;yes;cellular;may;fri;440;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+31;blue-collar;married;basic.6y;unknown;no;no;cellular;may;fri;41;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+48;admin.;married;basic.9y;no;no;no;cellular;may;fri;253;3;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+45;admin.;divorced;professional.course;no;no;yes;cellular;may;fri;132;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+49;admin.;divorced;university.degree;no;yes;no;cellular;may;fri;164;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+32;blue-collar;married;basic.4y;no;yes;no;cellular;may;fri;906;5;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+44;admin.;married;high.school;no;no;no;cellular;may;fri;131;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+44;admin.;married;high.school;no;no;no;cellular;may;fri;127;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+34;admin.;married;university.degree;no;no;no;cellular;may;fri;104;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+33;admin.;married;university.degree;no;yes;no;cellular;may;fri;317;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+44;admin.;married;high.school;no;yes;no;cellular;may;fri;263;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+34;admin.;married;high.school;unknown;no;no;cellular;may;fri;67;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+37;admin.;divorced;high.school;no;no;no;cellular;may;fri;11;8;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+35;admin.;married;high.school;no;yes;yes;cellular;may;fri;165;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+25;admin.;single;high.school;no;yes;yes;cellular;may;fri;795;6;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+31;services;single;high.school;no;no;no;cellular;may;fri;98;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+33;services;married;high.school;no;yes;no;cellular;may;fri;729;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;yes
+27;blue-collar;single;high.school;no;no;no;cellular;may;fri;80;4;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+39;blue-collar;married;basic.6y;no;no;no;cellular;may;fri;138;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+36;admin.;married;basic.9y;no;yes;yes;cellular;may;fri;85;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+38;blue-collar;single;basic.6y;unknown;no;no;cellular;may;fri;39;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+36;admin.;married;basic.9y;no;no;no;cellular;may;fri;159;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+39;blue-collar;married;basic.6y;no;yes;yes;cellular;may;fri;298;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+41;admin.;single;high.school;no;yes;no;cellular;may;fri;57;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+32;services;married;high.school;no;yes;no;cellular;may;fri;76;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+38;blue-collar;single;basic.9y;unknown;yes;no;cellular;may;fri;56;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+56;management;divorced;university.degree;no;no;no;cellular;may;fri;166;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+30;technician;single;professional.course;no;yes;no;cellular;may;fri;68;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+33;services;married;high.school;no;yes;no;cellular;may;fri;88;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+45;technician;married;basic.9y;no;no;yes;cellular;may;fri;1077;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;yes
+32;technician;divorced;professional.course;no;no;yes;cellular;may;fri;168;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+30;technician;single;professional.course;no;no;no;cellular;may;fri;440;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+28;student;single;university.degree;no;no;no;cellular;may;fri;81;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+28;student;single;university.degree;no;yes;no;cellular;may;fri;126;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+60;management;married;basic.4y;unknown;no;no;cellular;may;fri;65;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+41;services;divorced;high.school;no;yes;no;cellular;may;fri;380;4;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+36;services;married;high.school;unknown;no;no;cellular;may;fri;114;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+37;blue-collar;married;high.school;unknown;yes;no;cellular;may;fri;181;3;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+32;blue-collar;married;basic.9y;no;yes;yes;cellular;may;fri;157;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+36;services;single;basic.9y;no;yes;no;cellular;may;fri;293;3;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+38;blue-collar;single;basic.6y;unknown;yes;no;cellular;may;fri;1022;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+42;admin.;married;high.school;no;yes;no;cellular;may;fri;106;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+39;technician;single;professional.course;unknown;yes;no;cellular;may;fri;264;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+45;technician;divorced;university.degree;unknown;yes;no;cellular;may;fri;84;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+37;blue-collar;single;basic.9y;no;yes;no;cellular;may;fri;72;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+31;admin.;married;high.school;no;yes;no;cellular;may;fri;364;5;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+42;technician;married;professional.course;no;yes;no;cellular;may;fri;108;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+36;services;single;high.school;no;no;no;cellular;may;fri;7;5;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+43;unemployed;married;basic.9y;no;yes;no;cellular;may;fri;105;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+33;blue-collar;married;high.school;no;yes;no;cellular;may;fri;26;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+31;admin.;single;university.degree;unknown;yes;no;cellular;may;fri;266;3;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+37;blue-collar;married;basic.4y;unknown;no;no;cellular;may;fri;206;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+34;blue-collar;married;basic.9y;no;yes;yes;cellular;may;fri;197;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+33;blue-collar;married;high.school;no;yes;no;cellular;may;fri;103;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+34;blue-collar;married;basic.9y;no;yes;yes;cellular;may;fri;328;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+36;technician;married;university.degree;no;yes;no;cellular;may;fri;285;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+35;blue-collar;married;basic.9y;no;yes;no;cellular;may;fri;63;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+45;technician;divorced;university.degree;unknown;no;no;cellular;may;fri;776;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;yes
+37;technician;married;professional.course;no;yes;yes;cellular;may;fri;132;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+35;blue-collar;married;basic.9y;no;no;no;cellular;may;fri;211;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+39;management;married;university.degree;no;yes;no;cellular;may;fri;53;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+34;blue-collar;married;basic.9y;no;no;yes;cellular;may;fri;763;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;yes
+35;services;single;high.school;no;yes;yes;cellular;may;fri;94;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+38;admin.;married;high.school;no;yes;no;cellular;may;fri;213;5;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+37;blue-collar;married;high.school;no;yes;no;cellular;may;fri;475;3;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+32;housemaid;married;basic.4y;no;yes;no;cellular;may;fri;240;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+35;services;single;high.school;no;no;no;cellular;may;fri;198;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+32;housemaid;married;basic.4y;no;yes;yes;cellular;may;fri;340;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+39;blue-collar;divorced;basic.9y;no;yes;no;cellular;may;fri;247;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+39;blue-collar;divorced;basic.9y;no;yes;no;cellular;may;fri;191;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+36;blue-collar;married;high.school;no;yes;no;cellular;may;fri;154;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+31;blue-collar;married;basic.9y;no;yes;no;cellular;may;fri;122;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+36;blue-collar;married;high.school;no;yes;no;cellular;may;fri;232;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+37;blue-collar;married;basic.9y;no;no;no;cellular;may;fri;65;2;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+37;self-employed;married;university.degree;no;yes;no;cellular;may;fri;279;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+35;blue-collar;married;high.school;no;yes;no;cellular;may;fri;130;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+33;services;single;high.school;no;yes;no;cellular;may;fri;557;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+37;entrepreneur;married;basic.9y;no;yes;no;telephone;may;fri;63;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+31;services;single;high.school;unknown;no;no;cellular;may;fri;77;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+37;self-employed;married;university.degree;no;no;no;cellular;may;fri;395;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+46;admin.;divorced;basic.9y;no;yes;no;cellular;may;fri;275;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+37;admin.;single;university.degree;no;yes;yes;cellular;may;fri;171;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+34;entrepreneur;married;university.degree;no;no;no;cellular;may;fri;17;5;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+40;blue-collar;married;unknown;unknown;no;no;cellular;may;fri;265;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+39;blue-collar;married;basic.6y;unknown;no;no;cellular;may;fri;40;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+57;retired;single;university.degree;no;no;no;cellular;may;fri;208;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+42;management;divorced;high.school;no;yes;no;cellular;may;fri;163;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+38;admin.;married;high.school;no;no;no;cellular;may;fri;240;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+58;blue-collar;married;basic.9y;no;no;no;cellular;may;fri;74;2;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+49;blue-collar;single;unknown;unknown;yes;no;cellular;may;fri;49;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+33;technician;single;professional.course;no;yes;no;cellular;may;fri;70;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+34;blue-collar;married;university.degree;no;no;yes;cellular;may;fri;208;4;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+41;services;single;high.school;no;no;no;cellular;may;fri;103;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+31;self-employed;single;university.degree;no;no;no;cellular;may;fri;302;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+50;blue-collar;married;basic.6y;unknown;no;no;cellular;may;fri;103;6;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+38;blue-collar;married;basic.9y;no;yes;no;cellular;may;fri;75;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+41;services;married;high.school;no;yes;no;cellular;may;fri;97;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+29;technician;divorced;professional.course;unknown;yes;no;cellular;may;fri;14;5;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+25;admin.;single;high.school;no;yes;yes;cellular;may;fri;137;4;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+39;services;married;high.school;unknown;yes;yes;cellular;may;fri;19;6;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+31;management;married;university.degree;no;yes;no;cellular;may;fri;144;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+42;entrepreneur;married;basic.6y;no;yes;yes;cellular;may;fri;158;3;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+47;services;single;basic.6y;unknown;no;yes;cellular;may;fri;307;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+31;self-employed;married;university.degree;no;no;no;cellular;may;fri;182;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+38;admin.;married;high.school;no;yes;no;cellular;may;fri;1281;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+51;blue-collar;married;university.degree;no;no;no;cellular;may;fri;153;4;999;2;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+24;blue-collar;single;basic.4y;no;yes;no;cellular;may;fri;389;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+33;technician;married;professional.course;no;no;no;cellular;may;fri;290;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+32;technician;married;professional.course;no;yes;yes;cellular;may;fri;134;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+35;blue-collar;married;basic.9y;unknown;yes;yes;cellular;may;fri;153;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+29;blue-collar;married;basic.9y;no;no;no;cellular;may;fri;851;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+33;blue-collar;single;basic.6y;no;unknown;unknown;cellular;may;fri;295;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+36;entrepreneur;married;university.degree;no;yes;no;telephone;may;fri;139;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+31;services;single;high.school;unknown;no;no;cellular;may;fri;182;2;999;2;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+31;self-employed;married;university.degree;no;no;no;cellular;may;fri;704;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;yes
+33;technician;married;professional.course;no;yes;yes;cellular;may;fri;500;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+47;blue-collar;married;high.school;no;no;yes;cellular;may;fri;168;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+37;self-employed;single;university.degree;no;no;yes;cellular;may;fri;101;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+55;entrepreneur;divorced;university.degree;unknown;no;no;cellular;may;fri;56;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+25;blue-collar;single;basic.9y;no;no;no;cellular;may;fri;299;3;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+38;admin.;married;high.school;no;yes;no;cellular;may;fri;6;5;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+34;admin.;married;university.degree;no;yes;no;cellular;may;fri;159;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+44;services;single;high.school;no;no;no;cellular;may;fri;318;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+37;self-employed;single;university.degree;no;no;no;cellular;may;fri;263;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+33;blue-collar;single;basic.6y;no;unknown;unknown;telephone;may;fri;833;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;yes
+53;admin.;married;high.school;no;yes;no;cellular;may;fri;291;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+32;student;single;university.degree;no;no;no;cellular;may;fri;209;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+49;blue-collar;married;basic.4y;no;yes;no;cellular;may;fri;86;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+34;admin.;single;high.school;no;yes;no;cellular;may;fri;80;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+33;blue-collar;married;basic.9y;no;no;no;cellular;may;fri;52;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+39;technician;married;professional.course;no;yes;no;cellular;may;fri;346;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+35;blue-collar;married;basic.6y;unknown;no;no;cellular;may;fri;813;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;yes
+44;management;divorced;university.degree;no;unknown;unknown;cellular;may;fri;47;5;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+42;technician;married;professional.course;no;no;no;cellular;may;fri;1014;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+36;blue-collar;married;basic.4y;unknown;no;no;cellular;may;fri;612;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+32;blue-collar;married;basic.9y;no;yes;no;cellular;may;fri;144;2;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+33;admin.;single;university.degree;no;unknown;unknown;cellular;may;fri;498;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+36;blue-collar;married;basic.9y;no;yes;no;cellular;may;fri;232;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+51;management;married;university.degree;no;no;no;cellular;may;fri;203;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+31;management;single;university.degree;no;yes;no;cellular;may;fri;268;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+37;blue-collar;married;basic.9y;no;yes;no;cellular;may;fri;210;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+22;student;single;high.school;no;no;no;cellular;may;fri;312;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+33;management;married;university.degree;no;no;no;cellular;may;fri;364;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+32;technician;single;university.degree;no;unknown;unknown;cellular;may;fri;31;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+45;technician;single;university.degree;no;no;no;cellular;may;fri;561;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+39;admin.;divorced;university.degree;no;no;no;telephone;may;fri;44;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+36;blue-collar;married;basic.6y;no;no;no;cellular;may;fri;212;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+36;blue-collar;married;basic.9y;no;no;yes;cellular;may;fri;49;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+55;blue-collar;divorced;basic.4y;no;no;no;cellular;may;fri;278;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+45;technician;single;university.degree;no;no;no;cellular;may;fri;763;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+56;blue-collar;married;basic.9y;no;no;no;cellular;may;fri;50;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+32;admin.;married;university.degree;no;no;no;cellular;may;fri;402;1;999;2;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+35;blue-collar;married;basic.9y;no;no;no;cellular;may;fri;349;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+32;technician;married;high.school;no;no;no;cellular;may;fri;134;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+28;services;married;high.school;no;no;yes;cellular;may;fri;343;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+42;services;married;high.school;no;yes;no;cellular;may;fri;120;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+42;services;married;high.school;no;yes;no;telephone;may;fri;128;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+31;blue-collar;married;basic.6y;unknown;yes;no;cellular;may;fri;191;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+41;admin.;married;university.degree;unknown;yes;no;cellular;may;fri;114;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+40;services;single;high.school;unknown;no;no;cellular;may;fri;239;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+29;blue-collar;married;basic.9y;no;no;no;cellular;may;fri;111;4;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+33;admin.;single;high.school;no;no;yes;cellular;may;fri;93;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+42;admin.;single;high.school;no;yes;no;cellular;may;fri;92;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+35;blue-collar;married;basic.6y;unknown;no;no;cellular;may;fri;43;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+37;blue-collar;married;basic.9y;no;no;no;telephone;may;fri;301;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+41;blue-collar;divorced;basic.9y;no;yes;no;cellular;may;fri;88;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+47;blue-collar;single;basic.4y;no;yes;no;cellular;may;fri;87;2;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+28;student;single;university.degree;no;yes;yes;cellular;may;fri;108;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+46;blue-collar;married;basic.4y;unknown;no;no;cellular;may;fri;577;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+46;admin.;married;basic.9y;unknown;no;no;cellular;may;fri;175;2;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+33;admin.;married;high.school;no;no;no;telephone;may;fri;396;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+38;blue-collar;married;basic.9y;no;yes;no;cellular;may;fri;98;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+49;blue-collar;married;basic.9y;no;yes;no;cellular;may;fri;86;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+38;blue-collar;single;unknown;unknown;no;no;cellular;may;fri;936;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+33;blue-collar;single;basic.4y;no;yes;no;cellular;may;fri;39;3;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+25;admin.;single;university.degree;no;yes;no;cellular;may;fri;80;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+57;services;divorced;unknown;no;no;no;cellular;may;fri;144;4;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+34;admin.;married;high.school;unknown;yes;no;cellular;may;fri;310;2;999;2;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+38;management;married;university.degree;no;no;no;cellular;may;fri;525;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+45;services;single;high.school;no;yes;no;cellular;may;fri;127;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+51;blue-collar;married;university.degree;no;yes;no;cellular;may;fri;99;3;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+36;services;single;basic.9y;no;yes;no;cellular;may;fri;501;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;yes
+37;admin.;single;university.degree;no;yes;no;cellular;may;fri;105;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+35;blue-collar;married;basic.9y;unknown;no;no;cellular;may;fri;414;2;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+35;blue-collar;married;basic.9y;no;no;no;cellular;may;fri;318;2;11;1;success;-1.8;92.893;-46.2;1.313;5099.1;no
+45;technician;single;university.degree;no;no;no;cellular;may;fri;445;2;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+32;admin.;married;university.degree;no;yes;no;cellular;may;fri;374;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+47;blue-collar;married;high.school;no;yes;no;cellular;may;fri;191;3;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+38;management;married;university.degree;no;yes;no;cellular;may;fri;1276;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;yes
+34;technician;married;university.degree;no;no;no;cellular;may;fri;51;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+40;services;married;basic.4y;unknown;no;no;cellular;may;fri;139;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+40;services;married;basic.4y;unknown;yes;no;cellular;may;fri;237;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+23;student;single;basic.9y;no;no;no;cellular;may;fri;145;2;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+38;blue-collar;single;high.school;no;no;no;cellular;may;fri;136;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+40;services;married;basic.4y;unknown;no;no;cellular;may;fri;308;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+35;self-employed;single;university.degree;no;no;no;cellular;may;fri;1243;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+40;management;single;university.degree;no;yes;no;cellular;may;fri;52;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+40;blue-collar;married;basic.4y;no;no;no;cellular;may;fri;77;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+40;management;single;university.degree;no;no;yes;cellular;may;fri;217;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+31;blue-collar;single;high.school;no;yes;no;cellular;may;fri;197;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+35;services;married;high.school;no;unknown;unknown;cellular;may;fri;55;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+35;admin.;single;high.school;no;unknown;unknown;cellular;may;fri;579;2;10;1;success;-1.8;92.893;-46.2;1.313;5099.1;yes
+35;services;married;high.school;no;no;no;cellular;may;fri;125;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+58;management;single;university.degree;no;no;no;cellular;may;fri;90;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+58;management;single;university.degree;no;no;yes;cellular;may;fri;131;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+40;blue-collar;married;basic.6y;unknown;no;no;cellular;may;fri;171;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+35;services;married;high.school;no;yes;no;cellular;may;fri;478;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+36;admin.;married;university.degree;no;yes;no;cellular;may;fri;70;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+30;services;married;high.school;no;yes;no;cellular;may;fri;424;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+32;blue-collar;single;basic.9y;no;no;no;cellular;may;fri;120;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+28;blue-collar;married;basic.9y;no;yes;no;cellular;may;fri;326;1;11;1;success;-1.8;92.893;-46.2;1.313;5099.1;no
+40;blue-collar;married;basic.6y;unknown;yes;no;cellular;may;fri;1080;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;yes
+34;admin.;single;university.degree;no;no;yes;cellular;may;fri;398;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+28;blue-collar;married;basic.9y;no;no;yes;cellular;may;fri;157;4;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+24;technician;single;basic.9y;no;no;no;cellular;may;fri;87;3;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+43;services;divorced;professional.course;no;no;no;cellular;may;fri;196;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+31;blue-collar;married;basic.6y;no;yes;no;cellular;may;fri;164;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+28;blue-collar;single;basic.9y;no;no;no;cellular;may;fri;137;3;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+34;blue-collar;single;high.school;no;yes;no;cellular;may;fri;56;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+37;blue-collar;married;basic.4y;no;no;yes;cellular;may;fri;269;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+38;admin.;married;high.school;no;yes;yes;cellular;may;fri;159;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+27;admin.;single;high.school;no;yes;no;cellular;may;fri;340;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+48;blue-collar;married;basic.4y;no;no;no;cellular;may;fri;94;3;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+42;admin.;divorced;university.degree;no;no;no;cellular;may;fri;308;3;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;yes
+35;admin.;married;university.degree;no;yes;no;cellular;may;fri;763;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;yes
+41;blue-collar;single;basic.6y;unknown;yes;no;cellular;may;fri;140;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+38;admin.;single;university.degree;no;yes;no;cellular;may;fri;132;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+41;blue-collar;single;basic.6y;unknown;yes;no;cellular;may;fri;261;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+32;technician;married;high.school;no;no;no;cellular;may;fri;56;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+43;blue-collar;married;basic.9y;no;yes;no;cellular;may;fri;66;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+28;technician;married;high.school;unknown;yes;no;cellular;may;fri;197;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+43;blue-collar;married;basic.9y;no;no;no;cellular;may;fri;254;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+43;blue-collar;married;basic.9y;no;no;no;cellular;may;fri;157;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+29;management;single;university.degree;no;yes;no;cellular;may;fri;468;2;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+34;blue-collar;married;basic.9y;no;no;no;cellular;may;fri;451;3;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+35;admin.;single;university.degree;no;no;no;cellular;may;fri;55;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+55;blue-collar;married;unknown;unknown;no;no;cellular;may;fri;9;2;999;2;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+26;blue-collar;single;basic.6y;no;yes;yes;cellular;may;fri;191;2;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+49;blue-collar;married;basic.4y;no;yes;no;cellular;may;fri;87;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+35;services;married;high.school;no;no;no;cellular;may;fri;301;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+35;admin.;single;university.degree;no;yes;no;cellular;may;fri;662;1;12;1;success;-1.8;92.893;-46.2;1.313;5099.1;yes
+39;blue-collar;married;high.school;no;yes;no;telephone;may;fri;101;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+54;technician;married;university.degree;unknown;no;no;cellular;may;fri;56;5;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+39;blue-collar;married;high.school;no;no;yes;cellular;may;fri;248;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+39;blue-collar;married;high.school;no;yes;yes;cellular;may;fri;273;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+37;blue-collar;married;basic.6y;no;no;no;cellular;may;fri;78;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+32;blue-collar;married;basic.9y;no;no;no;cellular;may;fri;18;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+56;blue-collar;married;basic.9y;unknown;yes;no;cellular;may;fri;705;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+37;self-employed;single;basic.9y;no;yes;no;cellular;may;fri;82;2;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+52;services;married;high.school;no;yes;no;cellular;may;fri;207;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+24;services;single;high.school;no;yes;no;cellular;may;fri;53;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+35;blue-collar;single;basic.9y;no;no;no;cellular;may;fri;568;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;yes
+37;admin.;married;university.degree;no;yes;yes;cellular;may;fri;364;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+43;blue-collar;married;basic.6y;no;no;yes;cellular;may;fri;67;3;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+34;admin.;married;high.school;unknown;no;no;cellular;may;fri;131;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+38;technician;married;university.degree;no;no;no;cellular;may;fri;186;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+41;blue-collar;married;basic.9y;no;no;no;cellular;may;fri;212;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+42;blue-collar;married;basic.4y;unknown;no;no;cellular;may;fri;306;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+41;blue-collar;married;basic.9y;no;yes;yes;cellular;may;fri;198;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+57;management;married;high.school;no;yes;no;cellular;may;fri;129;2;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+44;services;single;high.school;no;yes;no;cellular;may;fri;161;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+28;admin.;married;high.school;no;yes;no;cellular;may;fri;579;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+41;blue-collar;married;basic.9y;no;no;no;cellular;may;fri;491;1;999;2;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+33;admin.;married;high.school;no;yes;no;cellular;may;fri;176;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+27;admin.;single;high.school;no;yes;no;cellular;may;fri;1448;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;yes
+33;blue-collar;married;basic.9y;no;yes;yes;cellular;may;fri;99;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+44;management;married;university.degree;no;yes;no;cellular;may;fri;69;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+33;blue-collar;single;basic.9y;no;yes;no;cellular;may;fri;392;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+37;blue-collar;married;high.school;no;yes;no;cellular;may;fri;142;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+33;blue-collar;married;basic.9y;no;no;no;cellular;may;fri;428;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+32;admin.;married;university.degree;no;no;no;cellular;may;fri;209;2;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+33;blue-collar;married;basic.9y;no;yes;no;cellular;may;fri;656;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;yes
+33;blue-collar;married;basic.9y;no;no;no;cellular;may;fri;728;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;yes
+38;blue-collar;single;high.school;no;yes;no;cellular;may;fri;81;3;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+33;blue-collar;married;basic.9y;no;yes;no;cellular;may;fri;720;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;yes
+37;blue-collar;married;high.school;no;no;no;cellular;may;fri;171;1;999;2;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+34;admin.;single;high.school;no;yes;no;cellular;may;fri;291;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+33;blue-collar;single;high.school;no;yes;no;cellular;may;fri;435;2;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+45;technician;single;university.degree;no;no;no;cellular;may;fri;272;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+52;services;married;high.school;no;yes;no;cellular;may;fri;121;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+42;admin.;divorced;university.degree;no;yes;no;cellular;may;fri;243;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+29;blue-collar;married;basic.9y;no;yes;no;cellular;may;fri;164;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+45;technician;married;basic.9y;no;no;no;cellular;may;fri;144;3;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+33;blue-collar;married;basic.9y;no;no;no;cellular;may;fri;339;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+52;retired;divorced;basic.6y;no;no;no;cellular;may;fri;154;2;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+32;blue-collar;married;high.school;no;no;no;cellular;may;fri;319;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+38;blue-collar;married;professional.course;no;no;no;cellular;may;fri;218;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+34;services;married;high.school;no;no;no;telephone;may;fri;125;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+46;technician;married;professional.course;no;no;no;cellular;may;fri;124;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+22;student;single;high.school;no;no;no;cellular;may;fri;87;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+30;services;single;high.school;unknown;no;no;cellular;may;fri;87;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+40;services;married;high.school;no;yes;no;cellular;may;fri;151;4;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+58;admin.;married;high.school;no;yes;no;cellular;may;fri;67;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+33;admin.;married;university.degree;no;no;no;cellular;may;fri;89;6;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+34;blue-collar;married;university.degree;no;yes;yes;cellular;may;fri;183;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+35;entrepreneur;married;university.degree;no;no;no;cellular;may;fri;270;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+47;services;married;high.school;no;no;yes;cellular;may;fri;196;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+34;admin.;married;university.degree;no;no;no;cellular;may;fri;247;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+29;blue-collar;single;basic.4y;unknown;yes;no;cellular;may;fri;206;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+30;self-employed;married;basic.9y;unknown;no;no;cellular;may;fri;73;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+40;services;married;basic.4y;unknown;yes;no;cellular;may;fri;85;1;999;2;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+29;blue-collar;single;basic.4y;unknown;yes;no;cellular;may;fri;325;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+39;blue-collar;married;basic.4y;no;no;no;cellular;may;fri;180;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+34;self-employed;single;professional.course;no;yes;no;cellular;may;fri;76;2;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+37;services;single;professional.course;no;yes;no;cellular;may;fri;279;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+26;student;single;basic.9y;unknown;yes;no;cellular;may;fri;682;2;3;2;success;-1.8;92.893;-46.2;1.313;5099.1;no
+37;services;single;professional.course;no;no;no;cellular;may;fri;462;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+25;admin.;single;high.school;no;yes;no;cellular;may;fri;238;6;999;2;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+34;technician;married;professional.course;no;yes;no;cellular;may;fri;81;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+21;blue-collar;married;basic.9y;no;no;no;cellular;may;fri;279;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+36;blue-collar;married;basic.9y;no;unknown;unknown;cellular;may;fri;68;5;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+51;management;married;university.degree;no;no;no;cellular;may;fri;127;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+31;management;married;university.degree;no;no;no;cellular;may;fri;238;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+32;technician;married;professional.course;no;no;no;cellular;may;fri;158;2;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+41;services;single;high.school;no;no;no;cellular;may;fri;1642;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+39;blue-collar;married;basic.9y;unknown;no;no;cellular;may;fri;69;4;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+40;blue-collar;married;basic.6y;unknown;yes;no;cellular;may;fri;356;4;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+35;blue-collar;married;basic.9y;no;no;no;cellular;may;fri;25;6;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+47;blue-collar;married;basic.9y;no;yes;no;cellular;may;fri;146;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+33;blue-collar;married;basic.9y;no;yes;no;cellular;may;fri;264;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+35;management;single;high.school;no;yes;no;cellular;may;fri;345;2;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+33;blue-collar;single;basic.6y;no;yes;no;cellular;may;fri;474;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+54;admin.;divorced;professional.course;no;yes;no;telephone;may;fri;75;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+41;services;single;high.school;unknown;yes;no;cellular;may;fri;77;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+33;admin.;married;high.school;no;no;yes;cellular;may;fri;254;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+35;blue-collar;married;basic.9y;no;yes;no;cellular;may;fri;219;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+34;management;single;university.degree;no;yes;no;cellular;may;fri;175;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+34;management;single;university.degree;no;no;no;cellular;may;fri;261;2;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+34;admin.;married;university.degree;no;yes;no;cellular;may;fri;456;2;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+37;services;single;professional.course;no;yes;no;cellular;may;fri;241;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+32;blue-collar;married;basic.9y;no;yes;no;cellular;may;fri;297;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+51;admin.;married;high.school;unknown;no;no;cellular;may;fri;117;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+41;blue-collar;single;basic.6y;unknown;no;no;cellular;may;fri;103;2;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+55;management;married;basic.4y;no;no;no;cellular;may;fri;95;4;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+34;admin.;married;university.degree;no;yes;no;cellular;may;fri;198;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+40;blue-collar;married;basic.6y;unknown;no;no;cellular;may;fri;182;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+35;technician;married;professional.course;no;yes;no;cellular;may;fri;226;5;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+55;entrepreneur;divorced;university.degree;unknown;no;no;cellular;may;fri;133;8;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+31;admin.;married;high.school;no;no;no;cellular;may;fri;123;3;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+41;blue-collar;single;basic.6y;unknown;no;no;cellular;may;fri;211;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+35;services;single;high.school;no;yes;no;telephone;may;fri;473;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+29;blue-collar;single;basic.4y;no;yes;no;cellular;may;fri;26;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+32;blue-collar;married;basic.9y;unknown;yes;no;cellular;may;fri;137;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+29;blue-collar;single;basic.9y;unknown;no;no;cellular;may;fri;85;2;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+25;blue-collar;single;basic.9y;no;yes;yes;cellular;may;fri;238;6;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+32;management;married;university.degree;no;no;no;cellular;may;fri;316;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+41;services;single;high.school;no;yes;no;cellular;may;fri;408;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+34;blue-collar;married;basic.9y;no;no;no;cellular;may;fri;144;4;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+32;technician;married;high.school;no;no;no;cellular;may;fri;428;3;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+30;services;single;high.school;unknown;no;no;cellular;may;fri;422;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+32;blue-collar;married;basic.4y;no;yes;no;telephone;may;fri;44;4;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+31;blue-collar;married;basic.6y;no;no;no;cellular;may;fri;294;3;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+41;admin.;married;university.degree;unknown;yes;no;telephone;may;fri;288;3;999;2;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+48;admin.;married;basic.9y;no;no;no;cellular;may;fri;311;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+39;admin.;single;university.degree;no;yes;no;cellular;may;fri;273;4;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+32;blue-collar;single;basic.6y;no;yes;no;cellular;may;fri;91;4;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+43;blue-collar;married;basic.6y;no;no;no;cellular;may;fri;36;5;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+38;blue-collar;married;professional.course;no;yes;no;telephone;may;fri;37;3;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+35;technician;married;high.school;unknown;yes;no;cellular;may;fri;104;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+40;admin.;married;high.school;unknown;no;yes;cellular;may;fri;326;4;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+35;management;married;professional.course;no;no;yes;cellular;may;fri;376;3;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+34;blue-collar;married;university.degree;no;yes;no;cellular;may;fri;44;2;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+37;admin.;single;university.degree;no;no;no;cellular;may;fri;104;2;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+37;blue-collar;married;high.school;unknown;no;no;cellular;may;fri;323;2;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+42;blue-collar;married;basic.4y;no;no;no;cellular;may;fri;309;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+49;blue-collar;single;unknown;unknown;yes;no;cellular;may;fri;347;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+38;admin.;married;high.school;no;yes;no;cellular;may;fri;247;4;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+38;admin.;married;high.school;no;no;no;cellular;may;fri;217;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+34;technician;married;university.degree;no;yes;no;cellular;may;fri;47;2;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+36;blue-collar;married;basic.9y;no;yes;no;cellular;may;fri;207;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+31;services;married;high.school;no;no;no;cellular;may;fri;130;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+38;blue-collar;single;high.school;no;no;no;cellular;may;fri;455;2;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+35;management;married;professional.course;no;unknown;unknown;cellular;may;fri;154;3;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+29;blue-collar;married;basic.9y;no;no;no;cellular;may;fri;202;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+33;admin.;married;basic.9y;no;yes;no;telephone;may;fri;147;2;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+27;services;single;high.school;no;yes;no;cellular;may;fri;86;4;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+46;admin.;married;high.school;no;no;no;cellular;may;fri;318;2;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+37;admin.;married;high.school;unknown;yes;no;cellular;may;fri;503;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+42;blue-collar;married;professional.course;no;yes;no;cellular;may;fri;262;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+34;technician;married;professional.course;no;no;no;cellular;may;fri;83;2;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+32;blue-collar;married;basic.9y;unknown;yes;no;cellular;may;fri;177;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+39;services;married;high.school;unknown;yes;yes;telephone;may;fri;186;4;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+36;admin.;married;university.degree;no;yes;no;cellular;may;fri;334;3;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+29;services;married;basic.9y;no;no;yes;cellular;may;fri;274;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+30;admin.;single;high.school;no;no;yes;cellular;may;fri;154;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+37;admin.;married;university.degree;no;yes;no;cellular;may;fri;286;2;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+31;self-employed;single;high.school;no;yes;no;cellular;may;fri;187;2;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+39;blue-collar;married;basic.9y;no;no;no;telephone;may;fri;557;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+30;services;divorced;high.school;no;unknown;unknown;cellular;may;fri;186;4;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+34;admin.;single;university.degree;no;no;no;cellular;may;fri;134;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+28;services;married;high.school;no;yes;no;cellular;may;fri;237;4;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+37;blue-collar;married;high.school;unknown;no;yes;telephone;may;fri;367;5;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+35;services;married;high.school;no;yes;no;cellular;may;fri;104;4;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+37;blue-collar;married;basic.9y;no;no;no;cellular;may;fri;612;3;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+33;technician;married;professional.course;no;no;yes;cellular;may;fri;40;6;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+47;services;married;high.school;no;no;yes;cellular;may;fri;506;2;999;2;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+36;blue-collar;married;basic.9y;no;no;no;telephone;may;fri;191;2;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+34;admin.;married;high.school;unknown;no;no;cellular;may;fri;267;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+46;services;married;basic.4y;no;yes;no;cellular;may;fri;187;3;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+33;blue-collar;married;high.school;unknown;no;yes;cellular;may;fri;296;5;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+35;admin.;single;university.degree;no;no;yes;cellular;may;fri;174;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+27;technician;married;professional.course;no;no;yes;cellular;may;fri;224;2;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+49;blue-collar;married;basic.9y;no;no;no;cellular;may;fri;235;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+29;blue-collar;married;basic.9y;no;no;no;cellular;may;fri;128;3;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+30;services;single;high.school;unknown;yes;no;cellular;may;fri;55;2;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+43;blue-collar;married;basic.6y;no;yes;no;cellular;may;fri;156;3;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+58;management;single;university.degree;no;yes;no;cellular;may;fri;685;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;yes
+45;blue-collar;single;professional.course;no;yes;no;cellular;may;fri;1954;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+44;admin.;divorced;high.school;no;yes;yes;cellular;may;fri;211;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+39;blue-collar;married;basic.9y;unknown;no;no;cellular;may;fri;143;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+28;admin.;married;high.school;no;no;no;cellular;may;fri;129;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+42;management;divorced;high.school;no;no;no;cellular;may;fri;13;2;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+38;admin.;married;high.school;no;unknown;unknown;cellular;may;fri;295;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+52;services;married;high.school;no;no;yes;cellular;may;fri;38;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+37;blue-collar;married;basic.4y;no;yes;yes;cellular;may;fri;456;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+54;technician;married;university.degree;unknown;no;no;cellular;may;fri;217;7;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+32;technician;single;university.degree;no;no;no;cellular;may;fri;216;2;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+35;entrepreneur;married;university.degree;no;yes;yes;cellular;may;fri;152;2;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+33;admin.;single;university.degree;no;yes;yes;cellular;may;fri;1024;3;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;yes
+57;services;divorced;unknown;no;no;no;cellular;may;fri;405;3;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+43;blue-collar;married;basic.4y;unknown;no;no;cellular;may;fri;518;3;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+32;admin.;married;high.school;no;yes;no;cellular;may;fri;438;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+30;admin.;married;university.degree;no;yes;no;cellular;may;fri;129;2;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+25;admin.;single;high.school;no;no;no;cellular;may;fri;682;3;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;yes
+44;blue-collar;married;basic.4y;unknown;no;no;cellular;may;fri;361;3;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+45;technician;single;university.degree;no;no;no;cellular;may;fri;311;3;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+34;blue-collar;married;basic.4y;unknown;yes;no;cellular;may;fri;1094;3;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+35;blue-collar;married;basic.6y;unknown;yes;no;cellular;may;fri;746;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+35;admin.;married;university.degree;no;yes;no;cellular;may;fri;348;4;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+36;entrepreneur;divorced;basic.6y;no;yes;no;cellular;may;fri;53;4;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+34;management;married;university.degree;no;yes;no;telephone;may;fri;283;3;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+32;services;single;high.school;no;yes;no;cellular;may;fri;583;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+54;technician;married;university.degree;unknown;yes;no;telephone;may;fri;265;4;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+36;admin.;single;university.degree;no;no;no;cellular;may;fri;146;3;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+42;blue-collar;married;basic.9y;no;yes;no;cellular;may;fri;114;7;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+30;blue-collar;married;basic.9y;no;yes;no;cellular;may;fri;487;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+28;services;married;high.school;no;no;no;cellular;may;fri;1049;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+50;blue-collar;married;basic.4y;no;yes;no;telephone;may;fri;213;4;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+37;blue-collar;married;high.school;no;yes;no;cellular;may;fri;466;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+35;admin.;married;university.degree;no;yes;no;cellular;may;fri;348;4;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+44;services;married;high.school;no;no;no;cellular;may;fri;263;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+59;admin.;married;university.degree;no;yes;no;cellular;may;fri;324;2;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+32;blue-collar;married;basic.9y;unknown;yes;no;cellular;may;fri;83;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+36;admin.;married;university.degree;no;no;yes;telephone;may;fri;267;3;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+29;blue-collar;single;basic.4y;unknown;yes;no;cellular;may;fri;340;2;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+30;admin.;married;university.degree;no;no;no;cellular;may;fri;418;2;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+29;admin.;single;high.school;no;no;no;cellular;may;fri;553;2;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+32;admin.;married;university.degree;no;no;no;telephone;may;fri;546;3;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+30;technician;married;professional.course;no;yes;no;cellular;may;fri;156;4;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+43;blue-collar;married;basic.9y;unknown;yes;no;cellular;may;fri;288;3;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+49;technician;married;professional.course;no;yes;no;cellular;may;fri;364;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+34;blue-collar;married;basic.9y;unknown;yes;yes;telephone;may;fri;219;4;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+37;unemployed;married;basic.9y;no;yes;yes;cellular;may;fri;129;4;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+35;admin.;single;high.school;no;no;no;cellular;may;fri;282;5;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+36;services;married;high.school;unknown;no;no;cellular;may;fri;89;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+34;admin.;married;basic.9y;no;yes;no;cellular;may;fri;152;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+29;services;divorced;high.school;no;yes;no;cellular;may;fri;323;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+36;services;married;high.school;unknown;no;no;cellular;may;fri;311;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+36;services;married;high.school;unknown;yes;yes;cellular;may;fri;108;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+29;services;divorced;high.school;no;yes;no;cellular;may;fri;548;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+44;blue-collar;married;basic.9y;no;no;no;cellular;may;fri;199;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+34;blue-collar;married;basic.9y;no;no;no;cellular;may;fri;63;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+47;blue-collar;married;basic.4y;unknown;yes;no;cellular;may;fri;173;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+47;blue-collar;married;basic.4y;unknown;yes;no;cellular;may;fri;177;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+44;blue-collar;married;basic.9y;no;yes;no;cellular;may;fri;383;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+47;blue-collar;married;high.school;no;yes;yes;telephone;may;fri;72;6;6;1;success;-1.8;92.893;-46.2;1.313;5099.1;no
+34;blue-collar;married;basic.9y;no;yes;no;telephone;may;fri;26;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+38;blue-collar;married;professional.course;no;yes;no;telephone;may;fri;713;3;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+33;blue-collar;married;professional.course;no;yes;no;telephone;may;fri;15;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+34;blue-collar;married;basic.9y;no;no;no;cellular;may;fri;423;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;yes
+52;admin.;married;high.school;no;yes;yes;cellular;may;fri;81;2;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+32;blue-collar;single;basic.6y;no;yes;no;cellular;may;fri;211;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+34;blue-collar;married;basic.9y;no;no;no;cellular;may;fri;322;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+28;unemployed;married;basic.9y;no;yes;no;cellular;may;fri;349;1;999;0;nonexistent;-1.8;92.893;-46.2;1.313;5099.1;no
+34;admin.;married;basic.9y;no;unknown;unknown;cellular;may;fri;248;1;999;1;failure;-1.8;92.893;-46.2;1.313;5099.1;no
+34;technician;married;basic.9y;no;yes;yes;cellular;may;mon;142;4;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+34;self-employed;single;university.degree;no;yes;no;cellular;may;mon;102;3;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+53;self-employed;divorced;basic.4y;no;no;no;cellular;may;mon;82;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+26;blue-collar;married;basic.6y;no;no;no;cellular;may;mon;84;7;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+41;housemaid;single;university.degree;no;yes;no;telephone;may;mon;9;5;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+43;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;mon;20;5;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+29;entrepreneur;married;basic.4y;unknown;no;no;cellular;may;mon;332;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+44;technician;married;professional.course;no;no;no;cellular;may;mon;13;6;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+34;unemployed;single;high.school;no;yes;no;telephone;may;mon;21;5;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+29;blue-collar;single;high.school;no;yes;no;cellular;may;mon;62;3;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+34;technician;single;professional.course;no;yes;no;cellular;may;mon;240;6;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+54;management;married;high.school;unknown;no;no;cellular;may;mon;229;5;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+30;management;married;university.degree;no;yes;no;cellular;may;mon;61;3;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+38;entrepreneur;single;university.degree;no;yes;no;telephone;may;mon;30;4;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+50;blue-collar;married;unknown;unknown;yes;yes;telephone;may;mon;10;8;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+27;admin.;married;high.school;no;no;no;cellular;may;mon;88;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+29;services;single;high.school;no;yes;no;cellular;may;mon;14;8;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+56;services;divorced;high.school;unknown;yes;no;cellular;may;mon;125;2;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+39;admin.;married;university.degree;no;yes;no;cellular;may;mon;156;7;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+44;services;married;basic.9y;no;yes;no;cellular;may;mon;50;5;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+31;technician;married;university.degree;no;yes;no;cellular;may;mon;15;8;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+32;blue-collar;single;high.school;no;no;no;cellular;may;mon;80;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+27;services;married;basic.9y;no;yes;yes;cellular;may;mon;304;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+43;services;divorced;professional.course;no;no;no;cellular;may;mon;108;6;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+45;blue-collar;married;basic.6y;no;yes;no;cellular;may;mon;295;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+30;blue-collar;married;basic.9y;unknown;no;no;cellular;may;mon;259;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+54;management;married;basic.6y;no;yes;no;cellular;may;mon;54;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+34;technician;single;professional.course;no;no;no;cellular;may;mon;573;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+39;blue-collar;married;basic.4y;unknown;yes;no;cellular;may;mon;652;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+31;admin.;married;university.degree;no;yes;no;cellular;may;mon;443;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+44;admin.;married;basic.9y;no;yes;no;cellular;may;mon;55;1;999;2;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+34;blue-collar;single;basic.6y;unknown;yes;no;cellular;may;mon;67;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+31;services;single;high.school;no;yes;no;cellular;may;mon;206;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+25;blue-collar;single;high.school;unknown;yes;no;cellular;may;mon;23;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+35;blue-collar;married;basic.6y;no;no;no;cellular;may;mon;249;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+43;blue-collar;married;basic.4y;unknown;unknown;unknown;cellular;may;mon;485;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+40;technician;married;professional.course;no;yes;no;cellular;may;mon;94;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+29;admin.;single;high.school;no;yes;no;telephone;may;mon;26;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+44;blue-collar;married;basic.9y;no;yes;no;cellular;may;mon;309;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+33;blue-collar;married;basic.9y;no;yes;no;telephone;may;mon;194;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+33;admin.;single;university.degree;no;no;no;cellular;may;mon;657;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;yes
+33;blue-collar;married;basic.9y;no;yes;no;cellular;may;mon;313;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+34;services;married;high.school;no;yes;no;cellular;may;mon;577;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+33;blue-collar;married;basic.9y;no;yes;no;cellular;may;mon;457;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+37;admin.;married;high.school;unknown;no;no;cellular;may;mon;547;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+35;management;single;university.degree;no;unknown;unknown;cellular;may;mon;246;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+27;blue-collar;married;basic.9y;no;yes;no;cellular;may;mon;210;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+30;admin.;married;high.school;no;yes;no;cellular;may;mon;27;7;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+53;blue-collar;single;basic.4y;unknown;yes;no;cellular;may;mon;267;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+35;technician;married;university.degree;no;yes;no;cellular;may;mon;502;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+42;blue-collar;married;basic.4y;no;no;no;cellular;may;mon;139;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+26;admin.;single;university.degree;no;yes;no;cellular;may;mon;57;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+42;blue-collar;married;basic.4y;no;no;no;cellular;may;mon;212;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+24;services;single;high.school;no;yes;yes;cellular;may;mon;590;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+42;services;single;high.school;no;yes;no;cellular;may;mon;7;5;999;2;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+29;admin.;divorced;basic.9y;no;no;no;cellular;may;mon;81;3;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+34;admin.;married;high.school;no;yes;yes;cellular;may;mon;528;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+39;admin.;married;university.degree;no;no;no;cellular;may;mon;195;5;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+29;admin.;married;high.school;no;yes;no;cellular;may;mon;106;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+26;admin.;single;university.degree;no;yes;yes;cellular;may;mon;9;7;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+27;admin.;single;high.school;no;yes;no;cellular;may;mon;156;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+27;admin.;single;high.school;no;yes;no;cellular;may;mon;94;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+34;admin.;married;university.degree;no;yes;no;cellular;may;mon;351;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+26;student;single;high.school;no;yes;no;cellular;may;mon;73;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+27;admin.;single;high.school;no;yes;no;cellular;may;mon;313;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+32;self-employed;single;university.degree;no;yes;no;cellular;may;mon;66;3;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+26;admin.;single;university.degree;no;no;no;cellular;may;mon;143;4;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+26;student;single;high.school;no;yes;no;cellular;may;mon;255;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+33;self-employed;single;university.degree;no;no;no;cellular;may;mon;164;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+30;blue-collar;married;basic.9y;no;yes;no;cellular;may;mon;55;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+32;blue-collar;married;basic.9y;no;yes;no;cellular;may;mon;197;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+37;management;single;basic.9y;no;yes;no;cellular;may;mon;189;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+37;management;single;basic.9y;no;no;no;cellular;may;mon;261;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+30;blue-collar;married;basic.9y;no;yes;no;cellular;may;mon;165;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+40;blue-collar;married;basic.4y;no;no;no;cellular;may;mon;84;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+27;entrepreneur;married;university.degree;no;no;yes;cellular;may;mon;117;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+30;services;single;high.school;no;yes;no;cellular;may;mon;288;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+23;blue-collar;single;basic.9y;no;yes;no;cellular;may;mon;58;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+25;admin.;married;university.degree;no;no;no;cellular;may;mon;496;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+48;technician;married;basic.9y;no;yes;no;cellular;may;mon;87;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+37;services;married;high.school;no;no;no;telephone;may;mon;108;2;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+23;blue-collar;single;basic.9y;no;no;no;cellular;may;mon;285;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+37;entrepreneur;married;basic.9y;no;no;no;cellular;may;mon;69;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+32;blue-collar;married;basic.4y;no;no;no;cellular;may;mon;207;7;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+49;admin.;divorced;high.school;no;no;no;cellular;may;mon;128;3;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+37;entrepreneur;married;basic.9y;no;no;no;cellular;may;mon;277;1;9;1;success;-1.8;92.893;-46.2;1.299;5099.1;no
+30;blue-collar;married;basic.9y;no;yes;no;cellular;may;mon;1038;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;yes
+23;blue-collar;single;basic.9y;no;yes;no;cellular;may;mon;657;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;yes
+35;blue-collar;married;unknown;no;yes;no;cellular;may;mon;40;8;10;1;success;-1.8;92.893;-46.2;1.299;5099.1;no
+37;entrepreneur;married;basic.9y;no;yes;no;cellular;may;mon;346;1;999;2;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+31;technician;single;university.degree;no;yes;no;cellular;may;mon;94;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+53;self-employed;married;basic.4y;unknown;yes;no;cellular;may;mon;62;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+36;blue-collar;married;basic.9y;no;yes;no;telephone;may;mon;65;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+32;admin.;married;high.school;no;yes;no;cellular;may;mon;689;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;yes
+47;blue-collar;married;basic.4y;unknown;yes;yes;cellular;may;mon;341;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+41;blue-collar;married;basic.6y;unknown;yes;no;cellular;may;mon;12;8;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+33;services;single;high.school;no;yes;no;telephone;may;mon;32;5;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+38;admin.;divorced;high.school;no;no;no;cellular;may;mon;344;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+36;blue-collar;married;basic.6y;no;yes;no;cellular;may;mon;195;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+38;admin.;divorced;high.school;no;yes;no;cellular;may;mon;469;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+44;blue-collar;married;basic.9y;no;yes;no;cellular;may;mon;58;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+32;admin.;married;high.school;no;yes;no;cellular;may;mon;155;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+31;technician;single;university.degree;no;no;no;cellular;may;mon;629;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;yes
+52;services;married;high.school;unknown;yes;no;telephone;may;mon;243;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+37;admin.;married;high.school;no;no;no;telephone;may;mon;42;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+31;admin.;married;high.school;no;yes;yes;cellular;may;mon;12;5;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+36;blue-collar;married;basic.6y;no;no;no;cellular;may;mon;460;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+32;technician;single;professional.course;no;yes;no;cellular;may;mon;183;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+32;technician;single;professional.course;no;yes;no;cellular;may;mon;242;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+36;admin.;married;university.degree;no;no;no;cellular;may;mon;112;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+36;blue-collar;married;basic.9y;no;no;no;cellular;may;mon;8;6;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+45;technician;unknown;basic.6y;no;no;no;cellular;may;mon;197;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+26;student;single;basic.4y;no;no;yes;cellular;may;mon;802;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;yes
+31;technician;single;university.degree;no;yes;no;cellular;may;mon;1514;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;yes
+40;blue-collar;married;basic.4y;no;no;no;cellular;may;mon;15;7;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+52;blue-collar;married;basic.9y;no;no;no;cellular;may;mon;182;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+34;technician;married;professional.course;no;yes;no;cellular;may;mon;934;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;yes
+36;blue-collar;divorced;basic.9y;no;yes;no;cellular;may;mon;422;1;12;1;success;-1.8;92.893;-46.2;1.299;5099.1;no
+51;blue-collar;married;basic.4y;unknown;no;no;cellular;may;mon;214;2;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+26;blue-collar;married;basic.6y;no;yes;no;cellular;may;mon;152;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+34;blue-collar;married;basic.9y;no;no;no;cellular;may;mon;248;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+27;self-employed;married;university.degree;no;yes;no;cellular;may;mon;141;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+30;admin.;single;university.degree;no;yes;no;cellular;may;mon;67;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+32;housemaid;single;basic.9y;no;yes;no;cellular;may;mon;279;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+30;admin.;single;university.degree;no;yes;no;cellular;may;mon;188;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+54;management;married;high.school;unknown;yes;no;cellular;may;mon;254;2;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+38;blue-collar;married;basic.6y;no;yes;no;cellular;may;mon;135;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+51;entrepreneur;divorced;university.degree;no;yes;no;telephone;may;mon;231;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+51;entrepreneur;divorced;university.degree;no;yes;no;cellular;may;mon;212;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+51;entrepreneur;divorced;university.degree;no;no;no;cellular;may;mon;227;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+39;blue-collar;single;basic.9y;no;yes;no;cellular;may;mon;85;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+39;blue-collar;single;basic.9y;no;yes;yes;cellular;may;mon;75;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+35;blue-collar;married;basic.4y;no;yes;no;cellular;may;mon;220;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+27;admin.;single;university.degree;no;yes;yes;cellular;may;mon;80;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+53;admin.;married;university.degree;no;yes;no;cellular;may;mon;202;3;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+33;technician;single;university.degree;no;yes;no;cellular;may;mon;340;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+46;blue-collar;married;basic.4y;no;yes;no;cellular;may;mon;549;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+31;admin.;divorced;high.school;no;yes;no;cellular;may;mon;472;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+27;admin.;single;university.degree;no;no;no;cellular;may;mon;409;1;1;1;success;-1.8;92.893;-46.2;1.299;5099.1;no
+31;admin.;divorced;high.school;no;no;no;cellular;may;mon;479;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+48;blue-collar;married;basic.9y;unknown;no;no;cellular;may;mon;236;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+30;technician;single;professional.course;no;yes;no;cellular;may;mon;308;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+30;blue-collar;married;basic.6y;unknown;yes;no;cellular;may;mon;91;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+35;technician;married;professional.course;no;yes;no;cellular;may;mon;90;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+42;blue-collar;married;basic.6y;unknown;no;no;cellular;may;mon;15;6;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+52;blue-collar;married;basic.9y;unknown;yes;no;cellular;may;mon;186;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+28;blue-collar;married;basic.6y;no;no;no;cellular;may;mon;200;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+32;services;married;high.school;no;no;no;cellular;may;mon;161;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+35;technician;married;university.degree;no;yes;no;cellular;may;mon;262;3;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+39;services;married;high.school;no;yes;no;cellular;may;mon;49;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+31;services;single;high.school;no;no;yes;cellular;may;mon;369;2;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+27;admin.;single;university.degree;no;yes;no;cellular;may;mon;471;2;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+39;services;married;high.school;no;yes;no;cellular;may;mon;198;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+42;management;married;university.degree;no;yes;no;cellular;may;mon;568;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+39;services;married;high.school;no;no;no;cellular;may;mon;410;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+30;blue-collar;married;basic.9y;no;no;yes;cellular;may;mon;116;6;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+55;blue-collar;divorced;basic.4y;unknown;yes;yes;cellular;may;mon;163;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+47;blue-collar;married;unknown;no;yes;no;cellular;may;mon;100;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+51;entrepreneur;married;professional.course;unknown;no;no;cellular;may;mon;59;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+41;technician;single;professional.course;no;no;no;cellular;may;mon;686;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+32;technician;single;high.school;no;no;no;telephone;may;mon;28;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+51;entrepreneur;married;professional.course;unknown;no;no;cellular;may;mon;256;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+51;entrepreneur;married;professional.course;unknown;no;no;cellular;may;mon;295;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+46;management;single;university.degree;no;no;yes;cellular;may;mon;114;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+57;technician;married;university.degree;no;no;no;cellular;may;mon;200;6;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+31;technician;married;university.degree;no;no;no;cellular;may;mon;733;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;yes
+29;technician;single;basic.9y;no;yes;no;cellular;may;mon;170;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+29;technician;single;basic.9y;no;yes;no;cellular;may;mon;214;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+50;blue-collar;married;basic.4y;no;no;no;cellular;may;mon;474;1;9;1;success;-1.8;92.893;-46.2;1.299;5099.1;yes
+47;blue-collar;married;basic.4y;unknown;yes;no;cellular;may;mon;101;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+38;blue-collar;married;high.school;unknown;yes;no;cellular;may;mon;306;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+47;blue-collar;married;basic.4y;unknown;yes;no;cellular;may;mon;115;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+31;blue-collar;single;basic.9y;no;yes;no;cellular;may;mon;106;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+30;blue-collar;married;basic.9y;no;yes;yes;cellular;may;mon;231;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+34;admin.;single;university.degree;no;no;yes;cellular;may;mon;14;5;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+56;management;married;professional.course;no;yes;no;cellular;may;mon;240;2;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+27;technician;single;basic.9y;no;no;yes;cellular;may;mon;701;1;12;1;success;-1.8;92.893;-46.2;1.299;5099.1;yes
+46;technician;married;university.degree;no;yes;no;cellular;may;mon;231;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+29;blue-collar;married;basic.9y;no;yes;no;cellular;may;mon;666;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;yes
+31;admin.;married;university.degree;no;yes;no;cellular;may;mon;712;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+34;blue-collar;married;basic.9y;no;no;no;cellular;may;mon;239;5;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+47;admin.;single;high.school;no;no;no;cellular;may;mon;219;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+36;services;married;basic.6y;unknown;yes;no;cellular;may;mon;102;6;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+30;services;single;high.school;no;no;no;cellular;may;mon;75;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+33;services;single;high.school;no;unknown;unknown;cellular;may;mon;216;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+45;blue-collar;divorced;basic.4y;no;yes;no;cellular;may;mon;190;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+39;blue-collar;married;basic.4y;no;no;no;cellular;may;mon;181;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+30;services;single;high.school;no;yes;yes;cellular;may;mon;178;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+34;blue-collar;single;basic.6y;no;no;no;cellular;may;mon;204;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+30;services;single;high.school;no;yes;yes;cellular;may;mon;405;1;999;2;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+26;services;single;high.school;no;yes;no;cellular;may;mon;274;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+48;admin.;divorced;basic.4y;no;yes;no;cellular;may;mon;227;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+35;blue-collar;single;basic.4y;unknown;yes;yes;cellular;may;mon;46;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+26;services;single;high.school;no;yes;no;cellular;may;mon;360;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+43;blue-collar;married;basic.9y;unknown;no;no;cellular;may;mon;7;6;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+36;admin.;single;professional.course;no;yes;no;cellular;may;mon;74;3;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+27;admin.;single;university.degree;no;yes;no;cellular;may;mon;490;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+36;services;married;university.degree;no;yes;no;cellular;may;mon;105;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+29;admin.;divorced;basic.9y;no;yes;no;cellular;may;mon;226;3;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+36;services;married;university.degree;no;no;no;cellular;may;mon;189;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+28;blue-collar;married;basic.4y;no;no;no;cellular;may;mon;87;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+35;admin.;single;university.degree;no;no;no;cellular;may;mon;386;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+51;admin.;married;basic.9y;unknown;yes;no;cellular;may;mon;18;6;6;2;success;-1.8;92.893;-46.2;1.299;5099.1;no
+39;blue-collar;married;professional.course;no;no;no;cellular;may;mon;149;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+40;admin.;single;high.school;unknown;yes;no;cellular;may;mon;222;2;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+34;management;married;basic.9y;no;no;yes;cellular;may;mon;131;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+34;technician;married;high.school;no;yes;no;cellular;may;mon;225;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+47;blue-collar;married;basic.6y;unknown;yes;no;telephone;may;mon;21;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+34;technician;married;high.school;no;no;no;cellular;may;mon;40;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+38;blue-collar;married;high.school;unknown;no;no;cellular;may;mon;627;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+31;services;single;high.school;no;yes;no;cellular;may;mon;151;2;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+44;admin.;single;professional.course;no;yes;no;cellular;may;mon;105;3;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+35;admin.;single;university.degree;no;yes;no;cellular;may;mon;8;5;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+55;retired;married;basic.9y;unknown;no;no;telephone;may;mon;114;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+34;blue-collar;single;basic.9y;no;no;no;cellular;may;mon;281;2;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+34;technician;married;high.school;no;no;no;cellular;may;mon;347;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+27;unknown;single;high.school;unknown;yes;yes;cellular;may;mon;154;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+34;technician;married;basic.9y;no;no;no;cellular;may;mon;103;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+34;technician;married;basic.9y;no;yes;no;cellular;may;mon;95;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+37;blue-collar;married;basic.9y;no;no;no;cellular;may;mon;214;8;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+38;services;married;high.school;unknown;no;no;cellular;may;mon;323;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+50;blue-collar;married;basic.4y;no;yes;yes;cellular;may;mon;197;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+27;unknown;single;high.school;unknown;yes;yes;cellular;may;mon;628;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+34;services;divorced;basic.9y;no;yes;no;cellular;may;mon;465;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+30;admin.;single;high.school;no;no;no;cellular;may;mon;133;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+37;admin.;single;university.degree;no;no;yes;cellular;may;mon;553;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+31;blue-collar;married;basic.6y;no;no;no;cellular;may;mon;225;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+38;blue-collar;married;professional.course;unknown;no;no;cellular;may;mon;388;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+32;blue-collar;married;basic.9y;no;no;yes;cellular;may;mon;49;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+36;technician;single;professional.course;no;yes;no;cellular;may;mon;59;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+49;services;married;high.school;no;no;no;telephone;may;mon;86;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+33;unemployed;married;basic.9y;no;yes;yes;cellular;may;mon;21;6;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+43;blue-collar;married;basic.6y;no;no;no;cellular;may;mon;99;2;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+49;services;married;high.school;no;yes;no;cellular;may;mon;165;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+34;unemployed;married;basic.9y;no;no;no;cellular;may;mon;123;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+37;blue-collar;married;basic.6y;no;no;no;cellular;may;mon;54;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+28;technician;married;university.degree;no;no;no;cellular;may;mon;41;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+45;admin.;single;high.school;no;no;no;cellular;may;mon;1487;3;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+27;blue-collar;married;basic.9y;no;no;no;cellular;may;mon;653;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;yes
+37;blue-collar;married;basic.6y;no;no;no;cellular;may;mon;327;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+32;blue-collar;married;basic.9y;no;no;no;cellular;may;mon;177;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+31;management;single;university.degree;no;yes;yes;cellular;may;mon;68;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+31;management;single;university.degree;no;yes;no;cellular;may;mon;125;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+35;technician;married;university.degree;no;yes;no;cellular;may;mon;42;3;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+29;admin.;single;basic.9y;no;no;no;cellular;may;mon;79;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+32;technician;single;professional.course;no;yes;yes;cellular;may;mon;214;3;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+36;admin.;single;university.degree;no;yes;no;cellular;may;mon;85;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+50;blue-collar;divorced;basic.6y;no;yes;no;cellular;may;mon;82;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+33;blue-collar;married;basic.9y;no;yes;yes;cellular;may;mon;239;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+31;technician;single;professional.course;no;yes;yes;cellular;may;mon;187;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+32;technician;married;high.school;no;yes;no;cellular;may;mon;329;3;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+32;blue-collar;married;basic.9y;unknown;yes;yes;cellular;may;mon;29;3;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+33;admin.;single;university.degree;no;no;no;cellular;may;mon;234;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+26;admin.;single;high.school;no;no;no;cellular;may;mon;610;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;yes
+31;technician;single;professional.course;no;yes;yes;cellular;may;mon;282;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+44;blue-collar;married;basic.9y;unknown;yes;no;cellular;may;mon;144;2;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+34;admin.;unknown;university.degree;no;no;no;cellular;may;mon;257;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+35;admin.;single;university.degree;no;yes;no;cellular;may;mon;75;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+41;services;divorced;high.school;no;yes;no;cellular;may;mon;622;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+34;admin.;unknown;university.degree;no;yes;yes;cellular;may;mon;56;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+27;student;single;university.degree;unknown;no;no;cellular;may;mon;489;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+32;blue-collar;married;basic.9y;no;yes;no;cellular;may;mon;102;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+39;blue-collar;single;basic.9y;no;no;no;cellular;may;mon;583;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;yes
+34;admin.;unknown;university.degree;no;yes;no;cellular;may;mon;304;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+24;services;married;high.school;no;yes;no;cellular;may;mon;278;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+37;technician;divorced;professional.course;no;no;no;cellular;may;mon;66;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+36;admin.;married;high.school;no;no;no;cellular;may;mon;68;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+39;admin.;married;high.school;no;yes;no;cellular;may;mon;432;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+29;admin.;divorced;high.school;no;yes;yes;cellular;may;mon;78;2;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+27;technician;married;professional.course;no;yes;no;cellular;may;mon;275;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+35;technician;single;professional.course;no;unknown;unknown;cellular;may;mon;146;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+39;admin.;single;university.degree;no;yes;yes;cellular;may;mon;292;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+29;blue-collar;single;high.school;no;yes;no;cellular;may;mon;134;2;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+39;blue-collar;single;basic.9y;no;yes;no;cellular;may;mon;313;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+39;blue-collar;single;basic.9y;no;yes;no;cellular;may;mon;333;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+47;admin.;single;high.school;no;no;no;cellular;may;mon;1114;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+54;blue-collar;married;basic.4y;no;no;no;cellular;may;mon;50;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+27;entrepreneur;married;university.degree;no;yes;no;cellular;may;mon;207;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+23;blue-collar;single;basic.9y;no;yes;no;cellular;may;mon;672;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;yes
+31;technician;single;high.school;no;no;no;cellular;may;mon;552;2;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+30;management;married;university.degree;no;yes;no;cellular;may;mon;249;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+33;services;married;basic.6y;no;yes;no;cellular;may;mon;72;4;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+33;admin.;married;high.school;unknown;yes;no;cellular;may;mon;412;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+28;blue-collar;single;professional.course;no;no;no;cellular;may;mon;299;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+33;admin.;married;high.school;no;yes;yes;cellular;may;mon;124;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+33;admin.;married;high.school;no;yes;yes;cellular;may;mon;109;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+49;blue-collar;single;basic.4y;no;yes;no;cellular;may;mon;251;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+39;blue-collar;married;basic.9y;unknown;yes;no;cellular;may;mon;400;2;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+32;blue-collar;married;basic.6y;no;yes;yes;cellular;may;mon;101;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+30;admin.;married;high.school;no;yes;yes;cellular;may;mon;82;9;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+29;entrepreneur;married;basic.4y;unknown;no;no;cellular;may;mon;494;3;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+52;services;married;high.school;unknown;yes;no;cellular;may;mon;930;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;yes
+28;blue-collar;married;basic.6y;no;no;no;cellular;may;mon;146;3;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+32;admin.;married;basic.6y;no;yes;no;cellular;may;mon;262;2;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+29;admin.;single;basic.9y;no;no;no;cellular;may;mon;177;4;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+42;blue-collar;married;basic.4y;no;no;no;cellular;may;mon;124;2;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+31;admin.;divorced;university.degree;no;no;no;cellular;may;mon;239;3;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+39;blue-collar;married;basic.4y;no;no;no;cellular;may;mon;158;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+36;admin.;married;university.degree;no;no;no;cellular;may;mon;91;3;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+28;blue-collar;married;basic.4y;no;no;no;cellular;may;mon;52;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+38;blue-collar;married;basic.9y;no;no;yes;telephone;may;mon;159;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+39;services;married;high.school;no;no;no;cellular;may;mon;294;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+30;blue-collar;married;basic.9y;no;yes;no;cellular;may;mon;175;5;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+44;technician;married;professional.course;no;no;no;cellular;may;mon;132;3;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+31;technician;married;university.degree;no;yes;no;cellular;may;mon;282;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+34;services;divorced;basic.9y;no;no;yes;cellular;may;mon;295;3;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+48;admin.;divorced;high.school;unknown;no;no;cellular;may;mon;146;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+28;blue-collar;married;basic.4y;no;no;no;cellular;may;mon;505;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+31;technician;married;university.degree;no;yes;no;cellular;may;mon;580;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+55;management;married;university.degree;no;yes;no;cellular;may;mon;90;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+27;housemaid;married;basic.6y;no;no;no;cellular;may;mon;608;3;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;yes
+48;admin.;divorced;high.school;unknown;yes;yes;cellular;may;mon;466;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;yes
+25;admin.;married;high.school;no;no;no;cellular;may;mon;261;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+49;entrepreneur;married;basic.6y;unknown;yes;yes;cellular;may;mon;330;2;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+35;technician;married;professional.course;no;yes;no;cellular;may;mon;148;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+46;management;married;basic.6y;no;yes;yes;telephone;may;mon;26;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+26;admin.;single;university.degree;no;yes;no;cellular;may;mon;76;2;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+30;blue-collar;married;basic.4y;no;no;yes;cellular;may;mon;255;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+36;blue-collar;married;basic.6y;no;no;no;cellular;may;mon;193;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+28;services;married;high.school;no;yes;no;cellular;may;mon;643;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+31;blue-collar;married;basic.9y;no;yes;no;cellular;may;mon;475;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;yes
+57;technician;married;high.school;no;yes;no;cellular;may;mon;74;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+28;blue-collar;married;basic.6y;unknown;no;no;cellular;may;mon;68;2;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+29;admin.;single;high.school;no;yes;no;telephone;may;mon;41;2;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+38;blue-collar;divorced;basic.4y;unknown;no;no;telephone;may;mon;168;3;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+32;blue-collar;married;basic.9y;no;yes;yes;cellular;may;mon;93;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+51;admin.;married;basic.6y;no;no;yes;cellular;may;mon;228;2;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+57;technician;married;high.school;no;no;yes;cellular;may;mon;161;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+35;services;divorced;university.degree;no;yes;no;cellular;may;mon;215;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+46;management;married;basic.6y;no;no;no;cellular;may;mon;966;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;yes
+57;technician;married;high.school;no;yes;no;cellular;may;mon;758;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+50;admin.;single;basic.9y;unknown;no;yes;telephone;may;mon;52;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+57;technician;married;high.school;no;no;yes;cellular;may;mon;371;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+32;technician;single;high.school;no;yes;yes;cellular;may;mon;426;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+47;blue-collar;married;basic.4y;unknown;yes;no;cellular;may;mon;369;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+54;management;married;basic.4y;unknown;yes;no;cellular;may;mon;264;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+32;technician;married;professional.course;no;yes;no;cellular;may;mon;246;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+53;self-employed;married;basic.4y;unknown;yes;no;cellular;may;mon;145;2;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+36;admin.;married;high.school;no;yes;no;cellular;may;mon;329;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+30;services;divorced;high.school;no;no;no;cellular;may;mon;159;2;11;1;success;-1.8;92.893;-46.2;1.299;5099.1;no
+30;blue-collar;single;basic.9y;unknown;yes;no;cellular;may;mon;242;3;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+30;blue-collar;married;basic.6y;no;yes;no;cellular;may;mon;77;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+40;services;divorced;high.school;no;yes;no;cellular;may;mon;262;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+28;blue-collar;married;basic.9y;unknown;unknown;unknown;telephone;may;mon;267;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+29;entrepreneur;married;basic.4y;unknown;yes;no;telephone;may;mon;224;3;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+46;blue-collar;married;basic.4y;unknown;yes;no;cellular;may;mon;184;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+35;blue-collar;single;basic.4y;unknown;yes;no;cellular;may;mon;289;5;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+33;blue-collar;single;basic.9y;unknown;yes;yes;cellular;may;mon;143;3;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+45;management;married;basic.9y;unknown;yes;no;cellular;may;mon;288;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+41;services;single;high.school;unknown;yes;no;cellular;may;mon;63;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+45;management;married;basic.9y;unknown;yes;no;cellular;may;mon;305;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+35;blue-collar;married;basic.4y;no;yes;no;cellular;may;mon;386;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+32;entrepreneur;married;high.school;no;yes;no;cellular;may;mon;101;2;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+34;technician;married;basic.9y;no;yes;no;cellular;may;mon;35;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+35;blue-collar;married;basic.4y;no;yes;no;cellular;may;mon;629;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+53;admin.;married;high.school;no;yes;yes;cellular;may;mon;186;2;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+27;unknown;single;high.school;unknown;yes;no;cellular;may;mon;334;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+40;admin.;married;university.degree;no;yes;no;cellular;may;mon;174;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+30;services;married;high.school;no;yes;yes;cellular;may;mon;296;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+38;admin.;divorced;university.degree;no;no;no;cellular;may;mon;79;3;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+28;entrepreneur;single;professional.course;no;yes;no;cellular;may;mon;240;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+32;blue-collar;married;basic.6y;no;yes;yes;cellular;may;mon;261;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+46;admin.;married;basic.6y;unknown;no;yes;cellular;may;mon;270;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+43;admin.;divorced;basic.9y;no;yes;no;cellular;may;mon;47;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+30;technician;single;basic.9y;no;no;no;cellular;may;mon;63;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+30;technician;single;basic.9y;no;yes;no;cellular;may;mon;112;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+47;blue-collar;married;high.school;no;yes;yes;cellular;may;mon;57;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+28;technician;single;professional.course;no;yes;no;cellular;may;mon;77;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+57;technician;married;professional.course;no;yes;no;cellular;may;mon;190;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+34;blue-collar;single;university.degree;unknown;yes;no;cellular;may;mon;321;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+32;blue-collar;married;basic.4y;no;yes;no;cellular;may;mon;200;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+56;blue-collar;married;basic.4y;no;yes;no;cellular;may;mon;161;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+32;admin.;married;university.degree;no;yes;no;cellular;may;mon;188;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+49;blue-collar;married;basic.9y;unknown;no;yes;cellular;may;mon;204;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+49;blue-collar;married;basic.9y;unknown;no;yes;cellular;may;mon;290;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+47;services;divorced;high.school;no;yes;no;cellular;may;mon;254;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+30;admin.;single;university.degree;no;yes;no;cellular;may;mon;232;2;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+36;services;married;university.degree;no;yes;no;cellular;may;mon;97;2;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+28;technician;single;professional.course;no;yes;no;telephone;may;mon;296;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+48;admin.;divorced;high.school;unknown;no;no;cellular;may;mon;263;2;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+42;admin.;married;university.degree;no;no;no;cellular;may;mon;98;2;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+57;technician;married;high.school;no;yes;no;cellular;may;mon;228;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+31;admin.;divorced;high.school;no;yes;no;cellular;may;mon;274;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+42;management;married;university.degree;no;yes;no;cellular;may;mon;306;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+30;blue-collar;married;basic.6y;no;yes;yes;cellular;may;mon;429;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+52;admin.;single;basic.4y;no;no;no;cellular;may;mon;776;4;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+28;blue-collar;married;basic.6y;unknown;yes;no;cellular;may;mon;51;6;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+29;services;divorced;high.school;no;no;no;cellular;may;mon;150;2;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+46;admin.;married;basic.6y;unknown;yes;no;cellular;may;mon;275;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+25;student;single;high.school;unknown;yes;no;cellular;may;mon;160;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+27;entrepreneur;married;university.degree;no;yes;no;cellular;may;mon;153;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+32;blue-collar;married;basic.6y;no;yes;no;cellular;may;mon;146;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+38;services;married;high.school;unknown;no;no;cellular;may;mon;171;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+36;admin.;married;high.school;no;yes;yes;cellular;may;mon;142;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+49;blue-collar;single;high.school;no;yes;no;cellular;may;mon;430;3;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+30;technician;single;basic.9y;no;no;yes;cellular;may;mon;189;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+32;technician;single;high.school;no;no;no;cellular;may;mon;236;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+34;technician;married;basic.9y;no;no;no;cellular;may;mon;798;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+44;blue-collar;married;basic.6y;unknown;yes;no;cellular;may;mon;65;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+31;technician;single;university.degree;no;no;no;cellular;may;mon;66;4;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+29;blue-collar;married;basic.9y;no;yes;yes;cellular;may;mon;34;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+28;blue-collar;single;professional.course;no;yes;no;cellular;may;mon;333;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+58;technician;divorced;basic.9y;no;no;no;cellular;may;mon;128;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+36;entrepreneur;married;high.school;no;yes;yes;cellular;may;mon;102;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+31;services;married;basic.9y;no;no;no;cellular;may;mon;400;1;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+29;blue-collar;married;basic.9y;no;yes;no;cellular;may;mon;175;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+33;admin.;married;university.degree;no;no;yes;cellular;may;mon;69;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+55;management;married;university.degree;no;yes;no;cellular;may;mon;126;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+35;blue-collar;married;basic.4y;no;no;yes;cellular;may;mon;285;2;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+39;blue-collar;married;basic.9y;unknown;yes;no;cellular;may;mon;327;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+37;admin.;single;university.degree;no;yes;no;telephone;may;mon;168;5;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+35;blue-collar;married;basic.4y;no;no;no;cellular;may;mon;127;5;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+26;blue-collar;single;high.school;unknown;no;no;cellular;may;mon;314;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+44;technician;married;professional.course;no;yes;no;cellular;may;mon;147;3;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+26;student;single;high.school;no;no;no;cellular;may;mon;472;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+44;admin.;married;high.school;no;yes;no;cellular;may;mon;246;1;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+30;services;single;high.school;no;yes;no;cellular;may;mon;213;2;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+28;blue-collar;married;basic.9y;unknown;yes;no;cellular;may;mon;173;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+27;services;married;basic.9y;no;yes;no;cellular;may;mon;220;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+33;blue-collar;single;basic.9y;unknown;no;no;cellular;may;mon;130;3;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+32;blue-collar;married;basic.4y;no;no;no;cellular;may;mon;299;3;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+43;blue-collar;married;basic.9y;no;yes;no;cellular;may;mon;247;6;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+24;technician;single;basic.9y;no;yes;no;cellular;may;mon;111;6;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+37;entrepreneur;married;basic.9y;no;yes;no;cellular;may;mon;195;2;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+32;admin.;single;high.school;no;yes;no;cellular;may;mon;148;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+30;services;married;high.school;no;no;no;cellular;may;mon;286;3;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+50;blue-collar;married;unknown;unknown;yes;no;cellular;may;mon;96;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+43;services;divorced;professional.course;no;no;no;telephone;may;mon;75;4;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+46;blue-collar;married;basic.9y;no;yes;yes;telephone;may;mon;386;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+30;blue-collar;married;basic.6y;no;yes;no;telephone;may;mon;544;3;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+36;blue-collar;married;basic.6y;no;yes;no;cellular;may;mon;127;2;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+30;admin.;single;university.degree;no;no;no;cellular;may;mon;155;2;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+32;entrepreneur;married;basic.9y;no;no;no;cellular;may;mon;184;4;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+42;entrepreneur;married;basic.4y;unknown;no;no;cellular;may;mon;120;2;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+56;services;single;basic.4y;unknown;yes;no;cellular;may;mon;480;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+54;management;married;high.school;unknown;no;no;cellular;may;mon;194;2;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+39;blue-collar;married;basic.6y;unknown;no;no;cellular;may;mon;1232;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;yes
+35;services;married;basic.9y;unknown;no;no;cellular;may;mon;69;2;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+31;blue-collar;single;basic.6y;unknown;no;no;cellular;may;mon;133;3;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+37;admin.;married;high.school;no;no;no;telephone;may;mon;193;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+35;blue-collar;married;basic.9y;no;no;no;telephone;may;mon;70;2;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+32;blue-collar;married;basic.9y;no;no;no;cellular;may;mon;206;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+54;blue-collar;divorced;unknown;unknown;no;no;cellular;may;mon;152;2;10;1;success;-1.8;92.893;-46.2;1.299;5099.1;no
+30;blue-collar;married;basic.4y;no;yes;no;cellular;may;mon;243;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+34;services;married;basic.9y;no;yes;yes;telephone;may;mon;437;2;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+30;admin.;single;university.degree;no;no;no;telephone;may;mon;259;4;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+40;services;married;high.school;unknown;yes;no;cellular;may;mon;182;5;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+34;admin.;unknown;university.degree;no;yes;no;cellular;may;mon;447;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+37;entrepreneur;married;basic.9y;no;no;no;cellular;may;mon;238;2;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+33;blue-collar;single;basic.9y;no;no;no;cellular;may;mon;410;2;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+47;blue-collar;married;basic.6y;unknown;yes;no;cellular;may;mon;472;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+35;blue-collar;single;basic.9y;unknown;yes;no;cellular;may;mon;83;2;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+30;technician;single;professional.course;no;yes;no;cellular;may;mon;254;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+33;admin.;married;high.school;no;yes;yes;cellular;may;mon;56;3;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+50;services;married;high.school;unknown;no;no;cellular;may;mon;204;2;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+37;blue-collar;married;basic.6y;no;yes;no;cellular;may;mon;102;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+37;housemaid;divorced;basic.9y;unknown;yes;no;telephone;may;mon;226;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+55;self-employed;married;university.degree;unknown;no;no;cellular;may;mon;217;3;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+49;blue-collar;single;high.school;no;yes;yes;cellular;may;mon;217;6;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+30;entrepreneur;married;basic.6y;unknown;yes;no;cellular;may;mon;379;3;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+44;blue-collar;married;basic.9y;no;yes;yes;cellular;may;mon;145;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+27;blue-collar;married;basic.4y;unknown;yes;no;cellular;may;mon;74;3;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+35;technician;single;university.degree;no;yes;no;cellular;may;mon;271;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+31;blue-collar;married;basic.9y;no;no;no;cellular;may;mon;0;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+29;admin.;single;basic.9y;no;yes;no;cellular;may;mon;258;4;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+33;services;married;basic.9y;no;unknown;unknown;cellular;may;mon;180;3;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+36;technician;single;professional.course;no;yes;no;cellular;may;mon;196;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+29;blue-collar;married;basic.9y;no;yes;no;cellular;may;mon;135;2;999;2;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+25;blue-collar;single;high.school;unknown;yes;no;telephone;may;mon;300;3;999;2;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+42;blue-collar;married;basic.4y;no;yes;no;cellular;may;mon;347;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+47;blue-collar;married;basic.4y;unknown;no;no;cellular;may;mon;1001;4;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+44;technician;married;professional.course;no;no;no;cellular;may;mon;72;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+34;blue-collar;single;university.degree;unknown;yes;no;cellular;may;mon;498;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+44;blue-collar;married;high.school;no;unknown;unknown;cellular;may;mon;279;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+31;technician;married;university.degree;no;yes;no;cellular;may;mon;50;3;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+33;services;single;high.school;no;no;yes;cellular;may;mon;171;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+26;admin.;single;high.school;no;yes;no;cellular;may;mon;211;2;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+29;entrepreneur;married;basic.4y;unknown;no;no;telephone;may;mon;567;3;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+37;blue-collar;married;basic.9y;unknown;unknown;unknown;cellular;may;mon;170;3;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+41;services;single;high.school;unknown;unknown;unknown;cellular;may;mon;772;2;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+26;services;single;high.school;no;no;no;cellular;may;mon;298;2;999;2;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+31;technician;single;university.degree;no;yes;no;cellular;may;mon;120;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+36;technician;married;university.degree;no;yes;no;cellular;may;mon;219;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+27;blue-collar;married;basic.4y;unknown;no;no;cellular;may;mon;877;7;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;yes
+35;blue-collar;married;basic.6y;no;yes;no;cellular;may;mon;214;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+35;admin.;divorced;high.school;no;yes;yes;telephone;may;mon;82;2;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+25;technician;single;university.degree;no;no;yes;cellular;may;mon;304;3;12;2;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+34;blue-collar;married;basic.9y;no;yes;no;cellular;may;mon;273;5;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+46;blue-collar;married;basic.4y;no;no;no;cellular;may;mon;471;3;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+41;blue-collar;married;basic.6y;unknown;yes;no;cellular;may;mon;133;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+34;admin.;married;university.degree;no;yes;no;cellular;may;mon;301;2;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+23;services;single;basic.9y;unknown;yes;no;cellular;may;mon;350;3;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+33;admin.;married;university.degree;no;yes;no;cellular;may;mon;86;3;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+40;unemployed;single;high.school;unknown;yes;no;cellular;may;mon;94;4;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+33;blue-collar;married;basic.4y;no;no;no;cellular;may;mon;1388;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;yes
+35;entrepreneur;married;high.school;no;yes;no;cellular;may;mon;508;3;999;2;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+46;blue-collar;married;basic.4y;unknown;no;no;telephone;may;mon;338;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+47;blue-collar;married;basic.6y;unknown;yes;no;cellular;may;mon;208;4;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+29;student;single;unknown;no;no;no;telephone;may;mon;1143;4;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+33;services;single;high.school;no;no;no;cellular;may;mon;503;3;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+37;services;married;high.school;unknown;yes;no;telephone;may;mon;58;3;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+54;management;married;basic.6y;no;yes;no;cellular;may;mon;142;5;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+45;admin.;single;high.school;no;yes;no;cellular;may;mon;276;3;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+24;services;single;high.school;no;yes;no;cellular;may;mon;201;3;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+53;blue-collar;married;basic.4y;unknown;unknown;unknown;cellular;may;mon;63;2;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+46;services;divorced;high.school;no;no;no;cellular;may;mon;222;3;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+32;admin.;married;professional.course;no;no;no;cellular;may;mon;168;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+40;technician;married;university.degree;no;no;no;cellular;may;mon;192;4;999;1;failure;-1.8;92.893;-46.2;1.299;5099.1;no
+47;admin.;single;high.school;no;yes;no;cellular;may;mon;911;3;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;yes
+35;admin.;single;university.degree;no;yes;yes;cellular;may;mon;439;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+28;blue-collar;married;basic.9y;unknown;yes;no;cellular;may;mon;163;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+54;management;married;high.school;unknown;no;no;cellular;may;mon;273;3;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+33;technician;single;university.degree;no;no;no;cellular;may;mon;284;4;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+29;technician;single;basic.9y;no;yes;no;cellular;may;mon;288;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+31;technician;single;university.degree;no;yes;no;telephone;may;mon;136;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+30;services;married;professional.course;no;no;no;cellular;may;mon;66;3;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+43;self-employed;single;university.degree;no;yes;no;cellular;may;mon;445;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+46;management;married;university.degree;no;no;no;cellular;may;mon;123;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+41;entrepreneur;married;basic.9y;no;no;yes;cellular;may;mon;285;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+46;technician;divorced;professional.course;unknown;no;no;cellular;may;mon;927;2;999;0;nonexistent;-1.8;92.893;-46.2;1.299;5099.1;no
+28;services;single;high.school;no;unknown;unknown;cellular;may;tue;48;3;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+32;technician;married;university.degree;no;no;no;cellular;may;tue;164;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+27;blue-collar;single;high.school;no;no;no;cellular;may;tue;81;4;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+36;admin.;single;university.degree;no;no;no;cellular;may;tue;89;3;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+33;blue-collar;married;basic.9y;unknown;yes;no;cellular;may;tue;278;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+32;blue-collar;married;basic.9y;no;no;no;cellular;may;tue;214;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+28;student;single;university.degree;unknown;yes;no;cellular;may;tue;116;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+26;self-employed;married;basic.4y;no;no;no;telephone;may;tue;16;3;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+38;services;single;basic.6y;no;yes;no;cellular;may;tue;546;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;yes
+23;blue-collar;married;basic.6y;unknown;no;no;cellular;may;tue;8;8;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+30;blue-collar;married;basic.9y;no;yes;no;cellular;may;tue;167;2;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+28;admin.;married;university.degree;no;no;no;cellular;may;tue;72;3;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+33;services;divorced;high.school;no;yes;no;cellular;may;tue;75;5;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+32;services;married;high.school;no;yes;no;telephone;may;tue;14;6;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+43;blue-collar;single;basic.4y;no;yes;no;telephone;may;tue;200;2;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+35;admin.;single;high.school;no;yes;no;cellular;may;tue;13;5;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+31;technician;married;high.school;unknown;yes;no;cellular;may;tue;312;6;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+32;management;single;professional.course;no;no;no;cellular;may;tue;134;2;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+39;services;married;high.school;no;yes;no;telephone;may;tue;34;12;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+27;services;married;high.school;no;yes;yes;cellular;may;tue;15;8;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+37;admin.;married;high.school;no;yes;no;cellular;may;tue;188;4;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+29;admin.;single;professional.course;no;yes;no;cellular;may;tue;788;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+40;blue-collar;married;basic.4y;no;yes;yes;cellular;may;tue;103;2;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+36;admin.;married;university.degree;no;yes;yes;cellular;may;tue;106;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+26;services;single;university.degree;no;yes;no;cellular;may;tue;25;6;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+30;blue-collar;married;basic.9y;no;no;no;cellular;may;tue;52;3;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+27;admin.;single;high.school;unknown;yes;no;cellular;may;tue;41;3;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+47;blue-collar;married;basic.9y;no;no;no;cellular;may;tue;234;2;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+36;services;divorced;basic.9y;no;yes;no;cellular;may;tue;255;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+35;admin.;single;high.school;no;yes;yes;cellular;may;tue;200;4;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+41;blue-collar;married;basic.9y;no;yes;no;cellular;may;tue;217;3;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+27;housemaid;single;university.degree;no;yes;no;cellular;may;tue;9;9;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+29;admin.;married;high.school;no;no;no;cellular;may;tue;315;2;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+43;blue-collar;married;unknown;no;yes;no;cellular;may;tue;128;7;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+51;blue-collar;divorced;high.school;no;yes;yes;cellular;may;tue;10;6;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+35;admin.;single;high.school;no;yes;yes;telephone;may;tue;352;2;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+49;admin.;married;high.school;no;no;no;cellular;may;tue;97;3;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+33;blue-collar;married;basic.9y;unknown;no;yes;cellular;may;tue;54;2;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+45;admin.;single;high.school;unknown;unknown;unknown;cellular;may;tue;7;12;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+50;management;divorced;university.degree;no;no;no;telephone;may;tue;63;3;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+50;unknown;married;basic.4y;unknown;no;yes;cellular;may;tue;77;4;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+33;services;married;basic.6y;no;no;no;cellular;may;tue;117;6;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+30;self-employed;married;professional.course;no;no;no;cellular;may;tue;34;2;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+31;blue-collar;married;basic.6y;no;no;no;cellular;may;tue;104;3;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+26;admin.;single;university.degree;no;yes;yes;cellular;may;tue;15;7;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+34;admin.;divorced;university.degree;no;yes;no;cellular;may;tue;14;5;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+30;services;single;basic.6y;no;yes;no;cellular;may;tue;208;6;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+32;blue-collar;married;basic.9y;no;no;yes;telephone;may;tue;11;6;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+31;technician;single;professional.course;no;yes;no;cellular;may;tue;160;3;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+39;admin.;single;high.school;no;no;no;cellular;may;tue;197;2;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+38;blue-collar;married;high.school;unknown;yes;no;cellular;may;tue;151;2;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+51;blue-collar;divorced;high.school;no;no;no;cellular;may;tue;131;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+33;blue-collar;single;basic.6y;no;yes;no;cellular;may;tue;731;3;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;yes
+43;blue-collar;married;unknown;no;yes;no;cellular;may;tue;756;3;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+35;admin.;married;high.school;no;yes;no;cellular;may;tue;12;6;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+38;technician;married;high.school;no;yes;no;cellular;may;tue;114;6;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+50;unknown;married;basic.4y;unknown;yes;no;cellular;may;tue;12;8;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+32;management;single;professional.course;no;no;no;cellular;may;tue;365;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;yes
+37;blue-collar;divorced;professional.course;no;yes;no;cellular;may;tue;304;3;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+43;blue-collar;married;unknown;no;no;yes;telephone;may;tue;11;6;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+36;blue-collar;married;high.school;no;yes;no;cellular;may;tue;20;8;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+34;admin.;married;high.school;no;yes;no;cellular;may;tue;109;3;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+54;blue-collar;divorced;basic.4y;no;yes;no;cellular;may;tue;138;3;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+28;services;single;high.school;no;yes;yes;cellular;may;tue;6;5;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+42;blue-collar;married;basic.4y;no;yes;no;cellular;may;tue;63;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+29;admin.;single;professional.course;no;yes;no;cellular;may;tue;200;1;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+40;services;married;basic.9y;no;yes;yes;cellular;may;tue;271;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+33;technician;single;professional.course;no;yes;no;cellular;may;tue;42;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+33;blue-collar;married;basic.9y;no;yes;yes;cellular;may;tue;341;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+38;admin.;single;high.school;no;yes;no;cellular;may;tue;100;4;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+51;admin.;married;high.school;no;no;no;cellular;may;tue;40;4;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+38;services;single;basic.9y;no;no;no;cellular;may;tue;114;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+33;blue-collar;married;basic.4y;no;no;no;cellular;may;tue;150;4;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+42;blue-collar;married;basic.6y;no;no;yes;cellular;may;tue;431;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+32;admin.;divorced;university.degree;unknown;yes;no;telephone;may;tue;11;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+28;admin.;single;high.school;no;yes;no;cellular;may;tue;91;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+28;admin.;single;high.school;no;yes;yes;cellular;may;tue;52;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+36;blue-collar;married;unknown;no;no;no;telephone;may;tue;257;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+48;blue-collar;married;basic.9y;no;yes;yes;cellular;may;tue;99;1;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+40;services;divorced;high.school;no;no;no;cellular;may;tue;49;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+34;technician;single;university.degree;no;no;no;cellular;may;tue;882;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;yes
+31;blue-collar;single;basic.9y;no;no;no;cellular;may;tue;7;5;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+38;services;single;basic.9y;no;no;yes;cellular;may;tue;515;1;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;yes
+59;services;divorced;basic.6y;no;yes;no;cellular;may;tue;158;1;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+27;blue-collar;married;basic.4y;no;yes;no;cellular;may;tue;259;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+27;blue-collar;single;basic.4y;no;yes;no;cellular;may;tue;206;1;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+35;blue-collar;married;high.school;no;yes;no;cellular;may;tue;25;1;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+27;blue-collar;single;basic.4y;no;no;no;cellular;may;tue;300;1;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+36;services;single;high.school;no;yes;no;telephone;may;tue;246;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+35;blue-collar;married;high.school;no;yes;yes;cellular;may;tue;178;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+59;services;divorced;basic.6y;no;yes;no;cellular;may;tue;318;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+35;blue-collar;married;high.school;no;yes;no;cellular;may;tue;201;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+47;admin.;divorced;high.school;no;yes;no;cellular;may;tue;105;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+44;admin.;divorced;high.school;no;no;no;cellular;may;tue;214;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+45;blue-collar;married;basic.4y;no;yes;no;cellular;may;tue;67;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+49;blue-collar;married;basic.6y;unknown;yes;no;cellular;may;tue;85;4;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+28;blue-collar;married;basic.9y;no;yes;no;cellular;may;tue;82;4;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+43;services;married;basic.6y;no;unknown;unknown;cellular;may;tue;142;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+45;blue-collar;married;basic.4y;no;yes;no;cellular;may;tue;187;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+38;admin.;married;basic.9y;no;yes;no;cellular;may;tue;69;1;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+35;technician;married;basic.9y;no;no;no;cellular;may;tue;580;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;yes
+48;technician;divorced;basic.9y;unknown;yes;no;cellular;may;tue;62;1;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+48;blue-collar;single;basic.4y;no;yes;no;cellular;may;tue;1203;1;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;yes
+45;services;married;basic.6y;no;no;no;cellular;may;tue;58;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+48;blue-collar;married;basic.9y;no;yes;yes;cellular;may;tue;64;4;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+27;blue-collar;married;basic.9y;no;yes;no;cellular;may;tue;631;1;11;1;success;-1.8;92.893;-46.2;1.291;5099.1;no
+29;blue-collar;married;basic.4y;unknown;no;no;cellular;may;tue;658;1;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;yes
+35;blue-collar;married;high.school;no;yes;no;cellular;may;tue;942;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+45;services;married;basic.6y;no;no;no;cellular;may;tue;207;1;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+26;admin.;single;university.degree;no;yes;no;cellular;may;tue;104;5;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+33;technician;single;professional.course;no;yes;no;cellular;may;tue;377;1;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+41;housemaid;married;basic.4y;no;no;no;cellular;may;tue;66;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+41;housemaid;married;basic.4y;no;yes;no;cellular;may;tue;128;1;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+54;blue-collar;married;basic.4y;no;yes;no;telephone;may;tue;291;5;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+46;entrepreneur;married;high.school;no;yes;no;cellular;may;tue;115;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+38;blue-collar;married;basic.6y;no;no;no;cellular;may;tue;524;3;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+30;admin.;married;university.degree;no;yes;no;cellular;may;tue;358;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+46;entrepreneur;married;high.school;no;no;no;cellular;may;tue;366;1;6;1;success;-1.8;92.893;-46.2;1.291;5099.1;no
+43;admin.;single;university.degree;no;yes;yes;cellular;may;tue;23;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+26;services;married;basic.9y;no;no;yes;cellular;may;tue;560;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;yes
+43;admin.;single;university.degree;no;yes;no;telephone;may;tue;52;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+36;entrepreneur;single;university.degree;no;yes;yes;cellular;may;tue;347;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+43;admin.;single;university.degree;no;no;no;cellular;may;tue;107;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+43;admin.;single;university.degree;no;yes;no;telephone;may;tue;48;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+38;entrepreneur;married;unknown;unknown;yes;no;cellular;may;tue;145;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+54;blue-collar;married;basic.6y;no;yes;no;cellular;may;tue;74;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+58;blue-collar;married;basic.4y;unknown;yes;no;cellular;may;tue;451;2;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+29;student;single;high.school;unknown;no;no;cellular;may;tue;53;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+36;entrepreneur;single;university.degree;no;no;no;cellular;may;tue;612;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;yes
+43;admin.;single;university.degree;no;yes;no;cellular;may;tue;305;1;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+36;admin.;single;university.degree;no;yes;no;cellular;may;tue;104;3;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+27;blue-collar;single;basic.4y;no;no;no;cellular;may;tue;176;2;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+35;technician;divorced;university.degree;no;yes;no;cellular;may;tue;507;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+39;management;single;university.degree;no;yes;no;cellular;may;tue;103;1;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+59;blue-collar;married;basic.9y;no;yes;yes;cellular;may;tue;242;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+34;blue-collar;married;basic.6y;no;yes;no;cellular;may;tue;137;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+33;services;married;high.school;no;yes;no;cellular;may;tue;223;1;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+37;services;married;high.school;no;no;no;cellular;may;tue;124;1;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+32;admin.;single;university.degree;no;no;no;cellular;may;tue;63;5;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+24;student;single;basic.4y;no;yes;no;cellular;may;tue;137;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+49;blue-collar;married;basic.9y;unknown;yes;no;cellular;may;tue;23;6;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+30;admin.;married;university.degree;no;no;no;cellular;may;tue;22;4;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+28;admin.;single;high.school;no;yes;no;cellular;may;tue;59;3;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+50;blue-collar;divorced;basic.4y;no;yes;no;cellular;may;tue;703;4;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;yes
+34;admin.;married;high.school;no;yes;yes;cellular;may;tue;179;3;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+59;blue-collar;married;basic.9y;no;no;no;cellular;may;tue;690;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;yes
+41;management;married;high.school;unknown;yes;no;cellular;may;tue;85;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+33;blue-collar;married;high.school;unknown;no;no;telephone;may;tue;25;6;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+39;management;single;university.degree;no;no;no;cellular;may;tue;11;12;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+38;entrepreneur;married;unknown;unknown;no;no;cellular;may;tue;1272;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;yes
+57;retired;divorced;basic.9y;no;yes;no;cellular;may;tue;69;3;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+41;management;married;high.school;unknown;no;no;cellular;may;tue;256;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+36;admin.;married;high.school;no;yes;no;cellular;may;tue;300;5;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+26;blue-collar;married;basic.9y;no;yes;no;cellular;may;tue;256;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+36;admin.;single;university.degree;no;no;no;cellular;may;tue;7;5;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+37;admin.;married;university.degree;no;yes;yes;cellular;may;tue;43;1;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+38;student;divorced;unknown;no;no;no;cellular;may;tue;244;3;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+48;admin.;divorced;university.degree;no;no;no;cellular;may;tue;1062;3;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;yes
+33;blue-collar;single;basic.6y;no;yes;no;cellular;may;tue;22;8;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+34;admin.;divorced;professional.course;no;yes;yes;cellular;may;tue;429;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+44;blue-collar;divorced;basic.9y;no;yes;no;cellular;may;tue;494;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+44;management;married;basic.9y;no;no;no;cellular;may;tue;296;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+55;blue-collar;married;basic.4y;unknown;yes;no;cellular;may;tue;92;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+31;blue-collar;married;basic.9y;no;yes;no;cellular;may;tue;17;7;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+45;admin.;married;university.degree;no;yes;yes;cellular;may;tue;826;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;yes
+39;blue-collar;single;basic.4y;no;yes;no;cellular;may;tue;243;1;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+31;blue-collar;married;high.school;no;yes;yes;cellular;may;tue;184;4;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+36;blue-collar;married;basic.4y;no;no;no;cellular;may;tue;245;1;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+32;entrepreneur;married;high.school;no;unknown;unknown;cellular;may;tue;198;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+36;blue-collar;married;basic.4y;no;yes;no;cellular;may;tue;360;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+26;services;single;university.degree;no;yes;no;telephone;may;tue;139;4;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+26;blue-collar;married;basic.4y;no;no;no;cellular;may;tue;54;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+26;blue-collar;married;basic.4y;no;no;no;cellular;may;tue;232;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+32;blue-collar;single;high.school;no;yes;no;cellular;may;tue;517;1;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+40;blue-collar;single;high.school;unknown;no;no;cellular;may;tue;418;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+28;technician;married;basic.9y;no;yes;no;cellular;may;tue;153;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+28;admin.;single;high.school;no;yes;no;cellular;may;tue;116;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+36;admin.;single;university.degree;no;no;no;telephone;may;tue;168;5;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+28;technician;married;basic.9y;no;no;no;cellular;may;tue;261;1;12;1;success;-1.8;92.893;-46.2;1.291;5099.1;no
+36;admin.;single;university.degree;no;no;no;cellular;may;tue;69;3;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+37;admin.;single;high.school;unknown;no;no;cellular;may;tue;212;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+54;management;divorced;professional.course;no;yes;no;cellular;may;tue;121;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+36;admin.;divorced;high.school;no;no;no;cellular;may;tue;23;1;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+38;blue-collar;married;basic.9y;no;no;no;cellular;may;tue;306;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+32;blue-collar;single;high.school;no;yes;yes;cellular;may;tue;202;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+29;blue-collar;married;basic.6y;no;no;no;cellular;may;tue;342;1;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+42;blue-collar;married;basic.4y;no;no;no;telephone;may;tue;22;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+29;blue-collar;married;basic.6y;no;no;yes;cellular;may;tue;455;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+34;self-employed;single;university.degree;no;yes;no;cellular;may;tue;245;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+31;blue-collar;married;basic.9y;no;yes;yes;cellular;may;tue;33;3;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+27;services;married;high.school;no;yes;no;cellular;may;tue;58;3;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+27;student;single;high.school;no;yes;no;cellular;may;tue;41;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+42;blue-collar;married;basic.4y;no;no;no;cellular;may;tue;360;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+31;admin.;married;university.degree;no;yes;no;cellular;may;tue;179;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+34;blue-collar;single;basic.9y;no;yes;yes;cellular;may;tue;174;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+26;services;married;basic.9y;no;no;no;telephone;may;tue;43;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+21;services;single;high.school;no;no;no;cellular;may;tue;68;1;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+29;services;married;basic.9y;no;no;no;cellular;may;tue;212;1;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+35;admin.;single;basic.9y;no;yes;no;telephone;may;tue;38;6;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+26;services;single;university.degree;no;yes;yes;cellular;may;tue;639;3;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+34;blue-collar;single;basic.9y;no;yes;no;cellular;may;tue;483;1;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+53;unemployed;married;basic.9y;unknown;no;no;cellular;may;tue;205;2;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+29;services;married;basic.9y;no;no;no;cellular;may;tue;344;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+33;self-employed;single;high.school;no;no;no;cellular;may;tue;141;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+33;self-employed;single;high.school;no;yes;yes;cellular;may;tue;113;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+46;technician;married;professional.course;no;no;no;cellular;may;tue;87;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+33;self-employed;single;high.school;no;no;no;cellular;may;tue;238;1;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+36;services;single;high.school;unknown;yes;no;cellular;may;tue;27;6;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+51;blue-collar;married;basic.6y;no;yes;no;telephone;may;tue;155;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+33;self-employed;single;high.school;no;yes;no;cellular;may;tue;337;1;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+31;services;single;high.school;no;yes;no;telephone;may;tue;24;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+31;blue-collar;married;basic.9y;no;no;no;cellular;may;tue;365;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+38;technician;married;professional.course;no;no;no;cellular;may;tue;37;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+34;admin.;divorced;university.degree;no;yes;no;cellular;may;tue;25;4;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+31;services;single;high.school;no;yes;no;cellular;may;tue;109;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+43;admin.;married;high.school;no;yes;no;cellular;may;tue;152;3;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+34;unemployed;single;high.school;no;yes;no;telephone;may;tue;179;5;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+34;admin.;divorced;university.degree;no;yes;no;cellular;may;tue;118;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+33;blue-collar;married;high.school;unknown;no;no;cellular;may;tue;272;5;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+39;admin.;married;university.degree;no;no;no;cellular;may;tue;30;7;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+32;services;single;university.degree;no;yes;no;cellular;may;tue;79;1;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+47;admin.;divorced;high.school;no;no;no;cellular;may;tue;324;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+43;technician;married;university.degree;unknown;unknown;unknown;cellular;may;tue;426;1;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;yes
+53;technician;single;professional.course;unknown;no;no;cellular;may;tue;196;2;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+36;blue-collar;married;basic.9y;no;no;no;cellular;may;tue;151;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+32;services;single;university.degree;no;yes;no;cellular;may;tue;366;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+51;blue-collar;married;basic.6y;unknown;yes;no;cellular;may;tue;211;1;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+31;admin.;single;university.degree;no;no;no;cellular;may;tue;43;1;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+47;admin.;divorced;high.school;no;yes;no;cellular;may;tue;816;1;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+28;blue-collar;married;basic.4y;no;no;no;cellular;may;tue;189;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+28;blue-collar;married;basic.4y;no;no;no;cellular;may;tue;590;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;yes
+42;blue-collar;married;basic.9y;unknown;yes;no;cellular;may;tue;315;6;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+41;blue-collar;married;basic.6y;no;no;no;cellular;may;tue;131;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+33;blue-collar;single;basic.6y;no;yes;no;cellular;may;tue;78;5;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+31;blue-collar;married;basic.9y;no;no;no;cellular;may;tue;97;3;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+28;blue-collar;married;basic.4y;no;no;yes;cellular;may;tue;337;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+43;services;married;high.school;no;yes;no;cellular;may;tue;185;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+29;admin.;single;professional.course;no;yes;no;cellular;may;tue;78;5;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+49;blue-collar;married;basic.9y;unknown;no;no;cellular;may;tue;55;2;999;2;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+28;blue-collar;married;basic.4y;no;no;no;cellular;may;tue;442;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+50;technician;married;basic.6y;unknown;no;no;cellular;may;tue;36;3;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+35;blue-collar;married;basic.9y;no;yes;no;cellular;may;tue;74;3;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+34;blue-collar;divorced;basic.9y;unknown;yes;no;cellular;may;tue;326;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+35;blue-collar;unknown;basic.9y;no;no;no;telephone;may;tue;81;5;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+32;blue-collar;divorced;basic.9y;no;yes;no;telephone;may;tue;179;4;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+41;management;married;high.school;unknown;yes;no;cellular;may;tue;527;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+37;admin.;divorced;university.degree;no;yes;no;cellular;may;tue;918;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;yes
+41;blue-collar;married;basic.9y;no;yes;yes;cellular;may;tue;225;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+33;blue-collar;married;high.school;no;yes;no;cellular;may;tue;787;10;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;yes
+39;technician;single;professional.course;no;no;no;telephone;may;tue;15;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+43;blue-collar;married;basic.4y;no;yes;yes;cellular;may;tue;279;1;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+27;services;married;high.school;no;no;yes;cellular;may;tue;416;4;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+39;technician;single;professional.course;no;yes;no;cellular;may;tue;83;1;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+39;technician;single;professional.course;no;yes;no;telephone;may;tue;25;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+32;technician;single;university.degree;no;no;yes;cellular;may;tue;542;3;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+39;technician;single;professional.course;no;yes;no;cellular;may;tue;256;1;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+39;technician;single;professional.course;no;no;no;cellular;may;tue;189;1;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+39;technician;single;professional.course;no;no;no;cellular;may;tue;251;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+50;services;married;university.degree;unknown;no;no;cellular;may;tue;116;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+43;technician;single;university.degree;no;no;yes;telephone;may;tue;1100;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+39;technician;married;high.school;no;yes;no;cellular;may;tue;451;4;3;1;success;-1.8;92.893;-46.2;1.291;5099.1;no
+33;blue-collar;single;basic.4y;no;yes;no;cellular;may;tue;184;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+29;admin.;married;university.degree;no;no;yes;telephone;may;tue;232;3;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+33;blue-collar;single;basic.4y;no;no;no;cellular;may;tue;209;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+30;admin.;married;high.school;no;yes;no;cellular;may;tue;16;5;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+32;blue-collar;single;basic.9y;no;yes;no;cellular;may;tue;340;2;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+33;blue-collar;single;basic.4y;no;no;no;cellular;may;tue;313;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+26;services;single;basic.9y;unknown;yes;no;cellular;may;tue;191;1;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+37;admin.;married;high.school;no;yes;no;cellular;may;tue;7;5;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+32;technician;divorced;professional.course;no;yes;no;cellular;may;tue;493;10;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+43;blue-collar;married;basic.4y;no;yes;no;cellular;may;tue;1182;1;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;yes
+28;unemployed;married;high.school;unknown;no;no;cellular;may;tue;216;1;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+47;entrepreneur;divorced;basic.9y;no;no;no;cellular;may;tue;184;3;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+53;technician;single;professional.course;unknown;no;no;telephone;may;tue;360;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+55;admin.;married;high.school;unknown;no;no;cellular;may;tue;165;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+38;blue-collar;married;basic.9y;no;yes;no;cellular;may;tue;161;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+46;blue-collar;married;basic.9y;unknown;no;no;cellular;may;tue;84;3;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+33;housemaid;married;basic.9y;no;yes;no;cellular;may;tue;61;2;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+27;technician;single;professional.course;no;no;no;cellular;may;tue;267;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+38;services;divorced;basic.6y;no;unknown;unknown;cellular;may;tue;351;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+55;blue-collar;married;basic.9y;unknown;no;no;cellular;may;tue;183;5;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+35;services;unknown;high.school;no;no;no;cellular;may;tue;516;1;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+48;management;married;basic.9y;no;yes;no;cellular;may;tue;393;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+32;blue-collar;single;basic.9y;no;yes;no;cellular;may;tue;286;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+36;blue-collar;married;high.school;no;no;no;cellular;may;tue;87;4;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+33;services;married;basic.9y;no;no;yes;cellular;may;tue;277;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+35;technician;single;university.degree;no;yes;no;cellular;may;tue;200;3;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+48;management;married;basic.9y;no;yes;no;cellular;may;tue;725;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;yes
+33;technician;divorced;high.school;no;no;no;cellular;may;tue;204;1;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+33;technician;divorced;high.school;no;yes;no;cellular;may;tue;175;1;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+33;technician;divorced;high.school;no;yes;no;cellular;may;tue;247;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+35;blue-collar;married;basic.9y;unknown;no;no;cellular;may;tue;136;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+40;blue-collar;single;basic.4y;no;no;no;cellular;may;tue;218;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+56;blue-collar;divorced;basic.4y;unknown;yes;no;cellular;may;tue;59;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+32;services;married;professional.course;no;yes;no;cellular;may;tue;146;3;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+45;blue-collar;married;basic.4y;no;no;no;cellular;may;tue;77;1;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+28;management;single;university.degree;no;yes;no;cellular;may;tue;245;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+42;blue-collar;single;basic.6y;no;no;no;cellular;may;tue;482;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+42;blue-collar;married;basic.4y;no;no;no;cellular;may;tue;56;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+49;blue-collar;married;basic.6y;unknown;no;yes;cellular;may;tue;354;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+29;blue-collar;single;basic.9y;no;yes;no;cellular;may;tue;396;1;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+32;admin.;married;university.degree;no;yes;no;cellular;may;tue;136;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+50;entrepreneur;married;university.degree;no;no;no;cellular;may;tue;549;1;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+30;admin.;single;basic.9y;no;no;no;cellular;may;tue;17;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+42;blue-collar;married;basic.4y;no;yes;no;cellular;may;tue;439;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+43;blue-collar;single;high.school;unknown;yes;no;cellular;may;tue;107;3;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+41;management;married;university.degree;no;unknown;unknown;cellular;may;tue;369;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+31;unemployed;married;professional.course;no;unknown;unknown;cellular;may;tue;356;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+28;services;single;high.school;no;no;no;cellular;may;tue;561;4;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+28;admin.;single;basic.9y;no;no;yes;cellular;may;tue;175;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+48;blue-collar;married;basic.9y;no;no;no;cellular;may;tue;309;1;10;1;success;-1.8;92.893;-46.2;1.291;5099.1;yes
+54;retired;divorced;professional.course;no;yes;no;telephone;may;tue;139;3;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+34;services;married;high.school;unknown;no;no;cellular;may;tue;148;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+55;admin.;married;high.school;unknown;yes;no;cellular;may;tue;139;2;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+28;admin.;single;basic.9y;no;no;yes;cellular;may;tue;549;1;10;1;success;-1.8;92.893;-46.2;1.291;5099.1;yes
+36;blue-collar;married;basic.9y;no;no;no;cellular;may;tue;395;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+29;blue-collar;married;high.school;no;yes;yes;cellular;may;tue;145;1;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+23;blue-collar;single;basic.9y;no;yes;no;cellular;may;tue;119;1;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+26;blue-collar;married;basic.4y;no;yes;no;cellular;may;tue;88;2;6;1;success;-1.8;92.893;-46.2;1.291;5099.1;no
+43;management;married;basic.6y;unknown;yes;no;cellular;may;tue;463;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+55;admin.;married;high.school;unknown;yes;no;cellular;may;tue;232;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+29;admin.;married;high.school;no;yes;no;cellular;may;tue;57;1;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+39;blue-collar;married;basic.4y;no;no;yes;cellular;may;tue;300;3;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+42;blue-collar;married;basic.9y;unknown;yes;no;cellular;may;tue;83;5;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+31;technician;single;professional.course;no;no;no;cellular;may;tue;200;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+33;blue-collar;single;basic.4y;no;unknown;unknown;cellular;may;tue;225;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+39;technician;single;professional.course;no;no;no;cellular;may;tue;844;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;yes
+32;blue-collar;married;basic.9y;no;yes;no;cellular;may;tue;293;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+33;services;divorced;high.school;no;no;no;cellular;may;tue;262;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+36;admin.;married;high.school;no;yes;no;cellular;may;tue;137;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+59;housemaid;divorced;basic.6y;unknown;yes;no;cellular;may;tue;130;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+28;blue-collar;single;basic.6y;unknown;yes;no;cellular;may;tue;387;3;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+32;technician;single;university.degree;no;yes;no;cellular;may;tue;211;2;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+37;technician;single;university.degree;no;no;yes;cellular;may;tue;246;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+39;blue-collar;single;basic.6y;no;yes;no;cellular;may;tue;357;1;999;2;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+37;technician;single;university.degree;no;yes;no;cellular;may;tue;322;1;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+33;services;married;basic.9y;no;no;no;cellular;may;tue;584;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+27;self-employed;married;university.degree;no;yes;no;cellular;may;tue;240;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+31;admin.;single;university.degree;no;yes;no;cellular;may;tue;374;2;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+44;unemployed;married;high.school;no;yes;no;cellular;may;tue;215;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+31;blue-collar;single;basic.9y;no;yes;no;cellular;may;tue;22;8;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+41;blue-collar;married;basic.6y;no;yes;yes;telephone;may;tue;207;4;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+35;technician;single;university.degree;no;no;no;cellular;may;tue;183;6;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+35;blue-collar;married;basic.9y;no;yes;yes;cellular;may;tue;100;1;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+48;management;married;basic.9y;no;yes;yes;cellular;may;tue;955;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;yes
+34;admin.;single;university.degree;no;no;no;cellular;may;tue;146;1;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+33;blue-collar;married;basic.9y;no;yes;yes;cellular;may;tue;31;4;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+35;blue-collar;married;basic.9y;no;no;no;cellular;may;tue;334;1;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+34;admin.;single;university.degree;no;no;no;cellular;may;tue;271;1;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+41;housemaid;married;basic.6y;no;yes;no;cellular;may;tue;223;4;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+33;services;married;basic.6y;no;yes;yes;cellular;may;tue;95;4;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+28;admin.;single;high.school;no;yes;no;cellular;may;tue;106;4;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+48;blue-collar;single;basic.4y;no;yes;no;cellular;may;tue;36;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+36;admin.;single;basic.9y;no;yes;no;cellular;may;tue;458;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;yes
+29;admin.;single;high.school;no;yes;yes;cellular;may;tue;53;3;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+49;retired;married;basic.4y;unknown;yes;no;cellular;may;tue;148;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+49;retired;married;basic.4y;unknown;no;no;cellular;may;tue;179;1;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+28;technician;single;basic.9y;no;no;no;cellular;may;tue;223;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+26;services;single;basic.9y;unknown;yes;no;cellular;may;tue;165;2;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+25;technician;married;university.degree;no;yes;no;cellular;may;tue;127;1;12;1;success;-1.8;92.893;-46.2;1.291;5099.1;no
+25;technician;married;university.degree;no;no;no;cellular;may;tue;158;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+28;technician;single;basic.9y;no;yes;no;cellular;may;tue;409;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;yes
+33;technician;single;university.degree;no;yes;no;cellular;may;tue;165;1;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+31;blue-collar;single;basic.9y;no;unknown;unknown;cellular;may;tue;88;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+35;admin.;single;university.degree;no;yes;no;cellular;may;tue;536;1;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+29;services;married;high.school;no;yes;yes;cellular;may;tue;380;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+32;technician;single;high.school;no;yes;no;cellular;may;tue;1531;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;yes
+35;admin.;single;high.school;no;no;no;cellular;may;tue;107;2;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+27;admin.;single;high.school;unknown;yes;no;cellular;may;tue;132;3;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+28;technician;divorced;professional.course;no;yes;no;cellular;may;tue;406;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+28;technician;divorced;professional.course;no;no;no;cellular;may;tue;240;1;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+32;admin.;single;high.school;no;no;no;cellular;may;tue;278;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+45;admin.;married;high.school;unknown;no;yes;cellular;may;tue;908;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+32;admin.;single;university.degree;no;yes;no;cellular;may;tue;706;3;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+57;housemaid;married;basic.4y;unknown;yes;no;cellular;may;tue;215;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+31;blue-collar;married;basic.9y;no;yes;no;cellular;may;tue;161;5;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+51;blue-collar;married;basic.6y;no;yes;no;telephone;may;tue;370;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+25;technician;single;professional.course;no;yes;no;cellular;may;tue;157;5;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+27;technician;single;professional.course;no;no;no;cellular;may;tue;209;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+41;blue-collar;married;basic.6y;unknown;no;no;cellular;may;tue;399;4;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+56;admin.;married;university.degree;no;yes;no;cellular;may;tue;1925;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+55;blue-collar;married;basic.9y;unknown;no;yes;cellular;may;tue;829;7;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;yes
+28;management;married;basic.9y;no;yes;no;cellular;may;tue;328;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+55;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;tue;109;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+41;blue-collar;married;basic.6y;unknown;no;yes;cellular;may;tue;178;3;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+49;entrepreneur;married;university.degree;no;no;no;cellular;may;tue;242;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+31;services;single;high.school;no;no;yes;cellular;may;tue;450;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+29;technician;single;university.degree;no;yes;yes;cellular;may;tue;485;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+28;technician;single;basic.9y;no;yes;no;cellular;may;tue;76;2;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+33;self-employed;married;basic.9y;no;unknown;unknown;cellular;may;tue;328;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+37;technician;single;university.degree;no;no;no;cellular;may;tue;289;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+31;technician;single;professional.course;no;no;no;cellular;may;tue;163;2;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+47;blue-collar;married;basic.9y;no;no;no;cellular;may;tue;118;2;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+48;admin.;divorced;university.degree;no;no;no;cellular;may;tue;53;9;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+22;blue-collar;married;basic.9y;no;unknown;unknown;cellular;may;tue;453;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+38;admin.;single;high.school;no;yes;no;cellular;may;tue;324;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+28;blue-collar;single;basic.9y;no;yes;yes;cellular;may;tue;637;3;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;yes
+35;admin.;single;basic.9y;no;yes;no;cellular;may;tue;301;3;9;1;success;-1.8;92.893;-46.2;1.291;5099.1;no
+43;admin.;single;university.degree;no;no;no;cellular;may;tue;139;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+50;blue-collar;married;basic.9y;unknown;no;yes;cellular;may;tue;118;2;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+31;unemployed;married;professional.course;no;yes;no;cellular;may;tue;32;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+29;admin.;married;high.school;no;no;no;cellular;may;tue;278;2;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+27;student;single;high.school;no;no;no;cellular;may;tue;112;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+30;technician;single;professional.course;no;no;no;telephone;may;tue;34;4;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+31;technician;married;professional.course;no;yes;no;cellular;may;tue;80;1;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+43;blue-collar;married;basic.4y;no;no;no;cellular;may;tue;609;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;yes
+48;blue-collar;married;basic.9y;no;no;yes;cellular;may;tue;276;2;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+32;blue-collar;married;basic.9y;unknown;no;no;cellular;may;tue;548;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;yes
+45;blue-collar;married;basic.6y;no;yes;no;telephone;may;tue;291;1;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+32;management;single;university.degree;no;yes;no;cellular;may;tue;1710;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;yes
+27;blue-collar;single;basic.9y;no;yes;no;telephone;may;tue;217;1;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+34;blue-collar;married;basic.9y;no;no;no;cellular;may;tue;192;3;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+40;services;single;high.school;no;yes;no;cellular;may;tue;208;6;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+27;technician;single;professional.course;no;no;no;cellular;may;tue;415;1;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+34;technician;married;professional.course;no;no;no;cellular;may;tue;278;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+32;management;single;university.degree;unknown;yes;yes;telephone;may;tue;326;3;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+44;admin.;divorced;high.school;no;yes;no;cellular;may;tue;173;2;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+34;blue-collar;married;basic.6y;unknown;yes;no;cellular;may;tue;306;2;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+53;technician;married;professional.course;no;no;no;cellular;may;tue;350;5;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+39;admin.;married;university.degree;no;no;no;cellular;may;tue;614;3;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;yes
+45;blue-collar;married;basic.4y;no;yes;no;cellular;may;tue;224;2;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+33;technician;divorced;professional.course;no;yes;yes;cellular;may;tue;668;4;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+24;admin.;single;high.school;unknown;no;no;telephone;may;tue;748;6;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+42;services;married;basic.6y;no;no;no;cellular;may;tue;474;2;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+40;services;single;high.school;no;yes;no;cellular;may;tue;143;4;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+57;blue-collar;married;basic.6y;unknown;yes;no;cellular;may;tue;168;4;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+43;blue-collar;married;basic.4y;no;yes;yes;cellular;may;tue;317;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+34;admin.;married;high.school;no;yes;no;cellular;may;tue;106;3;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+27;technician;married;professional.course;no;no;no;cellular;may;tue;234;6;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+27;blue-collar;married;basic.4y;no;no;no;cellular;may;tue;314;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+41;blue-collar;married;basic.6y;no;no;no;cellular;may;tue;897;4;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;yes
+31;services;married;high.school;no;yes;no;cellular;may;tue;398;6;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;yes
+33;technician;single;professional.course;no;yes;no;telephone;may;tue;422;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+49;technician;divorced;professional.course;no;yes;no;cellular;may;tue;130;3;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+34;technician;single;university.degree;no;no;no;cellular;may;tue;61;4;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+32;services;married;high.school;no;no;no;cellular;may;tue;863;4;1;2;success;-1.8;92.893;-46.2;1.291;5099.1;yes
+35;admin.;single;university.degree;no;yes;no;cellular;may;tue;255;2;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+35;blue-collar;single;high.school;no;yes;yes;cellular;may;tue;259;3;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+29;blue-collar;married;basic.9y;no;yes;no;telephone;may;tue;29;2;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+31;services;single;high.school;no;yes;no;cellular;may;tue;750;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;yes
+38;blue-collar;married;basic.6y;no;no;yes;cellular;may;tue;306;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+33;blue-collar;single;basic.4y;no;yes;no;cellular;may;tue;266;2;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+51;blue-collar;divorced;basic.4y;no;yes;no;cellular;may;tue;314;4;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+30;student;single;university.degree;no;yes;no;cellular;may;tue;775;3;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;yes
+32;technician;single;university.degree;no;yes;yes;cellular;may;tue;181;2;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+28;services;single;high.school;no;yes;no;cellular;may;tue;178;4;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+32;technician;single;university.degree;unknown;yes;no;cellular;may;tue;254;4;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+34;housemaid;single;high.school;no;no;no;cellular;may;tue;351;7;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+38;admin.;married;high.school;no;yes;yes;cellular;may;tue;373;3;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+35;blue-collar;married;high.school;no;no;no;cellular;may;tue;180;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+28;student;single;university.degree;unknown;no;no;cellular;may;tue;135;4;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+59;housemaid;divorced;basic.6y;unknown;yes;no;cellular;may;tue;216;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+36;blue-collar;married;unknown;no;yes;no;cellular;may;tue;86;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+36;blue-collar;single;university.degree;no;yes;no;cellular;may;tue;85;2;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+32;entrepreneur;married;high.school;no;yes;no;cellular;may;tue;325;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+38;admin.;divorced;university.degree;no;no;no;cellular;may;tue;187;4;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+32;blue-collar;married;basic.4y;no;no;no;cellular;may;tue;463;3;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+27;services;married;basic.6y;no;no;no;cellular;may;tue;142;2;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+35;blue-collar;married;basic.9y;no;no;no;cellular;may;tue;280;2;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+31;services;single;high.school;no;yes;no;cellular;may;tue;398;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+57;retired;divorced;basic.9y;no;yes;no;telephone;may;tue;149;5;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+36;services;divorced;basic.9y;no;no;no;cellular;may;tue;191;3;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+28;management;single;university.degree;no;yes;no;cellular;may;tue;193;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+36;services;single;high.school;no;yes;no;cellular;may;tue;302;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+43;blue-collar;married;basic.9y;no;yes;yes;cellular;may;tue;317;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+35;services;divorced;high.school;no;yes;no;cellular;may;tue;211;5;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+28;student;single;university.degree;unknown;yes;no;cellular;may;tue;101;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+29;services;married;high.school;no;yes;no;cellular;may;tue;172;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+37;technician;single;university.degree;no;yes;no;cellular;may;tue;464;3;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+32;blue-collar;single;professional.course;no;no;no;cellular;may;tue;343;6;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+30;self-employed;married;professional.course;no;yes;no;cellular;may;tue;98;5;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+45;admin.;married;university.degree;no;no;no;cellular;may;tue;198;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+32;technician;single;high.school;no;yes;no;cellular;may;tue;361;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+27;management;married;university.degree;no;yes;no;telephone;may;tue;345;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+33;technician;single;high.school;no;no;no;telephone;may;tue;114;5;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+33;technician;divorced;high.school;no;yes;no;cellular;may;tue;210;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+38;services;divorced;basic.6y;no;yes;no;telephone;may;tue;556;2;10;1;success;-1.8;92.893;-46.2;1.291;5099.1;yes
+32;management;single;professional.course;no;yes;no;cellular;may;tue;68;10;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+31;technician;married;professional.course;no;yes;no;cellular;may;tue;239;4;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+46;admin.;married;basic.9y;unknown;no;no;cellular;may;tue;349;2;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+33;blue-collar;married;basic.9y;no;yes;no;cellular;may;tue;112;4;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+46;technician;married;professional.course;no;yes;no;telephone;may;tue;34;4;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+49;admin.;divorced;high.school;no;yes;no;cellular;may;tue;181;4;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+47;blue-collar;divorced;basic.4y;unknown;no;no;cellular;may;tue;178;3;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+32;admin.;single;university.degree;no;yes;no;cellular;may;tue;206;2;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+28;services;single;high.school;no;yes;no;cellular;may;tue;194;4;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+32;admin.;single;high.school;no;yes;yes;cellular;may;tue;209;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+46;management;married;high.school;unknown;no;no;cellular;may;tue;692;4;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+46;blue-collar;married;basic.9y;unknown;no;no;telephone;may;tue;210;3;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+54;blue-collar;married;basic.4y;no;no;no;telephone;may;tue;206;6;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+48;admin.;divorced;university.degree;no;no;no;telephone;may;tue;355;5;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+35;admin.;single;high.school;no;no;no;telephone;may;tue;339;4;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+33;services;married;high.school;no;yes;no;cellular;may;tue;737;3;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;yes
+50;entrepreneur;married;university.degree;no;yes;no;cellular;may;tue;191;3;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+41;technician;single;professional.course;no;yes;no;cellular;may;tue;175;2;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+36;services;divorced;basic.9y;no;no;no;cellular;may;tue;286;5;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+33;blue-collar;married;basic.4y;no;no;no;cellular;may;tue;93;5;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+27;technician;single;professional.course;no;no;no;cellular;may;tue;170;3;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+44;admin.;divorced;high.school;no;yes;no;cellular;may;tue;173;8;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+36;technician;married;professional.course;no;no;no;cellular;may;tue;541;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+42;blue-collar;married;basic.4y;no;yes;no;telephone;may;tue;89;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+31;admin.;married;high.school;no;unknown;unknown;cellular;may;tue;213;6;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+34;self-employed;single;university.degree;no;yes;no;cellular;may;tue;194;3;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+59;admin.;divorced;university.degree;unknown;unknown;unknown;cellular;may;tue;158;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+28;technician;married;basic.9y;no;no;no;telephone;may;tue;472;2;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+28;blue-collar;married;high.school;no;unknown;unknown;cellular;may;tue;135;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+33;blue-collar;single;professional.course;no;no;no;cellular;may;tue;304;6;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+33;management;married;basic.9y;unknown;yes;no;cellular;may;tue;275;3;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+28;unemployed;married;high.school;unknown;yes;no;telephone;may;tue;155;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+29;technician;single;professional.course;no;no;no;telephone;may;tue;125;4;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+38;admin.;single;high.school;no;no;no;cellular;may;tue;96;6;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+37;services;divorced;basic.6y;no;no;no;telephone;may;tue;175;5;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+26;self-employed;married;basic.4y;no;yes;no;cellular;may;tue;134;4;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+34;services;married;high.school;unknown;no;yes;cellular;may;tue;22;5;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+33;blue-collar;single;basic.4y;no;no;yes;cellular;may;tue;807;3;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+33;blue-collar;married;basic.6y;no;yes;no;cellular;may;tue;235;2;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+53;technician;married;basic.6y;unknown;yes;no;cellular;may;tue;673;4;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+35;admin.;married;high.school;no;yes;no;cellular;may;tue;124;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+53;technician;married;professional.course;no;yes;no;cellular;may;tue;57;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+38;admin.;divorced;university.degree;no;no;no;cellular;may;tue;225;3;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+32;admin.;single;university.degree;no;no;no;cellular;may;tue;144;5;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+49;blue-collar;married;high.school;no;yes;no;cellular;may;tue;177;2;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+42;self-employed;divorced;high.school;no;yes;no;cellular;may;tue;455;2;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+34;blue-collar;married;basic.9y;no;yes;no;cellular;may;tue;264;4;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+31;technician;married;high.school;unknown;no;no;telephone;may;tue;295;3;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+30;admin.;married;university.degree;no;no;no;cellular;may;tue;285;3;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+34;admin.;married;high.school;no;no;no;cellular;may;tue;166;5;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+42;services;single;high.school;no;yes;no;cellular;may;tue;456;2;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+34;blue-collar;married;basic.4y;no;no;yes;telephone;may;tue;101;2;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+42;blue-collar;married;basic.4y;no;no;no;telephone;may;tue;256;4;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+37;services;married;high.school;no;no;no;cellular;may;tue;497;5;999;2;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+53;self-employed;married;basic.9y;no;yes;no;cellular;may;tue;600;4;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+38;student;divorced;unknown;no;yes;no;cellular;may;tue;268;3;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+34;blue-collar;married;basic.9y;unknown;yes;yes;telephone;may;tue;899;3;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+27;blue-collar;single;basic.9y;no;yes;no;cellular;may;tue;339;2;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+33;blue-collar;married;basic.9y;no;yes;no;telephone;may;tue;220;3;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+25;student;single;university.degree;no;yes;yes;cellular;may;tue;700;3;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+43;blue-collar;married;basic.6y;no;no;no;cellular;may;tue;150;7;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+35;admin.;single;high.school;no;no;no;cellular;may;tue;147;4;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+35;blue-collar;single;high.school;no;yes;yes;telephone;may;tue;236;6;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+55;blue-collar;divorced;basic.9y;no;no;no;cellular;may;tue;133;3;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+34;admin.;married;high.school;no;yes;no;telephone;may;tue;58;2;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+31;technician;married;high.school;unknown;yes;yes;telephone;may;tue;234;5;999;0;nonexistent;-1.8;92.893;-46.2;1.291;5099.1;no
+43;technician;married;basic.4y;no;yes;no;telephone;may;tue;1388;7;999;1;failure;-1.8;92.893;-46.2;1.291;5099.1;no
+47;admin.;divorced;university.degree;unknown;no;no;cellular;may;wed;130;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+35;entrepreneur;married;university.degree;no;yes;no;cellular;may;wed;57;5;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+42;services;single;basic.6y;no;yes;no;cellular;may;wed;70;5;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+37;admin.;divorced;university.degree;unknown;yes;no;cellular;may;wed;31;7;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+38;technician;single;professional.course;no;yes;no;cellular;may;wed;50;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+33;blue-collar;married;basic.4y;no;no;yes;cellular;may;wed;496;2;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;yes
+26;blue-collar;single;basic.9y;no;yes;yes;cellular;may;wed;94;3;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+30;technician;single;high.school;no;yes;no;telephone;may;wed;83;5;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+26;student;single;high.school;no;no;no;telephone;may;wed;29;4;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+39;admin.;married;basic.9y;unknown;yes;no;telephone;may;wed;16;6;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+27;admin.;single;high.school;no;yes;yes;cellular;may;wed;46;4;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+43;blue-collar;married;basic.6y;unknown;yes;no;telephone;may;wed;20;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+25;admin.;married;high.school;no;yes;no;cellular;may;wed;152;4;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+26;student;single;high.school;no;yes;yes;telephone;may;wed;61;4;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+33;blue-collar;single;university.degree;no;yes;yes;cellular;may;wed;389;4;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+55;management;married;basic.4y;no;yes;yes;cellular;may;wed;1108;3;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+40;blue-collar;single;basic.9y;no;yes;yes;cellular;may;wed;8;7;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+35;technician;single;university.degree;no;yes;yes;cellular;may;wed;310;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+38;self-employed;married;basic.9y;no;yes;yes;cellular;may;wed;197;3;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+41;services;married;high.school;no;yes;yes;cellular;may;wed;21;8;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+29;management;divorced;basic.9y;no;yes;yes;cellular;may;wed;117;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+53;services;married;high.school;no;yes;no;telephone;may;wed;413;6;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+34;services;divorced;basic.6y;unknown;yes;no;cellular;may;wed;24;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+55;blue-collar;divorced;basic.4y;unknown;yes;no;cellular;may;wed;254;3;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+38;blue-collar;single;basic.9y;no;yes;no;telephone;may;wed;65;5;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+51;blue-collar;divorced;basic.9y;no;no;no;cellular;may;wed;53;5;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+57;admin.;married;basic.4y;unknown;yes;no;cellular;may;wed;164;2;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+24;housemaid;married;basic.9y;no;yes;no;cellular;may;wed;321;4;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+47;blue-collar;married;basic.4y;unknown;yes;no;cellular;may;wed;5;7;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+35;admin.;single;high.school;no;yes;no;cellular;may;wed;82;5;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+32;blue-collar;married;basic.6y;unknown;yes;no;cellular;may;wed;81;3;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+34;services;divorced;basic.6y;unknown;unknown;unknown;cellular;may;wed;136;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+43;self-employed;divorced;basic.9y;no;yes;no;cellular;may;wed;133;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+36;blue-collar;divorced;basic.9y;unknown;yes;no;cellular;may;wed;14;4;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+53;blue-collar;single;unknown;no;yes;no;cellular;may;wed;320;4;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+42;services;married;high.school;no;yes;yes;cellular;may;wed;77;2;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+36;blue-collar;divorced;basic.9y;unknown;no;no;cellular;may;wed;211;3;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+43;admin.;married;high.school;no;yes;no;cellular;may;wed;129;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+38;self-employed;married;basic.9y;no;yes;no;telephone;may;wed;26;1;999;2;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+43;admin.;married;high.school;no;yes;no;cellular;may;wed;200;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+36;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;wed;38;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+26;student;single;high.school;no;no;no;telephone;may;wed;95;3;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+37;blue-collar;married;basic.9y;no;no;no;cellular;may;wed;49;3;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+36;blue-collar;married;basic.9y;unknown;yes;no;cellular;may;wed;210;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+28;blue-collar;single;basic.6y;no;no;no;cellular;may;wed;863;3;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;yes
+29;blue-collar;single;basic.9y;no;yes;no;telephone;may;wed;15;7;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+37;admin.;divorced;university.degree;unknown;yes;no;cellular;may;wed;259;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+55;blue-collar;divorced;basic.4y;unknown;no;no;cellular;may;wed;130;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+37;services;married;basic.9y;unknown;yes;no;telephone;may;wed;211;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+31;blue-collar;married;basic.9y;unknown;yes;yes;cellular;may;wed;87;3;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+29;self-employed;single;professional.course;no;yes;no;cellular;may;wed;774;2;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;yes
+35;blue-collar;married;basic.9y;no;no;no;cellular;may;wed;15;6;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+28;blue-collar;single;basic.9y;no;yes;yes;cellular;may;wed;348;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+36;blue-collar;divorced;basic.9y;no;no;no;cellular;may;wed;129;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+35;technician;married;professional.course;no;no;no;cellular;may;wed;44;9;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+29;technician;single;professional.course;no;yes;no;cellular;may;wed;231;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+36;blue-collar;divorced;basic.9y;no;yes;no;cellular;may;wed;155;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+27;blue-collar;married;high.school;no;unknown;unknown;cellular;may;wed;74;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+43;blue-collar;married;basic.4y;no;yes;yes;cellular;may;wed;135;6;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+36;blue-collar;married;basic.6y;no;yes;no;cellular;may;wed;217;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+30;blue-collar;single;high.school;no;no;no;cellular;may;wed;22;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+33;technician;single;university.degree;no;no;no;telephone;may;wed;32;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+23;student;single;high.school;no;yes;no;cellular;may;wed;435;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+36;blue-collar;married;high.school;no;yes;no;telephone;may;wed;25;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+23;services;married;high.school;no;no;no;cellular;may;wed;370;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+29;blue-collar;divorced;basic.9y;no;yes;yes;cellular;may;wed;201;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+25;blue-collar;single;basic.6y;unknown;no;no;cellular;may;wed;793;5;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+41;blue-collar;married;basic.9y;no;yes;no;cellular;may;wed;152;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+29;blue-collar;married;high.school;no;yes;no;cellular;may;wed;66;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+34;admin.;married;university.degree;no;no;no;cellular;may;wed;213;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+44;admin.;married;high.school;no;yes;no;cellular;may;wed;150;3;999;2;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+41;blue-collar;married;basic.9y;no;yes;no;cellular;may;wed;364;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+34;admin.;married;university.degree;no;no;no;cellular;may;wed;329;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+27;blue-collar;single;basic.9y;no;yes;no;cellular;may;wed;282;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+58;blue-collar;married;basic.4y;unknown;yes;yes;cellular;may;wed;173;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+48;admin.;divorced;university.degree;no;yes;no;telephone;may;wed;51;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+30;blue-collar;single;basic.9y;no;yes;no;cellular;may;wed;68;2;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+35;self-employed;single;high.school;no;yes;no;cellular;may;wed;109;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+28;technician;married;basic.9y;no;yes;no;cellular;may;wed;23;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+28;admin.;married;high.school;no;yes;no;cellular;may;wed;1073;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;yes
+35;self-employed;single;high.school;no;yes;no;cellular;may;wed;207;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+41;services;married;high.school;no;yes;no;cellular;may;wed;193;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+32;blue-collar;single;basic.9y;unknown;yes;no;telephone;may;wed;134;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+28;technician;married;basic.9y;no;yes;no;cellular;may;wed;224;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+29;blue-collar;married;high.school;no;yes;no;cellular;may;wed;173;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+35;technician;married;professional.course;no;yes;no;telephone;may;wed;67;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+31;admin.;single;high.school;no;yes;yes;cellular;may;wed;149;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+51;blue-collar;divorced;basic.9y;no;no;yes;cellular;may;wed;29;6;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+43;technician;single;high.school;no;yes;yes;cellular;may;wed;610;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;yes
+29;admin.;single;basic.9y;no;no;yes;cellular;may;wed;118;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+35;management;married;high.school;no;yes;no;cellular;may;wed;95;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+27;self-employed;married;basic.9y;no;yes;no;cellular;may;wed;84;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+49;admin.;married;basic.4y;no;yes;no;cellular;may;wed;43;3;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+41;blue-collar;married;basic.9y;no;no;no;cellular;may;wed;93;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+42;blue-collar;married;basic.4y;no;yes;no;cellular;may;wed;172;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+41;blue-collar;married;basic.9y;no;no;yes;cellular;may;wed;161;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+32;blue-collar;single;basic.9y;unknown;no;no;cellular;may;wed;785;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+28;student;single;high.school;no;yes;no;cellular;may;wed;628;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+53;retired;divorced;university.degree;no;yes;no;cellular;may;wed;172;2;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+26;blue-collar;single;basic.9y;no;yes;no;cellular;may;wed;200;2;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+38;admin.;married;university.degree;no;yes;yes;cellular;may;wed;134;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+32;unemployed;single;university.degree;no;yes;no;cellular;may;wed;51;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+31;admin.;single;high.school;no;yes;no;cellular;may;wed;850;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;yes
+55;retired;divorced;basic.4y;unknown;no;no;cellular;may;wed;526;4;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;yes
+43;admin.;married;high.school;no;no;no;cellular;may;wed;140;3;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+38;blue-collar;single;basic.9y;unknown;yes;no;cellular;may;wed;93;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+34;services;single;high.school;no;yes;yes;cellular;may;wed;87;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+37;admin.;married;university.degree;no;yes;yes;cellular;may;wed;318;7;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+53;services;married;high.school;no;yes;no;telephone;may;wed;9;9;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+33;services;single;basic.6y;unknown;yes;yes;telephone;may;wed;19;8;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+31;admin.;single;university.degree;no;yes;no;cellular;may;wed;157;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+43;self-employed;single;high.school;unknown;no;no;cellular;may;wed;79;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+30;technician;single;high.school;no;yes;no;cellular;may;wed;9;12;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+34;technician;single;professional.course;no;yes;no;cellular;may;wed;19;11;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+53;blue-collar;married;basic.6y;unknown;yes;no;cellular;may;wed;659;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;yes
+34;blue-collar;single;high.school;no;yes;no;cellular;may;wed;39;1;10;1;success;-1.8;92.893;-46.2;1.281;5099.1;no
+36;services;divorced;high.school;no;yes;no;cellular;may;wed;502;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+51;admin.;divorced;basic.9y;no;yes;no;cellular;may;wed;113;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+44;technician;married;professional.course;unknown;yes;yes;cellular;may;wed;267;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+37;technician;divorced;professional.course;no;yes;yes;telephone;may;wed;30;10;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+38;self-employed;married;basic.9y;no;no;yes;telephone;may;wed;355;4;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+31;unemployed;married;basic.9y;no;yes;no;telephone;may;wed;43;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+43;blue-collar;married;basic.4y;unknown;yes;yes;cellular;may;wed;240;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+36;blue-collar;married;basic.6y;unknown;yes;yes;cellular;may;wed;10;9;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+53;management;married;university.degree;no;yes;no;cellular;may;wed;17;13;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+33;admin.;divorced;university.degree;no;yes;no;telephone;may;wed;47;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+27;admin.;single;high.school;no;yes;no;cellular;may;wed;296;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+43;blue-collar;married;basic.4y;no;no;yes;cellular;may;wed;69;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+42;blue-collar;divorced;basic.6y;no;no;no;cellular;may;wed;323;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+24;technician;married;professional.course;no;no;yes;cellular;may;wed;167;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+31;unemployed;married;basic.9y;no;no;no;cellular;may;wed;570;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;yes
+28;blue-collar;single;high.school;no;yes;no;cellular;may;wed;516;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;yes
+40;blue-collar;single;basic.9y;no;yes;no;cellular;may;wed;220;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+27;admin.;single;high.school;no;yes;yes;cellular;may;wed;177;4;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+44;blue-collar;married;basic.4y;unknown;no;no;cellular;may;wed;388;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+36;services;married;basic.9y;no;no;no;cellular;may;wed;61;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+30;entrepreneur;married;university.degree;no;no;no;cellular;may;wed;585;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;yes
+33;admin.;divorced;university.degree;no;no;no;cellular;may;wed;699;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+34;blue-collar;married;high.school;no;yes;no;cellular;may;wed;133;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+33;admin.;single;university.degree;no;no;no;cellular;may;wed;6;7;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+35;blue-collar;married;basic.6y;no;no;no;cellular;may;wed;96;2;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+34;management;married;university.degree;no;no;yes;telephone;may;wed;318;5;6;1;success;-1.8;92.893;-46.2;1.281;5099.1;no
+23;blue-collar;married;basic.9y;no;yes;no;cellular;may;wed;413;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+24;student;single;high.school;no;yes;yes;cellular;may;wed;66;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+34;blue-collar;married;high.school;no;no;no;cellular;may;wed;590;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;yes
+38;blue-collar;married;basic.6y;unknown;yes;no;cellular;may;wed;272;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+57;services;married;high.school;unknown;no;no;cellular;may;wed;88;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+36;services;single;high.school;no;no;no;cellular;may;wed;15;7;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+33;technician;single;university.degree;no;yes;no;cellular;may;wed;152;3;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+32;blue-collar;single;basic.4y;no;no;no;cellular;may;wed;902;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;yes
+31;management;single;university.degree;no;yes;no;cellular;may;wed;294;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+42;admin.;divorced;high.school;no;yes;no;telephone;may;wed;15;5;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+29;admin.;single;high.school;no;no;no;cellular;may;wed;290;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+43;management;married;university.degree;no;yes;no;cellular;may;wed;12;7;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+44;housemaid;married;basic.4y;no;yes;no;cellular;may;wed;31;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+34;admin.;married;university.degree;no;yes;no;cellular;may;wed;135;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+29;management;married;university.degree;no;no;no;cellular;may;wed;142;3;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+24;student;single;high.school;no;no;no;cellular;may;wed;669;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;yes
+31;technician;single;professional.course;no;yes;yes;cellular;may;wed;123;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+34;housemaid;single;high.school;no;no;no;cellular;may;wed;391;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;yes
+37;services;single;basic.6y;no;yes;no;cellular;may;wed;93;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+35;admin.;divorced;high.school;no;no;no;cellular;may;wed;133;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+35;admin.;divorced;high.school;no;yes;no;cellular;may;wed;99;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+41;blue-collar;married;basic.9y;unknown;yes;no;cellular;may;wed;256;2;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+32;blue-collar;married;high.school;no;yes;no;cellular;may;wed;394;3;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;yes
+33;services;single;basic.6y;unknown;no;no;cellular;may;wed;74;3;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+41;services;married;high.school;no;yes;no;cellular;may;wed;67;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+29;admin.;single;high.school;no;no;no;cellular;may;wed;131;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+29;admin.;single;high.school;no;yes;no;cellular;may;wed;149;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+31;admin.;married;university.degree;no;no;no;cellular;may;wed;27;5;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+35;admin.;single;high.school;no;no;no;cellular;may;wed;152;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+49;blue-collar;married;basic.9y;unknown;no;no;cellular;may;wed;116;4;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+29;admin.;single;basic.9y;no;yes;no;telephone;may;wed;41;2;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+24;admin.;married;basic.9y;no;yes;no;cellular;may;wed;302;1;10;1;success;-1.8;92.893;-46.2;1.281;5099.1;yes
+33;blue-collar;single;university.degree;unknown;no;no;cellular;may;wed;275;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+29;admin.;married;university.degree;no;no;no;cellular;may;wed;128;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+23;student;single;high.school;no;yes;no;cellular;may;wed;78;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+42;services;single;basic.6y;no;yes;yes;cellular;may;wed;11;8;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+29;admin.;married;university.degree;no;no;no;cellular;may;wed;101;5;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+53;management;married;university.degree;no;no;no;cellular;may;wed;147;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+25;blue-collar;single;high.school;no;yes;no;cellular;may;wed;262;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+24;services;single;high.school;no;no;no;cellular;may;wed;46;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+31;technician;single;professional.course;no;no;no;cellular;may;wed;546;3;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;yes
+33;services;married;high.school;no;yes;no;cellular;may;wed;1512;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;yes
+35;entrepreneur;married;university.degree;no;no;no;cellular;may;wed;104;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+33;services;single;basic.6y;unknown;no;no;cellular;may;wed;85;4;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+30;technician;single;university.degree;no;yes;no;telephone;may;wed;119;3;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+52;admin.;married;basic.9y;no;no;no;cellular;may;wed;423;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+31;self-employed;married;basic.9y;no;no;no;cellular;may;wed;315;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+29;blue-collar;married;basic.9y;no;yes;no;cellular;may;wed;78;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+39;blue-collar;single;university.degree;no;no;no;cellular;may;wed;9;5;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+39;blue-collar;married;basic.4y;no;no;no;cellular;may;wed;44;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+28;admin.;married;high.school;no;no;no;cellular;may;wed;75;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+59;admin.;divorced;high.school;no;unknown;unknown;telephone;may;wed;157;3;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+46;admin.;married;high.school;unknown;yes;no;cellular;may;wed;109;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+41;technician;married;basic.9y;no;yes;no;cellular;may;wed;66;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+36;admin.;married;university.degree;no;yes;no;cellular;may;wed;7;6;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+28;blue-collar;single;high.school;no;yes;no;cellular;may;wed;529;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+48;blue-collar;married;basic.6y;no;no;no;cellular;may;wed;349;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+39;blue-collar;divorced;basic.6y;unknown;no;no;cellular;may;wed;101;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+34;blue-collar;married;basic.6y;no;no;no;cellular;may;wed;127;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+39;technician;divorced;professional.course;no;no;yes;cellular;may;wed;83;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+39;blue-collar;divorced;basic.6y;unknown;yes;no;cellular;may;wed;333;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;yes
+39;blue-collar;divorced;basic.6y;unknown;yes;no;cellular;may;wed;408;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+58;retired;married;basic.4y;unknown;yes;no;cellular;may;wed;205;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+31;blue-collar;married;basic.4y;no;yes;no;cellular;may;wed;158;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+55;blue-collar;married;basic.4y;unknown;unknown;unknown;telephone;may;wed;18;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+41;entrepreneur;married;university.degree;no;yes;no;cellular;may;wed;276;1;12;1;success;-1.8;92.893;-46.2;1.281;5099.1;no
+43;blue-collar;married;basic.4y;no;yes;no;cellular;may;wed;264;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+37;technician;divorced;professional.course;no;no;no;cellular;may;wed;109;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+38;self-employed;married;basic.9y;no;no;yes;cellular;may;wed;234;2;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+30;blue-collar;married;basic.9y;unknown;no;no;telephone;may;wed;115;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+29;services;single;basic.6y;no;yes;no;cellular;may;wed;272;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+37;technician;divorced;professional.course;no;no;no;cellular;may;wed;329;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+30;blue-collar;married;basic.9y;unknown;no;no;cellular;may;wed;155;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+43;blue-collar;married;basic.4y;no;no;yes;cellular;may;wed;589;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+39;admin.;divorced;basic.9y;no;no;no;telephone;may;wed;363;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+36;blue-collar;married;basic.9y;unknown;no;no;cellular;may;wed;951;3;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;yes
+38;technician;married;university.degree;no;yes;no;cellular;may;wed;172;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+30;admin.;single;high.school;no;yes;no;cellular;may;wed;53;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+29;blue-collar;married;professional.course;no;no;no;telephone;may;wed;34;8;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+31;management;single;university.degree;no;no;no;cellular;may;wed;82;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+30;services;single;high.school;no;yes;no;telephone;may;wed;155;6;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+31;unemployed;married;basic.9y;no;yes;no;cellular;may;wed;788;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+29;blue-collar;single;basic.9y;no;yes;no;cellular;may;wed;528;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+41;blue-collar;married;basic.4y;unknown;no;no;cellular;may;wed;296;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+31;blue-collar;single;basic.9y;no;no;no;cellular;may;wed;114;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+51;blue-collar;divorced;basic.9y;no;yes;no;cellular;may;wed;314;4;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+43;blue-collar;married;basic.4y;unknown;no;no;cellular;may;wed;249;2;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+28;services;single;high.school;no;yes;yes;cellular;may;wed;562;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;yes
+36;services;single;professional.course;no;yes;no;cellular;may;wed;112;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+38;blue-collar;married;basic.9y;no;no;no;cellular;may;wed;204;1;11;1;success;-1.8;92.893;-46.2;1.281;5099.1;no
+31;self-employed;married;basic.9y;no;unknown;unknown;cellular;may;wed;168;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+23;blue-collar;single;basic.9y;no;yes;no;telephone;may;wed;60;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+31;services;single;basic.6y;no;yes;no;cellular;may;wed;734;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;yes
+31;admin.;single;basic.9y;no;no;no;telephone;may;wed;80;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+35;admin.;single;university.degree;unknown;no;no;cellular;may;wed;60;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+33;services;single;high.school;no;yes;no;cellular;may;wed;281;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+43;admin.;divorced;basic.9y;no;yes;no;cellular;may;wed;321;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+28;blue-collar;single;basic.9y;no;yes;no;cellular;may;wed;149;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+28;blue-collar;single;basic.9y;no;no;no;cellular;may;wed;155;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+47;blue-collar;single;basic.6y;unknown;no;no;cellular;may;wed;87;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+35;blue-collar;single;high.school;no;yes;no;cellular;may;wed;49;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+30;services;married;high.school;no;no;no;cellular;may;wed;354;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+28;blue-collar;single;basic.9y;no;yes;no;cellular;may;wed;294;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+47;services;married;professional.course;no;yes;no;cellular;may;wed;137;3;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+36;admin.;divorced;high.school;no;yes;no;cellular;may;wed;191;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+33;admin.;married;university.degree;no;yes;no;cellular;may;wed;172;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+36;blue-collar;married;basic.9y;no;yes;yes;cellular;may;wed;55;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+27;admin.;single;high.school;no;no;no;cellular;may;wed;167;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+49;entrepreneur;married;unknown;no;no;no;cellular;may;wed;85;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+53;management;married;university.degree;no;yes;no;cellular;may;wed;92;2;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+48;admin.;divorced;unknown;no;yes;no;cellular;may;wed;16;6;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+27;admin.;single;high.school;no;no;no;telephone;may;wed;444;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+29;admin.;single;university.degree;no;no;no;cellular;may;wed;132;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+28;technician;married;professional.course;no;yes;no;cellular;may;wed;10;5;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+30;technician;single;unknown;no;yes;yes;cellular;may;wed;324;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+22;student;single;high.school;no;yes;no;cellular;may;wed;315;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+51;blue-collar;divorced;basic.9y;no;no;no;cellular;may;wed;64;5;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+32;blue-collar;married;basic.9y;no;yes;yes;cellular;may;wed;110;4;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+26;services;single;high.school;no;yes;no;telephone;may;wed;421;3;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+34;services;divorced;basic.6y;unknown;no;no;cellular;may;wed;79;3;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+29;blue-collar;single;basic.9y;no;no;no;cellular;may;wed;174;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+29;blue-collar;married;basic.9y;unknown;yes;no;cellular;may;wed;257;4;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+42;technician;divorced;high.school;no;yes;no;cellular;may;wed;228;2;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+33;blue-collar;married;basic.9y;no;no;no;cellular;may;wed;296;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+33;admin.;single;university.degree;no;yes;no;cellular;may;wed;9;8;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+51;blue-collar;divorced;basic.9y;no;yes;no;cellular;may;wed;337;3;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+31;admin.;married;high.school;no;yes;no;cellular;may;wed;476;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;yes
+28;technician;single;professional.course;no;yes;no;telephone;may;wed;185;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+51;blue-collar;married;basic.4y;no;no;no;cellular;may;wed;104;4;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+28;technician;single;professional.course;no;yes;no;cellular;may;wed;244;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+29;admin.;single;university.degree;no;yes;no;cellular;may;wed;152;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+28;blue-collar;married;professional.course;unknown;yes;no;cellular;may;wed;573;7;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+44;admin.;married;high.school;no;no;no;cellular;may;wed;231;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+58;management;married;basic.4y;no;yes;yes;cellular;may;wed;184;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+41;blue-collar;married;basic.4y;no;yes;no;cellular;may;wed;124;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+40;blue-collar;single;basic.9y;no;no;no;cellular;may;wed;21;6;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+36;blue-collar;single;basic.9y;unknown;no;no;cellular;may;wed;233;3;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+45;blue-collar;married;basic.9y;no;no;no;cellular;may;wed;96;2;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+30;blue-collar;married;basic.9y;no;yes;no;cellular;may;wed;99;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+31;admin.;single;basic.9y;no;yes;no;cellular;may;wed;117;2;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+32;services;single;high.school;no;yes;no;cellular;may;wed;53;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+35;admin.;married;university.degree;no;no;yes;cellular;may;wed;261;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+33;technician;single;professional.course;no;yes;no;cellular;may;wed;201;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+29;admin.;married;university.degree;no;no;no;cellular;may;wed;155;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+35;admin.;married;high.school;no;yes;no;cellular;may;wed;43;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+32;services;married;basic.9y;no;yes;no;cellular;may;wed;53;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+32;services;single;high.school;no;unknown;unknown;cellular;may;wed;363;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+31;admin.;married;high.school;no;yes;no;cellular;may;wed;14;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+39;blue-collar;married;basic.9y;unknown;yes;no;cellular;may;wed;56;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+23;admin.;single;high.school;no;yes;no;cellular;may;wed;108;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+32;blue-collar;married;basic.6y;unknown;yes;no;cellular;may;wed;459;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;yes
+50;blue-collar;single;professional.course;no;no;no;cellular;may;wed;425;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+24;blue-collar;single;basic.9y;no;yes;no;cellular;may;wed;200;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+39;blue-collar;married;basic.6y;no;no;yes;cellular;may;wed;223;2;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+58;housemaid;married;basic.4y;no;yes;no;cellular;may;wed;413;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+29;services;married;high.school;no;no;yes;cellular;may;wed;747;2;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;yes
+47;blue-collar;married;basic.4y;no;yes;no;cellular;may;wed;177;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+31;services;single;high.school;no;yes;no;cellular;may;wed;66;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+34;blue-collar;married;basic.6y;no;yes;no;cellular;may;wed;716;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;yes
+34;services;married;university.degree;no;yes;yes;cellular;may;wed;253;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+30;blue-collar;single;basic.9y;no;yes;no;cellular;may;wed;14;6;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+33;admin.;married;high.school;no;no;no;cellular;may;wed;316;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+31;services;single;high.school;no;yes;no;cellular;may;wed;152;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+34;blue-collar;married;basic.6y;no;no;yes;telephone;may;wed;137;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+34;management;single;university.degree;no;no;yes;cellular;may;wed;155;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+56;blue-collar;divorced;basic.6y;unknown;no;no;cellular;may;wed;154;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+28;admin.;married;high.school;no;yes;yes;cellular;may;wed;165;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+35;blue-collar;married;professional.course;no;yes;no;cellular;may;wed;466;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+29;blue-collar;married;basic.9y;no;no;no;cellular;may;wed;1101;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;yes
+48;blue-collar;married;basic.9y;no;yes;no;cellular;may;wed;368;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+28;admin.;married;high.school;no;yes;no;cellular;may;wed;201;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+29;blue-collar;single;high.school;no;yes;yes;cellular;may;wed;146;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+27;admin.;married;high.school;no;yes;yes;cellular;may;wed;77;4;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+29;blue-collar;single;high.school;no;no;no;cellular;may;wed;157;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+33;admin.;single;university.degree;no;yes;yes;cellular;may;wed;96;6;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+35;admin.;single;university.degree;no;no;no;telephone;may;wed;104;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+52;admin.;married;basic.9y;no;yes;no;cellular;may;wed;38;2;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+48;services;married;high.school;no;yes;yes;cellular;may;wed;154;5;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+55;blue-collar;divorced;basic.4y;unknown;no;no;telephone;may;wed;148;4;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+41;services;married;high.school;no;yes;no;cellular;may;wed;342;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+28;technician;single;professional.course;no;yes;yes;telephone;may;wed;43;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+44;technician;single;high.school;unknown;no;no;cellular;may;wed;394;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;yes
+29;blue-collar;single;basic.9y;no;no;no;cellular;may;wed;68;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+43;self-employed;single;high.school;unknown;no;no;cellular;may;wed;364;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+27;blue-collar;single;unknown;no;yes;no;telephone;may;wed;125;2;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+32;blue-collar;single;basic.9y;no;yes;yes;cellular;may;wed;179;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+29;blue-collar;single;basic.9y;no;yes;no;cellular;may;wed;427;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+34;technician;single;high.school;no;no;no;cellular;may;wed;63;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+22;admin.;single;high.school;no;yes;no;cellular;may;wed;197;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+33;blue-collar;single;basic.4y;no;yes;yes;cellular;may;wed;409;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+55;blue-collar;married;basic.9y;no;yes;yes;cellular;may;wed;299;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+36;blue-collar;divorced;basic.9y;no;no;no;cellular;may;wed;323;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+45;services;divorced;basic.9y;no;no;no;cellular;may;wed;215;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+24;student;single;high.school;unknown;yes;no;cellular;may;wed;290;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+37;admin.;single;basic.9y;no;yes;yes;cellular;may;wed;147;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+39;technician;single;professional.course;no;no;no;cellular;may;wed;143;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+38;admin.;married;university.degree;no;yes;no;cellular;may;wed;541;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+40;admin.;single;high.school;no;no;yes;cellular;may;wed;172;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+38;blue-collar;single;basic.6y;no;yes;yes;cellular;may;wed;309;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+59;retired;divorced;professional.course;no;no;no;cellular;may;wed;69;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+24;student;single;university.degree;no;yes;no;cellular;may;wed;79;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+31;admin.;single;high.school;no;no;no;cellular;may;wed;299;2;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+38;housemaid;divorced;university.degree;no;yes;no;cellular;may;wed;213;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+40;blue-collar;single;basic.9y;no;no;no;cellular;may;wed;196;3;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+29;blue-collar;married;basic.9y;no;no;no;cellular;may;wed;54;1;6;1;success;-1.8;92.893;-46.2;1.281;5099.1;no
+29;admin.;married;high.school;no;no;no;cellular;may;wed;54;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+41;blue-collar;single;basic.4y;unknown;yes;no;cellular;may;wed;247;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+41;blue-collar;single;basic.4y;unknown;yes;no;cellular;may;wed;426;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+34;technician;single;professional.course;no;yes;no;cellular;may;wed;404;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+34;admin.;married;university.degree;no;yes;no;cellular;may;wed;80;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+33;admin.;single;high.school;no;yes;no;cellular;may;wed;135;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+33;admin.;single;high.school;no;yes;no;cellular;may;wed;162;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+35;blue-collar;single;basic.4y;unknown;yes;no;cellular;may;wed;130;3;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+33;admin.;single;high.school;no;no;no;cellular;may;wed;341;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+29;blue-collar;married;basic.9y;no;no;no;cellular;may;wed;366;3;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;yes
+33;technician;single;university.degree;no;no;yes;cellular;may;wed;118;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+33;management;married;basic.9y;no;yes;yes;cellular;may;wed;168;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+34;services;single;basic.9y;no;no;no;cellular;may;wed;308;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+28;unemployed;married;university.degree;no;no;no;cellular;may;wed;176;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+36;blue-collar;married;basic.4y;unknown;yes;no;cellular;may;wed;300;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+45;blue-collar;single;basic.4y;no;no;no;cellular;may;wed;223;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+33;blue-collar;single;basic.6y;unknown;no;no;cellular;may;wed;35;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+37;blue-collar;married;basic.4y;no;no;yes;cellular;may;wed;199;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+56;housemaid;married;basic.4y;unknown;no;no;cellular;may;wed;206;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+45;blue-collar;single;basic.4y;no;yes;no;cellular;may;wed;721;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+32;technician;married;university.degree;no;yes;no;cellular;may;wed;641;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+33;blue-collar;single;basic.6y;unknown;no;no;cellular;may;wed;163;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+34;admin.;single;university.degree;no;yes;no;cellular;may;wed;234;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+33;blue-collar;divorced;basic.4y;no;no;no;cellular;may;wed;86;3;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+36;blue-collar;married;basic.9y;no;yes;no;cellular;may;wed;180;2;999;2;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+29;technician;single;high.school;no;no;no;cellular;may;wed;68;4;12;1;success;-1.8;92.893;-46.2;1.281;5099.1;no
+34;blue-collar;single;high.school;no;no;no;cellular;may;wed;103;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+36;services;single;high.school;no;no;no;cellular;may;wed;102;6;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+34;admin.;single;high.school;no;yes;no;cellular;may;wed;239;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+36;admin.;single;university.degree;no;yes;no;cellular;may;wed;325;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+35;services;single;high.school;no;no;no;cellular;may;wed;234;3;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+42;technician;married;professional.course;no;no;no;cellular;may;wed;194;4;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+33;blue-collar;married;basic.6y;no;yes;no;cellular;may;wed;134;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+34;management;married;university.degree;no;yes;no;cellular;may;wed;77;4;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+53;admin.;married;basic.9y;no;yes;yes;cellular;may;wed;674;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;yes
+36;services;single;high.school;no;yes;no;telephone;may;wed;216;4;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+48;blue-collar;married;basic.6y;no;yes;no;cellular;may;wed;122;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+58;retired;married;university.degree;no;no;no;cellular;may;wed;109;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+35;blue-collar;married;basic.6y;no;no;no;telephone;may;wed;622;3;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;yes
+29;blue-collar;married;basic.9y;no;no;no;cellular;may;wed;1966;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+27;blue-collar;married;university.degree;no;no;yes;cellular;may;wed;131;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+49;entrepreneur;married;university.degree;no;no;no;cellular;may;wed;140;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+34;blue-collar;married;basic.6y;no;no;yes;cellular;may;wed;281;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+40;technician;married;basic.6y;no;yes;no;cellular;may;wed;156;5;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+45;blue-collar;single;basic.4y;no;yes;no;cellular;may;wed;161;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+33;admin.;married;university.degree;no;yes;yes;cellular;may;wed;44;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+32;technician;single;high.school;no;yes;no;cellular;may;wed;240;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+42;blue-collar;married;basic.6y;no;yes;no;cellular;may;wed;172;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+36;technician;married;professional.course;no;no;no;cellular;may;wed;127;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+49;management;single;professional.course;no;no;no;cellular;may;wed;248;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+39;technician;single;professional.course;no;yes;no;cellular;may;wed;115;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+26;admin.;single;high.school;no;yes;no;cellular;may;wed;38;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+42;services;married;basic.9y;no;yes;no;cellular;may;wed;201;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+42;technician;single;professional.course;no;no;no;cellular;may;wed;341;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+34;admin.;married;basic.6y;no;yes;no;cellular;may;wed;298;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+41;services;married;high.school;no;yes;no;cellular;may;wed;314;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;yes
+23;blue-collar;married;basic.9y;no;yes;no;cellular;may;wed;52;4;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+23;services;married;high.school;no;yes;no;cellular;may;wed;77;3;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+53;blue-collar;divorced;unknown;no;no;no;cellular;may;wed;390;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+49;unemployed;married;basic.4y;unknown;yes;no;cellular;may;wed;804;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+24;blue-collar;divorced;basic.9y;no;no;no;cellular;may;wed;417;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+42;blue-collar;married;basic.4y;no;yes;no;cellular;may;wed;361;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+51;blue-collar;married;high.school;no;yes;no;cellular;may;wed;809;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;yes
+31;blue-collar;divorced;high.school;no;no;no;cellular;may;wed;156;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+31;admin.;single;university.degree;no;yes;no;cellular;may;wed;44;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+30;admin.;married;high.school;no;no;no;cellular;may;wed;166;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+41;services;married;high.school;no;yes;no;cellular;may;wed;58;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+40;blue-collar;single;basic.9y;no;yes;no;cellular;may;wed;76;3;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+39;blue-collar;married;high.school;no;yes;yes;cellular;may;wed;312;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+39;blue-collar;married;high.school;no;yes;no;cellular;may;wed;298;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+39;retired;single;basic.6y;unknown;yes;no;cellular;may;wed;466;1;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+31;blue-collar;divorced;high.school;no;yes;no;cellular;may;wed;829;1;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;yes
+37;admin.;divorced;university.degree;unknown;yes;no;cellular;may;wed;291;8;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+33;admin.;single;university.degree;no;yes;no;cellular;may;wed;484;3;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+35;entrepreneur;married;university.degree;no;yes;no;cellular;may;wed;204;3;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+28;blue-collar;single;university.degree;unknown;no;no;cellular;may;wed;169;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+24;admin.;single;high.school;no;yes;no;cellular;may;wed;437;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+34;unemployed;single;high.school;no;yes;no;cellular;may;wed;937;3;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;yes
+31;blue-collar;single;basic.9y;no;no;yes;cellular;may;wed;37;3;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+38;blue-collar;married;basic.4y;no;yes;no;cellular;may;wed;193;3;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+29;admin.;single;high.school;no;no;no;cellular;may;wed;230;4;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+49;blue-collar;divorced;high.school;no;yes;no;cellular;may;wed;204;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+35;admin.;married;high.school;no;yes;no;cellular;may;wed;163;2;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+58;management;married;basic.6y;unknown;no;no;cellular;may;wed;159;2;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+34;unemployed;single;high.school;no;yes;no;cellular;may;wed;1970;3;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;yes
+32;blue-collar;single;high.school;no;no;yes;cellular;may;wed;358;2;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+34;admin.;single;high.school;no;yes;no;cellular;may;wed;195;2;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+34;blue-collar;married;unknown;unknown;yes;no;telephone;may;wed;1302;3;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;yes
+31;blue-collar;married;basic.9y;unknown;yes;no;cellular;may;wed;96;3;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+44;blue-collar;divorced;basic.4y;no;no;no;cellular;may;wed;154;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+51;self-employed;married;basic.9y;no;no;no;telephone;may;wed;246;2;12;1;success;-1.8;92.893;-46.2;1.281;5099.1;no
+30;student;single;university.degree;unknown;yes;yes;cellular;may;wed;122;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+42;blue-collar;married;basic.4y;unknown;no;no;telephone;may;wed;276;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+33;admin.;single;university.degree;no;no;no;cellular;may;wed;151;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+35;blue-collar;married;basic.9y;no;no;no;cellular;may;wed;297;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+31;blue-collar;married;basic.9y;unknown;yes;yes;cellular;may;wed;119;2;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+38;management;married;university.degree;no;yes;no;cellular;may;wed;172;3;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+33;management;married;university.degree;no;yes;yes;cellular;may;wed;74;3;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+51;blue-collar;divorced;basic.9y;no;yes;no;cellular;may;wed;187;3;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+36;blue-collar;single;basic.9y;unknown;yes;no;cellular;may;wed;141;4;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+35;technician;married;professional.course;no;no;no;cellular;may;wed;124;2;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+41;blue-collar;married;basic.4y;no;yes;no;cellular;may;wed;186;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+38;blue-collar;married;basic.9y;no;yes;no;cellular;may;wed;1975;5;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;yes
+29;services;single;basic.6y;no;yes;yes;cellular;may;wed;252;5;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+32;services;single;high.school;no;no;no;cellular;may;wed;248;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+33;admin.;married;high.school;no;yes;yes;cellular;may;wed;85;2;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+39;blue-collar;married;basic.4y;no;no;no;cellular;may;wed;199;3;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+38;self-employed;married;basic.9y;no;no;yes;cellular;may;wed;482;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;yes
+30;technician;married;basic.9y;no;no;no;cellular;may;wed;226;4;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+29;blue-collar;married;basic.9y;no;yes;yes;cellular;may;wed;98;2;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+33;admin.;single;university.degree;no;yes;no;cellular;may;wed;358;2;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+37;blue-collar;married;basic.6y;no;no;yes;cellular;may;wed;158;5;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+49;admin.;married;university.degree;no;yes;yes;cellular;may;wed;194;3;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+34;self-employed;single;university.degree;no;no;no;cellular;may;wed;340;2;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+40;blue-collar;single;basic.9y;no;yes;yes;telephone;may;wed;325;4;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+47;blue-collar;single;basic.6y;unknown;no;no;cellular;may;wed;408;2;999;2;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+48;blue-collar;married;basic.6y;no;yes;no;cellular;may;wed;88;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+34;management;married;university.degree;no;no;no;cellular;may;wed;323;3;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+33;admin.;divorced;university.degree;no;yes;no;cellular;may;wed;275;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+36;admin.;single;university.degree;no;yes;no;cellular;may;wed;177;3;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+43;admin.;married;high.school;unknown;no;no;cellular;may;wed;431;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+39;blue-collar;single;university.degree;no;yes;no;cellular;may;wed;53;3;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+29;blue-collar;married;basic.9y;no;yes;yes;cellular;may;wed;396;2;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+39;management;divorced;university.degree;no;no;no;cellular;may;wed;157;4;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+49;blue-collar;married;high.school;unknown;yes;yes;cellular;may;wed;65;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+31;admin.;married;university.degree;no;yes;no;cellular;may;wed;954;2;10;1;success;-1.8;92.893;-46.2;1.281;5099.1;yes
+41;blue-collar;married;unknown;no;yes;yes;cellular;may;wed;612;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+34;services;married;high.school;no;no;no;cellular;may;wed;251;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+45;admin.;single;high.school;unknown;no;no;cellular;may;wed;537;5;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+32;services;single;high.school;no;no;no;cellular;may;wed;402;2;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+31;services;single;high.school;no;no;no;cellular;may;wed;1298;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;yes
+36;admin.;single;university.degree;no;no;yes;cellular;may;wed;1119;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;yes
+52;technician;divorced;high.school;no;no;yes;cellular;may;wed;191;2;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+27;technician;single;professional.course;no;yes;yes;cellular;may;wed;94;2;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+36;blue-collar;married;basic.9y;no;yes;no;cellular;may;wed;499;3;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+36;services;single;high.school;no;yes;no;cellular;may;wed;66;4;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+26;blue-collar;single;professional.course;no;yes;no;cellular;may;wed;197;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+34;blue-collar;married;high.school;no;no;no;telephone;may;wed;56;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+32;technician;married;high.school;no;no;no;cellular;may;wed;195;3;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+35;services;single;high.school;no;no;no;telephone;may;wed;65;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+27;technician;single;professional.course;no;yes;no;cellular;may;wed;38;3;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+29;blue-collar;divorced;basic.9y;no;yes;no;cellular;may;wed;168;4;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+34;services;married;university.degree;no;yes;no;cellular;may;wed;154;2;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+24;housemaid;married;basic.9y;no;no;no;cellular;may;wed;45;4;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+30;blue-collar;married;basic.9y;no;unknown;unknown;telephone;may;wed;107;3;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+43;admin.;married;high.school;no;yes;no;telephone;may;wed;121;2;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+31;entrepreneur;single;university.degree;no;yes;no;cellular;may;wed;318;3;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+43;blue-collar;married;basic.4y;no;yes;no;cellular;may;wed;255;2;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+41;housemaid;married;high.school;no;no;no;cellular;may;wed;174;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+31;blue-collar;single;basic.9y;no;no;yes;telephone;may;wed;53;7;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+31;admin.;single;university.degree;no;no;no;cellular;may;wed;196;2;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+29;blue-collar;married;basic.9y;no;yes;no;cellular;may;wed;173;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+35;admin.;married;university.degree;no;no;yes;telephone;may;wed;65;4;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+33;blue-collar;married;basic.9y;no;yes;no;cellular;may;wed;136;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+29;blue-collar;divorced;basic.9y;no;yes;yes;cellular;may;wed;444;2;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+27;admin.;married;high.school;no;yes;no;cellular;may;wed;308;3;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+30;admin.;single;high.school;no;no;no;cellular;may;wed;698;2;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;yes
+31;blue-collar;single;basic.9y;unknown;yes;no;cellular;may;wed;228;3;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+28;technician;single;professional.course;no;yes;no;cellular;may;wed;562;2;6;1;success;-1.8;92.893;-46.2;1.281;5099.1;no
+35;entrepreneur;married;university.degree;no;yes;no;cellular;may;wed;272;4;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+39;entrepreneur;married;basic.9y;no;yes;no;cellular;may;wed;419;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+46;housemaid;married;basic.4y;unknown;yes;no;cellular;may;wed;369;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+55;services;single;high.school;no;no;yes;cellular;may;wed;107;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+39;blue-collar;single;university.degree;no;yes;no;cellular;may;wed;173;9;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+34;technician;single;professional.course;no;no;no;cellular;may;wed;62;3;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+32;management;married;university.degree;no;yes;no;cellular;may;wed;129;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+57;services;married;high.school;unknown;yes;no;cellular;may;wed;76;7;1;2;success;-1.8;92.893;-46.2;1.281;5099.1;no
+32;technician;married;professional.course;no;no;no;cellular;may;wed;65;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+27;blue-collar;married;high.school;no;unknown;unknown;cellular;may;wed;805;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+31;blue-collar;married;basic.9y;unknown;no;no;telephone;may;wed;97;5;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+30;technician;single;high.school;no;yes;no;cellular;may;wed;202;3;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+40;blue-collar;married;basic.9y;unknown;yes;yes;cellular;may;wed;777;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+35;blue-collar;married;basic.6y;no;yes;no;cellular;may;wed;378;2;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+38;blue-collar;single;basic.9y;no;no;no;cellular;may;wed;654;2;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;yes
+35;services;single;high.school;no;yes;no;cellular;may;wed;185;2;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+32;blue-collar;single;basic.4y;no;yes;yes;cellular;may;wed;1805;4;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+42;technician;single;professional.course;no;yes;no;cellular;may;wed;367;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+29;admin.;married;university.degree;no;no;no;cellular;may;wed;12;5;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+33;blue-collar;married;basic.6y;unknown;no;no;cellular;may;wed;139;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+38;blue-collar;single;basic.9y;no;no;yes;cellular;may;wed;222;2;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+38;blue-collar;divorced;basic.9y;no;yes;no;cellular;may;wed;122;3;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+28;services;single;high.school;no;no;no;cellular;may;wed;649;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;yes
+49;blue-collar;married;high.school;unknown;yes;no;cellular;may;wed;168;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+30;services;married;high.school;no;yes;no;cellular;may;wed;237;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+45;unemployed;divorced;basic.6y;no;unknown;unknown;cellular;may;wed;135;3;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+27;technician;single;professional.course;no;yes;no;cellular;may;wed;102;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+34;blue-collar;married;professional.course;unknown;no;no;cellular;may;wed;65;2;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+59;retired;divorced;professional.course;no;yes;no;cellular;may;wed;281;3;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+56;blue-collar;married;basic.4y;no;yes;yes;cellular;may;wed;80;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+36;services;married;basic.9y;no;no;yes;cellular;may;wed;36;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+34;blue-collar;married;basic.6y;no;yes;yes;cellular;may;wed;143;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+44;unemployed;divorced;basic.9y;no;no;no;telephone;may;wed;259;3;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+24;blue-collar;single;basic.9y;no;yes;no;cellular;may;wed;221;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+29;blue-collar;married;high.school;no;yes;no;cellular;may;wed;177;5;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+32;admin.;single;university.degree;no;yes;yes;cellular;may;wed;84;2;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+42;admin.;married;high.school;no;no;no;cellular;may;wed;406;5;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+42;services;married;high.school;no;no;no;cellular;may;wed;185;4;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+38;self-employed;married;basic.9y;no;yes;no;cellular;may;wed;155;2;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+33;blue-collar;married;basic.9y;unknown;no;yes;cellular;may;wed;190;3;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+27;blue-collar;married;basic.9y;no;yes;no;cellular;may;wed;53;3;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+27;technician;single;professional.course;no;no;no;telephone;may;wed;99;2;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+51;blue-collar;married;basic.4y;no;no;no;cellular;may;wed;254;2;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+42;technician;single;professional.course;no;no;no;cellular;may;wed;531;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;yes
+29;admin.;single;basic.9y;no;yes;no;cellular;may;wed;256;3;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+49;entrepreneur;married;basic.4y;unknown;yes;no;cellular;may;wed;217;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+48;blue-collar;married;basic.6y;no;no;no;telephone;may;wed;25;4;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+32;blue-collar;single;basic.9y;no;no;no;cellular;may;wed;253;3;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+26;student;single;high.school;no;yes;no;cellular;may;wed;277;2;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+34;blue-collar;single;basic.6y;no;yes;no;cellular;may;wed;125;3;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+32;services;single;high.school;no;no;no;cellular;may;wed;151;2;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+34;unemployed;single;high.school;no;no;no;telephone;may;wed;127;8;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+36;admin.;married;university.degree;no;no;no;cellular;may;wed;449;6;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+57;blue-collar;married;basic.6y;unknown;no;no;cellular;may;wed;97;5;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+42;blue-collar;divorced;basic.6y;no;yes;no;cellular;may;wed;16;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+46;housemaid;single;basic.9y;unknown;no;no;cellular;may;wed;388;2;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+33;self-employed;single;university.degree;no;no;no;cellular;may;wed;134;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+39;blue-collar;married;basic.9y;unknown;no;no;cellular;may;wed;265;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+40;technician;married;professional.course;no;yes;no;cellular;may;wed;32;5;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+27;self-employed;married;basic.9y;no;yes;no;cellular;may;wed;285;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+39;services;married;high.school;no;no;no;cellular;may;wed;383;5;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+27;blue-collar;single;basic.4y;no;yes;no;telephone;may;wed;179;3;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+29;admin.;single;university.degree;no;yes;no;telephone;may;wed;51;3;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+33;technician;single;high.school;no;yes;no;cellular;may;wed;446;3;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+34;management;single;university.degree;no;no;yes;cellular;may;wed;136;5;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+32;blue-collar;single;high.school;unknown;yes;no;cellular;may;wed;420;3;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+53;retired;married;basic.9y;no;no;no;cellular;may;wed;133;4;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+21;student;single;high.school;no;no;no;cellular;may;wed;513;3;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+36;technician;single;professional.course;no;yes;no;cellular;may;wed;225;2;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+32;blue-collar;single;high.school;no;no;yes;cellular;may;wed;204;3;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+29;services;single;high.school;no;yes;no;cellular;may;wed;240;3;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+28;blue-collar;married;basic.4y;no;no;yes;cellular;may;wed;135;2;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+33;admin.;single;basic.9y;no;no;no;cellular;may;wed;245;4;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+27;admin.;married;high.school;no;yes;no;cellular;may;wed;119;3;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+31;blue-collar;married;basic.6y;no;yes;no;cellular;may;wed;1279;3;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;yes
+44;admin.;divorced;professional.course;no;no;yes;telephone;may;wed;38;3;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+33;blue-collar;single;basic.9y;no;no;yes;cellular;may;wed;331;3;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+49;unemployed;married;basic.4y;unknown;no;no;cellular;may;wed;771;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+49;entrepreneur;married;basic.4y;unknown;yes;no;cellular;may;wed;491;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+38;housemaid;divorced;university.degree;no;yes;no;cellular;may;wed;873;3;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;yes
+51;blue-collar;married;basic.4y;no;yes;no;cellular;may;wed;440;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;yes
+36;services;divorced;high.school;no;no;yes;telephone;may;wed;992;5;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+58;housemaid;married;basic.4y;no;no;no;telephone;may;wed;689;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;yes
+29;admin.;single;high.school;no;yes;no;cellular;may;wed;443;7;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;yes
+37;admin.;divorced;university.degree;unknown;yes;no;cellular;may;wed;302;4;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+32;technician;single;university.degree;no;yes;no;cellular;may;wed;75;4;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+34;admin.;married;university.degree;no;no;yes;cellular;may;wed;72;4;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+33;blue-collar;single;basic.9y;no;no;yes;telephone;may;wed;418;5;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+43;blue-collar;married;basic.9y;no;yes;no;cellular;may;wed;324;3;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+27;admin.;divorced;high.school;no;no;no;cellular;may;wed;69;11;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+38;self-employed;married;basic.9y;no;no;no;cellular;may;wed;1130;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;yes
+52;admin.;married;university.degree;no;no;no;cellular;may;wed;429;3;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;yes
+34;blue-collar;married;high.school;no;yes;no;cellular;may;wed;96;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+34;blue-collar;married;basic.9y;no;yes;no;cellular;may;wed;310;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+35;admin.;single;university.degree;no;no;no;cellular;may;wed;149;6;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+28;student;single;high.school;no;no;no;cellular;may;wed;182;4;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+33;blue-collar;married;basic.9y;unknown;no;no;cellular;may;wed;1309;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+29;blue-collar;single;basic.9y;no;no;no;cellular;may;wed;364;2;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+32;management;married;university.degree;no;yes;yes;cellular;may;wed;36;9;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+29;blue-collar;married;basic.9y;unknown;yes;no;telephone;may;wed;337;2;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+46;blue-collar;divorced;basic.9y;no;no;no;cellular;may;wed;426;3;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+45;services;married;high.school;unknown;yes;no;cellular;may;wed;25;7;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+27;admin.;single;high.school;no;yes;yes;cellular;may;wed;196;3;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+29;admin.;married;university.degree;no;yes;no;cellular;may;wed;126;2;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+25;blue-collar;married;basic.9y;no;no;no;cellular;may;wed;201;3;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+42;blue-collar;divorced;basic.9y;no;no;yes;cellular;may;wed;300;5;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+32;blue-collar;married;basic.6y;unknown;no;no;telephone;may;wed;630;3;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+31;blue-collar;single;basic.9y;no;no;no;telephone;may;wed;48;4;999;1;failure;-1.8;92.893;-46.2;1.281;5099.1;no
+29;blue-collar;married;basic.9y;no;no;no;cellular;may;wed;189;3;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+30;blue-collar;single;basic.9y;no;no;no;cellular;may;wed;305;8;999;0;nonexistent;-1.8;92.893;-46.2;1.281;5099.1;no
+27;admin.;married;professional.course;no;no;no;cellular;may;thu;68;3;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+29;blue-collar;married;basic.6y;no;no;no;cellular;may;thu;65;3;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+26;blue-collar;single;basic.9y;unknown;yes;no;cellular;may;thu;115;3;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+32;blue-collar;single;basic.9y;no;no;no;cellular;may;thu;247;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+29;services;single;high.school;no;yes;no;cellular;may;thu;164;3;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+28;technician;single;university.degree;no;yes;yes;cellular;may;thu;178;2;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+35;technician;single;professional.course;no;no;no;telephone;may;thu;19;7;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+23;housemaid;single;basic.4y;no;no;yes;cellular;may;thu;9;6;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+48;services;single;basic.4y;unknown;yes;no;cellular;may;thu;24;7;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+31;management;single;university.degree;no;yes;no;cellular;may;thu;165;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+29;admin.;single;high.school;no;no;no;cellular;may;thu;14;7;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+29;admin.;single;high.school;no;yes;no;telephone;may;thu;36;6;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+59;admin.;divorced;basic.9y;no;yes;no;cellular;may;thu;8;6;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+48;blue-collar;married;basic.4y;unknown;yes;no;cellular;may;thu;33;3;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+38;blue-collar;single;basic.4y;no;no;no;cellular;may;thu;121;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+24;management;married;university.degree;no;yes;no;telephone;may;thu;921;4;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+37;services;married;high.school;no;yes;yes;cellular;may;thu;436;3;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+33;blue-collar;married;professional.course;no;no;no;cellular;may;thu;119;2;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+31;technician;single;basic.9y;no;yes;no;telephone;may;thu;13;5;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+26;self-employed;married;high.school;no;yes;yes;cellular;may;thu;181;5;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+30;technician;married;basic.9y;no;yes;no;telephone;may;thu;7;7;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+29;blue-collar;married;basic.6y;no;no;no;cellular;may;thu;16;7;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+31;technician;single;university.degree;no;yes;no;cellular;may;thu;259;4;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+38;blue-collar;married;basic.4y;no;no;no;cellular;may;thu;102;3;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+36;admin.;single;university.degree;no;yes;no;cellular;may;thu;19;8;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+36;blue-collar;married;basic.9y;no;yes;no;cellular;may;thu;113;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+38;blue-collar;married;high.school;unknown;yes;no;cellular;may;thu;152;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+47;blue-collar;married;basic.4y;unknown;no;no;cellular;may;thu;14;3;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+28;student;single;high.school;no;yes;no;cellular;may;thu;21;8;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+33;admin.;single;university.degree;no;no;no;cellular;may;thu;17;5;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+33;blue-collar;divorced;basic.9y;no;no;yes;telephone;may;thu;18;6;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+24;blue-collar;single;basic.9y;unknown;yes;yes;cellular;may;thu;17;7;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+38;services;married;high.school;unknown;yes;no;cellular;may;thu;13;7;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+24;technician;married;professional.course;no;yes;no;cellular;may;thu;99;4;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+30;services;single;high.school;no;unknown;unknown;cellular;may;thu;11;15;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+26;admin.;single;high.school;no;yes;no;cellular;may;thu;24;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+36;technician;married;university.degree;no;yes;no;cellular;may;thu;164;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+32;services;single;basic.9y;no;yes;no;cellular;may;thu;78;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+30;admin.;single;high.school;no;yes;no;cellular;may;thu;29;8;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+22;student;single;high.school;no;yes;no;telephone;may;thu;9;6;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+27;blue-collar;married;professional.course;no;yes;no;cellular;may;thu;465;3;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+35;blue-collar;married;basic.6y;unknown;yes;yes;cellular;may;thu;263;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+27;admin.;single;university.degree;no;no;no;cellular;may;thu;94;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+43;blue-collar;married;basic.4y;no;no;yes;cellular;may;thu;722;2;11;1;success;-1.8;92.893;-46.2;1.266;5099.1;yes
+33;admin.;married;professional.course;no;no;yes;cellular;may;thu;178;8;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+34;blue-collar;divorced;basic.9y;unknown;yes;no;cellular;may;thu;6;6;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+30;technician;married;basic.6y;no;no;no;cellular;may;thu;25;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+31;services;married;high.school;no;yes;no;cellular;may;thu;348;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+34;technician;married;professional.course;no;yes;no;cellular;may;thu;30;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+48;management;divorced;university.degree;unknown;no;no;cellular;may;thu;33;6;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+31;blue-collar;married;basic.9y;no;yes;no;cellular;may;thu;222;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+31;admin.;single;high.school;no;no;no;cellular;may;thu;325;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+43;services;married;high.school;unknown;yes;no;cellular;may;thu;974;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;yes
+23;self-employed;single;basic.9y;no;no;no;cellular;may;thu;254;11;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+31;admin.;married;university.degree;unknown;no;no;cellular;may;thu;344;4;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+24;blue-collar;single;basic.9y;no;no;no;cellular;may;thu;925;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+33;blue-collar;married;basic.6y;no;no;no;cellular;may;thu;467;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;yes
+27;entrepreneur;divorced;university.degree;unknown;no;no;telephone;may;thu;9;5;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+30;blue-collar;married;basic.9y;no;yes;no;cellular;may;thu;15;11;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+29;blue-collar;married;basic.9y;unknown;no;no;cellular;may;thu;12;8;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+20;blue-collar;single;basic.9y;unknown;yes;no;cellular;may;thu;42;7;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+39;services;divorced;high.school;no;no;no;cellular;may;thu;186;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+40;technician;married;professional.course;no;yes;no;cellular;may;thu;580;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+26;blue-collar;single;basic.9y;no;yes;no;cellular;may;thu;40;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+35;services;single;high.school;no;no;no;cellular;may;thu;350;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+23;blue-collar;married;basic.4y;no;no;no;cellular;may;thu;720;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+38;blue-collar;married;basic.4y;no;unknown;unknown;cellular;may;thu;141;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+34;management;married;university.degree;no;no;no;cellular;may;thu;11;8;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+29;services;single;high.school;no;yes;yes;cellular;may;thu;10;10;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+44;services;divorced;high.school;no;yes;no;cellular;may;thu;533;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;yes
+45;self-employed;married;high.school;no;yes;no;cellular;may;thu;21;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+31;management;single;university.degree;no;yes;yes;cellular;may;thu;146;3;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+28;services;married;high.school;no;yes;yes;cellular;may;thu;189;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+38;blue-collar;married;basic.4y;no;yes;yes;cellular;may;thu;365;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+29;blue-collar;married;basic.9y;no;no;no;cellular;may;thu;91;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+26;management;married;university.degree;no;no;no;cellular;may;thu;84;4;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+33;blue-collar;single;high.school;no;yes;yes;telephone;may;thu;22;6;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+28;blue-collar;single;basic.4y;no;no;no;cellular;may;thu;166;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+28;blue-collar;single;basic.4y;no;yes;no;cellular;may;thu;182;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+23;admin.;single;high.school;no;yes;no;cellular;may;thu;638;1;6;1;success;-1.8;92.893;-46.2;1.266;5099.1;no
+39;blue-collar;divorced;basic.9y;unknown;no;no;cellular;may;thu;46;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+39;blue-collar;divorced;basic.9y;unknown;yes;no;cellular;may;thu;127;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+26;student;single;unknown;no;yes;yes;cellular;may;thu;306;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+36;blue-collar;married;basic.4y;no;yes;yes;cellular;may;thu;558;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;yes
+26;management;single;university.degree;no;yes;yes;cellular;may;thu;161;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+26;management;single;university.degree;no;yes;no;cellular;may;thu;119;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+28;entrepreneur;married;high.school;no;yes;no;cellular;may;thu;61;6;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+34;admin.;married;high.school;no;no;no;cellular;may;thu;362;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+32;blue-collar;married;basic.9y;no;yes;no;cellular;may;thu;83;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+30;blue-collar;single;basic.9y;no;no;no;cellular;may;thu;151;2;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+25;services;single;high.school;no;no;no;cellular;may;thu;566;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+29;technician;single;basic.9y;no;no;no;cellular;may;thu;141;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+50;self-employed;married;basic.9y;unknown;no;no;cellular;may;thu;291;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+50;self-employed;married;basic.9y;unknown;no;no;cellular;may;thu;287;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+30;technician;married;basic.9y;no;no;no;cellular;may;thu;64;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+27;admin.;married;high.school;no;no;no;cellular;may;thu;244;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+26;management;single;university.degree;no;yes;no;cellular;may;thu;667;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;yes
+26;admin.;single;high.school;unknown;no;no;cellular;may;thu;136;3;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+26;management;single;university.degree;no;no;no;cellular;may;thu;715;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;yes
+40;admin.;divorced;high.school;no;yes;no;cellular;may;thu;123;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+33;blue-collar;married;basic.9y;no;yes;no;telephone;may;thu;16;5;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+44;admin.;married;basic.9y;unknown;yes;yes;cellular;may;thu;414;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+33;services;single;high.school;no;yes;no;cellular;may;thu;201;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+31;admin.;single;high.school;no;yes;no;cellular;may;thu;212;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+48;management;divorced;university.degree;unknown;no;no;cellular;may;thu;86;2;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+40;blue-collar;married;basic.9y;no;yes;no;cellular;may;thu;317;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+31;admin.;divorced;high.school;no;no;no;cellular;may;thu;145;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+38;services;married;high.school;no;yes;no;cellular;may;thu;532;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+29;technician;single;professional.course;no;no;no;cellular;may;thu;248;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+54;blue-collar;married;basic.9y;no;no;yes;cellular;may;thu;158;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+42;blue-collar;married;basic.9y;no;no;yes;cellular;may;thu;141;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+42;blue-collar;married;basic.9y;no;no;no;cellular;may;thu;190;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+32;self-employed;single;professional.course;unknown;yes;no;cellular;may;thu;161;3;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+22;blue-collar;married;basic.9y;no;yes;no;cellular;may;thu;23;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+42;blue-collar;married;basic.9y;no;no;no;telephone;may;thu;276;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+29;technician;single;professional.course;no;no;no;telephone;may;thu;7;7;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+27;admin.;married;high.school;no;yes;yes;cellular;may;thu;201;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+29;technician;single;basic.9y;no;no;no;cellular;may;thu;20;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+24;blue-collar;single;basic.9y;no;no;yes;cellular;may;thu;51;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+40;blue-collar;divorced;basic.9y;unknown;no;no;cellular;may;thu;467;6;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+27;services;single;high.school;no;no;yes;cellular;may;thu;603;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+27;blue-collar;single;basic.6y;unknown;yes;no;cellular;may;thu;9;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+27;blue-collar;married;basic.9y;no;no;no;cellular;may;thu;283;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+22;blue-collar;single;basic.9y;no;yes;no;cellular;may;thu;283;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+30;technician;married;professional.course;no;yes;no;cellular;may;thu;341;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+27;admin.;married;professional.course;no;yes;no;cellular;may;thu;102;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+27;admin.;married;professional.course;no;yes;no;cellular;may;thu;267;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+55;services;single;basic.9y;no;unknown;unknown;cellular;may;thu;717;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;yes
+27;admin.;married;professional.course;no;yes;no;cellular;may;thu;143;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+39;services;married;high.school;no;yes;no;cellular;may;thu;22;8;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+24;technician;married;professional.course;no;yes;yes;cellular;may;thu;428;3;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+34;blue-collar;single;basic.9y;no;no;no;cellular;may;thu;484;3;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+32;self-employed;single;professional.course;unknown;no;no;cellular;may;thu;561;3;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;yes
+32;management;single;university.degree;no;yes;no;cellular;may;thu;149;3;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+27;admin.;married;professional.course;no;yes;no;cellular;may;thu;338;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+29;blue-collar;married;basic.9y;unknown;yes;no;cellular;may;thu;182;6;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+32;blue-collar;married;basic.4y;unknown;yes;no;cellular;may;thu;94;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+27;self-employed;single;university.degree;no;yes;yes;cellular;may;thu;73;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+27;admin.;married;professional.course;no;no;no;cellular;may;thu;584;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+32;blue-collar;married;professional.course;no;yes;no;cellular;may;thu;260;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+27;self-employed;single;university.degree;no;no;no;cellular;may;thu;185;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+27;self-employed;single;university.degree;no;no;no;cellular;may;thu;223;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+39;admin.;married;high.school;no;no;no;cellular;may;thu;76;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+35;technician;married;professional.course;no;yes;no;cellular;may;thu;590;5;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;yes
+48;blue-collar;married;basic.9y;no;no;no;cellular;may;thu;214;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+32;entrepreneur;divorced;high.school;no;yes;no;cellular;may;thu;103;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+39;blue-collar;married;basic.9y;unknown;no;no;cellular;may;thu;37;6;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+30;blue-collar;single;basic.9y;no;yes;yes;cellular;may;thu;273;3;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+31;blue-collar;single;high.school;no;no;no;cellular;may;thu;451;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+35;entrepreneur;married;professional.course;no;yes;no;telephone;may;thu;12;5;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+35;technician;single;unknown;no;no;no;cellular;may;thu;745;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;yes
+29;services;single;high.school;no;no;no;cellular;may;thu;854;2;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;yes
+27;admin.;married;professional.course;no;yes;no;cellular;may;thu;1166;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+39;admin.;married;high.school;no;no;yes;cellular;may;thu;105;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+47;entrepreneur;divorced;high.school;no;no;no;cellular;may;thu;8;7;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+23;admin.;married;high.school;no;no;yes;cellular;may;thu;7;5;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+26;self-employed;married;high.school;no;no;no;cellular;may;thu;159;5;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+25;services;single;high.school;no;no;no;cellular;may;thu;646;5;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;yes
+24;admin.;single;professional.course;no;no;no;cellular;may;thu;210;6;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+35;admin.;married;university.degree;no;no;yes;cellular;may;thu;17;7;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+29;blue-collar;married;basic.9y;unknown;yes;no;cellular;may;thu;297;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+39;management;single;high.school;no;no;yes;cellular;may;thu;365;6;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+30;blue-collar;married;basic.4y;unknown;yes;no;telephone;may;thu;162;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+33;admin.;single;university.degree;no;yes;yes;cellular;may;thu;255;2;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+41;technician;married;professional.course;no;yes;no;cellular;may;thu;377;4;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+37;housemaid;single;high.school;no;yes;no;cellular;may;thu;165;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+29;admin.;married;university.degree;no;yes;no;cellular;may;thu;133;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+37;blue-collar;married;basic.4y;no;no;no;cellular;may;thu;345;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;yes
+31;blue-collar;married;basic.6y;unknown;no;no;cellular;may;thu;263;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+32;management;married;professional.course;no;no;no;cellular;may;thu;125;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+39;technician;single;basic.4y;unknown;yes;no;cellular;may;thu;411;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+49;services;married;high.school;no;no;no;cellular;may;thu;67;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+36;blue-collar;single;basic.4y;no;yes;no;cellular;may;thu;279;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+38;services;single;high.school;no;yes;yes;cellular;may;thu;456;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;yes
+25;services;married;high.school;no;no;no;cellular;may;thu;112;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+31;blue-collar;married;basic.6y;unknown;no;no;cellular;may;thu;680;1;6;1;success;-1.8;92.893;-46.2;1.266;5099.1;yes
+49;services;married;high.school;no;yes;no;cellular;may;thu;152;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+32;services;married;high.school;no;yes;no;cellular;may;thu;21;12;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+52;blue-collar;unknown;basic.4y;no;no;no;cellular;may;thu;1180;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;yes
+32;technician;single;university.degree;no;no;no;cellular;may;thu;14;8;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+26;services;single;high.school;no;no;no;cellular;may;thu;243;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+33;blue-collar;single;high.school;no;yes;no;cellular;may;thu;17;5;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+25;student;single;high.school;no;no;no;cellular;may;thu;12;7;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+26;blue-collar;single;basic.9y;no;yes;no;cellular;may;thu;535;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+44;services;married;high.school;no;no;no;telephone;may;thu;188;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+52;technician;married;basic.6y;unknown;no;no;cellular;may;thu;498;1;12;1;success;-1.8;92.893;-46.2;1.266;5099.1;no
+32;admin.;single;high.school;no;yes;no;cellular;may;thu;149;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+32;technician;single;university.degree;no;yes;no;telephone;may;thu;62;7;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+52;admin.;married;university.degree;unknown;no;no;cellular;may;thu;877;2;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+31;entrepreneur;single;university.degree;no;yes;yes;cellular;may;thu;204;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+34;entrepreneur;married;basic.6y;no;yes;no;cellular;may;thu;210;2;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+30;student;unknown;basic.9y;no;no;no;cellular;may;thu;155;1;999;2;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+32;blue-collar;married;university.degree;no;no;yes;cellular;may;thu;159;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+33;management;married;professional.course;no;no;no;cellular;may;thu;578;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;yes
+54;blue-collar;married;basic.4y;unknown;yes;yes;cellular;may;thu;303;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+23;admin.;single;high.school;no;yes;no;cellular;may;thu;258;1;10;1;success;-1.8;92.893;-46.2;1.266;5099.1;no
+44;services;married;high.school;no;no;yes;cellular;may;thu;786;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;yes
+29;services;married;high.school;unknown;yes;no;cellular;may;thu;161;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+31;entrepreneur;single;university.degree;no;yes;no;cellular;may;thu;633;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;yes
+32;admin.;married;university.degree;no;no;no;cellular;may;thu;57;4;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+46;services;married;high.school;no;no;no;cellular;may;thu;107;4;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+28;blue-collar;divorced;high.school;no;no;no;cellular;may;thu;307;1;999;2;failure;-1.8;92.893;-46.2;1.266;5099.1;yes
+23;self-employed;single;basic.9y;no;yes;no;cellular;may;thu;64;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+41;services;married;high.school;no;no;no;cellular;may;thu;116;4;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+32;entrepreneur;divorced;high.school;no;yes;no;cellular;may;thu;318;3;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+22;student;single;high.school;no;yes;no;cellular;may;thu;47;3;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+26;self-employed;married;high.school;no;no;no;cellular;may;thu;183;3;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+29;services;married;high.school;no;yes;no;cellular;may;thu;343;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+27;admin.;single;basic.9y;no;yes;no;telephone;may;thu;230;4;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+29;technician;single;university.degree;no;no;no;cellular;may;thu;138;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+29;blue-collar;married;basic.9y;unknown;yes;yes;cellular;may;thu;11;5;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+27;blue-collar;married;basic.9y;no;no;no;cellular;may;thu;155;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+24;services;single;high.school;no;no;no;cellular;may;thu;47;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+47;services;married;basic.6y;no;yes;no;cellular;may;thu;201;2;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+27;technician;married;professional.course;no;yes;yes;telephone;may;thu;289;3;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+52;entrepreneur;single;university.degree;no;yes;no;cellular;may;thu;11;5;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+38;blue-collar;married;basic.6y;unknown;no;no;cellular;may;thu;72;2;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+36;blue-collar;married;basic.6y;no;yes;yes;cellular;may;thu;273;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+24;services;single;high.school;no;no;yes;cellular;may;thu;91;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+29;services;married;high.school;unknown;yes;no;cellular;may;thu;23;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+45;blue-collar;married;basic.9y;no;no;no;cellular;may;thu;43;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+36;admin.;single;university.degree;no;no;no;telephone;may;thu;121;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+33;blue-collar;married;basic.9y;unknown;yes;no;cellular;may;thu;449;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;yes
+45;blue-collar;married;basic.4y;no;yes;yes;cellular;may;thu;8;5;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+24;services;single;high.school;no;no;no;cellular;may;thu;524;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+25;student;single;university.degree;no;no;no;telephone;may;thu;13;5;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+53;services;married;basic.6y;no;yes;no;cellular;may;thu;157;4;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+42;services;divorced;high.school;no;no;no;cellular;may;thu;72;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+35;blue-collar;married;basic.6y;no;no;no;cellular;may;thu;112;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+31;entrepreneur;single;university.degree;no;no;no;cellular;may;thu;50;2;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+35;blue-collar;married;basic.6y;no;yes;no;cellular;may;thu;225;1;12;1;success;-1.8;92.893;-46.2;1.266;5099.1;no
+31;blue-collar;single;basic.9y;no;yes;no;cellular;may;thu;42;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+38;blue-collar;married;basic.6y;no;no;no;cellular;may;thu;35;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+39;blue-collar;married;basic.9y;no;yes;no;cellular;may;thu;607;3;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;yes
+37;management;married;university.degree;no;no;yes;cellular;may;thu;123;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+31;blue-collar;married;basic.9y;no;no;no;cellular;may;thu;255;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+24;self-employed;single;university.degree;no;no;no;cellular;may;thu;334;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+40;blue-collar;married;basic.4y;no;no;no;cellular;may;thu;104;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+33;blue-collar;single;basic.9y;unknown;no;no;cellular;may;thu;1075;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;yes
+36;admin.;single;high.school;no;yes;no;cellular;may;thu;235;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+27;technician;single;high.school;no;no;no;cellular;may;thu;64;3;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+27;admin.;married;high.school;no;no;no;cellular;may;thu;137;3;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+42;services;divorced;high.school;no;yes;yes;cellular;may;thu;874;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;yes
+23;student;single;university.degree;no;yes;no;cellular;may;thu;200;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+40;blue-collar;married;basic.4y;no;yes;no;cellular;may;thu;433;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+27;technician;single;high.school;no;no;no;cellular;may;thu;215;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+30;admin.;single;university.degree;no;yes;no;cellular;may;thu;287;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+47;blue-collar;married;basic.4y;unknown;no;no;telephone;may;thu;391;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+39;blue-collar;single;basic.4y;no;no;no;cellular;may;thu;93;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+44;blue-collar;married;basic.6y;no;yes;no;cellular;may;thu;16;9;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+36;blue-collar;married;basic.9y;no;yes;no;cellular;may;thu;523;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+28;blue-collar;single;basic.9y;no;yes;no;cellular;may;thu;225;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+21;student;single;high.school;no;no;no;cellular;may;thu;24;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+31;blue-collar;married;basic.6y;no;yes;yes;cellular;may;thu;298;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+25;management;married;university.degree;no;yes;no;cellular;may;thu;200;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+32;services;single;university.degree;no;unknown;unknown;telephone;may;thu;93;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+30;admin.;married;university.degree;no;no;yes;cellular;may;thu;234;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+24;admin.;single;high.school;no;no;no;cellular;may;thu;797;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+29;blue-collar;married;basic.9y;no;yes;yes;cellular;may;thu;419;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+46;blue-collar;married;basic.4y;no;no;no;cellular;may;thu;87;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+30;admin.;married;basic.6y;no;yes;no;cellular;may;thu;83;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+33;admin.;single;high.school;no;yes;no;cellular;may;thu;30;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+26;blue-collar;married;basic.9y;no;no;no;cellular;may;thu;135;1;999;2;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+33;admin.;single;high.school;no;yes;no;cellular;may;thu;97;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+36;management;married;university.degree;no;yes;no;cellular;may;thu;128;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+30;admin.;married;basic.6y;no;no;no;cellular;may;thu;586;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+33;admin.;single;high.school;no;no;no;cellular;may;thu;492;1;12;2;failure;-1.8;92.893;-46.2;1.266;5099.1;yes
+23;blue-collar;single;basic.4y;unknown;no;yes;cellular;may;thu;208;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+21;admin.;single;high.school;no;no;yes;cellular;may;thu;240;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+34;technician;married;professional.course;no;yes;no;cellular;may;thu;703;4;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+26;blue-collar;married;basic.9y;no;yes;no;cellular;may;thu;1106;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+24;management;single;university.degree;no;yes;no;telephone;may;thu;151;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+48;blue-collar;married;basic.9y;unknown;no;no;cellular;may;thu;506;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+28;blue-collar;single;basic.4y;no;no;no;cellular;may;thu;282;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+57;admin.;married;basic.9y;no;no;no;cellular;may;thu;563;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;yes
+30;technician;single;professional.course;no;yes;no;cellular;may;thu;377;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+41;blue-collar;married;basic.4y;no;yes;yes;cellular;may;thu;174;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+50;services;divorced;high.school;no;yes;no;cellular;may;thu;199;15;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+33;services;single;high.school;no;yes;no;cellular;may;thu;437;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+33;admin.;single;high.school;unknown;yes;no;cellular;may;thu;175;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+46;blue-collar;married;basic.9y;unknown;yes;no;cellular;may;thu;386;3;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+28;blue-collar;married;basic.9y;no;yes;no;cellular;may;thu;233;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+30;services;single;high.school;no;yes;no;cellular;may;thu;74;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+23;student;single;high.school;no;no;no;cellular;may;thu;184;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+28;blue-collar;single;basic.9y;no;no;no;cellular;may;thu;111;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+53;admin.;married;high.school;no;no;no;cellular;may;thu;168;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+28;blue-collar;single;basic.9y;no;no;no;cellular;may;thu;156;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+31;admin.;divorced;high.school;no;yes;no;cellular;may;thu;66;2;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+32;services;divorced;high.school;no;no;no;cellular;may;thu;97;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+34;entrepreneur;married;high.school;no;yes;yes;cellular;may;thu;97;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+42;admin.;married;high.school;no;yes;no;cellular;may;thu;160;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+32;blue-collar;married;basic.9y;no;unknown;unknown;cellular;may;thu;1020;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;yes
+25;student;single;high.school;no;yes;no;cellular;may;thu;149;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+30;services;divorced;high.school;no;yes;no;cellular;may;thu;202;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+33;management;single;university.degree;no;yes;no;telephone;may;thu;112;2;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+28;technician;married;university.degree;no;no;no;telephone;may;thu;154;2;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+23;admin.;single;high.school;no;yes;no;cellular;may;thu;337;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+33;admin.;single;high.school;unknown;no;no;cellular;may;thu;1723;1;12;1;success;-1.8;92.893;-46.2;1.266;5099.1;yes
+45;admin.;married;unknown;no;no;no;cellular;may;thu;177;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+25;blue-collar;single;basic.6y;no;yes;no;cellular;may;thu;95;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+44;technician;single;professional.course;unknown;yes;yes;cellular;may;thu;246;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+26;blue-collar;single;basic.9y;no;no;no;cellular;may;thu;294;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+32;management;single;university.degree;no;no;no;cellular;may;thu;162;4;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+28;services;single;professional.course;no;yes;no;cellular;may;thu;406;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;yes
+35;blue-collar;married;basic.9y;no;no;no;cellular;may;thu;20;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+30;technician;married;high.school;unknown;yes;no;cellular;may;thu;115;3;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+43;blue-collar;married;basic.9y;unknown;yes;no;cellular;may;thu;543;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+27;self-employed;single;university.degree;no;yes;no;cellular;may;thu;73;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+25;technician;married;university.degree;no;no;yes;cellular;may;thu;136;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+29;services;single;high.school;no;no;no;cellular;may;thu;138;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+29;services;single;high.school;no;yes;no;cellular;may;thu;118;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+37;services;single;high.school;no;yes;no;cellular;may;thu;30;6;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+27;admin.;married;professional.course;no;yes;no;cellular;may;thu;444;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+27;admin.;married;professional.course;no;no;no;cellular;may;thu;466;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+33;admin.;married;professional.course;no;unknown;unknown;cellular;may;thu;110;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+27;admin.;single;university.degree;no;yes;no;cellular;may;thu;97;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+52;blue-collar;divorced;basic.6y;unknown;yes;no;cellular;may;thu;7;7;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+27;admin.;single;university.degree;no;yes;no;cellular;may;thu;172;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+42;management;divorced;university.degree;no;yes;no;cellular;may;thu;146;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+35;technician;married;professional.course;no;yes;no;cellular;may;thu;16;6;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+31;admin.;single;high.school;no;yes;no;cellular;may;thu;150;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+31;services;single;university.degree;no;yes;no;cellular;may;thu;163;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+27;services;single;high.school;no;yes;no;cellular;may;thu;88;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+34;technician;single;professional.course;no;yes;no;cellular;may;thu;277;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+40;services;divorced;high.school;no;no;no;cellular;may;thu;96;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+24;technician;single;professional.course;no;no;no;cellular;may;thu;175;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+23;admin.;single;high.school;no;no;no;cellular;may;thu;22;6;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+28;admin.;married;high.school;no;unknown;unknown;cellular;may;thu;430;4;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+28;student;single;high.school;no;unknown;unknown;cellular;may;thu;97;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+36;management;married;university.degree;no;no;no;cellular;may;thu;164;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+27;blue-collar;married;basic.4y;no;yes;no;cellular;may;thu;88;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+37;blue-collar;married;high.school;unknown;yes;no;cellular;may;thu;71;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+21;services;single;high.school;no;yes;no;cellular;may;thu;136;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+28;blue-collar;married;basic.9y;unknown;no;no;cellular;may;thu;92;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+29;blue-collar;married;basic.6y;no;yes;no;cellular;may;thu;17;6;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+46;blue-collar;married;basic.9y;no;no;no;cellular;may;thu;155;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+28;blue-collar;married;basic.9y;unknown;yes;no;cellular;may;thu;199;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+51;blue-collar;married;basic.4y;no;no;no;cellular;may;thu;159;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+37;services;divorced;high.school;no;no;no;cellular;may;thu;36;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+27;technician;single;university.degree;no;yes;no;cellular;may;thu;43;8;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+23;admin.;single;high.school;no;yes;no;cellular;may;thu;70;3;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+28;blue-collar;married;basic.9y;unknown;yes;no;cellular;may;thu;334;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+34;self-employed;married;high.school;no;yes;no;cellular;may;thu;107;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+39;admin.;married;high.school;no;no;no;cellular;may;thu;806;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+23;technician;single;high.school;no;no;no;cellular;may;thu;104;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+26;admin.;single;university.degree;no;no;no;telephone;may;thu;217;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+32;blue-collar;single;high.school;no;yes;no;cellular;may;thu;216;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+35;admin.;single;university.degree;no;yes;no;cellular;may;thu;143;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+28;management;single;basic.9y;no;yes;no;cellular;may;thu;106;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+28;blue-collar;single;basic.9y;no;yes;no;cellular;may;thu;226;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+28;management;single;basic.9y;no;yes;no;telephone;may;thu;166;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+34;entrepreneur;single;university.degree;no;yes;no;cellular;may;thu;87;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+23;services;single;basic.9y;no;yes;no;cellular;may;thu;64;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+36;admin.;married;university.degree;no;no;no;cellular;may;thu;105;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+22;student;single;high.school;no;yes;no;cellular;may;thu;99;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+38;blue-collar;married;basic.4y;no;yes;no;cellular;may;thu;130;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+27;technician;single;professional.course;no;no;no;cellular;may;thu;256;1;11;1;success;-1.8;92.893;-46.2;1.266;5099.1;no
+35;blue-collar;married;high.school;no;yes;no;cellular;may;thu;121;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+27;technician;single;professional.course;no;yes;no;cellular;may;thu;285;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+40;blue-collar;married;basic.9y;no;yes;no;cellular;may;thu;140;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+33;admin.;married;university.degree;no;yes;no;cellular;may;thu;167;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+30;technician;single;professional.course;no;yes;no;cellular;may;thu;691;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;yes
+27;technician;single;professional.course;no;no;no;cellular;may;thu;311;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+30;blue-collar;married;basic.6y;no;no;no;cellular;may;thu;164;2;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+23;technician;single;high.school;no;no;yes;cellular;may;thu;1129;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;yes
+24;blue-collar;single;basic.4y;no;yes;yes;cellular;may;thu;109;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+33;admin.;married;university.degree;no;yes;yes;cellular;may;thu;444;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+48;admin.;divorced;high.school;no;yes;no;cellular;may;thu;265;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+28;technician;married;university.degree;no;yes;yes;cellular;may;thu;175;3;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+31;blue-collar;single;basic.9y;no;no;no;cellular;may;thu;191;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;yes
+39;technician;married;professional.course;no;yes;no;cellular;may;thu;292;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+39;technician;married;professional.course;no;no;no;cellular;may;thu;239;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+31;blue-collar;single;basic.9y;no;no;no;cellular;may;thu;59;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+31;blue-collar;single;basic.9y;no;yes;no;cellular;may;thu;471;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+46;services;married;high.school;no;yes;no;cellular;may;thu;182;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+28;blue-collar;married;basic.6y;no;yes;no;cellular;may;thu;933;4;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;yes
+32;management;married;high.school;no;unknown;unknown;cellular;may;thu;396;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+31;technician;married;university.degree;no;yes;no;cellular;may;thu;432;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+27;blue-collar;single;basic.9y;no;yes;yes;cellular;may;thu;224;4;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;yes
+33;blue-collar;married;basic.9y;unknown;no;no;cellular;may;thu;616;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;yes
+42;technician;married;professional.course;no;yes;yes;cellular;may;thu;50;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+29;admin.;single;basic.9y;no;yes;no;cellular;may;thu;111;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+26;admin.;single;high.school;no;yes;no;cellular;may;thu;685;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+26;blue-collar;single;basic.9y;no;no;no;cellular;may;thu;134;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+54;blue-collar;married;basic.9y;no;no;no;cellular;may;thu;423;3;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+33;blue-collar;single;basic.9y;unknown;no;no;cellular;may;thu;65;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+33;blue-collar;married;basic.9y;unknown;unknown;unknown;cellular;may;thu;551;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+58;entrepreneur;divorced;professional.course;no;yes;no;cellular;may;thu;165;5;999;2;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+51;blue-collar;married;basic.4y;no;yes;yes;cellular;may;thu;668;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;yes
+28;student;single;university.degree;no;yes;no;cellular;may;thu;42;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+24;services;married;high.school;no;no;no;cellular;may;thu;177;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+27;admin.;single;high.school;no;yes;yes;cellular;may;thu;99;7;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+29;blue-collar;married;basic.6y;no;yes;no;cellular;may;thu;108;4;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+49;services;married;high.school;no;yes;yes;cellular;may;thu;291;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+35;admin.;married;high.school;no;yes;no;cellular;may;thu;170;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+35;services;married;high.school;no;yes;no;cellular;may;thu;117;3;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+57;services;divorced;basic.4y;no;no;no;cellular;may;thu;161;6;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+25;blue-collar;single;high.school;no;yes;no;cellular;may;thu;330;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+33;technician;single;professional.course;no;no;no;cellular;may;thu;480;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+53;services;married;basic.6y;no;yes;no;cellular;may;thu;24;6;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+31;admin.;married;high.school;no;no;no;cellular;may;thu;172;2;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+23;student;single;high.school;no;yes;no;cellular;may;thu;143;2;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+39;entrepreneur;married;basic.9y;unknown;yes;yes;cellular;may;thu;158;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+27;blue-collar;married;basic.4y;no;yes;no;cellular;may;thu;88;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+36;blue-collar;married;basic.6y;no;yes;yes;cellular;may;thu;157;2;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+40;technician;single;professional.course;unknown;yes;no;cellular;may;thu;111;3;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+54;self-employed;divorced;professional.course;no;yes;no;cellular;may;thu;553;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+24;student;single;basic.9y;no;yes;no;telephone;may;thu;25;8;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+31;admin.;single;high.school;no;no;no;cellular;may;thu;433;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+40;services;divorced;high.school;no;no;yes;cellular;may;thu;632;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+31;blue-collar;married;basic.4y;no;no;no;cellular;may;thu;115;3;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+33;management;single;university.degree;no;no;no;cellular;may;thu;228;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+37;housemaid;single;high.school;no;yes;no;cellular;may;thu;142;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+33;blue-collar;married;basic.6y;no;yes;yes;cellular;may;thu;172;2;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+40;blue-collar;married;basic.6y;no;yes;yes;cellular;may;thu;246;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+36;blue-collar;single;basic.6y;no;yes;no;cellular;may;thu;329;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+31;technician;single;basic.9y;no;yes;no;cellular;may;thu;479;1;11;1;success;-1.8;92.893;-46.2;1.266;5099.1;yes
+30;technician;married;university.degree;no;yes;no;cellular;may;thu;46;3;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+33;admin.;single;university.degree;no;yes;no;cellular;may;thu;95;3;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+48;services;divorced;basic.9y;no;unknown;unknown;cellular;may;thu;67;7;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+25;admin.;single;high.school;no;yes;no;cellular;may;thu;888;3;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;yes
+31;blue-collar;married;basic.9y;no;no;no;cellular;may;thu;185;3;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+26;blue-collar;married;professional.course;no;no;no;cellular;may;thu;1071;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;yes
+35;admin.;married;university.degree;no;no;no;cellular;may;thu;229;6;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+33;admin.;divorced;university.degree;no;unknown;unknown;telephone;may;thu;213;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+34;admin.;married;university.degree;no;yes;no;cellular;may;thu;293;2;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+46;blue-collar;married;basic.4y;no;no;no;telephone;may;thu;46;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+33;technician;married;university.degree;no;no;yes;cellular;may;thu;169;3;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+41;technician;married;professional.course;no;no;yes;cellular;may;thu;226;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+42;blue-collar;married;basic.9y;no;no;no;telephone;may;thu;113;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+30;admin.;single;high.school;no;yes;no;cellular;may;thu;284;7;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+39;blue-collar;divorced;basic.9y;unknown;yes;no;cellular;may;thu;76;3;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+27;admin.;married;high.school;no;no;yes;cellular;may;thu;151;4;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+36;management;married;university.degree;no;yes;no;telephone;may;thu;68;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+37;technician;single;professional.course;no;yes;no;cellular;may;thu;56;2;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+32;technician;single;professional.course;no;no;no;cellular;may;thu;1060;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;yes
+24;entrepreneur;single;university.degree;no;no;no;cellular;may;thu;196;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+29;services;single;high.school;no;yes;no;cellular;may;thu;332;2;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+27;admin.;single;university.degree;no;yes;no;cellular;may;thu;1543;4;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;yes
+28;blue-collar;married;basic.6y;unknown;no;yes;cellular;may;thu;67;3;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+30;blue-collar;married;basic.6y;no;no;yes;cellular;may;thu;24;6;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+34;unemployed;married;basic.9y;no;yes;no;cellular;may;thu;218;4;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+42;blue-collar;married;basic.4y;no;no;no;cellular;may;thu;131;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+40;admin.;divorced;basic.9y;no;yes;no;cellular;may;thu;688;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;yes
+26;admin.;single;university.degree;no;yes;no;cellular;may;thu;400;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+42;services;married;high.school;no;yes;no;cellular;may;thu;164;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+29;blue-collar;married;basic.6y;no;no;no;cellular;may;thu;123;4;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+28;services;single;high.school;no;no;no;cellular;may;thu;99;4;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+30;blue-collar;single;basic.9y;no;no;no;cellular;may;thu;362;6;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+35;entrepreneur;married;professional.course;no;no;yes;cellular;may;thu;111;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+33;blue-collar;single;basic.9y;unknown;yes;no;cellular;may;thu;502;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+28;blue-collar;married;basic.9y;unknown;yes;no;cellular;may;thu;444;2;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+32;admin.;married;university.degree;no;no;no;cellular;may;thu;366;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+33;services;single;high.school;no;yes;no;cellular;may;thu;367;2;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+40;technician;single;professional.course;unknown;yes;no;cellular;may;thu;17;8;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+30;admin.;single;high.school;no;yes;no;cellular;may;thu;464;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+26;technician;single;professional.course;no;yes;yes;cellular;may;thu;158;5;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+22;technician;single;professional.course;no;no;no;telephone;may;thu;29;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+46;blue-collar;married;basic.9y;no;yes;yes;cellular;may;thu;221;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+49;entrepreneur;married;university.degree;unknown;yes;yes;cellular;may;thu;197;3;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+52;admin.;married;university.degree;unknown;no;yes;cellular;may;thu;183;3;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+41;admin.;divorced;high.school;unknown;yes;yes;cellular;may;thu;380;3;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+31;entrepreneur;married;university.degree;no;yes;no;cellular;may;thu;113;3;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+26;technician;single;professional.course;no;yes;no;cellular;may;thu;228;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+35;blue-collar;married;basic.6y;unknown;no;yes;telephone;may;thu;57;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+31;blue-collar;married;basic.9y;no;no;no;cellular;may;thu;535;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+52;blue-collar;unknown;basic.4y;no;unknown;unknown;cellular;may;thu;610;3;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+44;entrepreneur;married;university.degree;no;yes;yes;cellular;may;thu;91;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+36;blue-collar;married;basic.9y;no;yes;no;cellular;may;thu;265;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+34;blue-collar;married;basic.6y;no;no;no;cellular;may;thu;43;3;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+38;blue-collar;married;basic.4y;no;no;no;cellular;may;thu;299;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+42;technician;married;professional.course;no;yes;no;cellular;may;thu;196;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+51;technician;married;professional.course;no;unknown;unknown;cellular;may;thu;1462;2;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+27;admin.;married;professional.course;no;yes;yes;cellular;may;thu;162;2;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+31;blue-collar;single;basic.9y;no;no;no;cellular;may;thu;304;2;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+24;blue-collar;single;unknown;no;yes;no;cellular;may;thu;487;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+42;technician;married;professional.course;no;yes;no;cellular;may;thu;251;3;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+32;services;single;university.degree;no;yes;no;cellular;may;thu;261;3;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+31;management;single;university.degree;no;yes;no;cellular;may;thu;8;4;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+45;self-employed;married;university.degree;no;yes;no;cellular;may;thu;171;4;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+39;admin.;married;high.school;no;yes;no;cellular;may;thu;112;4;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+32;self-employed;married;basic.9y;no;yes;no;cellular;may;thu;374;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+31;blue-collar;single;professional.course;no;yes;no;cellular;may;thu;60;5;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+37;technician;married;high.school;unknown;no;yes;cellular;may;thu;102;6;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+28;blue-collar;single;basic.9y;no;yes;no;cellular;may;thu;176;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+29;admin.;divorced;university.degree;no;yes;no;cellular;may;thu;241;2;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+29;admin.;single;high.school;no;yes;no;cellular;may;thu;566;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;yes
+31;blue-collar;married;professional.course;no;yes;no;cellular;may;thu;303;3;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+26;blue-collar;married;professional.course;no;yes;no;cellular;may;thu;649;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+25;student;single;high.school;no;yes;no;cellular;may;thu;959;3;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;yes
+31;blue-collar;married;basic.9y;no;no;no;cellular;may;thu;134;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+34;services;married;high.school;no;no;no;cellular;may;thu;353;6;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+30;admin.;married;university.degree;no;no;no;telephone;may;thu;72;7;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+33;blue-collar;married;basic.6y;no;yes;no;cellular;may;thu;337;4;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+34;blue-collar;single;basic.4y;unknown;yes;no;cellular;may;thu;93;2;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+27;blue-collar;married;basic.9y;no;yes;no;cellular;may;thu;291;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+31;admin.;single;university.degree;no;no;yes;cellular;may;thu;546;3;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+32;blue-collar;married;basic.9y;no;yes;yes;cellular;may;thu;252;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+54;blue-collar;married;basic.9y;no;no;no;cellular;may;thu;532;2;6;2;success;-1.8;92.893;-46.2;1.266;5099.1;yes
+31;blue-collar;married;basic.4y;no;no;yes;cellular;may;thu;204;2;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+52;technician;married;basic.6y;unknown;no;no;cellular;may;thu;152;3;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+31;blue-collar;married;basic.9y;no;no;no;telephone;may;thu;267;4;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+35;admin.;divorced;high.school;no;yes;no;cellular;may;thu;406;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+31;admin.;single;high.school;no;yes;no;cellular;may;thu;1094;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;yes
+26;admin.;single;university.degree;no;yes;no;cellular;may;thu;320;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+28;blue-collar;single;basic.9y;unknown;no;no;cellular;may;thu;884;3;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;yes
+29;technician;single;high.school;unknown;yes;no;cellular;may;thu;410;5;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+28;services;single;professional.course;no;no;no;telephone;may;thu;210;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+23;technician;single;high.school;no;no;no;cellular;may;thu;198;2;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+30;admin.;single;university.degree;no;yes;no;cellular;may;thu;241;2;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+47;blue-collar;divorced;basic.9y;no;no;no;cellular;may;thu;16;8;6;2;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+29;admin.;single;basic.9y;unknown;no;no;cellular;may;thu;460;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;yes
+37;blue-collar;divorced;basic.9y;no;yes;no;telephone;may;thu;604;4;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;yes
+39;management;married;basic.4y;unknown;yes;no;telephone;may;thu;427;2;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+45;entrepreneur;divorced;university.degree;no;yes;yes;telephone;may;thu;72;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+33;admin.;married;high.school;no;no;no;cellular;may;thu;350;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+29;blue-collar;married;basic.6y;no;no;yes;cellular;may;thu;93;3;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+30;admin.;single;university.degree;no;yes;yes;cellular;may;thu;176;2;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+24;admin.;married;high.school;no;yes;no;cellular;may;thu;118;4;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+39;admin.;single;high.school;no;no;no;cellular;may;thu;387;10;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+48;services;single;basic.4y;unknown;yes;yes;cellular;may;thu;106;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+37;technician;single;university.degree;no;no;no;cellular;may;thu;336;2;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+32;blue-collar;single;high.school;no;yes;no;cellular;may;thu;205;3;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+43;blue-collar;married;basic.4y;no;yes;no;cellular;may;thu;135;3;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+29;blue-collar;single;basic.4y;unknown;yes;no;telephone;may;thu;42;3;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+42;blue-collar;married;unknown;unknown;no;yes;cellular;may;thu;428;3;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+23;technician;single;high.school;no;yes;no;cellular;may;thu;240;3;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+60;retired;married;high.school;no;no;no;cellular;may;thu;512;3;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+36;entrepreneur;single;basic.9y;unknown;yes;yes;cellular;may;thu;75;3;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+26;blue-collar;single;basic.9y;unknown;yes;no;cellular;may;thu;88;4;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+30;services;single;high.school;no;yes;no;cellular;may;thu;41;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+31;blue-collar;married;basic.6y;unknown;yes;no;telephone;may;thu;27;3;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+30;technician;married;basic.9y;no;yes;no;cellular;may;thu;181;4;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+38;technician;single;professional.course;no;yes;no;cellular;may;thu;306;4;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+29;admin.;divorced;university.degree;no;no;no;telephone;may;thu;90;3;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+38;blue-collar;married;basic.6y;no;yes;no;cellular;may;thu;15;9;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+38;entrepreneur;married;university.degree;no;no;no;cellular;may;thu;136;2;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+46;blue-collar;married;basic.4y;no;no;no;cellular;may;thu;154;2;12;1;success;-1.8;92.893;-46.2;1.266;5099.1;no
+43;blue-collar;married;basic.4y;no;yes;no;cellular;may;thu;305;3;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+40;management;married;university.degree;unknown;no;no;cellular;may;thu;190;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+29;blue-collar;married;basic.9y;no;no;no;telephone;may;thu;47;4;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+31;technician;married;university.degree;no;yes;yes;cellular;may;thu;172;2;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+39;blue-collar;divorced;basic.9y;no;yes;no;cellular;may;thu;170;7;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+36;blue-collar;married;basic.9y;no;no;no;cellular;may;thu;204;5;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+26;technician;single;professional.course;no;yes;no;cellular;may;thu;294;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+27;self-employed;single;university.degree;no;no;no;cellular;may;thu;367;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+25;admin.;single;high.school;no;yes;no;cellular;may;thu;173;6;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+29;technician;single;high.school;no;no;no;cellular;may;thu;62;4;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+33;blue-collar;married;basic.9y;unknown;no;yes;telephone;may;thu;113;3;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+27;blue-collar;married;high.school;no;no;no;cellular;may;thu;136;5;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+44;technician;married;professional.course;no;yes;yes;cellular;may;thu;292;3;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+32;blue-collar;married;basic.4y;no;no;yes;cellular;may;thu;80;4;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+33;technician;married;high.school;no;yes;no;cellular;may;thu;90;5;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+34;blue-collar;married;high.school;no;no;no;cellular;may;thu;144;3;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+24;management;married;university.degree;no;no;no;telephone;may;thu;28;5;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+33;blue-collar;married;basic.9y;no;no;yes;cellular;may;thu;178;7;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+48;services;single;basic.4y;unknown;yes;yes;cellular;may;thu;306;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+28;admin.;married;high.school;no;no;yes;cellular;may;thu;386;4;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+36;unemployed;married;basic.9y;unknown;yes;yes;cellular;may;thu;114;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+43;blue-collar;married;basic.4y;no;yes;no;cellular;may;thu;493;5;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+33;blue-collar;single;high.school;no;yes;yes;telephone;may;thu;33;7;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+31;services;single;high.school;unknown;yes;no;cellular;may;thu;452;3;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+27;admin.;single;basic.9y;no;yes;yes;cellular;may;thu;167;4;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+36;blue-collar;married;basic.6y;no;yes;no;cellular;may;thu;125;5;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+29;services;married;high.school;no;no;no;cellular;may;thu;185;10;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+28;blue-collar;married;basic.9y;no;yes;no;cellular;may;thu;341;3;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+35;services;married;high.school;no;yes;no;cellular;may;thu;223;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+25;entrepreneur;single;university.degree;no;yes;no;cellular;may;thu;415;3;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+20;blue-collar;single;high.school;no;yes;no;cellular;may;thu;908;3;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+24;services;married;high.school;no;no;no;cellular;may;thu;166;3;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+55;admin.;divorced;university.degree;unknown;no;no;cellular;may;thu;168;2;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+30;student;single;unknown;no;no;no;cellular;may;thu;486;5;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+23;admin.;single;high.school;no;no;no;cellular;may;thu;67;3;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+33;technician;single;basic.9y;no;no;no;telephone;may;thu;167;6;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+25;blue-collar;single;high.school;unknown;no;yes;cellular;may;thu;338;3;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+24;services;married;high.school;no;no;no;cellular;may;thu;10;5;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+21;student;single;high.school;unknown;yes;no;cellular;may;thu;142;3;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+32;admin.;married;university.degree;no;yes;no;telephone;may;thu;151;5;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+34;admin.;single;university.degree;no;yes;yes;cellular;may;thu;384;7;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+30;services;married;high.school;no;no;no;cellular;may;thu;192;4;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+32;admin.;single;high.school;no;yes;no;cellular;may;thu;212;6;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+33;blue-collar;single;basic.6y;unknown;no;no;cellular;may;thu;100;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+40;blue-collar;married;basic.9y;no;yes;no;cellular;may;thu;308;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+29;admin.;single;high.school;no;yes;no;cellular;may;thu;54;11;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+34;services;single;high.school;no;no;yes;telephone;may;thu;30;6;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+30;blue-collar;single;basic.9y;no;yes;no;cellular;may;thu;340;3;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+35;services;single;high.school;no;no;yes;telephone;may;thu;225;7;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+58;entrepreneur;divorced;professional.course;no;yes;no;telephone;may;thu;346;5;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+38;blue-collar;married;basic.4y;unknown;no;no;cellular;may;thu;197;4;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+34;technician;single;professional.course;no;yes;no;cellular;may;thu;290;4;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+35;admin.;married;university.degree;no;yes;yes;cellular;may;thu;8;9;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+33;admin.;single;basic.6y;unknown;yes;no;cellular;may;thu;72;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+22;student;single;high.school;no;yes;yes;telephone;may;thu;382;3;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+57;retired;married;basic.6y;no;no;no;cellular;may;thu;100;3;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+59;management;married;basic.4y;unknown;unknown;unknown;cellular;may;thu;165;4;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+28;student;single;university.degree;no;no;yes;cellular;may;thu;647;4;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;yes
+25;management;married;university.degree;no;no;no;cellular;may;thu;506;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+26;housemaid;single;unknown;no;yes;yes;cellular;may;fri;140;3;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+30;blue-collar;married;professional.course;no;yes;no;cellular;may;fri;168;4;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+30;management;single;basic.9y;no;yes;no;cellular;may;fri;253;4;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+30;admin.;single;high.school;no;yes;no;cellular;may;fri;195;3;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+32;admin.;single;unknown;no;yes;no;cellular;may;fri;235;2;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+31;admin.;single;university.degree;no;yes;no;cellular;may;fri;165;3;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+23;blue-collar;single;unknown;no;no;no;cellular;may;fri;68;2;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+32;services;divorced;high.school;unknown;yes;no;cellular;may;fri;133;4;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+55;blue-collar;married;professional.course;no;no;yes;cellular;may;fri;100;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+35;blue-collar;single;basic.9y;no;yes;no;cellular;may;fri;676;3;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;yes
+26;blue-collar;single;high.school;no;no;no;cellular;may;fri;49;3;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+32;technician;single;professional.course;no;no;no;cellular;may;fri;153;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;yes
+21;services;single;high.school;no;no;no;cellular;may;fri;103;6;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+34;blue-collar;married;professional.course;no;yes;yes;cellular;may;fri;19;7;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+34;technician;divorced;professional.course;no;yes;yes;cellular;may;fri;296;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+24;services;single;high.school;no;no;no;cellular;may;fri;145;4;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+34;admin.;single;university.degree;no;yes;no;cellular;may;fri;69;5;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+37;admin.;single;high.school;no;yes;no;telephone;may;fri;26;6;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+23;admin.;single;unknown;no;yes;no;telephone;may;fri;17;4;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+24;blue-collar;married;basic.9y;no;unknown;unknown;cellular;may;fri;323;5;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+28;services;single;high.school;no;yes;yes;cellular;may;fri;9;6;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+32;blue-collar;married;basic.4y;no;yes;no;cellular;may;fri;460;3;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+44;admin.;married;high.school;no;yes;yes;cellular;may;fri;111;4;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+28;admin.;single;university.degree;no;no;no;cellular;may;fri;165;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+36;admin.;single;high.school;no;yes;yes;cellular;may;fri;10;5;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+29;admin.;single;high.school;no;no;no;cellular;may;fri;113;4;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+29;technician;single;university.degree;no;no;no;telephone;may;fri;12;4;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+42;entrepreneur;married;high.school;no;yes;no;cellular;may;fri;9;9;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+31;technician;single;university.degree;no;yes;no;telephone;may;fri;14;6;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+24;blue-collar;married;basic.9y;no;unknown;unknown;telephone;may;fri;8;6;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+32;management;single;professional.course;no;no;no;cellular;may;fri;194;3;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+29;blue-collar;divorced;basic.4y;no;no;no;cellular;may;fri;667;3;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;yes
+27;admin.;married;university.degree;no;yes;no;cellular;may;fri;670;4;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;yes
+29;blue-collar;married;basic.9y;no;yes;no;cellular;may;fri;14;4;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+28;blue-collar;married;basic.9y;no;yes;no;cellular;may;fri;115;5;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+28;blue-collar;married;basic.9y;no;yes;no;cellular;may;fri;14;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+31;admin.;single;high.school;no;yes;no;telephone;may;fri;289;8;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+35;technician;married;professional.course;no;yes;no;cellular;may;fri;14;5;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+34;self-employed;single;professional.course;no;yes;no;telephone;may;fri;10;7;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+28;blue-collar;single;basic.6y;no;yes;no;cellular;may;fri;354;8;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+23;admin.;single;high.school;no;yes;no;cellular;may;fri;236;4;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+26;technician;single;basic.9y;no;no;no;cellular;may;fri;62;1;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+29;blue-collar;single;unknown;no;yes;no;cellular;may;fri;61;1;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+34;admin.;married;university.degree;no;yes;no;cellular;may;fri;103;3;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+41;management;married;university.degree;no;no;no;cellular;may;fri;172;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+33;blue-collar;married;basic.6y;unknown;yes;yes;cellular;may;fri;306;4;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+40;admin.;divorced;high.school;no;yes;no;cellular;may;fri;164;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+54;retired;divorced;university.degree;no;yes;no;cellular;may;fri;778;5;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+45;entrepreneur;married;basic.9y;no;yes;no;telephone;may;fri;39;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+32;admin.;single;high.school;no;no;no;cellular;may;fri;1181;9;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+39;entrepreneur;single;university.degree;no;no;no;cellular;may;fri;124;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+39;blue-collar;single;unknown;no;yes;yes;cellular;may;fri;162;3;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+51;technician;married;basic.9y;no;yes;no;cellular;may;fri;45;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+29;admin.;married;basic.6y;no;yes;no;cellular;may;fri;16;6;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+32;technician;single;professional.course;no;yes;no;cellular;may;fri;347;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+39;entrepreneur;single;university.degree;no;yes;yes;cellular;may;fri;233;1;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+28;entrepreneur;married;basic.9y;unknown;no;no;cellular;may;fri;133;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+53;services;married;university.degree;no;no;no;cellular;may;fri;136;1;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+34;admin.;single;high.school;no;yes;no;cellular;may;fri;655;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;yes
+35;blue-collar;married;basic.4y;unknown;yes;no;cellular;may;fri;196;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+39;entrepreneur;single;university.degree;no;yes;no;cellular;may;fri;452;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+31;admin.;single;university.degree;no;no;no;cellular;may;fri;56;1;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+31;admin.;single;university.degree;no;yes;no;cellular;may;fri;33;1;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+28;admin.;married;high.school;no;no;no;cellular;may;fri;35;3;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+33;services;married;high.school;no;yes;no;cellular;may;fri;227;1;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+30;admin.;single;university.degree;no;no;no;cellular;may;fri;197;1;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+28;entrepreneur;married;basic.9y;unknown;yes;no;cellular;may;fri;78;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+30;admin.;single;university.degree;no;yes;yes;cellular;may;fri;191;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+54;management;married;university.degree;no;yes;yes;cellular;may;fri;85;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+39;technician;single;high.school;no;yes;no;cellular;may;fri;642;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+54;management;married;university.degree;no;yes;no;cellular;may;fri;173;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+31;blue-collar;single;basic.4y;unknown;yes;no;cellular;may;fri;73;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+42;services;married;high.school;no;no;no;cellular;may;fri;551;1;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;yes
+29;blue-collar;single;basic.9y;no;yes;no;cellular;may;fri;607;1;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+35;blue-collar;divorced;basic.9y;no;no;no;cellular;may;fri;409;1;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;yes
+30;management;married;university.degree;no;no;no;cellular;may;fri;67;1;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+34;blue-collar;married;basic.4y;unknown;no;no;cellular;may;fri;11;6;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+22;technician;single;university.degree;no;no;no;cellular;may;fri;382;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;yes
+27;technician;single;unknown;no;no;no;cellular;may;fri;7;4;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+36;blue-collar;single;basic.9y;no;yes;no;cellular;may;fri;239;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+24;blue-collar;single;basic.9y;no;yes;no;cellular;may;fri;54;4;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+29;blue-collar;divorced;high.school;no;yes;no;cellular;may;fri;144;1;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+32;services;single;high.school;no;no;no;cellular;may;fri;123;3;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+42;admin.;married;high.school;no;yes;no;cellular;may;fri;270;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+45;admin.;married;university.degree;no;yes;no;cellular;may;fri;160;1;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+30;admin.;single;university.degree;no;no;no;cellular;may;fri;208;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+43;entrepreneur;married;professional.course;no;yes;no;cellular;may;fri;311;1;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;yes
+45;admin.;married;university.degree;no;yes;yes;cellular;may;fri;300;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+45;admin.;married;university.degree;no;yes;no;cellular;may;fri;259;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+29;blue-collar;divorced;high.school;no;no;no;cellular;may;fri;760;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;yes
+39;technician;divorced;high.school;no;yes;no;cellular;may;fri;21;8;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+39;technician;divorced;professional.course;no;yes;no;cellular;may;fri;128;2;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+27;blue-collar;single;basic.6y;no;no;yes;telephone;may;fri;146;4;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+27;admin.;married;high.school;no;no;no;cellular;may;fri;71;3;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+30;blue-collar;single;basic.9y;no;yes;no;cellular;may;fri;169;2;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+56;management;married;university.degree;unknown;yes;yes;cellular;may;fri;302;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+44;blue-collar;married;high.school;no;yes;no;cellular;may;fri;198;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+41;blue-collar;married;basic.4y;no;yes;no;cellular;may;fri;302;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+46;services;married;high.school;unknown;yes;no;cellular;may;fri;6;1;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+41;entrepreneur;divorced;unknown;no;no;no;telephone;may;fri;64;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+34;services;married;high.school;no;yes;no;cellular;may;fri;49;1;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+41;entrepreneur;divorced;unknown;no;no;no;cellular;may;fri;242;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+39;blue-collar;married;basic.6y;unknown;no;no;cellular;may;fri;124;1;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+28;blue-collar;single;basic.6y;no;yes;yes;cellular;may;fri;20;6;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+29;blue-collar;divorced;high.school;no;yes;no;cellular;may;fri;1452;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+41;entrepreneur;divorced;unknown;no;yes;no;cellular;may;fri;317;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+55;services;married;high.school;no;no;no;cellular;may;fri;95;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+30;retired;single;basic.9y;no;no;no;cellular;may;fri;16;8;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+29;blue-collar;divorced;unknown;unknown;no;no;cellular;may;fri;67;4;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+34;blue-collar;married;basic.9y;no;no;no;cellular;may;fri;241;1;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+45;services;married;high.school;unknown;yes;no;cellular;may;fri;250;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+24;blue-collar;single;basic.9y;no;no;no;telephone;may;fri;7;4;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+41;blue-collar;married;basic.6y;no;yes;no;cellular;may;fri;432;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+51;technician;married;professional.course;no;yes;no;cellular;may;fri;153;1;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+50;blue-collar;married;basic.4y;no;no;no;cellular;may;fri;67;1;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+43;blue-collar;married;high.school;no;yes;no;cellular;may;fri;48;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+25;blue-collar;single;basic.9y;no;no;no;cellular;may;fri;72;2;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+52;self-employed;divorced;university.degree;no;yes;no;cellular;may;fri;158;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+33;admin.;married;high.school;no;yes;no;cellular;may;fri;148;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+34;admin.;married;university.degree;no;no;no;cellular;may;fri;377;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+53;blue-collar;divorced;basic.4y;no;yes;no;telephone;may;fri;367;6;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+41;blue-collar;single;basic.9y;no;no;no;cellular;may;fri;195;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+56;services;married;high.school;unknown;yes;no;cellular;may;fri;169;1;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+56;services;married;high.school;unknown;no;no;cellular;may;fri;217;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+42;self-employed;married;professional.course;unknown;yes;no;cellular;may;fri;50;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+42;self-employed;married;professional.course;unknown;no;no;cellular;may;fri;160;1;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+34;technician;divorced;professional.course;no;no;no;cellular;may;fri;64;4;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+34;admin.;married;university.degree;no;yes;no;cellular;may;fri;612;1;999;2;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+56;services;married;high.school;unknown;no;no;cellular;may;fri;310;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+34;technician;divorced;professional.course;no;yes;no;cellular;may;fri;7;6;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+25;technician;single;basic.9y;no;yes;no;cellular;may;fri;14;4;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+56;services;married;high.school;unknown;yes;no;cellular;may;fri;373;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+39;technician;divorced;university.degree;no;no;no;cellular;may;fri;55;4;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+59;admin.;divorced;university.degree;no;no;no;cellular;may;fri;58;1;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+33;admin.;married;university.degree;no;yes;no;cellular;may;fri;180;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+35;blue-collar;married;basic.4y;no;no;no;cellular;may;fri;13;9;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+43;services;married;basic.6y;no;yes;no;cellular;may;fri;68;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+25;blue-collar;single;basic.4y;no;yes;no;cellular;may;fri;64;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+56;blue-collar;married;basic.9y;unknown;yes;no;cellular;may;fri;520;1;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+34;technician;divorced;professional.course;no;yes;no;cellular;may;fri;1190;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;yes
+35;services;single;high.school;no;unknown;unknown;cellular;may;fri;119;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+42;self-employed;married;professional.course;unknown;unknown;unknown;cellular;may;fri;665;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+40;entrepreneur;married;high.school;no;no;no;cellular;may;fri;132;5;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+39;blue-collar;married;basic.9y;no;yes;no;cellular;may;fri;391;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+30;technician;single;professional.course;no;yes;no;cellular;may;fri;26;6;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+46;services;divorced;basic.4y;no;no;no;cellular;may;fri;493;7;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+55;admin.;married;high.school;unknown;yes;no;cellular;may;fri;41;3;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+59;admin.;divorced;university.degree;no;yes;no;cellular;may;fri;899;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;yes
+36;technician;married;professional.course;no;yes;no;cellular;may;fri;157;4;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+29;admin.;single;university.degree;unknown;yes;no;cellular;may;fri;104;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+27;technician;single;professional.course;no;yes;no;cellular;may;fri;282;4;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+39;blue-collar;married;basic.9y;no;yes;no;cellular;may;fri;8;6;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+53;services;married;basic.6y;no;no;no;cellular;may;fri;101;1;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+53;services;married;basic.6y;no;yes;no;cellular;may;fri;133;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+46;admin.;married;high.school;no;yes;no;cellular;may;fri;39;1;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+37;unemployed;married;university.degree;no;unknown;unknown;cellular;may;fri;34;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+33;blue-collar;single;basic.4y;no;yes;no;telephone;may;fri;23;3;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+27;blue-collar;married;basic.9y;no;no;yes;cellular;may;fri;12;5;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+44;management;married;university.degree;no;yes;no;cellular;may;fri;217;1;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+55;blue-collar;married;professional.course;no;yes;no;cellular;may;fri;77;1;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+29;blue-collar;married;basic.6y;no;unknown;unknown;telephone;may;fri;8;7;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+26;technician;married;professional.course;no;yes;no;cellular;may;fri;11;5;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+28;technician;single;professional.course;no;yes;no;telephone;may;fri;8;9;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+32;admin.;single;university.degree;no;no;no;cellular;may;fri;24;7;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+38;blue-collar;married;basic.4y;unknown;yes;no;cellular;may;fri;48;4;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+35;management;single;university.degree;no;yes;no;cellular;may;fri;233;1;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+30;services;single;high.school;no;yes;no;cellular;may;fri;82;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+37;admin.;single;high.school;no;yes;no;cellular;may;fri;326;5;999;2;failure;-1.8;92.893;-46.2;1.25;5099.1;yes
+52;blue-collar;married;basic.9y;no;yes;no;cellular;may;fri;283;3;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+30;services;single;high.school;no;yes;no;cellular;may;fri;159;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+47;blue-collar;married;high.school;no;yes;no;cellular;may;fri;58;1;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+47;blue-collar;married;high.school;no;yes;no;cellular;may;fri;181;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+39;admin.;divorced;high.school;no;no;yes;cellular;may;fri;301;1;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+44;self-employed;married;university.degree;no;yes;no;cellular;may;fri;151;1;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+45;blue-collar;single;high.school;no;yes;no;cellular;may;fri;146;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+54;services;single;basic.6y;unknown;yes;no;cellular;may;fri;250;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+43;blue-collar;divorced;basic.9y;no;unknown;unknown;cellular;may;fri;148;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+34;housemaid;married;high.school;unknown;yes;no;cellular;may;fri;106;1;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+50;services;married;high.school;no;yes;yes;cellular;may;fri;44;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+58;admin.;married;basic.4y;unknown;no;no;cellular;may;fri;901;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;yes
+45;blue-collar;single;high.school;no;no;no;cellular;may;fri;358;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+31;blue-collar;married;university.degree;no;yes;no;cellular;may;fri;1286;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+25;blue-collar;single;basic.9y;no;yes;no;cellular;may;fri;73;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+55;management;married;basic.6y;unknown;no;yes;cellular;may;fri;87;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+39;self-employed;married;basic.9y;no;yes;no;cellular;may;fri;744;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;yes
+55;management;married;basic.6y;unknown;yes;no;cellular;may;fri;127;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+51;admin.;married;high.school;no;no;yes;cellular;may;fri;55;1;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+50;services;married;high.school;no;no;no;cellular;may;fri;454;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+30;entrepreneur;married;high.school;no;yes;yes;cellular;may;fri;485;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;yes
+35;blue-collar;single;basic.4y;no;no;no;cellular;may;fri;12;5;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+26;self-employed;single;university.degree;no;no;no;cellular;may;fri;99;3;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+32;blue-collar;single;basic.6y;unknown;yes;no;telephone;may;fri;9;6;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+37;admin.;married;high.school;no;no;no;cellular;may;fri;123;5;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+23;blue-collar;single;basic.4y;no;yes;yes;cellular;may;fri;102;7;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+31;blue-collar;married;basic.9y;no;no;no;cellular;may;fri;282;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+54;services;single;basic.6y;unknown;no;no;cellular;may;fri;984;1;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+51;admin.;married;high.school;no;yes;no;cellular;may;fri;514;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+33;technician;divorced;high.school;no;unknown;unknown;cellular;may;fri;224;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+50;admin.;married;professional.course;unknown;yes;yes;cellular;may;fri;151;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+32;admin.;divorced;high.school;no;no;no;cellular;may;fri;25;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+35;admin.;single;high.school;no;yes;no;cellular;may;fri;7;5;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+37;blue-collar;single;basic.6y;no;yes;no;cellular;may;fri;76;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+33;services;divorced;high.school;no;yes;no;cellular;may;fri;82;3;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+29;unemployed;married;university.degree;no;yes;yes;cellular;may;fri;298;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+28;self-employed;single;university.degree;no;no;no;cellular;may;fri;386;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+32;technician;single;university.degree;no;no;no;cellular;may;fri;457;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+32;admin.;single;university.degree;no;yes;no;cellular;may;fri;18;8;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+32;entrepreneur;married;university.degree;no;unknown;unknown;cellular;may;fri;416;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;yes
+30;blue-collar;single;basic.9y;no;no;no;cellular;may;fri;193;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+44;management;married;university.degree;no;no;no;cellular;may;fri;262;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+31;services;single;professional.course;no;yes;no;cellular;may;fri;22;5;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+30;management;single;university.degree;no;yes;no;cellular;may;fri;637;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;yes
+39;admin.;married;university.degree;no;yes;no;cellular;may;fri;45;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+55;housemaid;married;high.school;unknown;yes;no;cellular;may;fri;14;8;999;2;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+28;services;single;basic.9y;unknown;yes;no;telephone;may;fri;59;3;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+24;services;single;high.school;no;yes;no;cellular;may;fri;34;7;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+39;admin.;married;university.degree;no;no;no;cellular;may;fri;272;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+29;admin.;single;high.school;no;no;yes;cellular;may;fri;48;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+39;admin.;married;university.degree;no;no;no;cellular;may;fri;301;1;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+53;admin.;divorced;basic.9y;no;no;yes;cellular;may;fri;164;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+23;blue-collar;single;basic.4y;no;yes;no;cellular;may;fri;523;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;yes
+44;admin.;married;basic.9y;no;yes;no;cellular;may;fri;133;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+38;services;divorced;high.school;no;yes;no;cellular;may;fri;52;2;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+31;blue-collar;single;high.school;no;no;no;cellular;may;fri;325;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+48;blue-collar;married;basic.9y;no;yes;no;cellular;may;fri;36;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+48;blue-collar;married;basic.9y;no;no;yes;cellular;may;fri;56;1;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+36;admin.;married;university.degree;no;no;no;cellular;may;fri;174;1;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+48;admin.;married;high.school;no;no;no;cellular;may;fri;322;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+48;blue-collar;married;basic.9y;no;no;no;cellular;may;fri;333;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+48;blue-collar;married;basic.9y;no;no;no;cellular;may;fri;311;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+59;retired;divorced;basic.4y;no;no;no;cellular;may;fri;290;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+59;retired;divorced;basic.4y;no;yes;no;cellular;may;fri;27;5;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+58;management;married;university.degree;no;yes;yes;cellular;may;fri;256;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+26;technician;single;university.degree;no;yes;yes;cellular;may;fri;173;3;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+35;blue-collar;single;basic.9y;no;yes;no;cellular;may;fri;134;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+39;technician;married;unknown;no;yes;yes;cellular;may;fri;171;1;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+39;technician;married;unknown;no;yes;yes;cellular;may;fri;256;1;12;1;success;-1.8;92.893;-46.2;1.25;5099.1;no
+37;services;married;high.school;no;yes;no;telephone;may;fri;26;1;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+53;services;married;university.degree;no;no;yes;cellular;may;fri;74;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+34;blue-collar;married;basic.4y;unknown;yes;no;cellular;may;fri;285;5;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;yes
+25;blue-collar;single;basic.6y;unknown;yes;no;cellular;may;fri;109;5;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+41;blue-collar;married;high.school;no;yes;no;cellular;may;fri;239;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+24;technician;single;basic.9y;no;yes;no;cellular;may;fri;109;11;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+33;blue-collar;married;basic.9y;unknown;yes;no;cellular;may;fri;730;5;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;yes
+32;blue-collar;single;basic.6y;unknown;no;no;cellular;may;fri;19;6;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+57;management;married;basic.4y;unknown;yes;no;cellular;may;fri;10;5;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+37;blue-collar;married;basic.4y;no;yes;no;cellular;may;fri;178;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+31;technician;single;unknown;no;no;yes;cellular;may;fri;7;6;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+34;blue-collar;single;high.school;no;no;no;telephone;may;fri;71;5;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+33;admin.;single;high.school;no;no;no;cellular;may;fri;16;9;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+53;services;married;university.degree;no;no;no;telephone;may;fri;45;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+37;admin.;married;high.school;no;yes;no;cellular;may;fri;22;6;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+41;entrepreneur;divorced;unknown;no;no;no;cellular;may;fri;536;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;yes
+29;admin.;single;high.school;no;yes;no;cellular;may;fri;792;2;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;yes
+33;services;married;high.school;no;yes;no;cellular;may;fri;178;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+30;technician;married;basic.9y;no;yes;no;cellular;may;fri;41;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+47;services;married;high.school;no;yes;no;cellular;may;fri;142;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+53;admin.;married;high.school;no;yes;no;cellular;may;fri;45;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+41;blue-collar;married;basic.9y;unknown;yes;no;cellular;may;fri;10;5;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+33;services;married;high.school;no;unknown;unknown;cellular;may;fri;333;1;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+31;technician;married;professional.course;no;no;no;cellular;may;fri;166;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+41;management;married;university.degree;no;yes;no;cellular;may;fri;100;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+36;management;divorced;university.degree;no;unknown;unknown;cellular;may;fri;423;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+53;admin.;married;high.school;no;yes;no;cellular;may;fri;358;1;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+24;services;single;high.school;no;no;no;cellular;may;fri;576;4;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;yes
+34;services;divorced;high.school;no;yes;no;cellular;may;fri;84;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+34;services;divorced;high.school;no;no;no;cellular;may;fri;66;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+29;services;single;basic.9y;no;yes;no;cellular;may;fri;79;2;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+33;blue-collar;married;professional.course;no;yes;no;cellular;may;fri;669;1;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;yes
+53;admin.;married;high.school;no;no;no;cellular;may;fri;456;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+26;services;married;high.school;no;no;yes;cellular;may;fri;676;3;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+54;blue-collar;married;basic.4y;unknown;no;no;cellular;may;fri;87;1;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+27;services;single;high.school;no;no;no;cellular;may;fri;472;6;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+38;services;divorced;high.school;no;no;no;cellular;may;fri;78;1;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+37;unemployed;married;university.degree;no;yes;no;telephone;may;fri;354;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+36;management;married;university.degree;no;no;no;cellular;may;fri;117;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+32;blue-collar;married;basic.4y;no;no;no;cellular;may;fri;265;7;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+32;technician;single;university.degree;no;yes;yes;cellular;may;fri;693;5;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;yes
+36;entrepreneur;married;basic.9y;no;yes;no;cellular;may;fri;251;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+32;admin.;single;university.degree;no;yes;no;cellular;may;fri;98;1;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+30;unemployed;single;high.school;no;no;no;cellular;may;fri;13;11;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+23;technician;single;professional.course;no;unknown;unknown;cellular;may;fri;14;5;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+36;management;married;university.degree;no;no;no;cellular;may;fri;268;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+32;admin.;single;high.school;no;no;no;cellular;may;fri;144;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+49;entrepreneur;divorced;basic.9y;no;no;no;cellular;may;fri;166;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+31;admin.;single;university.degree;no;yes;yes;cellular;may;fri;138;4;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+30;technician;single;professional.course;no;no;no;cellular;may;fri;1015;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;yes
+54;blue-collar;married;basic.4y;no;yes;yes;cellular;may;fri;192;1;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+43;management;married;university.degree;no;yes;no;cellular;may;fri;663;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;yes
+44;entrepreneur;single;university.degree;no;yes;no;cellular;may;fri;210;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+38;services;married;basic.6y;unknown;yes;no;cellular;may;fri;119;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+54;retired;divorced;university.degree;no;yes;no;cellular;may;fri;133;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+48;services;married;basic.9y;unknown;no;no;cellular;may;fri;18;8;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+33;blue-collar;married;basic.9y;unknown;yes;no;cellular;may;fri;8;4;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+54;retired;divorced;university.degree;no;yes;yes;cellular;may;fri;261;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+37;services;married;high.school;no;yes;no;cellular;may;fri;81;2;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+30;services;single;high.school;no;yes;no;cellular;may;fri;65;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+29;technician;single;university.degree;no;yes;yes;cellular;may;fri;437;3;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;yes
+45;retired;married;basic.6y;unknown;no;yes;cellular;may;fri;102;1;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+34;admin.;single;high.school;no;yes;no;cellular;may;fri;217;6;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+37;blue-collar;married;basic.6y;no;no;no;cellular;may;fri;63;3;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+34;services;divorced;high.school;no;yes;yes;cellular;may;fri;562;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;yes
+30;blue-collar;single;basic.9y;no;yes;no;cellular;may;fri;74;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+32;services;single;unknown;no;yes;no;cellular;may;fri;189;3;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+27;services;single;high.school;no;no;no;cellular;may;fri;212;4;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+35;admin.;married;high.school;unknown;yes;no;cellular;may;fri;500;2;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+39;blue-collar;divorced;high.school;unknown;no;yes;cellular;may;fri;172;2;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+37;technician;single;professional.course;no;no;yes;cellular;may;fri;20;6;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+36;technician;divorced;professional.course;no;unknown;unknown;cellular;may;fri;327;3;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+34;admin.;married;university.degree;no;no;no;cellular;may;fri;16;7;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+39;admin.;married;university.degree;no;yes;no;cellular;may;fri;894;2;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+42;services;married;basic.9y;no;yes;no;cellular;may;fri;152;1;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+45;self-employed;divorced;university.degree;no;yes;no;cellular;may;fri;116;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+45;self-employed;divorced;university.degree;no;no;yes;cellular;may;fri;133;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+35;admin.;married;high.school;unknown;no;no;cellular;may;fri;585;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;yes
+42;management;married;university.degree;no;yes;no;cellular;may;fri;95;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+53;technician;divorced;professional.course;no;yes;no;cellular;may;fri;56;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+23;admin.;single;professional.course;no;no;no;cellular;may;fri;564;3;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+53;technician;divorced;professional.course;no;yes;no;cellular;may;fri;188;1;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+22;services;married;high.school;no;yes;no;cellular;may;fri;48;7;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+27;blue-collar;married;unknown;unknown;yes;no;cellular;may;fri;79;4;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+40;management;divorced;university.degree;no;no;no;cellular;may;fri;342;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+32;admin.;single;professional.course;no;no;yes;cellular;may;fri;6;4;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+25;blue-collar;single;basic.9y;no;no;no;cellular;may;fri;170;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+28;admin.;single;university.degree;no;yes;no;cellular;may;fri;119;4;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+31;admin.;single;high.school;no;no;no;cellular;may;fri;80;4;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+36;technician;married;high.school;no;yes;yes;cellular;may;fri;659;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;yes
+49;self-employed;married;high.school;no;no;no;cellular;may;fri;532;3;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;yes
+39;technician;divorced;high.school;no;yes;no;telephone;may;fri;15;11;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+35;blue-collar;married;basic.6y;no;yes;no;cellular;may;fri;265;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+27;services;single;high.school;unknown;no;no;cellular;may;fri;54;5;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+39;management;married;university.degree;no;yes;no;cellular;may;fri;837;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;yes
+36;services;divorced;university.degree;no;no;no;cellular;may;fri;67;4;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+58;blue-collar;married;basic.9y;no;yes;no;cellular;may;fri;77;4;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+25;blue-collar;single;basic.6y;no;yes;no;cellular;may;fri;358;7;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+32;technician;single;professional.course;no;no;no;cellular;may;fri;303;2;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+47;services;divorced;high.school;no;yes;no;cellular;may;fri;47;3;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+37;services;married;high.school;no;no;no;cellular;may;fri;228;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+35;blue-collar;married;basic.6y;no;yes;no;cellular;may;fri;832;1;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;yes
+54;management;married;university.degree;no;no;no;cellular;may;fri;169;1;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+41;services;married;basic.6y;no;yes;no;cellular;may;fri;394;10;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+51;blue-collar;married;basic.9y;unknown;yes;no;cellular;may;fri;31;1;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+44;management;married;university.degree;no;no;no;cellular;may;fri;1380;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+26;blue-collar;single;basic.4y;no;yes;no;cellular;may;fri;36;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+31;unemployed;married;basic.9y;no;yes;no;cellular;may;fri;201;3;10;1;success;-1.8;92.893;-46.2;1.25;5099.1;no
+37;services;married;basic.6y;unknown;yes;no;cellular;may;fri;679;1;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;yes
+57;blue-collar;married;basic.9y;no;no;no;cellular;may;fri;199;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+27;blue-collar;married;basic.9y;no;yes;yes;cellular;may;fri;58;3;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+51;blue-collar;married;basic.9y;unknown;yes;no;cellular;may;fri;495;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+43;admin.;married;high.school;no;yes;no;cellular;may;fri;141;1;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+54;blue-collar;married;basic.4y;no;no;yes;cellular;may;fri;139;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+44;blue-collar;married;basic.4y;no;no;no;cellular;may;fri;82;2;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+29;unemployed;married;university.degree;no;yes;no;cellular;may;fri;317;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;yes
+51;blue-collar;married;basic.9y;unknown;no;no;cellular;may;fri;830;1;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;yes
+48;admin.;married;high.school;unknown;yes;no;cellular;may;fri;611;5;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;yes
+30;blue-collar;single;high.school;no;yes;yes;cellular;may;fri;86;2;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+58;admin.;married;basic.4y;unknown;no;yes;cellular;may;fri;186;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+21;student;single;high.school;no;no;no;cellular;may;fri;42;4;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+51;blue-collar;married;basic.9y;unknown;no;no;cellular;may;fri;956;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;yes
+31;admin.;single;university.degree;no;no;no;cellular;may;fri;229;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+39;admin.;married;university.degree;no;yes;no;cellular;may;fri;175;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+32;blue-collar;married;professional.course;no;yes;no;cellular;may;fri;757;1;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+33;services;married;high.school;no;yes;no;cellular;may;fri;521;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+54;entrepreneur;married;high.school;no;yes;no;cellular;may;fri;264;1;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+60;admin.;divorced;high.school;unknown;yes;no;cellular;may;fri;99;1;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+60;admin.;divorced;high.school;unknown;yes;no;cellular;may;fri;83;1;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+20;blue-collar;single;basic.9y;unknown;yes;no;telephone;may;fri;87;4;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+52;admin.;married;university.degree;no;yes;no;cellular;may;fri;401;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+60;admin.;divorced;high.school;unknown;yes;no;cellular;may;fri;301;1;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+41;management;married;university.degree;no;yes;no;cellular;may;fri;13;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+27;technician;divorced;unknown;unknown;no;no;cellular;may;fri;184;4;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+33;services;single;university.degree;no;no;no;cellular;may;fri;200;5;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+42;services;married;basic.9y;no;no;no;cellular;may;fri;42;2;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+27;blue-collar;single;basic.9y;no;no;no;cellular;may;fri;167;2;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+29;admin.;married;basic.6y;no;no;no;cellular;may;fri;58;3;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+26;technician;single;professional.course;no;yes;no;cellular;may;fri;11;7;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+29;admin.;single;high.school;no;no;no;cellular;may;fri;167;4;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+33;retired;married;high.school;no;yes;no;cellular;may;fri;237;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+30;management;married;university.degree;no;no;no;cellular;may;fri;173;4;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+42;admin.;married;basic.9y;unknown;yes;no;cellular;may;fri;98;2;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+37;admin.;single;high.school;no;no;no;cellular;may;fri;165;3;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+24;blue-collar;single;high.school;no;yes;no;cellular;may;fri;858;3;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;yes
+25;blue-collar;married;basic.4y;no;no;no;cellular;may;fri;114;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+39;blue-collar;married;basic.6y;unknown;no;no;cellular;may;fri;173;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+34;blue-collar;married;professional.course;no;yes;no;cellular;may;fri;406;4;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+24;services;married;high.school;unknown;yes;no;cellular;may;fri;1012;3;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;yes
+37;admin.;single;high.school;no;no;no;cellular;may;fri;13;11;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+37;admin.;divorced;high.school;no;yes;yes;cellular;may;fri;73;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+32;blue-collar;married;professional.course;no;yes;no;cellular;may;fri;160;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+29;blue-collar;single;basic.9y;no;yes;no;cellular;may;fri;372;2;12;1;success;-1.8;92.893;-46.2;1.25;5099.1;no
+25;blue-collar;single;basic.4y;no;no;yes;cellular;may;fri;206;5;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+32;technician;single;university.degree;no;no;yes;cellular;may;fri;137;2;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+44;blue-collar;married;basic.6y;no;no;no;cellular;may;fri;611;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;yes
+29;blue-collar;single;basic.4y;no;yes;no;cellular;may;fri;13;9;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+28;blue-collar;single;basic.9y;unknown;yes;no;cellular;may;fri;219;6;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+34;services;married;high.school;no;yes;no;cellular;may;fri;320;3;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+44;blue-collar;married;high.school;no;yes;no;cellular;may;fri;223;2;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+48;blue-collar;married;basic.9y;no;yes;no;cellular;may;fri;57;2;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+59;technician;married;unknown;unknown;no;no;cellular;may;fri;739;2;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+58;management;married;university.degree;no;yes;no;cellular;may;fri;109;2;12;1;success;-1.8;92.893;-46.2;1.25;5099.1;no
+26;technician;married;unknown;no;no;no;cellular;may;fri;264;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+53;blue-collar;married;professional.course;no;yes;no;cellular;may;fri;221;4;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+45;entrepreneur;divorced;university.degree;no;unknown;unknown;cellular;may;fri;61;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+46;blue-collar;married;basic.4y;unknown;yes;no;cellular;may;fri;124;3;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+21;student;single;high.school;unknown;no;no;cellular;may;fri;885;3;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;yes
+28;self-employed;married;basic.9y;no;yes;no;cellular;may;fri;1111;5;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;yes
+24;technician;single;university.degree;no;yes;no;cellular;may;fri;117;4;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+58;services;married;basic.6y;no;yes;no;cellular;may;fri;44;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+30;services;single;high.school;no;yes;no;cellular;may;fri;187;11;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+23;blue-collar;married;high.school;no;yes;no;cellular;may;fri;50;5;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+32;blue-collar;married;unknown;no;no;no;cellular;may;fri;76;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+31;unemployed;single;high.school;no;no;no;cellular;may;fri;10;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+41;admin.;married;high.school;unknown;no;no;cellular;may;fri;270;3;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+29;admin.;single;basic.6y;no;yes;no;cellular;may;fri;135;3;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+31;services;single;high.school;no;yes;no;telephone;may;fri;31;9;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+35;management;single;university.degree;no;no;no;cellular;may;fri;296;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+29;blue-collar;single;basic.9y;no;no;no;cellular;may;fri;239;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+31;blue-collar;married;basic.9y;no;yes;no;telephone;may;fri;22;7;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+30;blue-collar;married;professional.course;no;no;no;cellular;may;fri;1357;4;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;yes
+35;blue-collar;married;basic.6y;no;no;no;cellular;may;fri;212;2;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+41;blue-collar;married;high.school;no;yes;no;cellular;may;fri;150;3;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+24;technician;single;professional.course;no;no;no;cellular;may;fri;582;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+41;blue-collar;divorced;basic.4y;no;no;no;cellular;may;fri;709;5;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;yes
+29;blue-collar;divorced;high.school;no;no;no;cellular;may;fri;199;2;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+30;services;single;high.school;no;no;no;cellular;may;fri;102;3;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+26;services;married;high.school;no;yes;no;cellular;may;fri;140;9;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+34;services;married;high.school;no;yes;no;cellular;may;fri;15;3;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+30;services;married;high.school;no;no;no;cellular;may;fri;61;3;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+49;management;married;university.degree;no;no;no;cellular;may;fri;20;6;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+32;technician;single;professional.course;no;yes;no;cellular;may;fri;152;5;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+26;blue-collar;single;basic.9y;no;yes;yes;cellular;may;fri;245;9;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+31;admin.;single;basic.9y;no;no;no;cellular;may;fri;406;4;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;yes
+24;technician;single;professional.course;no;no;yes;cellular;may;fri;23;8;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+32;technician;single;university.degree;unknown;yes;no;cellular;may;fri;297;3;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+55;blue-collar;married;professional.course;no;yes;yes;cellular;may;fri;197;3;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+28;blue-collar;single;basic.6y;no;yes;yes;cellular;may;fri;63;8;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+23;services;single;high.school;no;yes;no;cellular;may;fri;103;5;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+26;blue-collar;married;basic.9y;unknown;yes;no;cellular;may;fri;11;8;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+49;entrepreneur;divorced;basic.9y;no;yes;no;cellular;may;fri;427;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+46;admin.;married;high.school;no;yes;yes;cellular;may;fri;80;3;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+41;blue-collar;married;basic.4y;no;yes;no;cellular;may;fri;232;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+30;services;single;high.school;no;yes;yes;cellular;may;fri;255;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+34;technician;single;professional.course;no;yes;no;cellular;may;fri;8;2;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+32;admin.;single;high.school;no;no;yes;cellular;may;fri;284;15;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+27;admin.;married;basic.6y;no;no;no;cellular;may;fri;550;2;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+56;entrepreneur;married;university.degree;no;yes;yes;cellular;may;fri;536;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+54;retired;divorced;university.degree;no;yes;no;cellular;may;fri;193;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+30;technician;single;high.school;no;yes;yes;cellular;may;fri;124;2;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+31;self-employed;divorced;basic.9y;no;yes;no;cellular;may;fri;12;10;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+23;blue-collar;single;professional.course;no;yes;yes;cellular;may;fri;134;5;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+32;technician;married;professional.course;no;yes;yes;cellular;may;fri;10;7;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+37;services;divorced;basic.4y;no;no;no;cellular;may;fri;17;8;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+39;admin.;married;university.degree;no;no;no;cellular;may;fri;895;5;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+32;technician;single;professional.course;no;yes;no;cellular;may;fri;212;3;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+29;admin.;single;high.school;no;unknown;unknown;cellular;may;fri;43;8;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+39;admin.;married;university.degree;no;yes;no;cellular;may;fri;364;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+44;admin.;married;high.school;no;no;no;cellular;may;fri;14;3;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+32;blue-collar;married;basic.9y;no;no;no;cellular;may;fri;122;8;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+33;blue-collar;married;basic.9y;unknown;no;no;telephone;may;fri;134;9;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+25;services;single;high.school;no;no;no;cellular;may;fri;21;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+28;self-employed;married;basic.9y;no;yes;no;cellular;may;fri;144;5;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+36;management;married;university.degree;no;yes;yes;telephone;may;fri;16;3;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+23;admin.;single;high.school;no;no;no;cellular;may;fri;13;8;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+60;retired;divorced;high.school;unknown;no;no;cellular;may;fri;781;4;999;2;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+34;blue-collar;married;professional.course;no;yes;yes;cellular;may;fri;128;3;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+32;self-employed;single;high.school;no;yes;yes;cellular;may;fri;67;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+34;admin.;single;university.degree;no;yes;no;cellular;may;fri;266;3;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+27;technician;single;professional.course;no;no;no;cellular;may;fri;411;6;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+42;management;married;university.degree;no;no;no;cellular;may;fri;391;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+27;admin.;single;basic.6y;no;yes;no;telephone;may;fri;195;4;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+34;admin.;single;high.school;no;no;yes;telephone;may;fri;74;5;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+20;technician;single;professional.course;unknown;no;no;cellular;may;fri;232;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+34;admin.;married;high.school;no;yes;no;cellular;may;fri;340;2;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+34;blue-collar;divorced;basic.9y;no;yes;no;telephone;may;fri;350;8;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+49;self-employed;married;high.school;no;no;no;cellular;may;fri;309;3;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+39;technician;single;high.school;no;no;no;cellular;may;fri;12;5;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+26;blue-collar;married;basic.9y;no;no;no;cellular;may;fri;136;3;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+51;blue-collar;single;illiterate;unknown;yes;no;cellular;may;fri;259;3;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+29;admin.;single;university.degree;no;yes;no;cellular;may;fri;223;5;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+29;technician;single;university.degree;no;yes;yes;cellular;may;fri;215;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+31;admin.;single;basic.9y;no;yes;yes;cellular;may;fri;156;4;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+43;entrepreneur;married;professional.course;no;no;no;cellular;may;fri;233;4;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+26;blue-collar;single;basic.9y;no;no;no;cellular;may;fri;59;3;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+29;admin.;single;university.degree;unknown;yes;no;cellular;may;fri;104;10;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+30;admin.;single;university.degree;no;no;no;telephone;may;fri;49;3;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+37;services;divorced;basic.4y;no;no;no;cellular;may;fri;167;3;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+28;blue-collar;single;basic.9y;no;yes;no;cellular;may;fri;113;6;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+51;admin.;married;high.school;no;yes;yes;cellular;may;fri;1002;4;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;yes
+21;student;single;university.degree;no;yes;no;cellular;may;fri;48;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+30;technician;married;basic.9y;no;yes;no;cellular;may;fri;54;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+47;technician;divorced;university.degree;no;no;no;cellular;may;fri;306;3;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+32;admin.;single;university.degree;no;no;no;cellular;may;fri;61;4;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+24;services;single;high.school;no;yes;yes;cellular;may;fri;20;5;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+23;technician;single;high.school;no;yes;no;cellular;may;fri;16;5;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+43;admin.;married;high.school;no;no;no;cellular;may;fri;880;4;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;yes
+35;blue-collar;married;basic.6y;no;no;no;cellular;may;fri;69;3;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+33;blue-collar;married;basic.6y;no;no;no;cellular;may;fri;218;4;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+50;blue-collar;married;basic.6y;no;yes;no;cellular;may;fri;18;6;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+27;blue-collar;single;basic.9y;no;yes;no;cellular;may;fri;47;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+41;admin.;single;high.school;no;yes;no;cellular;may;fri;333;2;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+41;blue-collar;single;basic.9y;no;no;no;cellular;may;fri;102;2;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+29;admin.;single;high.school;no;no;no;cellular;may;fri;64;3;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+34;admin.;single;university.degree;no;no;no;cellular;may;fri;101;4;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+32;admin.;single;university.degree;no;no;no;cellular;may;fri;800;5;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+37;technician;single;professional.course;no;yes;no;cellular;may;fri;131;3;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+38;entrepreneur;married;basic.9y;no;yes;yes;cellular;may;fri;476;3;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+32;self-employed;married;professional.course;no;no;yes;telephone;may;fri;65;5;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+37;management;married;university.degree;no;no;no;cellular;may;fri;262;2;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+47;blue-collar;married;high.school;no;yes;no;cellular;may;fri;934;2;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;yes
+26;entrepreneur;married;professional.course;no;no;no;telephone;may;fri;75;10;999;2;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+22;services;single;high.school;no;no;no;cellular;may;fri;51;4;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+33;blue-collar;divorced;basic.9y;no;yes;yes;cellular;may;fri;208;3;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+32;technician;single;professional.course;no;no;no;cellular;may;fri;53;3;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+34;technician;single;university.degree;no;no;no;cellular;may;fri;162;2;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+32;blue-collar;married;basic.9y;no;yes;no;cellular;may;fri;34;11;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+32;blue-collar;married;basic.9y;no;yes;yes;cellular;may;fri;73;3;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+26;technician;single;professional.course;no;no;no;cellular;may;fri;22;8;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+49;blue-collar;married;basic.9y;no;no;no;cellular;may;fri;172;2;9;2;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+52;self-employed;divorced;university.degree;no;yes;no;telephone;may;fri;258;3;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+37;admin.;single;high.school;no;no;yes;cellular;may;fri;71;3;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+32;blue-collar;single;basic.9y;no;yes;no;cellular;may;fri;11;8;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+32;self-employed;single;high.school;no;yes;yes;cellular;may;fri;93;3;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+30;blue-collar;single;basic.6y;no;no;no;cellular;may;fri;92;4;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+25;blue-collar;single;basic.9y;no;yes;no;cellular;may;fri;655;3;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;yes
+29;admin.;single;high.school;no;no;no;cellular;may;fri;138;2;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+57;blue-collar;married;basic.9y;unknown;yes;no;cellular;may;fri;432;3;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+34;management;divorced;unknown;no;yes;no;cellular;may;fri;200;3;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+29;blue-collar;married;basic.6y;no;yes;no;cellular;may;fri;69;3;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+33;entrepreneur;married;university.degree;no;yes;no;cellular;may;fri;204;3;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+43;blue-collar;divorced;basic.9y;unknown;yes;yes;cellular;may;fri;25;5;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+23;blue-collar;single;basic.4y;no;yes;no;cellular;may;fri;28;8;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+24;services;single;basic.9y;no;yes;yes;cellular;may;fri;68;4;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+27;admin.;married;professional.course;no;yes;no;cellular;may;fri;109;3;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+29;blue-collar;divorced;basic.4y;no;yes;no;cellular;may;fri;1223;3;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+23;blue-collar;single;professional.course;no;yes;no;cellular;may;fri;136;3;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+53;admin.;married;high.school;no;no;no;cellular;may;fri;101;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+43;admin.;married;high.school;no;yes;no;cellular;may;fri;126;2;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+34;blue-collar;single;basic.9y;no;no;no;telephone;may;fri;137;7;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+39;blue-collar;married;basic.4y;no;unknown;unknown;telephone;may;fri;155;6;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+53;blue-collar;divorced;basic.9y;no;yes;no;cellular;may;fri;509;3;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+37;admin.;divorced;high.school;no;no;no;cellular;may;fri;143;2;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+27;blue-collar;single;basic.9y;no;no;no;cellular;may;fri;641;6;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+34;blue-collar;single;basic.6y;unknown;yes;no;cellular;may;fri;415;4;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;yes
+54;management;married;university.degree;no;no;no;cellular;may;fri;104;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+31;services;married;high.school;no;yes;no;cellular;may;fri;211;6;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+27;technician;married;university.degree;no;yes;no;cellular;may;fri;131;3;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+28;entrepreneur;married;basic.9y;unknown;no;no;cellular;may;fri;22;5;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+34;admin.;single;high.school;no;no;no;cellular;may;fri;15;9;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+29;admin.;married;high.school;no;yes;no;cellular;may;fri;1871;4;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;yes
+24;services;single;high.school;no;yes;yes;cellular;may;fri;69;2;999;2;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+28;admin.;single;university.degree;no;yes;yes;cellular;may;fri;63;4;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+25;blue-collar;single;high.school;no;no;no;cellular;may;fri;1068;3;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;yes
+58;admin.;divorced;high.school;unknown;no;no;cellular;may;fri;315;3;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+42;blue-collar;married;basic.4y;no;yes;no;cellular;may;fri;58;3;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+43;blue-collar;married;high.school;no;no;no;cellular;may;fri;22;8;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+50;entrepreneur;married;high.school;no;yes;yes;cellular;may;fri;1326;6;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+34;blue-collar;married;basic.4y;unknown;no;no;cellular;may;fri;149;7;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+22;admin.;single;basic.9y;no;yes;yes;cellular;may;fri;34;10;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+33;technician;single;university.degree;no;no;no;cellular;may;fri;204;3;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+48;blue-collar;married;basic.9y;no;no;no;cellular;may;fri;44;9;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+47;entrepreneur;married;university.degree;no;no;no;cellular;may;fri;376;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+38;blue-collar;divorced;basic.4y;unknown;no;no;cellular;may;fri;31;5;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+40;technician;married;university.degree;no;yes;yes;cellular;may;fri;133;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+35;blue-collar;divorced;basic.9y;no;yes;no;cellular;may;fri;439;4;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+32;technician;single;unknown;no;yes;yes;cellular;may;fri;157;2;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+32;admin.;single;unknown;no;yes;yes;cellular;may;fri;38;7;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+45;entrepreneur;divorced;university.degree;no;no;no;telephone;may;fri;462;4;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;yes
+32;admin.;single;professional.course;no;yes;yes;telephone;may;fri;73;4;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+26;services;married;high.school;no;yes;no;cellular;may;fri;104;3;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+43;blue-collar;single;high.school;no;no;no;cellular;may;fri;504;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+25;blue-collar;single;basic.9y;no;no;no;cellular;may;fri;121;3;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+39;technician;married;professional.course;no;no;no;cellular;may;fri;49;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+37;services;divorced;professional.course;no;no;no;cellular;may;fri;258;2;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+41;management;married;unknown;no;yes;no;cellular;may;fri;163;5;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+24;admin.;single;basic.9y;no;yes;no;telephone;may;fri;12;6;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+28;services;single;basic.9y;no;no;yes;cellular;may;fri;126;2;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+28;technician;single;university.degree;no;no;yes;telephone;may;fri;166;4;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+25;admin.;single;university.degree;no;yes;no;cellular;may;fri;11;7;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+43;blue-collar;divorced;basic.9y;unknown;yes;no;cellular;may;fri;59;4;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+31;technician;single;university.degree;no;yes;no;cellular;may;fri;1313;7;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;yes
+50;admin.;single;high.school;no;no;yes;cellular;may;fri;623;8;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;yes
+26;admin.;single;high.school;no;yes;no;cellular;may;fri;157;3;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+30;admin.;divorced;university.degree;no;yes;no;cellular;may;fri;1598;4;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;yes
+42;self-employed;married;professional.course;unknown;no;no;cellular;may;fri;385;3;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+33;admin.;single;high.school;no;no;no;cellular;may;fri;57;11;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;no
+55;technician;married;professional.course;no;no;yes;cellular;may;fri;543;3;999;1;failure;-1.8;92.893;-46.2;1.25;5099.1;no
+35;technician;divorced;professional.course;no;no;no;cellular;may;fri;692;3;999;0;nonexistent;-1.8;92.893;-46.2;1.25;5099.1;yes
+45;blue-collar;single;high.school;unknown;no;yes;cellular;may;mon;102;5;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+32;technician;married;professional.course;no;no;no;cellular;may;mon;20;6;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+25;student;single;high.school;no;yes;no;cellular;may;mon;59;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+41;unemployed;married;professional.course;no;yes;no;telephone;may;mon;33;5;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+50;housemaid;married;basic.9y;no;yes;no;cellular;may;mon;126;2;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;no
+39;technician;single;professional.course;no;yes;no;cellular;may;mon;87;5;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+38;technician;single;professional.course;no;yes;no;telephone;may;mon;15;7;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+42;technician;single;university.degree;no;no;no;cellular;may;mon;45;4;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+41;admin.;single;high.school;no;no;no;cellular;may;mon;722;4;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;yes
+45;blue-collar;single;high.school;unknown;no;no;cellular;may;mon;9;4;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+48;admin.;divorced;university.degree;no;no;no;cellular;may;mon;17;5;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;no
+41;blue-collar;married;basic.9y;no;yes;no;cellular;may;mon;7;6;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+41;admin.;divorced;professional.course;no;no;no;cellular;may;mon;16;10;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+38;technician;single;professional.course;no;no;no;cellular;may;mon;201;5;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+41;admin.;married;university.degree;unknown;no;no;cellular;may;mon;113;2;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;no
+25;admin.;single;university.degree;no;no;no;cellular;may;mon;8;5;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+45;blue-collar;single;high.school;unknown;yes;no;cellular;may;mon;8;7;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+44;blue-collar;single;basic.9y;no;yes;no;cellular;may;mon;536;2;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;yes
+29;admin.;divorced;professional.course;no;yes;yes;cellular;may;mon;58;6;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+48;admin.;divorced;university.degree;no;yes;no;cellular;may;mon;28;6;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+49;blue-collar;divorced;professional.course;no;yes;no;cellular;may;mon;11;10;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+57;technician;divorced;basic.6y;no;unknown;unknown;cellular;may;mon;9;5;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+36;admin.;married;high.school;unknown;no;no;cellular;may;mon;899;3;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;yes
+49;blue-collar;divorced;professional.course;no;no;no;cellular;may;mon;17;8;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;no
+57;services;married;high.school;no;yes;yes;cellular;may;mon;473;3;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;yes
+36;admin.;married;high.school;unknown;no;no;cellular;may;mon;11;14;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+38;admin.;single;university.degree;no;no;no;cellular;may;mon;114;4;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+22;technician;single;unknown;no;yes;no;cellular;may;mon;106;5;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+43;admin.;single;high.school;no;yes;no;cellular;may;mon;159;3;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+31;technician;single;high.school;unknown;yes;yes;cellular;may;mon;17;6;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+42;management;divorced;university.degree;no;no;no;cellular;may;mon;359;5;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+38;technician;single;professional.course;no;yes;no;cellular;may;mon;17;7;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;no
+39;self-employed;married;high.school;no;no;no;cellular;may;mon;11;8;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+52;blue-collar;married;basic.9y;unknown;yes;no;cellular;may;mon;70;3;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+38;admin.;single;university.degree;no;yes;yes;telephone;may;mon;193;4;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+31;admin.;married;university.degree;no;no;no;cellular;may;mon;116;4;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+41;blue-collar;married;basic.9y;no;no;no;cellular;may;mon;157;5;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+36;admin.;married;high.school;unknown;yes;no;cellular;may;mon;284;2;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;no
+57;blue-collar;divorced;basic.9y;no;yes;no;telephone;may;mon;73;6;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+40;admin.;single;high.school;no;no;no;cellular;may;mon;18;5;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;no
+57;admin.;single;high.school;no;yes;no;telephone;may;mon;26;5;12;1;success;-1.8;92.893;-46.2;1.244;5099.1;no
+36;admin.;single;unknown;no;yes;no;cellular;may;mon;222;6;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+57;services;married;high.school;no;yes;no;cellular;may;mon;126;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+21;student;single;high.school;no;no;no;cellular;may;mon;97;2;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;no
+44;services;married;high.school;no;yes;no;cellular;may;mon;144;3;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+45;blue-collar;single;high.school;unknown;yes;no;cellular;may;mon;98;2;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;no
+35;housemaid;married;university.degree;no;yes;no;cellular;may;mon;59;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+27;services;single;university.degree;no;yes;no;cellular;may;mon;19;5;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+54;retired;divorced;professional.course;no;yes;no;cellular;may;mon;44;8;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+27;services;single;university.degree;no;yes;yes;cellular;may;mon;22;6;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;no
+25;technician;single;professional.course;no;yes;no;cellular;may;mon;44;4;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+50;housemaid;married;basic.9y;no;yes;no;cellular;may;mon;16;6;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+46;admin.;divorced;basic.6y;no;no;no;cellular;may;mon;7;7;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;no
+25;student;single;high.school;no;yes;no;telephone;may;mon;21;7;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+38;technician;single;professional.course;no;yes;yes;cellular;may;mon;15;9;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+38;admin.;single;university.degree;no;yes;yes;cellular;may;mon;30;7;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+41;admin.;divorced;high.school;no;no;no;cellular;may;mon;13;8;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+32;admin.;single;university.degree;no;yes;no;cellular;may;mon;8;7;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+52;blue-collar;married;basic.9y;unknown;yes;no;cellular;may;mon;201;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+33;management;married;university.degree;no;yes;no;cellular;may;mon;259;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+30;student;single;university.degree;no;yes;no;cellular;may;mon;90;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+52;admin.;divorced;basic.9y;no;yes;no;telephone;may;mon;51;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+36;admin.;married;high.school;unknown;yes;yes;cellular;may;mon;264;1;10;1;success;-1.8;92.893;-46.2;1.244;5099.1;no
+53;technician;divorced;unknown;no;yes;no;cellular;may;mon;35;6;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+27;admin.;divorced;high.school;no;yes;no;cellular;may;mon;10;4;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+57;services;married;high.school;no;no;no;cellular;may;mon;380;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+42;technician;single;university.degree;no;yes;no;cellular;may;mon;33;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+44;technician;married;university.degree;no;no;no;cellular;may;mon;30;5;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+24;student;single;high.school;no;no;no;cellular;may;mon;557;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+54;blue-collar;married;basic.4y;unknown;no;no;cellular;may;mon;108;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+31;admin.;married;university.degree;no;yes;yes;cellular;may;mon;173;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+29;services;married;high.school;no;yes;no;telephone;may;mon;87;6;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;no
+36;admin.;married;high.school;unknown;yes;yes;cellular;may;mon;47;4;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+30;admin.;married;basic.9y;no;yes;yes;cellular;may;mon;97;1;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;no
+32;blue-collar;married;professional.course;no;yes;no;cellular;may;mon;333;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+28;admin.;single;university.degree;no;no;no;cellular;may;mon;55;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+45;blue-collar;single;high.school;unknown;yes;no;cellular;may;mon;29;6;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;no
+31;admin.;married;university.degree;no;no;no;cellular;may;mon;213;1;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;no
+28;admin.;single;university.degree;no;no;no;cellular;may;mon;192;1;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;no
+47;management;married;high.school;no;no;no;cellular;may;mon;57;1;9;2;failure;-1.8;92.893;-46.2;1.244;5099.1;no
+34;admin.;single;university.degree;no;yes;no;cellular;may;mon;16;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+28;admin.;single;university.degree;no;yes;no;cellular;may;mon;442;1;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;yes
+47;management;married;high.school;no;no;no;cellular;may;mon;245;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+23;blue-collar;single;high.school;no;yes;no;cellular;may;mon;115;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+46;blue-collar;married;basic.9y;no;yes;no;cellular;may;mon;410;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+23;blue-collar;single;high.school;no;yes;no;cellular;may;mon;158;1;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;no
+34;admin.;single;university.degree;no;no;no;cellular;may;mon;283;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+44;admin.;married;basic.6y;no;no;no;cellular;may;mon;217;1;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;no
+39;admin.;single;professional.course;no;yes;no;cellular;may;mon;97;1;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;no
+48;blue-collar;married;basic.4y;no;no;no;cellular;may;mon;420;7;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;no
+44;admin.;married;basic.6y;no;unknown;unknown;cellular;may;mon;608;1;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;yes
+28;blue-collar;single;basic.9y;no;unknown;unknown;cellular;may;mon;166;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+38;technician;single;professional.course;no;no;no;telephone;may;mon;325;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+37;technician;married;high.school;no;no;no;cellular;may;mon;161;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+41;admin.;single;university.degree;no;yes;no;cellular;may;mon;166;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+41;management;married;high.school;no;no;no;cellular;may;mon;97;1;999;2;failure;-1.8;92.893;-46.2;1.244;5099.1;no
+30;blue-collar;single;basic.9y;no;no;no;cellular;may;mon;74;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+45;services;divorced;high.school;no;no;no;cellular;may;mon;15;9;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;no
+41;management;married;high.school;no;no;no;cellular;may;mon;216;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+37;blue-collar;married;basic.4y;unknown;yes;no;cellular;may;mon;170;1;999;2;failure;-1.8;92.893;-46.2;1.244;5099.1;no
+36;services;single;high.school;no;no;no;cellular;may;mon;288;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+52;admin.;married;high.school;no;yes;no;cellular;may;mon;17;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+24;admin.;single;university.degree;unknown;no;no;cellular;may;mon;220;1;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;no
+44;entrepreneur;divorced;university.degree;no;yes;no;telephone;may;mon;28;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+30;admin.;married;high.school;no;yes;no;cellular;may;mon;169;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+52;blue-collar;married;basic.9y;unknown;yes;no;cellular;may;mon;185;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+35;admin.;divorced;high.school;no;yes;no;cellular;may;mon;88;1;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;no
+44;services;divorced;high.school;no;no;no;cellular;may;mon;903;4;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;yes
+52;blue-collar;married;basic.9y;unknown;no;no;cellular;may;mon;248;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+38;technician;single;university.degree;no;yes;no;cellular;may;mon;12;13;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+25;student;single;high.school;no;yes;no;telephone;may;mon;52;9;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+24;blue-collar;single;basic.9y;no;yes;no;cellular;may;mon;155;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+33;unemployed;married;basic.4y;no;no;no;cellular;may;mon;205;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+37;blue-collar;married;professional.course;no;yes;no;cellular;may;mon;68;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+41;admin.;divorced;high.school;no;yes;no;cellular;may;mon;63;5;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+37;blue-collar;married;professional.course;no;no;no;cellular;may;mon;114;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+24;blue-collar;single;basic.9y;no;no;no;cellular;may;mon;297;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+37;blue-collar;married;professional.course;no;yes;no;cellular;may;mon;185;1;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;no
+34;admin.;married;high.school;unknown;no;no;cellular;may;mon;186;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+33;blue-collar;single;high.school;no;no;no;cellular;may;mon;222;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+48;blue-collar;married;basic.4y;no;no;no;cellular;may;mon;284;3;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+30;technician;single;university.degree;no;no;no;cellular;may;mon;195;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+32;self-employed;single;university.degree;no;no;no;cellular;may;mon;119;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+41;management;divorced;high.school;no;no;no;cellular;may;mon;261;1;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;no
+28;blue-collar;single;professional.course;no;yes;no;cellular;may;mon;113;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+46;blue-collar;married;high.school;no;no;no;cellular;may;mon;11;5;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+35;blue-collar;married;professional.course;no;yes;no;cellular;may;mon;42;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+33;technician;married;professional.course;no;yes;no;cellular;may;mon;110;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+33;admin.;single;professional.course;no;yes;no;cellular;may;mon;1340;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;yes
+59;management;married;basic.4y;no;no;no;cellular;may;mon;455;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+29;admin.;single;high.school;no;yes;no;cellular;may;mon;119;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+52;admin.;divorced;high.school;no;yes;yes;cellular;may;mon;110;1;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;no
+38;technician;single;professional.course;no;no;no;cellular;may;mon;170;2;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;no
+29;technician;single;professional.course;no;yes;no;cellular;may;mon;245;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+30;admin.;married;high.school;no;no;no;cellular;may;mon;268;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+41;technician;single;high.school;no;yes;no;cellular;may;mon;108;2;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;no
+29;technician;single;professional.course;no;yes;no;cellular;may;mon;487;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;yes
+33;technician;married;university.degree;no;yes;no;cellular;may;mon;182;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+31;admin.;single;high.school;unknown;yes;no;cellular;may;mon;309;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;yes
+25;blue-collar;single;basic.9y;no;yes;no;cellular;may;mon;165;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+41;admin.;single;high.school;no;no;no;cellular;may;mon;18;4;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;no
+21;blue-collar;single;basic.9y;no;yes;no;cellular;may;mon;250;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+21;blue-collar;single;basic.9y;no;no;no;cellular;may;mon;154;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+33;blue-collar;single;high.school;no;no;no;cellular;may;mon;2301;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;yes
+35;technician;divorced;university.degree;no;no;no;cellular;may;mon;169;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+37;management;divorced;university.degree;no;yes;no;cellular;may;mon;176;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+47;entrepreneur;married;professional.course;no;yes;no;cellular;may;mon;69;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+32;management;married;university.degree;no;no;yes;cellular;may;mon;119;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+37;management;divorced;university.degree;no;no;no;cellular;may;mon;493;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;yes
+41;blue-collar;married;basic.9y;no;yes;no;cellular;may;mon;295;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+29;admin.;single;university.degree;unknown;no;no;cellular;may;mon;226;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+25;student;single;high.school;no;no;no;telephone;may;mon;11;6;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+27;services;single;university.degree;no;yes;yes;cellular;may;mon;33;5;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+44;unemployed;married;basic.9y;no;yes;no;telephone;may;mon;152;4;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+58;blue-collar;married;high.school;unknown;no;no;cellular;may;mon;176;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+31;technician;divorced;high.school;no;no;no;cellular;may;mon;41;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+42;services;divorced;high.school;no;yes;no;cellular;may;mon;252;4;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+31;technician;divorced;high.school;no;no;no;cellular;may;mon;40;1;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;no
+36;blue-collar;married;basic.9y;no;yes;no;cellular;may;mon;156;1;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;no
+32;services;married;high.school;unknown;yes;no;cellular;may;mon;126;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+43;services;divorced;high.school;no;yes;no;cellular;may;mon;55;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+32;blue-collar;married;basic.9y;unknown;yes;yes;cellular;may;mon;114;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+30;admin.;single;university.degree;unknown;yes;no;cellular;may;mon;134;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+46;admin.;divorced;basic.6y;no;yes;no;cellular;may;mon;18;5;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+39;entrepreneur;married;university.degree;unknown;yes;no;cellular;may;mon;98;1;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;no
+58;self-employed;married;university.degree;no;yes;no;cellular;may;mon;379;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+31;blue-collar;married;high.school;no;no;no;cellular;may;mon;128;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+57;technician;divorced;basic.6y;no;yes;no;cellular;may;mon;86;4;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+30;admin.;single;university.degree;unknown;yes;no;cellular;may;mon;632;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+38;admin.;single;university.degree;no;yes;no;cellular;may;mon;98;5;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+33;admin.;single;professional.course;no;no;no;cellular;may;mon;843;1;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;yes
+50;admin.;divorced;basic.4y;no;yes;no;cellular;may;mon;8;11;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+30;services;married;university.degree;no;unknown;unknown;cellular;may;mon;132;1;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;no
+47;services;married;high.school;no;no;no;cellular;may;mon;261;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+32;self-employed;married;university.degree;no;no;yes;cellular;may;mon;133;2;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;no
+47;services;married;high.school;no;yes;yes;cellular;may;mon;398;1;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;no
+33;technician;divorced;professional.course;no;no;no;cellular;may;mon;287;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+44;unemployed;divorced;basic.6y;no;no;no;cellular;may;mon;208;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+28;unemployed;single;university.degree;no;yes;no;cellular;may;mon;434;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+42;blue-collar;divorced;basic.4y;no;yes;no;cellular;may;mon;119;4;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+39;self-employed;divorced;university.degree;no;no;no;cellular;may;mon;140;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+43;technician;married;professional.course;no;no;yes;cellular;may;mon;191;2;12;1;success;-1.8;92.893;-46.2;1.244;5099.1;no
+23;blue-collar;single;high.school;no;no;no;cellular;may;mon;380;2;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;no
+32;blue-collar;married;professional.course;no;yes;no;cellular;may;mon;115;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+58;admin.;married;university.degree;no;no;no;cellular;may;mon;325;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+29;admin.;married;university.degree;no;yes;no;cellular;may;mon;167;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+45;admin.;divorced;university.degree;no;no;yes;cellular;may;mon;63;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+35;admin.;single;university.degree;no;no;no;cellular;may;mon;21;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+49;retired;married;high.school;no;no;no;cellular;may;mon;47;3;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;no
+42;technician;single;university.degree;no;no;yes;cellular;may;mon;9;5;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+29;admin.;married;university.degree;no;yes;no;cellular;may;mon;565;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;yes
+45;admin.;divorced;university.degree;no;no;no;cellular;may;mon;507;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;yes
+27;admin.;single;university.degree;no;no;no;telephone;may;mon;82;6;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+55;admin.;divorced;unknown;unknown;yes;no;cellular;may;mon;105;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+30;technician;single;professional.course;no;yes;no;cellular;may;mon;212;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+46;technician;divorced;professional.course;no;no;no;cellular;may;mon;78;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+37;management;married;university.degree;no;no;no;cellular;may;mon;546;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+44;management;divorced;university.degree;no;no;no;cellular;may;mon;79;3;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;no
+46;technician;divorced;professional.course;no;yes;no;cellular;may;mon;431;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;yes
+29;technician;single;university.degree;no;no;no;cellular;may;mon;74;3;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+29;services;single;high.school;no;yes;no;cellular;may;mon;229;2;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;no
+33;services;married;high.school;no;no;yes;cellular;may;mon;600;4;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;yes
+32;admin.;divorced;university.degree;no;yes;yes;cellular;may;mon;156;5;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+30;admin.;single;university.degree;no;yes;no;cellular;may;mon;114;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+41;admin.;single;high.school;no;no;no;cellular;may;mon;435;7;2;1;success;-1.8;92.893;-46.2;1.244;5099.1;no
+34;admin.;married;professional.course;no;yes;yes;cellular;may;mon;326;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+44;admin.;married;basic.6y;no;yes;no;cellular;may;mon;170;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+46;management;married;university.degree;no;no;no;cellular;may;mon;143;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+30;services;single;high.school;no;no;no;cellular;may;mon;111;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+44;management;single;high.school;no;no;no;cellular;may;mon;184;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+44;management;single;high.school;no;no;no;cellular;may;mon;233;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+32;admin.;married;university.degree;no;yes;yes;cellular;may;mon;110;1;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;no
+34;blue-collar;married;basic.9y;no;yes;no;cellular;may;mon;116;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+34;blue-collar;married;basic.9y;no;yes;no;cellular;may;mon;178;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+44;management;single;high.school;no;yes;no;cellular;may;mon;504;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;yes
+30;technician;single;professional.course;no;yes;yes;cellular;may;mon;144;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+30;technician;single;university.degree;no;yes;no;cellular;may;mon;177;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+28;blue-collar;married;high.school;no;no;yes;telephone;may;mon;21;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+30;services;single;high.school;no;no;no;cellular;may;mon;700;3;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;yes
+35;admin.;divorced;high.school;no;yes;no;cellular;may;mon;163;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+28;services;single;high.school;no;yes;no;cellular;may;mon;91;6;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+42;technician;married;university.degree;no;yes;no;cellular;may;mon;78;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+21;blue-collar;single;basic.9y;no;yes;no;cellular;may;mon;239;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+32;admin.;married;high.school;no;yes;no;cellular;may;mon;169;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+32;admin.;married;high.school;no;no;no;cellular;may;mon;87;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+41;admin.;married;university.degree;unknown;yes;no;cellular;may;mon;121;5;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+21;blue-collar;single;basic.9y;no;no;no;cellular;may;mon;37;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+33;unemployed;married;basic.4y;no;no;no;cellular;may;mon;1008;1;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;yes
+48;services;married;high.school;no;yes;no;cellular;may;mon;113;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+40;admin.;single;high.school;no;yes;no;cellular;may;mon;24;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+40;admin.;single;high.school;no;yes;no;cellular;may;mon;213;1;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;no
+41;blue-collar;divorced;basic.9y;no;yes;no;cellular;may;mon;380;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+30;admin.;single;high.school;no;yes;no;cellular;may;mon;153;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+30;admin.;single;high.school;no;yes;yes;cellular;may;mon;192;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+28;technician;single;professional.course;no;yes;no;cellular;may;mon;66;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+30;admin.;single;high.school;no;yes;no;cellular;may;mon;57;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+39;technician;married;professional.course;no;yes;yes;cellular;may;mon;525;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;yes
+26;student;single;high.school;no;no;no;cellular;may;mon;123;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+41;unemployed;married;professional.course;no;no;no;cellular;may;mon;276;4;10;1;success;-1.8;92.893;-46.2;1.244;5099.1;no
+56;retired;married;high.school;no;no;no;cellular;may;mon;317;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+41;blue-collar;married;basic.9y;no;yes;yes;cellular;may;mon;105;1;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;no
+38;blue-collar;married;basic.4y;unknown;yes;no;cellular;may;mon;178;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+39;technician;single;university.degree;no;yes;no;cellular;may;mon;612;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;yes
+34;blue-collar;married;basic.6y;unknown;yes;no;cellular;may;mon;316;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+38;admin.;single;university.degree;no;yes;no;cellular;may;mon;103;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+34;admin.;married;university.degree;no;no;yes;cellular;may;mon;73;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+37;admin.;divorced;university.degree;unknown;yes;no;cellular;may;mon;230;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+37;admin.;divorced;university.degree;unknown;yes;no;cellular;may;mon;442;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;yes
+43;technician;married;professional.course;no;yes;no;cellular;may;mon;618;1;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;yes
+24;student;single;high.school;no;yes;no;cellular;may;mon;504;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+58;management;married;university.degree;no;no;no;cellular;may;mon;182;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+55;services;married;high.school;no;no;no;cellular;may;mon;336;1;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;no
+58;management;married;university.degree;no;no;no;cellular;may;mon;248;1;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;no
+58;management;married;university.degree;no;yes;no;cellular;may;mon;504;1;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+53;management;divorced;professional.course;no;yes;no;cellular;may;mon;82;4;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+38;admin.;single;university.degree;no;yes;no;cellular;may;mon;182;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+38;technician;married;university.degree;no;yes;no;cellular;may;mon;78;2;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;no
+32;management;single;university.degree;unknown;yes;no;cellular;may;mon;61;4;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;no
+41;technician;single;high.school;no;yes;no;cellular;may;mon;222;3;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+31;blue-collar;single;basic.9y;no;yes;no;cellular;may;mon;1010;2;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;no
+41;management;married;high.school;no;yes;no;cellular;may;mon;180;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+50;housemaid;married;basic.9y;no;no;no;cellular;may;mon;207;3;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+57;retired;divorced;university.degree;no;no;no;cellular;may;mon;46;6;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;no
+25;student;single;high.school;no;yes;no;cellular;may;mon;432;3;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+56;technician;single;professional.course;no;yes;no;cellular;may;mon;517;3;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;no
+37;self-employed;single;basic.4y;no;yes;no;cellular;may;mon;180;3;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;no
+43;blue-collar;married;basic.4y;no;no;no;cellular;may;mon;465;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+36;blue-collar;married;basic.9y;no;yes;no;cellular;may;mon;98;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+46;admin.;single;university.degree;no;yes;no;cellular;may;mon;801;5;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;yes
+33;blue-collar;single;high.school;no;no;no;cellular;may;mon;599;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+25;student;single;high.school;no;yes;no;cellular;may;mon;15;8;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+26;services;single;basic.9y;no;no;no;cellular;may;mon;18;4;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+46;admin.;married;high.school;no;yes;yes;cellular;may;mon;196;3;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+34;self-employed;single;university.degree;no;yes;yes;cellular;may;mon;309;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+35;housemaid;married;university.degree;no;unknown;unknown;cellular;may;mon;61;7;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+37;admin.;single;university.degree;no;yes;no;cellular;may;mon;194;3;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+37;services;married;professional.course;no;no;no;cellular;may;mon;336;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+40;admin.;single;high.school;no;yes;yes;cellular;may;mon;104;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+46;blue-collar;married;basic.9y;no;yes;no;cellular;may;mon;98;2;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;no
+47;services;single;high.school;no;yes;no;cellular;may;mon;236;3;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+50;admin.;married;high.school;no;yes;yes;cellular;may;mon;146;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+27;services;single;high.school;no;yes;yes;cellular;may;mon;665;3;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;no
+32;blue-collar;divorced;basic.4y;no;no;no;cellular;may;mon;827;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;yes
+40;entrepreneur;married;university.degree;no;no;no;cellular;may;mon;181;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+45;admin.;divorced;university.degree;no;yes;no;cellular;may;mon;197;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+39;admin.;single;university.degree;no;yes;yes;cellular;may;mon;9;4;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;no
+42;services;single;high.school;no;yes;no;cellular;may;mon;36;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+29;admin.;married;university.degree;no;yes;no;cellular;may;mon;87;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+25;admin.;single;high.school;no;no;no;cellular;may;mon;16;4;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+46;admin.;single;university.degree;no;no;no;cellular;may;mon;8;4;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+46;admin.;single;university.degree;no;yes;yes;cellular;may;mon;11;5;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;no
+27;admin.;divorced;high.school;no;yes;no;cellular;may;mon;166;4;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+33;technician;single;high.school;no;unknown;unknown;cellular;may;mon;630;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+35;blue-collar;single;high.school;no;yes;no;cellular;may;mon;33;5;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+36;blue-collar;married;basic.9y;no;yes;no;cellular;may;mon;227;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+43;blue-collar;single;professional.course;no;no;no;cellular;may;mon;375;3;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+33;technician;married;professional.course;no;yes;no;cellular;may;mon;241;3;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+41;blue-collar;married;basic.9y;no;yes;yes;cellular;may;mon;190;8;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+35;technician;single;professional.course;no;yes;no;cellular;may;mon;213;4;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+25;student;single;high.school;no;yes;yes;cellular;may;mon;412;5;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+39;self-employed;married;high.school;no;yes;no;cellular;may;mon;31;6;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+48;services;married;high.school;no;yes;no;cellular;may;mon;173;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+34;admin.;married;university.degree;no;yes;no;cellular;may;mon;74;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+48;blue-collar;married;basic.4y;no;yes;no;cellular;may;mon;92;3;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+45;services;married;high.school;no;no;no;cellular;may;mon;166;2;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;no
+53;management;married;university.degree;no;no;no;cellular;may;mon;368;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+36;blue-collar;married;basic.4y;unknown;yes;no;cellular;may;mon;1027;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;yes
+43;blue-collar;married;basic.4y;no;yes;no;cellular;may;mon;221;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+26;student;single;high.school;no;yes;no;cellular;may;mon;113;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+31;technician;married;professional.course;no;yes;no;cellular;may;mon;577;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+36;student;single;unknown;unknown;yes;no;cellular;may;mon;567;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+58;management;married;university.degree;no;yes;no;cellular;may;mon;12;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+38;technician;single;professional.course;no;yes;no;cellular;may;mon;428;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+29;admin.;married;high.school;no;yes;no;cellular;may;mon;767;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;yes
+34;blue-collar;married;basic.9y;no;yes;no;cellular;may;mon;142;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+29;technician;single;university.degree;no;no;no;cellular;may;mon;68;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+24;blue-collar;single;basic.9y;no;yes;no;cellular;may;mon;61;3;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+52;blue-collar;married;basic.9y;unknown;no;no;cellular;may;mon;695;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+34;blue-collar;married;basic.9y;no;yes;no;cellular;may;mon;239;2;11;1;success;-1.8;92.893;-46.2;1.244;5099.1;no
+36;admin.;married;high.school;unknown;yes;no;cellular;may;mon;1434;2;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;no
+37;self-employed;single;basic.4y;no;no;yes;cellular;may;mon;297;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+38;technician;single;professional.course;no;yes;no;cellular;may;mon;202;3;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;no
+44;unemployed;married;basic.9y;no;no;no;cellular;may;mon;194;3;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+36;services;single;high.school;no;yes;no;cellular;may;mon;566;2;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;no
+48;services;married;unknown;no;no;no;cellular;may;mon;486;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+41;admin.;single;high.school;no;no;no;cellular;may;mon;207;4;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+42;technician;single;university.degree;no;yes;no;cellular;may;mon;179;4;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+33;entrepreneur;single;university.degree;no;no;no;cellular;may;mon;637;4;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;yes
+38;technician;single;basic.9y;no;no;no;cellular;may;mon;572;7;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+28;services;divorced;high.school;no;yes;no;cellular;may;mon;217;4;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;no
+33;technician;single;professional.course;no;yes;yes;cellular;may;mon;13;3;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+29;admin.;married;high.school;no;yes;no;cellular;may;mon;112;4;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;no
+49;technician;married;high.school;unknown;no;no;cellular;may;mon;222;4;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;no
+41;admin.;single;high.school;no;no;no;cellular;may;mon;466;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+47;services;married;high.school;no;no;no;cellular;may;mon;109;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+38;admin.;single;high.school;no;no;no;cellular;may;mon;22;3;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+22;technician;single;basic.9y;no;no;no;telephone;may;mon;267;2;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;no
+52;admin.;divorced;high.school;no;yes;no;telephone;may;mon;54;2;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;no
+32;services;married;high.school;unknown;yes;no;cellular;may;mon;536;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;yes
+33;admin.;married;university.degree;no;yes;yes;telephone;may;mon;895;12;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+49;retired;married;high.school;no;yes;no;cellular;may;mon;83;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+57;services;married;high.school;no;yes;no;cellular;may;mon;11;4;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+38;admin.;married;high.school;no;unknown;unknown;cellular;may;mon;22;3;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+31;services;married;high.school;no;yes;no;cellular;may;mon;32;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+41;admin.;single;high.school;unknown;yes;no;telephone;may;mon;54;4;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+33;technician;married;professional.course;no;yes;no;cellular;may;mon;6;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+26;admin.;single;university.degree;no;yes;no;cellular;may;mon;410;3;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;no
+47;admin.;single;university.degree;no;no;no;cellular;may;mon;53;4;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;no
+36;admin.;married;high.school;no;yes;no;cellular;may;mon;4;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+25;technician;single;professional.course;no;unknown;unknown;cellular;may;mon;30;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+41;admin.;divorced;high.school;no;yes;no;telephone;may;mon;23;6;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+29;admin.;married;high.school;no;yes;no;telephone;may;mon;27;10;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+51;technician;married;high.school;no;yes;no;cellular;may;mon;170;6;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+33;technician;married;professional.course;no;no;no;cellular;may;mon;453;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+23;admin.;single;high.school;no;no;no;cellular;may;mon;16;5;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+33;admin.;single;university.degree;no;yes;no;cellular;may;mon;324;4;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+30;technician;single;university.degree;no;yes;no;cellular;may;mon;663;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+41;admin.;single;high.school;no;no;yes;telephone;may;mon;36;6;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+37;admin.;married;high.school;no;no;no;cellular;may;mon;14;3;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+24;technician;married;professional.course;no;yes;no;cellular;may;mon;342;4;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+26;student;single;high.school;no;no;no;cellular;may;mon;291;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+43;blue-collar;married;basic.4y;no;yes;no;cellular;may;mon;128;3;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+37;blue-collar;married;basic.9y;no;yes;no;cellular;may;mon;22;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+25;blue-collar;single;basic.9y;no;unknown;unknown;cellular;may;mon;10;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+33;admin.;married;university.degree;no;yes;no;cellular;may;mon;82;3;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+29;admin.;single;university.degree;no;no;no;cellular;may;mon;146;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+33;entrepreneur;single;university.degree;no;yes;no;cellular;may;mon;9;3;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;no
+24;management;single;university.degree;no;no;no;cellular;may;mon;64;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+25;student;single;high.school;no;yes;no;cellular;may;mon;18;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+38;technician;single;basic.9y;no;yes;no;cellular;may;mon;29;5;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+23;services;married;basic.9y;unknown;yes;no;cellular;may;mon;20;6;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+33;admin.;single;university.degree;no;no;no;cellular;may;mon;26;4;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+27;unemployed;married;high.school;no;yes;no;cellular;may;mon;11;4;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+29;technician;single;university.degree;no;no;no;cellular;may;mon;50;7;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+30;admin.;single;university.degree;no;yes;yes;cellular;may;mon;22;3;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+33;technician;single;professional.course;no;no;no;cellular;may;mon;687;2;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;no
+47;entrepreneur;married;professional.course;no;unknown;unknown;cellular;may;mon;44;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+33;technician;married;professional.course;no;yes;no;cellular;may;mon;638;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;yes
+56;technician;single;professional.course;no;yes;no;cellular;may;mon;80;3;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;no
+36;admin.;single;university.degree;no;no;no;telephone;may;mon;12;5;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+56;blue-collar;married;basic.4y;no;no;no;cellular;may;mon;197;3;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+31;blue-collar;single;high.school;no;yes;no;cellular;may;mon;126;2;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;no
+35;admin.;single;university.degree;no;yes;no;cellular;may;mon;424;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+28;admin.;single;university.degree;no;yes;no;cellular;may;mon;28;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+37;admin.;divorced;university.degree;unknown;yes;yes;cellular;may;mon;121;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+33;admin.;single;university.degree;no;no;no;cellular;may;mon;305;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+41;management;married;high.school;no;no;no;cellular;may;mon;236;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+32;admin.;married;university.degree;no;yes;no;cellular;may;mon;232;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+52;admin.;divorced;high.school;no;yes;yes;cellular;may;mon;80;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+55;admin.;divorced;unknown;unknown;no;no;cellular;may;mon;178;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+46;admin.;single;university.degree;no;no;yes;cellular;may;mon;11;6;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+47;services;divorced;high.school;no;yes;no;cellular;may;mon;953;3;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+44;blue-collar;single;basic.9y;no;no;no;cellular;may;mon;267;4;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;no
+41;unemployed;married;professional.course;no;yes;no;cellular;may;mon;34;7;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+46;technician;divorced;professional.course;no;yes;no;cellular;may;mon;214;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+58;management;divorced;university.degree;no;yes;no;telephone;may;mon;56;9;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+30;services;married;university.degree;no;yes;no;cellular;may;mon;109;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+37;management;divorced;university.degree;no;yes;no;cellular;may;mon;1173;3;9;1;success;-1.8;92.893;-46.2;1.244;5099.1;yes
+31;technician;married;university.degree;no;yes;no;telephone;may;mon;45;4;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+26;entrepreneur;single;high.school;no;yes;no;cellular;may;mon;226;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+32;admin.;married;high.school;no;yes;no;cellular;may;mon;171;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+57;admin.;single;high.school;no;unknown;unknown;telephone;may;mon;102;7;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+43;admin.;divorced;high.school;no;yes;no;telephone;may;mon;150;8;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+58;admin.;married;university.degree;no;yes;no;cellular;may;mon;1359;3;999;1;failure;-1.8;92.893;-46.2;1.244;5099.1;yes
+43;blue-collar;married;unknown;unknown;no;no;cellular;may;mon;715;6;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+41;technician;single;high.school;no;yes;no;cellular;may;mon;263;3;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+25;unemployed;married;university.degree;no;no;no;cellular;may;mon;32;8;10;1;success;-1.8;92.893;-46.2;1.244;5099.1;no
+55;admin.;married;university.degree;no;yes;no;cellular;may;mon;8;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+53;blue-collar;married;professional.course;no;no;yes;cellular;may;mon;28;6;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+46;services;single;professional.course;unknown;no;yes;cellular;may;mon;390;5;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;yes
+32;services;married;high.school;unknown;no;no;cellular;may;mon;642;3;10;1;success;-1.8;92.893;-46.2;1.244;5099.1;yes
+32;blue-collar;married;basic.9y;unknown;no;no;cellular;may;mon;1880;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;no
+52;admin.;divorced;basic.9y;no;no;yes;cellular;may;mon;639;2;999;0;nonexistent;-1.8;92.893;-46.2;1.244;5099.1;yes
+40;technician;single;professional.course;no;yes;no;cellular;may;fri;317;1;999;1;failure;-1.8;92.893;-46.2;1.259;5099.1;yes
+44;technician;married;professional.course;no;yes;no;cellular;may;fri;135;1;999;0;nonexistent;-1.8;92.893;-46.2;1.259;5099.1;no
+43;entrepreneur;married;professional.course;no;yes;yes;cellular;may;fri;114;1;999;1;failure;-1.8;92.893;-46.2;1.259;5099.1;no
+38;services;married;high.school;no;yes;no;cellular;may;fri;324;1;999;1;failure;-1.8;92.893;-46.2;1.259;5099.1;yes
+81;retired;divorced;unknown;unknown;yes;yes;cellular;may;fri;176;1;999;0;nonexistent;-1.8;92.893;-46.2;1.259;5099.1;yes
+45;admin.;single;university.degree;no;no;no;cellular;may;fri;582;1;3;1;success;-1.8;92.893;-46.2;1.259;5099.1;yes
+35;technician;divorced;professional.course;no;yes;no;cellular;may;fri;394;1;999;0;nonexistent;-1.8;92.893;-46.2;1.259;5099.1;no
+35;technician;divorced;professional.course;no;no;no;cellular;may;fri;169;1;999;1;failure;-1.8;92.893;-46.2;1.259;5099.1;no
+26;technician;single;university.degree;no;no;no;cellular;may;fri;199;1;999;1;failure;-1.8;92.893;-46.2;1.259;5099.1;yes
+35;technician;divorced;professional.course;no;no;no;cellular;may;fri;354;1;999;0;nonexistent;-1.8;92.893;-46.2;1.259;5099.1;yes
+35;admin.;married;high.school;no;yes;no;cellular;may;fri;121;1;999;0;nonexistent;-1.8;92.893;-46.2;1.259;5099.1;no
+48;entrepreneur;married;university.degree;no;yes;no;cellular;may;fri;796;1;999;1;failure;-1.8;92.893;-46.2;1.259;5099.1;yes
+34;admin.;married;university.degree;no;no;no;cellular;may;fri;190;1;999;0;nonexistent;-1.8;92.893;-46.2;1.259;5099.1;no
+45;admin.;married;unknown;no;no;no;cellular;may;fri;78;1;999;1;failure;-1.8;92.893;-46.2;1.259;5099.1;no
+45;admin.;married;unknown;no;yes;no;cellular;may;fri;271;1;999;0;nonexistent;-1.8;92.893;-46.2;1.259;5099.1;yes
+39;technician;single;university.degree;no;yes;no;cellular;may;fri;150;1;999;0;nonexistent;-1.8;92.893;-46.2;1.259;5099.1;no
+39;technician;single;university.degree;no;yes;no;cellular;may;fri;119;1;999;0;nonexistent;-1.8;92.893;-46.2;1.259;5099.1;no
+40;management;married;high.school;no;yes;yes;cellular;may;fri;230;1;999;0;nonexistent;-1.8;92.893;-46.2;1.259;5099.1;no
+40;management;married;high.school;no;yes;no;cellular;may;fri;94;7;999;0;nonexistent;-1.8;92.893;-46.2;1.259;5099.1;no
+71;housemaid;married;unknown;no;yes;no;cellular;may;fri;122;2;999;1;failure;-1.8;92.893;-46.2;1.259;5099.1;no
+36;admin.;married;professional.course;no;yes;yes;cellular;may;fri;89;1;999;0;nonexistent;-1.8;92.893;-46.2;1.259;5099.1;no
+23;student;single;basic.9y;no;no;yes;cellular;may;fri;563;1;999;0;nonexistent;-1.8;92.893;-46.2;1.259;5099.1;no
+27;admin.;single;university.degree;no;no;no;cellular;may;fri;86;1;3;1;success;-1.8;92.893;-46.2;1.259;5099.1;no
+27;admin.;single;university.degree;no;yes;no;cellular;may;fri;120;1;999;0;nonexistent;-1.8;92.893;-46.2;1.259;5099.1;no
+27;admin.;single;university.degree;no;yes;no;cellular;may;fri;680;1;999;1;failure;-1.8;92.893;-46.2;1.259;5099.1;no
+58;retired;married;basic.9y;no;no;yes;cellular;may;fri;235;2;999;0;nonexistent;-1.8;92.893;-46.2;1.259;5099.1;no
+19;student;single;basic.9y;no;yes;no;cellular;may;fri;491;1;999;0;nonexistent;-1.8;92.893;-46.2;1.259;5099.1;yes
+83;retired;married;basic.9y;no;yes;yes;cellular;may;fri;74;1;3;3;failure;-1.8;92.893;-46.2;1.259;5099.1;no
+30;admin.;married;university.degree;no;yes;no;cellular;may;fri;158;1;999;1;failure;-1.8;92.893;-46.2;1.259;5099.1;no
+27;admin.;single;university.degree;no;yes;no;cellular;may;fri;431;1;999;0;nonexistent;-1.8;92.893;-46.2;1.259;5099.1;yes
+49;admin.;married;university.degree;no;yes;no;cellular;may;fri;168;1;999;0;nonexistent;-1.8;92.893;-46.2;1.259;5099.1;no
+49;admin.;married;university.degree;no;no;no;telephone;may;fri;152;1;999;0;nonexistent;-1.8;92.893;-46.2;1.259;5099.1;no
+66;housemaid;married;high.school;no;yes;no;cellular;may;fri;210;1;999;0;nonexistent;-1.8;92.893;-46.2;1.259;5099.1;no
+27;admin.;single;university.degree;no;yes;no;cellular;may;fri;81;1;999;0;nonexistent;-1.8;92.893;-46.2;1.259;5099.1;no
+37;technician;married;university.degree;no;yes;yes;cellular;may;fri;239;1;999;0;nonexistent;-1.8;92.893;-46.2;1.259;5099.1;no
+57;admin.;married;basic.6y;no;yes;no;cellular;may;fri;100;1;999;0;nonexistent;-1.8;92.893;-46.2;1.259;5099.1;no
+57;admin.;married;basic.6y;no;no;no;cellular;may;fri;259;1;999;1;failure;-1.8;92.893;-46.2;1.259;5099.1;no
+32;technician;single;university.degree;no;no;no;cellular;may;fri;44;1;999;0;nonexistent;-1.8;92.893;-46.2;1.259;5099.1;no
+40;technician;single;professional.course;no;yes;no;cellular;may;fri;320;1;999;0;nonexistent;-1.8;92.893;-46.2;1.259;5099.1;no
+40;technician;single;professional.course;no;no;yes;cellular;may;fri;807;1;999;0;nonexistent;-1.8;92.893;-46.2;1.259;5099.1;no
+55;admin.;married;university.degree;no;no;no;cellular;may;fri;190;1;999;0;nonexistent;-1.8;92.893;-46.2;1.259;5099.1;no
+46;unknown;single;unknown;no;yes;yes;cellular;may;fri;136;1;999;0;nonexistent;-1.8;92.893;-46.2;1.259;5099.1;no
+18;student;single;high.school;no;no;no;cellular;may;fri;271;1;999;1;failure;-1.8;92.893;-46.2;1.259;5099.1;yes
+18;student;single;high.school;no;yes;no;cellular;may;fri;251;1;1;2;success;-1.8;92.893;-46.2;1.259;5099.1;no
+48;entrepreneur;married;university.degree;no;yes;no;cellular;may;fri;316;2;999;0;nonexistent;-1.8;92.893;-46.2;1.259;5099.1;yes
+57;admin.;married;university.degree;no;yes;no;cellular;may;fri;554;2;999;0;nonexistent;-1.8;92.893;-46.2;1.259;5099.1;yes
+62;technician;married;professional.course;no;yes;no;cellular;may;fri;181;2;999;1;failure;-1.8;92.893;-46.2;1.259;5099.1;no
+29;admin.;unknown;university.degree;no;no;no;cellular;may;fri;264;2;999;1;failure;-1.8;92.893;-46.2;1.259;5099.1;no
+43;technician;married;high.school;no;yes;no;cellular;may;fri;81;1;999;0;nonexistent;-1.8;92.893;-46.2;1.259;5099.1;no
+75;retired;divorced;basic.4y;no;yes;yes;cellular;may;fri;83;3;999;0;nonexistent;-1.8;92.893;-46.2;1.259;5099.1;no
+46;technician;married;university.degree;no;no;no;cellular;may;fri;566;7;999;0;nonexistent;-1.8;92.893;-46.2;1.259;5099.1;no
+43;technician;married;high.school;no;no;no;cellular;may;fri;223;1;3;1;success;-1.8;92.893;-46.2;1.259;5099.1;yes
+38;admin.;married;university.degree;no;yes;yes;cellular;may;fri;80;1;999;0;nonexistent;-1.8;92.893;-46.2;1.259;5099.1;no
+26;student;single;professional.course;no;no;yes;cellular;may;fri;182;2;999;0;nonexistent;-1.8;92.893;-46.2;1.259;5099.1;yes
+28;technician;single;professional.course;no;no;no;cellular;may;fri;198;1;3;1;success;-1.8;92.893;-46.2;1.259;5099.1;yes
+31;services;single;high.school;no;no;no;cellular;may;fri;293;2;999;0;nonexistent;-1.8;92.893;-46.2;1.259;5099.1;yes
+28;admin.;single;university.degree;no;yes;no;cellular;may;fri;50;2;999;0;nonexistent;-1.8;92.893;-46.2;1.259;5099.1;no
+27;admin.;married;high.school;no;yes;no;cellular;may;fri;137;2;999;0;nonexistent;-1.8;92.893;-46.2;1.259;5099.1;no
+52;unemployed;single;basic.4y;no;yes;no;cellular;may;fri;169;1;999;0;nonexistent;-1.8;92.893;-46.2;1.259;5099.1;no
+40;management;married;high.school;no;no;no;cellular;may;fri;253;1;999;1;failure;-1.8;92.893;-46.2;1.259;5099.1;no
+35;technician;married;university.degree;no;yes;yes;telephone;may;fri;231;2;999;0;nonexistent;-1.8;92.893;-46.2;1.259;5099.1;yes
+49;admin.;married;university.degree;no;yes;no;cellular;may;fri;105;2;999;0;nonexistent;-1.8;92.893;-46.2;1.259;5099.1;no
+45;blue-collar;married;professional.course;no;yes;no;cellular;may;fri;157;3;999;0;nonexistent;-1.8;92.893;-46.2;1.259;5099.1;no
+30;admin.;married;university.degree;no;yes;yes;cellular;may;fri;449;4;999;0;nonexistent;-1.8;92.893;-46.2;1.259;5099.1;yes
+59;technician;married;professional.course;no;yes;no;cellular;may;fri;43;1;999;0;nonexistent;-1.8;92.893;-46.2;1.259;5099.1;no
+59;self-employed;single;university.degree;no;yes;no;telephone;may;fri;249;3;999;0;nonexistent;-1.8;92.893;-46.2;1.259;5099.1;no
+37;admin.;married;university.degree;no;yes;no;cellular;may;fri;685;1;999;0;nonexistent;-1.8;92.893;-46.2;1.259;5099.1;yes
+37;housemaid;single;university.degree;no;no;no;cellular;may;fri;288;2;999;0;nonexistent;-1.8;92.893;-46.2;1.259;5099.1;yes
+26;admin.;single;university.degree;no;yes;no;telephone;may;fri;23;2;999;0;nonexistent;-1.8;92.893;-46.2;1.259;5099.1;no
+34;admin.;single;university.degree;no;yes;yes;cellular;may;fri;46;3;999;0;nonexistent;-1.8;92.893;-46.2;1.259;5099.1;no
+48;services;married;high.school;no;no;no;cellular;may;mon;97;3;999;2;failure;-1.8;92.893;-46.2;1.264;5099.1;no
+46;admin.;single;high.school;no;yes;yes;cellular;may;mon;65;2;999;0;nonexistent;-1.8;92.893;-46.2;1.264;5099.1;no
+50;admin.;divorced;university.degree;no;yes;yes;cellular;may;mon;644;1;999;0;nonexistent;-1.8;92.893;-46.2;1.264;5099.1;no
+27;admin.;married;university.degree;no;no;yes;telephone;may;mon;86;1;999;1;failure;-1.8;92.893;-46.2;1.264;5099.1;no
+34;admin.;married;university.degree;no;yes;no;cellular;may;mon;304;1;999;0;nonexistent;-1.8;92.893;-46.2;1.264;5099.1;no
+34;admin.;married;university.degree;no;yes;no;cellular;may;mon;186;1;999;1;failure;-1.8;92.893;-46.2;1.264;5099.1;no
+34;admin.;married;university.degree;no;yes;yes;cellular;may;mon;582;1;999;0;nonexistent;-1.8;92.893;-46.2;1.264;5099.1;no
+26;admin.;single;university.degree;no;yes;no;cellular;may;mon;365;5;999;0;nonexistent;-1.8;92.893;-46.2;1.264;5099.1;no
+44;technician;married;basic.9y;no;yes;yes;cellular;may;mon;354;1;999;0;nonexistent;-1.8;92.893;-46.2;1.264;5099.1;no
+32;admin.;married;university.degree;no;no;no;cellular;may;mon;112;1;999;0;nonexistent;-1.8;92.893;-46.2;1.264;5099.1;no
+36;technician;married;university.degree;no;yes;yes;cellular;may;mon;101;1;999;0;nonexistent;-1.8;92.893;-46.2;1.264;5099.1;no
+24;admin.;single;university.degree;no;no;no;cellular;may;mon;174;1;999;1;failure;-1.8;92.893;-46.2;1.264;5099.1;no
+36;self-employed;married;university.degree;no;no;no;cellular;may;mon;128;1;999;0;nonexistent;-1.8;92.893;-46.2;1.264;5099.1;no
+44;services;married;high.school;no;yes;yes;cellular;may;mon;283;1;999;1;failure;-1.8;92.893;-46.2;1.264;5099.1;yes
+53;technician;married;professional.course;no;no;no;cellular;may;mon;421;1;999;0;nonexistent;-1.8;92.893;-46.2;1.264;5099.1;yes
+36;admin.;married;high.school;no;no;no;cellular;may;mon;119;1;999;0;nonexistent;-1.8;92.893;-46.2;1.264;5099.1;yes
+33;blue-collar;married;basic.9y;no;yes;yes;cellular;may;mon;70;1;999;0;nonexistent;-1.8;92.893;-46.2;1.264;5099.1;no
+58;housemaid;married;basic.4y;no;no;no;cellular;may;mon;91;1;999;0;nonexistent;-1.8;92.893;-46.2;1.264;5099.1;no
+33;unemployed;married;high.school;no;yes;yes;cellular;may;mon;109;1;999;0;nonexistent;-1.8;92.893;-46.2;1.264;5099.1;no
+44;blue-collar;single;professional.course;no;yes;no;cellular;may;mon;64;1;999;0;nonexistent;-1.8;92.893;-46.2;1.264;5099.1;no
+44;blue-collar;single;professional.course;no;no;no;cellular;may;mon;104;1;999;0;nonexistent;-1.8;92.893;-46.2;1.264;5099.1;no
+54;management;married;university.degree;no;no;no;cellular;may;mon;397;1;999;1;failure;-1.8;92.893;-46.2;1.264;5099.1;yes
+36;admin.;single;university.degree;no;no;no;cellular;may;mon;327;1;999;0;nonexistent;-1.8;92.893;-46.2;1.264;5099.1;no
+56;retired;married;high.school;no;yes;no;cellular;may;mon;106;2;999;0;nonexistent;-1.8;92.893;-46.2;1.264;5099.1;no
+29;admin.;married;university.degree;no;no;no;cellular;may;mon;90;1;999;0;nonexistent;-1.8;92.893;-46.2;1.264;5099.1;no
+55;unemployed;married;basic.9y;no;no;yes;cellular;may;mon;296;1;999;0;nonexistent;-1.8;92.893;-46.2;1.264;5099.1;yes
+27;admin.;single;university.degree;no;yes;yes;cellular;may;mon;179;1;999;0;nonexistent;-1.8;92.893;-46.2;1.264;5099.1;no
+52;entrepreneur;married;basic.6y;no;yes;no;cellular;may;mon;69;1;999;0;nonexistent;-1.8;92.893;-46.2;1.264;5099.1;no
+62;retired;single;university.degree;no;yes;yes;cellular;may;mon;112;1;999;0;nonexistent;-1.8;92.893;-46.2;1.264;5099.1;no
+42;entrepreneur;married;university.degree;no;yes;no;cellular;may;mon;265;1;999;0;nonexistent;-1.8;92.893;-46.2;1.264;5099.1;no
+37;blue-collar;single;professional.course;no;no;no;cellular;may;mon;54;1;999;0;nonexistent;-1.8;92.893;-46.2;1.264;5099.1;no
+46;admin.;single;university.degree;no;no;no;cellular;may;mon;344;1;999;0;nonexistent;-1.8;92.893;-46.2;1.264;5099.1;no
+56;admin.;divorced;university.degree;no;yes;no;cellular;may;mon;867;1;999;0;nonexistent;-1.8;92.893;-46.2;1.264;5099.1;yes
+46;admin.;single;university.degree;no;no;no;cellular;may;mon;70;1;999;0;nonexistent;-1.8;92.893;-46.2;1.264;5099.1;no
+46;admin.;single;university.degree;no;no;no;cellular;may;mon;269;1;999;1;failure;-1.8;92.893;-46.2;1.264;5099.1;yes
+46;admin.;single;university.degree;no;no;yes;cellular;may;mon;195;1;999;0;nonexistent;-1.8;92.893;-46.2;1.264;5099.1;no
+46;admin.;single;university.degree;no;yes;no;cellular;may;mon;92;1;999;0;nonexistent;-1.8;92.893;-46.2;1.264;5099.1;no
+56;retired;married;high.school;no;no;yes;cellular;may;mon;613;2;999;0;nonexistent;-1.8;92.893;-46.2;1.264;5099.1;no
+34;admin.;married;university.degree;no;yes;no;cellular;may;mon;915;2;999;0;nonexistent;-1.8;92.893;-46.2;1.264;5099.1;yes
+54;admin.;single;university.degree;no;yes;no;cellular;may;mon;485;1;999;0;nonexistent;-1.8;92.893;-46.2;1.264;5099.1;no
+54;admin.;single;university.degree;no;no;no;cellular;may;mon;337;1;999;0;nonexistent;-1.8;92.893;-46.2;1.264;5099.1;yes
+34;admin.;married;university.degree;no;yes;no;cellular;may;mon;185;1;2;1;success;-1.8;92.893;-46.2;1.264;5099.1;no
+43;blue-collar;married;basic.9y;no;no;yes;cellular;may;mon;487;1;3;1;success;-1.8;92.893;-46.2;1.264;5099.1;yes
+26;student;single;basic.9y;no;yes;no;cellular;may;mon;200;1;999;0;nonexistent;-1.8;92.893;-46.2;1.264;5099.1;no
+32;admin.;single;university.degree;unknown;yes;no;cellular;may;mon;157;4;999;1;failure;-1.8;92.893;-46.2;1.264;5099.1;no
+25;admin.;married;university.degree;no;unknown;unknown;cellular;may;mon;612;7;999;0;nonexistent;-1.8;92.893;-46.2;1.264;5099.1;yes
+27;admin.;single;university.degree;no;no;no;cellular;may;mon;160;1;999;0;nonexistent;-1.8;92.893;-46.2;1.264;5099.1;no
+26;unknown;single;basic.9y;no;yes;yes;cellular;may;mon;64;1;3;1;success;-1.8;92.893;-46.2;1.264;5099.1;no
+32;admin.;divorced;high.school;no;no;no;cellular;may;mon;111;1;999;0;nonexistent;-1.8;92.893;-46.2;1.264;5099.1;no
+37;technician;married;university.degree;no;yes;no;cellular;may;mon;288;1;3;1;success;-1.8;92.893;-46.2;1.264;5099.1;yes
+36;admin.;married;university.degree;no;no;yes;cellular;may;mon;305;1;999;0;nonexistent;-1.8;92.893;-46.2;1.264;5099.1;no
+36;admin.;married;university.degree;no;yes;yes;cellular;may;mon;77;1;999;0;nonexistent;-1.8;92.893;-46.2;1.264;5099.1;no
+58;housemaid;married;basic.4y;no;yes;no;cellular;may;mon;144;1;999;0;nonexistent;-1.8;92.893;-46.2;1.264;5099.1;no
+36;self-employed;married;university.degree;no;no;yes;cellular;may;mon;159;2;999;1;failure;-1.8;92.893;-46.2;1.264;5099.1;no
+33;unemployed;married;high.school;no;yes;no;cellular;may;mon;74;1;999;1;failure;-1.8;92.893;-46.2;1.264;5099.1;no
+26;student;single;university.degree;no;no;yes;cellular;may;mon;115;1;999;0;nonexistent;-1.8;92.893;-46.2;1.264;5099.1;no
+36;admin.;married;university.degree;no;yes;no;cellular;may;mon;1064;1;999;0;nonexistent;-1.8;92.893;-46.2;1.264;5099.1;yes
+50;admin.;divorced;university.degree;no;no;yes;cellular;may;mon;213;4;999;0;nonexistent;-1.8;92.893;-46.2;1.264;5099.1;yes
+36;self-employed;married;university.degree;no;yes;no;cellular;may;mon;176;1;999;0;nonexistent;-1.8;92.893;-46.2;1.264;5099.1;no
+36;self-employed;married;university.degree;no;no;no;cellular;may;mon;54;1;999;0;nonexistent;-1.8;92.893;-46.2;1.264;5099.1;no
+46;unemployed;married;basic.9y;no;yes;no;cellular;may;mon;205;1;999;1;failure;-1.8;92.893;-46.2;1.264;5099.1;no
+34;admin.;married;university.degree;no;yes;no;telephone;may;mon;180;1;999;0;nonexistent;-1.8;92.893;-46.2;1.264;5099.1;no
+61;retired;married;basic.9y;no;no;no;cellular;may;mon;324;1;999;0;nonexistent;-1.8;92.893;-46.2;1.264;5099.1;no
+34;admin.;married;university.degree;no;yes;no;cellular;may;mon;159;1;999;1;failure;-1.8;92.893;-46.2;1.264;5099.1;no
+60;admin.;married;high.school;no;no;yes;telephone;may;mon;87;2;999;0;nonexistent;-1.8;92.893;-46.2;1.264;5099.1;no
+35;admin.;married;high.school;no;yes;no;cellular;may;mon;226;1;999;0;nonexistent;-1.8;92.893;-46.2;1.264;5099.1;yes
+29;admin.;married;university.degree;no;yes;no;cellular;may;mon;93;2;999;0;nonexistent;-1.8;92.893;-46.2;1.264;5099.1;no
+34;technician;single;professional.course;no;no;yes;cellular;may;mon;217;1;999;1;failure;-1.8;92.893;-46.2;1.264;5099.1;no
+35;admin.;married;university.degree;no;yes;no;cellular;may;mon;109;1;999;0;nonexistent;-1.8;92.893;-46.2;1.264;5099.1;no
+43;technician;divorced;professional.course;no;yes;no;cellular;may;mon;143;1;999;0;nonexistent;-1.8;92.893;-46.2;1.264;5099.1;no
+42;technician;married;professional.course;no;no;no;cellular;may;mon;377;1;999;0;nonexistent;-1.8;92.893;-46.2;1.264;5099.1;yes
+30;admin.;single;high.school;no;yes;no;cellular;may;mon;158;2;999;0;nonexistent;-1.8;92.893;-46.2;1.264;5099.1;yes
+27;management;single;university.degree;no;yes;no;cellular;may;mon;115;2;3;1;success;-1.8;92.893;-46.2;1.264;5099.1;no
+31;services;single;university.degree;no;no;no;cellular;may;mon;262;2;999;0;nonexistent;-1.8;92.893;-46.2;1.264;5099.1;yes
+78;retired;married;high.school;no;yes;no;cellular;may;mon;754;2;3;2;failure;-1.8;92.893;-46.2;1.264;5099.1;no
+55;self-employed;married;university.degree;no;yes;no;cellular;may;mon;123;2;999;0;nonexistent;-1.8;92.893;-46.2;1.264;5099.1;no
+42;technician;married;professional.course;no;no;no;cellular;may;mon;85;1;999;0;nonexistent;-1.8;92.893;-46.2;1.264;5099.1;no
+32;admin.;married;university.degree;no;no;no;cellular;may;mon;166;3;12;2;failure;-1.8;92.893;-46.2;1.264;5099.1;no
+41;admin.;married;high.school;no;yes;yes;cellular;may;mon;217;1;999;0;nonexistent;-1.8;92.893;-46.2;1.264;5099.1;no
+46;admin.;married;university.degree;no;yes;no;telephone;may;mon;243;4;999;0;nonexistent;-1.8;92.893;-46.2;1.264;5099.1;no
+54;blue-collar;married;basic.4y;no;unknown;unknown;cellular;may;mon;352;3;999;1;failure;-1.8;92.893;-46.2;1.264;5099.1;yes
+47;admin.;divorced;high.school;no;yes;no;cellular;may;mon;142;4;999;1;failure;-1.8;92.893;-46.2;1.264;5099.1;no
+28;self-employed;single;university.degree;no;no;yes;cellular;may;mon;315;1;999;0;nonexistent;-1.8;92.893;-46.2;1.264;5099.1;yes
+29;technician;single;university.degree;no;no;no;cellular;may;mon;170;1;999;0;nonexistent;-1.8;92.893;-46.2;1.264;5099.1;no
+28;technician;single;high.school;no;yes;no;telephone;may;mon;100;3;999;0;nonexistent;-1.8;92.893;-46.2;1.264;5099.1;no
+36;self-employed;married;university.degree;no;yes;no;cellular;may;mon;414;2;999;1;failure;-1.8;92.893;-46.2;1.264;5099.1;yes
+34;technician;single;professional.course;no;yes;no;cellular;may;mon;601;2;999;1;failure;-1.8;92.893;-46.2;1.264;5099.1;yes
+38;management;married;university.degree;no;yes;no;cellular;may;tue;111;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+33;admin.;married;university.degree;no;yes;no;cellular;may;tue;164;3;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+44;blue-collar;married;professional.course;no;yes;yes;cellular;may;tue;133;2;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+29;self-employed;married;university.degree;no;no;no;cellular;may;tue;105;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+52;services;married;high.school;no;yes;no;cellular;may;tue;108;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+29;admin.;single;university.degree;no;no;yes;cellular;may;tue;527;2;3;1;success;-1.8;92.893;-46.2;1.266;5099.1;no
+26;admin.;single;university.degree;no;no;no;cellular;may;tue;135;4;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+29;self-employed;married;university.degree;no;no;no;cellular;may;tue;107;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+31;blue-collar;single;professional.course;no;no;no;cellular;may;tue;314;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+36;admin.;married;university.degree;no;no;no;cellular;may;tue;65;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+59;self-employed;married;university.degree;no;yes;no;cellular;may;tue;61;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+31;management;married;high.school;no;yes;no;cellular;may;tue;78;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+49;blue-collar;married;basic.9y;no;no;no;cellular;may;tue;135;1;999;2;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+60;retired;married;university.degree;no;yes;no;cellular;may;tue;133;1;3;1;success;-1.8;92.893;-46.2;1.266;5099.1;yes
+32;admin.;married;university.degree;no;yes;no;cellular;may;tue;293;2;999;2;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+65;retired;married;unknown;no;no;no;cellular;may;tue;318;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+30;housemaid;married;high.school;no;yes;no;cellular;may;tue;84;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+31;admin.;married;university.degree;no;yes;no;cellular;may;tue;309;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+34;admin.;married;university.degree;no;no;no;cellular;may;tue;111;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+38;blue-collar;married;basic.9y;no;yes;no;cellular;may;tue;119;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+31;admin.;married;university.degree;no;yes;no;cellular;may;tue;1078;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;yes
+35;admin.;married;high.school;no;yes;no;cellular;may;tue;159;3;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+58;management;married;university.degree;no;yes;no;cellular;may;tue;640;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;yes
+39;admin.;married;high.school;no;no;no;cellular;may;tue;109;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+33;blue-collar;married;basic.9y;no;yes;no;cellular;may;tue;482;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;yes
+39;admin.;married;high.school;no;yes;no;cellular;may;tue;217;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+39;admin.;married;high.school;no;yes;no;cellular;may;tue;71;5;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+27;student;single;high.school;no;yes;yes;cellular;may;tue;91;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;yes
+36;admin.;single;university.degree;no;yes;no;cellular;may;tue;260;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+40;student;single;high.school;no;yes;no;cellular;may;tue;333;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+55;retired;married;high.school;no;yes;no;cellular;may;tue;228;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+55;retired;married;high.school;no;no;no;cellular;may;tue;256;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+51;retired;married;high.school;no;yes;no;cellular;may;tue;302;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+61;unknown;single;basic.4y;no;yes;yes;cellular;may;tue;131;3;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+61;unknown;single;basic.4y;no;yes;no;cellular;may;tue;154;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+25;admin.;single;university.degree;no;yes;yes;cellular;may;tue;500;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+35;admin.;married;high.school;no;no;no;cellular;may;tue;172;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+61;unknown;single;basic.4y;no;yes;no;cellular;may;tue;574;1;3;1;success;-1.8;92.893;-46.2;1.266;5099.1;no
+55;housemaid;married;professional.course;no;yes;no;telephone;may;tue;137;5;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+29;admin.;single;university.degree;no;yes;no;cellular;may;tue;244;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+27;admin.;single;university.degree;no;no;no;cellular;may;tue;134;1;3;1;success;-1.8;92.893;-46.2;1.266;5099.1;no
+29;self-employed;married;university.degree;no;no;no;cellular;may;tue;376;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+31;technician;single;university.degree;no;no;no;cellular;may;tue;911;1;2;1;success;-1.8;92.893;-46.2;1.266;5099.1;no
+24;technician;single;professional.course;no;no;no;telephone;may;tue;240;4;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+35;admin.;married;high.school;no;no;no;telephone;may;tue;122;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+45;admin.;divorced;university.degree;no;no;no;cellular;may;tue;167;1;9;1;success;-1.8;92.893;-46.2;1.266;5099.1;no
+45;admin.;divorced;university.degree;no;yes;no;cellular;may;tue;351;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+33;admin.;married;university.degree;no;yes;no;cellular;may;tue;165;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;yes
+28;technician;single;university.degree;no;yes;no;cellular;may;tue;326;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;yes
+28;unemployed;single;high.school;no;no;yes;cellular;may;tue;58;1;3;1;success;-1.8;92.893;-46.2;1.266;5099.1;no
+55;entrepreneur;married;professional.course;no;yes;no;cellular;may;tue;56;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+31;technician;single;university.degree;no;yes;no;cellular;may;tue;145;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+31;admin.;married;high.school;no;yes;no;cellular;may;tue;208;2;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;yes
+29;self-employed;married;university.degree;no;no;no;cellular;may;tue;94;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+35;management;single;university.degree;no;no;no;cellular;may;tue;68;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+34;admin.;single;university.degree;no;no;no;cellular;may;tue;171;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+53;technician;married;professional.course;unknown;yes;no;cellular;may;tue;103;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+28;blue-collar;married;basic.9y;no;yes;no;cellular;may;tue;3509;2;3;2;success;-1.8;92.893;-46.2;1.266;5099.1;no
+54;admin.;divorced;professional.course;no;yes;no;cellular;may;tue;81;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+59;retired;married;basic.4y;no;no;no;cellular;may;tue;128;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+22;student;single;high.school;no;no;no;cellular;may;tue;304;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+36;admin.;married;professional.course;no;no;no;cellular;may;tue;55;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+33;admin.;divorced;university.degree;no;no;no;cellular;may;tue;140;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+36;services;married;high.school;no;yes;no;cellular;may;tue;83;1;1;1;success;-1.8;92.893;-46.2;1.266;5099.1;no
+37;entrepreneur;single;basic.9y;no;yes;no;cellular;may;tue;222;1;2;1;success;-1.8;92.893;-46.2;1.266;5099.1;no
+36;services;married;high.school;no;yes;no;cellular;may;tue;145;1;999;2;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+36;admin.;married;high.school;no;no;no;telephone;may;tue;1346;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;yes
+28;admin.;single;university.degree;no;no;no;cellular;may;tue;118;1;999;2;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+42;admin.;married;university.degree;no;no;no;cellular;may;tue;85;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+42;admin.;married;university.degree;no;yes;no;cellular;may;tue;251;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+31;technician;single;university.degree;no;yes;yes;cellular;may;tue;69;1;3;1;success;-1.8;92.893;-46.2;1.266;5099.1;no
+22;student;single;high.school;no;no;no;cellular;may;tue;245;2;999;2;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+33;admin.;single;high.school;no;yes;no;cellular;may;tue;135;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+29;admin.;single;university.degree;no;yes;no;cellular;may;tue;88;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+33;admin.;single;university.degree;no;yes;no;cellular;may;tue;125;1;999;2;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+25;admin.;single;university.degree;no;yes;no;cellular;may;tue;228;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;yes
+22;student;single;high.school;no;yes;yes;cellular;may;tue;131;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;yes
+28;blue-collar;married;basic.9y;no;yes;no;cellular;may;tue;390;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;yes
+42;services;married;high.school;no;yes;no;cellular;may;tue;132;6;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+28;admin.;single;university.degree;no;yes;no;cellular;may;tue;187;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+27;services;married;university.degree;no;yes;no;cellular;may;tue;139;1;1;1;success;-1.8;92.893;-46.2;1.266;5099.1;no
+27;services;married;university.degree;no;yes;no;cellular;may;tue;109;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+36;services;married;high.school;no;yes;no;cellular;may;tue;161;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+27;services;married;university.degree;no;yes;no;cellular;may;tue;445;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;yes
+36;admin.;married;basic.9y;no;yes;no;cellular;may;tue;100;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+27;services;married;university.degree;no;no;no;cellular;may;tue;223;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+49;management;single;university.degree;no;yes;yes;cellular;may;tue;141;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+39;blue-collar;married;basic.9y;no;yes;no;cellular;may;tue;149;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+32;technician;married;professional.course;no;yes;no;cellular;may;tue;579;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;yes
+39;blue-collar;married;basic.9y;no;yes;no;cellular;may;tue;136;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+39;blue-collar;married;basic.9y;no;yes;no;cellular;may;tue;323;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+34;technician;single;university.degree;no;no;no;cellular;may;tue;197;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+34;services;married;high.school;no;no;no;cellular;may;tue;222;3;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+34;housemaid;married;university.degree;no;yes;no;cellular;may;tue;58;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+48;blue-collar;married;high.school;no;no;no;cellular;may;tue;407;2;3;1;success;-1.8;92.893;-46.2;1.266;5099.1;no
+48;blue-collar;married;high.school;no;no;no;cellular;may;tue;252;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+25;admin.;single;university.degree;no;no;no;cellular;may;tue;80;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+29;management;single;university.degree;no;yes;no;cellular;may;tue;112;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+33;technician;married;university.degree;no;no;no;cellular;may;tue;87;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+25;admin.;single;university.degree;no;yes;no;cellular;may;tue;427;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;yes
+31;admin.;married;university.degree;no;no;no;cellular;may;tue;176;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+21;student;single;high.school;no;yes;no;cellular;may;tue;226;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;yes
+28;services;married;basic.9y;no;no;no;cellular;may;tue;396;3;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;yes
+22;technician;single;unknown;no;no;no;cellular;may;tue;192;1;3;1;success;-1.8;92.893;-46.2;1.266;5099.1;yes
+42;services;married;high.school;no;yes;yes;cellular;may;tue;103;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+25;technician;single;professional.course;no;yes;no;cellular;may;tue;260;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+26;blue-collar;single;university.degree;no;yes;no;cellular;may;tue;139;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;yes
+52;services;married;high.school;no;yes;no;telephone;may;tue;108;4;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+51;admin.;divorced;university.degree;no;no;no;cellular;may;tue;91;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+51;admin.;divorced;university.degree;no;yes;no;cellular;may;tue;41;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+37;technician;single;professional.course;no;no;no;cellular;may;tue;89;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+25;admin.;single;university.degree;no;yes;yes;cellular;may;tue;82;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+49;admin.;single;university.degree;no;no;no;cellular;may;tue;132;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+49;admin.;single;university.degree;no;yes;no;cellular;may;tue;147;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+49;admin.;single;university.degree;no;no;no;cellular;may;tue;362;1;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+29;admin.;married;university.degree;no;yes;no;cellular;may;tue;212;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+38;technician;married;university.degree;no;yes;no;cellular;may;tue;118;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+39;admin.;married;high.school;no;no;no;cellular;may;tue;264;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+59;self-employed;married;university.degree;no;no;no;cellular;may;tue;94;2;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+23;student;single;basic.6y;no;yes;no;cellular;may;tue;258;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+59;self-employed;married;university.degree;no;no;no;cellular;may;tue;137;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+26;student;single;unknown;no;yes;no;cellular;may;tue;189;2;999;1;failure;-1.8;92.893;-46.2;1.266;5099.1;no
+30;admin.;single;high.school;no;yes;no;cellular;may;tue;245;3;3;1;success;-1.8;92.893;-46.2;1.266;5099.1;no
+41;blue-collar;married;basic.9y;no;yes;no;cellular;may;tue;253;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;yes
+27;services;married;university.degree;no;no;no;cellular;may;tue;752;2;3;1;success;-1.8;92.893;-46.2;1.266;5099.1;no
+29;technician;single;high.school;no;no;yes;cellular;may;tue;185;1;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;yes
+32;admin.;single;university.degree;no;unknown;unknown;cellular;may;tue;129;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+47;retired;divorced;university.degree;no;no;no;cellular;may;tue;175;2;999;0;nonexistent;-1.8;92.893;-46.2;1.266;5099.1;no
+27;admin.;single;university.degree;no;yes;no;cellular;may;wed;480;2;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;no
+32;admin.;single;university.degree;no;no;no;cellular;may;wed;532;2;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;no
+30;technician;single;professional.course;no;no;no;cellular;may;wed;229;3;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;yes
+25;admin.;single;university.degree;no;yes;yes;cellular;may;wed;163;2;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;no
+34;services;married;high.school;no;no;no;cellular;may;wed;71;3;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;no
+54;admin.;divorced;university.degree;no;unknown;unknown;cellular;may;wed;161;1;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;no
+42;technician;married;professional.course;no;no;no;cellular;may;wed;82;2;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;no
+30;admin.;married;university.degree;no;no;no;cellular;may;wed;121;1;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;no
+31;admin.;single;high.school;no;no;no;cellular;may;wed;439;1;3;1;success;-1.8;92.893;-46.2;1.27;5099.1;yes
+54;unemployed;married;basic.9y;no;no;no;cellular;may;wed;193;1;3;1;success;-1.8;92.893;-46.2;1.27;5099.1;yes
+34;admin.;married;university.degree;no;yes;yes;cellular;may;wed;242;1;7;1;success;-1.8;92.893;-46.2;1.27;5099.1;yes
+30;technician;married;professional.course;no;no;no;cellular;may;wed;188;2;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;no
+47;management;married;high.school;no;no;no;cellular;may;wed;282;1;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;no
+39;admin.;single;high.school;no;yes;no;cellular;may;wed;130;3;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;no
+25;student;single;professional.course;no;yes;no;cellular;may;wed;483;2;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;no
+31;blue-collar;married;basic.4y;no;no;no;cellular;may;wed;116;1;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;yes
+54;unemployed;married;basic.9y;no;no;no;telephone;may;wed;108;1;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;no
+31;blue-collar;married;basic.4y;no;no;no;cellular;may;wed;81;1;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;no
+31;blue-collar;married;basic.4y;no;no;no;cellular;may;wed;128;1;999;1;failure;-1.8;92.893;-46.2;1.27;5099.1;no
+30;management;married;university.degree;no;no;no;cellular;may;wed;283;1;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;no
+50;admin.;divorced;university.degree;no;yes;yes;cellular;may;wed;155;3;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;yes
+35;admin.;single;university.degree;no;yes;no;cellular;may;wed;138;2;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;no
+26;services;single;high.school;no;no;no;cellular;may;wed;119;2;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;no
+34;admin.;married;university.degree;no;yes;no;telephone;may;wed;93;2;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;no
+52;admin.;married;university.degree;no;yes;yes;cellular;may;wed;159;1;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;no
+37;blue-collar;married;basic.9y;no;yes;no;cellular;may;wed;133;2;1;1;success;-1.8;92.893;-46.2;1.27;5099.1;no
+56;technician;married;basic.4y;no;no;no;cellular;may;wed;776;3;3;1;success;-1.8;92.893;-46.2;1.27;5099.1;yes
+24;admin.;single;university.degree;no;yes;no;cellular;may;wed;140;2;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;no
+31;admin.;married;university.degree;no;yes;no;cellular;may;wed;136;2;3;1;success;-1.8;92.893;-46.2;1.27;5099.1;no
+68;retired;married;university.degree;no;yes;yes;cellular;may;wed;145;2;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;no
+37;blue-collar;married;basic.9y;no;no;no;cellular;may;wed;224;7;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;no
+34;admin.;married;university.degree;no;yes;no;cellular;may;wed;95;1;999;1;failure;-1.8;92.893;-46.2;1.27;5099.1;no
+29;management;married;university.degree;no;yes;no;cellular;may;wed;281;4;999;1;failure;-1.8;92.893;-46.2;1.27;5099.1;yes
+38;housemaid;married;university.degree;no;yes;no;cellular;may;wed;90;1;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;no
+38;management;single;university.degree;no;no;no;cellular;may;wed;123;2;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;no
+20;student;single;high.school;no;yes;no;cellular;may;wed;297;1;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;no
+32;admin.;single;university.degree;no;yes;no;telephone;may;wed;76;1;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;no
+26;self-employed;single;university.degree;no;no;no;cellular;may;wed;119;1;3;1;success;-1.8;92.893;-46.2;1.27;5099.1;yes
+33;admin.;single;university.degree;no;yes;no;cellular;may;wed;200;1;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;yes
+25;admin.;single;university.degree;no;no;no;cellular;may;wed;114;1;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;no
+61;blue-collar;married;basic.4y;no;yes;no;cellular;may;wed;113;1;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;no
+61;blue-collar;married;basic.4y;no;no;no;cellular;may;wed;62;1;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;no
+34;admin.;married;university.degree;no;no;no;cellular;may;wed;1576;1;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;no
+32;blue-collar;single;high.school;no;no;no;cellular;may;wed;329;1;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;yes
+41;blue-collar;married;basic.9y;no;yes;yes;cellular;may;wed;107;2;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;no
+41;technician;married;professional.course;no;yes;yes;cellular;may;wed;204;2;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;no
+26;self-employed;married;university.degree;no;no;no;cellular;may;wed;367;2;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;yes
+66;unknown;divorced;unknown;unknown;yes;no;cellular;may;wed;82;2;999;1;failure;-1.8;92.893;-46.2;1.27;5099.1;no
+40;technician;single;university.degree;no;no;no;telephone;may;wed;146;1;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;no
+26;student;single;high.school;no;no;no;cellular;may;wed;424;1;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;no
+32;admin.;single;university.degree;no;yes;no;cellular;may;wed;412;1;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;yes
+32;admin.;single;university.degree;no;no;no;cellular;may;wed;103;1;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;no
+38;management;married;university.degree;no;no;no;telephone;may;wed;165;1;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;yes
+26;self-employed;single;university.degree;no;no;no;cellular;may;wed;161;1;3;1;success;-1.8;92.893;-46.2;1.27;5099.1;no
+52;admin.;married;university.degree;no;no;no;cellular;may;wed;242;2;7;1;success;-1.8;92.893;-46.2;1.27;5099.1;no
+56;retired;married;university.degree;no;no;no;cellular;may;wed;108;2;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;yes
+45;technician;married;professional.course;no;yes;no;cellular;may;wed;207;5;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;no
+37;blue-collar;married;basic.9y;no;no;no;cellular;may;wed;73;2;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;no
+30;student;single;high.school;no;yes;no;cellular;may;wed;156;4;3;1;success;-1.8;92.893;-46.2;1.27;5099.1;no
+40;admin.;single;university.degree;no;yes;no;cellular;may;wed;112;2;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;no
+26;self-employed;single;university.degree;no;no;no;cellular;may;wed;78;1;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;no
+43;admin.;single;university.degree;no;yes;no;cellular;may;wed;110;3;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;no
+32;admin.;single;university.degree;no;no;no;cellular;may;wed;183;2;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;no
+26;student;single;high.school;no;yes;no;cellular;may;wed;223;3;999;1;failure;-1.8;92.893;-46.2;1.27;5099.1;yes
+61;blue-collar;married;basic.4y;no;no;yes;cellular;may;wed;74;2;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;no
+35;blue-collar;single;basic.9y;no;yes;no;cellular;may;wed;123;2;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;no
+35;unemployed;married;university.degree;no;no;no;cellular;may;wed;76;2;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;no
+24;technician;single;professional.course;no;unknown;unknown;cellular;may;wed;311;2;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;yes
+32;services;married;high.school;no;yes;no;telephone;may;wed;628;2;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;yes
+88;retired;divorced;basic.4y;no;yes;no;cellular;may;wed;128;4;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;no
+53;self-employed;married;university.degree;no;no;yes;cellular;may;wed;141;3;6;1;success;-1.8;92.893;-46.2;1.27;5099.1;no
+34;admin.;married;university.degree;no;no;no;cellular;may;wed;89;4;999;1;failure;-1.8;92.893;-46.2;1.27;5099.1;no
+47;admin.;married;high.school;no;no;no;cellular;may;wed;99;2;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;no
+35;admin.;single;high.school;no;no;no;cellular;may;wed;236;3;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;no
+34;admin.;married;university.degree;no;yes;no;cellular;may;wed;99;2;3;1;success;-1.8;92.893;-46.2;1.27;5099.1;no
+38;management;married;university.degree;no;yes;no;cellular;may;wed;187;2;2;1;success;-1.8;92.893;-46.2;1.27;5099.1;yes
+32;technician;married;university.degree;no;yes;no;telephone;may;wed;186;2;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;no
+36;technician;married;professional.course;no;yes;no;telephone;may;wed;86;4;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;no
+48;technician;married;basic.6y;no;yes;no;cellular;may;thu;158;2;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;no
+30;management;married;university.degree;no;no;no;cellular;may;thu;162;7;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;no
+24;management;single;university.degree;no;yes;no;cellular;may;thu;513;9;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;yes
+66;unknown;married;basic.4y;no;yes;yes;cellular;may;thu;110;2;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;no
+40;blue-collar;married;basic.4y;no;yes;no;cellular;may;thu;681;6;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;no
+35;admin.;married;university.degree;no;no;no;cellular;may;thu;322;3;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;no
+35;admin.;married;high.school;no;yes;no;cellular;may;thu;210;2;3;1;success;-1.8;92.893;-46.2;1.27;5099.1;no
+27;technician;single;university.degree;no;yes;no;cellular;may;thu;568;8;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;no
+37;entrepreneur;divorced;university.degree;no;yes;no;cellular;may;thu;294;2;999;1;failure;-1.8;92.893;-46.2;1.27;5099.1;no
+24;student;single;unknown;no;yes;no;cellular;may;thu;558;2;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;no
+23;student;single;high.school;no;yes;no;cellular;may;thu;77;1;999;1;failure;-1.8;92.893;-46.2;1.27;5099.1;no
+22;student;single;basic.9y;no;no;no;cellular;may;thu;85;1;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;no
+26;student;single;high.school;no;no;no;cellular;may;thu;93;3;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;no
+24;management;single;university.degree;no;no;no;cellular;may;thu;121;6;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;no
+42;housemaid;married;high.school;no;yes;no;cellular;may;thu;95;3;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;no
+32;admin.;married;university.degree;no;yes;yes;cellular;may;thu;135;3;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;no
+52;admin.;divorced;university.degree;no;yes;yes;cellular;may;thu;414;3;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;no
+35;admin.;married;high.school;no;yes;no;cellular;may;thu;60;2;999;2;failure;-1.8;92.893;-46.2;1.27;5099.1;no
+53;technician;divorced;high.school;no;yes;no;cellular;may;thu;151;4;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;no
+28;technician;single;university.degree;no;no;no;cellular;may;thu;68;2;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;no
+23;student;single;high.school;no;no;no;cellular;may;thu;361;2;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;no
+41;unemployed;married;university.degree;no;no;no;cellular;may;thu;142;3;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;no
+26;technician;single;university.degree;no;yes;no;cellular;may;thu;174;4;2;1;success;-1.8;92.893;-46.2;1.27;5099.1;yes
+24;management;single;university.degree;no;yes;no;cellular;may;thu;45;4;999;1;failure;-1.8;92.893;-46.2;1.27;5099.1;no
+37;entrepreneur;divorced;university.degree;no;no;yes;cellular;may;thu;95;3;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;no
+45;admin.;divorced;professional.course;no;yes;yes;telephone;may;thu;44;1;999;1;failure;-1.8;92.893;-46.2;1.27;5099.1;no
+40;blue-collar;married;basic.4y;no;yes;no;cellular;may;thu;61;2;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;no
+28;services;single;high.school;no;no;no;telephone;may;thu;32;2;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;no
+45;services;married;high.school;no;yes;yes;cellular;may;thu;141;3;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;no
+35;admin.;married;high.school;no;yes;yes;cellular;may;thu;81;2;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;no
+37;entrepreneur;divorced;university.degree;no;yes;yes;telephone;may;thu;71;1;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;no
+27;technician;single;university.degree;no;no;no;cellular;may;thu;68;1;999;0;nonexistent;-1.8;92.893;-46.2;1.27;5099.1;no
+60;admin.;married;university.degree;no;yes;no;cellular;jun;mon;324;3;3;1;success;-2.9;92.963;-40.8;1.266;5076.2;yes
+29;admin.;single;high.school;no;yes;no;cellular;jun;mon;295;1;999;0;nonexistent;-2.9;92.963;-40.8;1.266;5076.2;yes
+32;technician;married;professional.course;no;yes;no;cellular;jun;mon;108;1;999;0;nonexistent;-2.9;92.963;-40.8;1.266;5076.2;no
+45;unemployed;married;basic.9y;no;yes;no;cellular;jun;mon;201;1;999;0;nonexistent;-2.9;92.963;-40.8;1.266;5076.2;no
+35;blue-collar;single;professional.course;no;no;no;cellular;jun;mon;71;1;999;0;nonexistent;-2.9;92.963;-40.8;1.266;5076.2;no
+35;blue-collar;single;professional.course;no;yes;no;cellular;jun;mon;264;1;999;0;nonexistent;-2.9;92.963;-40.8;1.266;5076.2;yes
+46;admin.;divorced;university.degree;no;yes;no;cellular;jun;mon;110;1;999;0;nonexistent;-2.9;92.963;-40.8;1.266;5076.2;no
+24;student;single;high.school;unknown;no;no;cellular;jun;mon;190;1;999;1;failure;-2.9;92.963;-40.8;1.266;5076.2;no
+53;admin.;divorced;high.school;no;yes;no;cellular;jun;mon;70;1;999;1;failure;-2.9;92.963;-40.8;1.266;5076.2;no
+32;admin.;married;university.degree;no;yes;no;cellular;jun;mon;103;1;999;1;failure;-2.9;92.963;-40.8;1.266;5076.2;yes
+27;admin.;single;university.degree;no;yes;yes;cellular;jun;mon;331;1;999;0;nonexistent;-2.9;92.963;-40.8;1.266;5076.2;yes
+37;entrepreneur;married;basic.6y;no;yes;no;cellular;jun;mon;377;1;999;0;nonexistent;-2.9;92.963;-40.8;1.266;5076.2;yes
+36;unemployed;single;university.degree;no;yes;no;cellular;jun;mon;205;1;4;1;success;-2.9;92.963;-40.8;1.266;5076.2;yes
+36;technician;single;university.degree;no;yes;no;cellular;jun;mon;287;1;999;0;nonexistent;-2.9;92.963;-40.8;1.266;5076.2;yes
+33;admin.;married;university.degree;no;yes;no;cellular;jun;mon;346;1;999;0;nonexistent;-2.9;92.963;-40.8;1.266;5076.2;no
+52;admin.;single;university.degree;no;no;yes;cellular;jun;mon;212;1;999;0;nonexistent;-2.9;92.963;-40.8;1.266;5076.2;no
+29;admin.;married;high.school;no;yes;no;cellular;jun;mon;263;1;999;0;nonexistent;-2.9;92.963;-40.8;1.266;5076.2;yes
+36;technician;married;university.degree;no;yes;no;cellular;jun;mon;192;1;999;0;nonexistent;-2.9;92.963;-40.8;1.266;5076.2;yes
+45;unemployed;married;basic.9y;no;yes;no;cellular;jun;mon;129;1;999;1;failure;-2.9;92.963;-40.8;1.266;5076.2;no
+29;admin.;single;university.degree;no;yes;no;cellular;jun;mon;154;1;999;0;nonexistent;-2.9;92.963;-40.8;1.266;5076.2;no
+41;admin.;married;university.degree;no;no;no;cellular;jun;mon;175;1;999;0;nonexistent;-2.9;92.963;-40.8;1.266;5076.2;no
+22;student;single;basic.6y;no;yes;no;cellular;jun;mon;814;1;3;1;success;-2.9;92.963;-40.8;1.266;5076.2;no
+58;admin.;married;university.degree;no;yes;no;cellular;jun;mon;65;1;999;0;nonexistent;-2.9;92.963;-40.8;1.266;5076.2;no
+25;technician;married;university.degree;no;no;no;cellular;jun;mon;67;1;999;1;failure;-2.9;92.963;-40.8;1.266;5076.2;no
+57;retired;married;professional.course;no;yes;no;cellular;jun;mon;166;2;999;0;nonexistent;-2.9;92.963;-40.8;1.266;5076.2;yes
+52;admin.;single;university.degree;no;yes;no;cellular;jun;mon;327;1;999;0;nonexistent;-2.9;92.963;-40.8;1.266;5076.2;yes
+28;admin.;single;university.degree;no;no;no;cellular;jun;mon;69;1;999;1;failure;-2.9;92.963;-40.8;1.266;5076.2;yes
+28;admin.;single;university.degree;no;yes;no;cellular;jun;mon;353;1;999;0;nonexistent;-2.9;92.963;-40.8;1.266;5076.2;no
+47;management;married;university.degree;no;no;no;cellular;jun;mon;210;1;999;0;nonexistent;-2.9;92.963;-40.8;1.266;5076.2;no
+31;services;married;basic.9y;no;yes;no;telephone;jun;mon;277;1;999;0;nonexistent;-2.9;92.963;-40.8;1.266;5076.2;no
+32;technician;married;professional.course;no;unknown;unknown;cellular;jun;mon;210;2;999;1;failure;-2.9;92.963;-40.8;1.266;5076.2;yes
+41;technician;married;university.degree;no;yes;yes;cellular;jun;mon;244;2;999;0;nonexistent;-2.9;92.963;-40.8;1.266;5076.2;no
+31;services;married;basic.9y;no;no;no;cellular;jun;mon;84;1;999;0;nonexistent;-2.9;92.963;-40.8;1.266;5076.2;yes
+31;services;married;basic.9y;no;yes;no;cellular;jun;mon;208;1;999;0;nonexistent;-2.9;92.963;-40.8;1.266;5076.2;no
+31;services;married;basic.9y;no;yes;no;cellular;jun;mon;326;1;999;0;nonexistent;-2.9;92.963;-40.8;1.266;5076.2;yes
+36;technician;married;university.degree;no;no;no;cellular;jun;mon;59;1;3;1;success;-2.9;92.963;-40.8;1.266;5076.2;no
+30;blue-collar;married;basic.9y;no;no;no;cellular;jun;mon;285;1;999;0;nonexistent;-2.9;92.963;-40.8;1.266;5076.2;no
+57;admin.;married;university.degree;no;yes;no;cellular;jun;mon;161;2;999;0;nonexistent;-2.9;92.963;-40.8;1.266;5076.2;no
+39;admin.;married;university.degree;no;no;no;cellular;jun;mon;165;1;999;0;nonexistent;-2.9;92.963;-40.8;1.266;5076.2;no
+27;admin.;married;university.degree;no;unknown;unknown;cellular;jun;mon;459;1;999;1;failure;-2.9;92.963;-40.8;1.266;5076.2;no
+59;retired;married;professional.course;no;yes;yes;cellular;jun;mon;1460;1;999;0;nonexistent;-2.9;92.963;-40.8;1.266;5076.2;yes
+32;technician;single;university.degree;no;no;no;cellular;jun;mon;1048;1;999;0;nonexistent;-2.9;92.963;-40.8;1.266;5076.2;yes
+57;blue-collar;divorced;basic.4y;no;no;no;cellular;jun;mon;233;1;12;1;success;-2.9;92.963;-40.8;1.266;5076.2;no
+33;admin.;married;university.degree;no;no;no;cellular;jun;mon;335;2;999;0;nonexistent;-2.9;92.963;-40.8;1.266;5076.2;yes
+37;admin.;married;university.degree;no;yes;yes;cellular;jun;mon;412;2;999;0;nonexistent;-2.9;92.963;-40.8;1.266;5076.2;yes
+45;blue-collar;married;basic.9y;no;no;no;cellular;jun;mon;177;2;999;0;nonexistent;-2.9;92.963;-40.8;1.266;5076.2;yes
+24;student;single;university.degree;no;no;no;cellular;jun;mon;223;1;999;0;nonexistent;-2.9;92.963;-40.8;1.266;5076.2;no
+65;retired;married;basic.9y;no;no;no;cellular;jun;mon;579;1;999;0;nonexistent;-2.9;92.963;-40.8;1.266;5076.2;yes
+33;services;single;high.school;no;no;no;cellular;jun;mon;144;1;999;1;failure;-2.9;92.963;-40.8;1.266;5076.2;no
+65;housemaid;married;basic.4y;no;no;no;cellular;jun;mon;145;2;999;0;nonexistent;-2.9;92.963;-40.8;1.266;5076.2;no
+30;technician;single;basic.9y;no;no;no;cellular;jun;mon;93;1;12;1;success;-2.9;92.963;-40.8;1.266;5076.2;no
+49;management;married;university.degree;no;yes;no;telephone;jun;mon;153;1;999;0;nonexistent;-2.9;92.963;-40.8;1.266;5076.2;no
+49;management;married;university.degree;no;no;no;cellular;jun;mon;164;1;999;0;nonexistent;-2.9;92.963;-40.8;1.266;5076.2;no
+49;management;married;university.degree;no;yes;no;cellular;jun;mon;128;1;999;1;failure;-2.9;92.963;-40.8;1.266;5076.2;no
+49;management;married;university.degree;no;yes;no;cellular;jun;mon;339;1;999;0;nonexistent;-2.9;92.963;-40.8;1.266;5076.2;yes
+44;housemaid;married;university.degree;no;no;no;cellular;jun;mon;223;1;999;1;failure;-2.9;92.963;-40.8;1.266;5076.2;no
+34;admin.;single;university.degree;no;no;no;cellular;jun;mon;62;1;999;0;nonexistent;-2.9;92.963;-40.8;1.266;5076.2;no
+34;admin.;single;university.degree;no;no;no;cellular;jun;mon;151;1;999;1;failure;-2.9;92.963;-40.8;1.266;5076.2;no
+24;blue-collar;single;basic.9y;no;unknown;unknown;cellular;jun;mon;128;1;3;1;success;-2.9;92.963;-40.8;1.266;5076.2;no
+31;blue-collar;married;basic.9y;unknown;yes;no;cellular;jun;mon;388;1;999;0;nonexistent;-2.9;92.963;-40.8;1.266;5076.2;no
+55;admin.;married;high.school;no;no;no;cellular;jun;mon;180;1;999;0;nonexistent;-2.9;92.963;-40.8;1.266;5076.2;no
+77;management;single;basic.9y;no;no;no;cellular;jun;mon;84;2;999;1;failure;-2.9;92.963;-40.8;1.266;5076.2;no
+38;blue-collar;divorced;university.degree;no;yes;yes;cellular;jun;mon;87;2;999;0;nonexistent;-2.9;92.963;-40.8;1.266;5076.2;no
+30;admin.;married;university.degree;no;no;no;telephone;jun;mon;194;1;999;0;nonexistent;-2.9;92.963;-40.8;1.266;5076.2;no
+36;management;married;university.degree;no;unknown;unknown;telephone;jun;mon;192;1;999;0;nonexistent;-2.9;92.963;-40.8;1.266;5076.2;no
+27;admin.;married;university.degree;no;yes;no;cellular;jun;mon;761;2;999;0;nonexistent;-2.9;92.963;-40.8;1.266;5076.2;no
+43;admin.;married;high.school;unknown;yes;no;cellular;jun;mon;153;1;999;0;nonexistent;-2.9;92.963;-40.8;1.266;5076.2;no
+21;student;single;high.school;no;yes;no;cellular;jun;mon;202;2;999;0;nonexistent;-2.9;92.963;-40.8;1.266;5076.2;yes
+36;admin.;married;university.degree;no;no;no;cellular;jun;mon;174;1;3;1;success;-2.9;92.963;-40.8;1.266;5076.2;yes
+33;unemployed;single;university.degree;no;no;no;telephone;jun;mon;89;1;999;1;failure;-2.9;92.963;-40.8;1.266;5076.2;no
+31;technician;married;unknown;no;yes;no;cellular;jun;mon;84;1;999;1;failure;-2.9;92.963;-40.8;1.266;5076.2;no
+56;retired;divorced;university.degree;no;yes;no;cellular;jun;mon;164;1;3;1;success;-2.9;92.963;-40.8;1.266;5076.2;no
+27;technician;married;professional.course;no;yes;no;cellular;jun;mon;492;1;999;0;nonexistent;-2.9;92.963;-40.8;1.266;5076.2;no
+29;admin.;single;university.degree;no;no;no;cellular;jun;mon;114;1;999;0;nonexistent;-2.9;92.963;-40.8;1.266;5076.2;yes
+36;unemployed;married;university.degree;unknown;yes;no;cellular;jun;mon;450;1;999;1;failure;-2.9;92.963;-40.8;1.266;5076.2;no
+49;management;married;university.degree;no;no;no;cellular;jun;mon;215;2;999;0;nonexistent;-2.9;92.963;-40.8;1.266;5076.2;yes
+45;unemployed;married;basic.9y;no;no;no;cellular;jun;mon;232;2;999;0;nonexistent;-2.9;92.963;-40.8;1.266;5076.2;yes
+36;self-employed;married;university.degree;no;no;yes;cellular;jun;mon;284;1;999;1;failure;-2.9;92.963;-40.8;1.266;5076.2;yes
+32;admin.;single;university.degree;no;yes;no;cellular;jun;mon;253;1;999;0;nonexistent;-2.9;92.963;-40.8;1.266;5076.2;yes
+47;management;married;university.degree;no;yes;no;cellular;jun;mon;352;1;999;0;nonexistent;-2.9;92.963;-40.8;1.266;5076.2;no
+58;retired;divorced;professional.course;no;yes;no;cellular;jun;mon;470;1;999;0;nonexistent;-2.9;92.963;-40.8;1.266;5076.2;no
+28;student;single;high.school;no;yes;no;cellular;jun;mon;1144;2;999;0;nonexistent;-2.9;92.963;-40.8;1.266;5076.2;yes
+49;management;married;university.degree;no;yes;no;telephone;jun;mon;336;2;999;0;nonexistent;-2.9;92.963;-40.8;1.266;5076.2;no
+37;services;single;high.school;no;yes;no;cellular;jun;mon;195;3;999;0;nonexistent;-2.9;92.963;-40.8;1.266;5076.2;no
+28;self-employed;single;university.degree;no;no;no;cellular;jun;mon;373;2;999;0;nonexistent;-2.9;92.963;-40.8;1.266;5076.2;no
+34;blue-collar;married;high.school;no;yes;no;cellular;jun;mon;78;2;999;0;nonexistent;-2.9;92.963;-40.8;1.266;5076.2;no
+65;housemaid;married;basic.4y;no;no;no;cellular;jun;mon;89;2;999;0;nonexistent;-2.9;92.963;-40.8;1.266;5076.2;no
+72;admin.;married;university.degree;no;yes;no;cellular;jun;mon;134;1;999;0;nonexistent;-2.9;92.963;-40.8;1.266;5076.2;no
+31;admin.;single;university.degree;no;yes;no;cellular;jun;mon;181;1;999;0;nonexistent;-2.9;92.963;-40.8;1.266;5076.2;no
+31;services;single;university.degree;no;yes;no;telephone;jun;mon;55;2;999;0;nonexistent;-2.9;92.963;-40.8;1.266;5076.2;no
+28;self-employed;single;university.degree;no;yes;yes;cellular;jun;mon;187;2;999;0;nonexistent;-2.9;92.963;-40.8;1.266;5076.2;no
+55;retired;divorced;university.degree;no;yes;no;cellular;jun;mon;113;2;999;0;nonexistent;-2.9;92.963;-40.8;1.266;5076.2;no
+32;blue-collar;unknown;basic.9y;no;yes;no;cellular;jun;mon;314;1;999;0;nonexistent;-2.9;92.963;-40.8;1.266;5076.2;yes
+39;admin.;married;university.degree;no;yes;no;cellular;jun;mon;206;1;999;1;failure;-2.9;92.963;-40.8;1.266;5076.2;no
+43;admin.;married;high.school;unknown;yes;no;cellular;jun;mon;288;1;999;0;nonexistent;-2.9;92.963;-40.8;1.266;5076.2;no
+25;admin.;single;university.degree;no;yes;no;cellular;jun;tue;93;2;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;no
+53;services;married;unknown;no;yes;no;cellular;jun;tue;327;1;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;no
+26;technician;single;professional.course;no;yes;no;cellular;jun;tue;163;2;3;1;success;-2.9;92.963;-40.8;1.262;5076.2;yes
+28;management;married;basic.6y;no;no;yes;cellular;jun;tue;111;1;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;no
+52;unknown;married;professional.course;unknown;yes;no;cellular;jun;tue;149;1;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;no
+37;technician;single;university.degree;no;yes;no;cellular;jun;tue;96;1;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;no
+67;admin.;married;basic.4y;unknown;no;no;cellular;jun;tue;466;1;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;yes
+21;management;single;university.degree;no;unknown;unknown;cellular;jun;tue;106;1;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;no
+26;technician;divorced;university.degree;no;yes;no;cellular;jun;tue;101;1;3;1;success;-2.9;92.963;-40.8;1.262;5076.2;no
+33;admin.;single;university.degree;no;yes;no;cellular;jun;tue;257;3;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;yes
+26;admin.;single;high.school;no;no;no;cellular;jun;tue;479;1;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;yes
+26;technician;divorced;university.degree;no;no;no;cellular;jun;tue;437;1;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;yes
+33;admin.;single;university.degree;no;yes;no;cellular;jun;tue;198;2;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;no
+58;retired;divorced;high.school;no;no;yes;cellular;jun;tue;143;1;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;no
+43;blue-collar;married;basic.9y;no;yes;no;cellular;jun;tue;395;1;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;yes
+40;admin.;single;high.school;no;yes;no;cellular;jun;tue;145;1;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;yes
+40;admin.;single;high.school;no;yes;no;cellular;jun;tue;154;1;999;1;failure;-2.9;92.963;-40.8;1.262;5076.2;no
+27;student;single;basic.9y;no;yes;yes;cellular;jun;tue;107;1;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;yes
+58;retired;divorced;high.school;no;yes;no;cellular;jun;tue;663;1;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;yes
+32;admin.;single;high.school;no;yes;no;cellular;jun;tue;350;1;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;yes
+35;services;married;high.school;no;yes;yes;cellular;jun;tue;126;1;999;1;failure;-2.9;92.963;-40.8;1.262;5076.2;no
+39;admin.;married;professional.course;no;yes;yes;cellular;jun;tue;145;1;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;no
+31;admin.;single;university.degree;no;yes;no;cellular;jun;tue;282;2;13;1;success;-2.9;92.963;-40.8;1.262;5076.2;yes
+47;management;married;basic.9y;no;yes;no;cellular;jun;tue;118;2;3;1;success;-2.9;92.963;-40.8;1.262;5076.2;no
+48;technician;married;high.school;no;yes;no;cellular;jun;tue;115;1;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;no
+59;retired;divorced;university.degree;no;no;no;cellular;jun;tue;368;2;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;no
+46;unemployed;married;basic.9y;no;yes;no;cellular;jun;tue;62;1;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;no
+46;unemployed;married;basic.9y;no;unknown;unknown;cellular;jun;tue;96;1;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;no
+46;unemployed;married;basic.9y;no;no;no;cellular;jun;tue;294;1;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;yes
+67;admin.;married;basic.4y;unknown;yes;no;cellular;jun;tue;177;2;999;1;failure;-2.9;92.963;-40.8;1.262;5076.2;no
+33;admin.;married;university.degree;no;yes;no;cellular;jun;tue;64;1;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;no
+33;admin.;married;university.degree;no;yes;no;cellular;jun;tue;690;1;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;yes
+32;services;single;professional.course;no;yes;no;cellular;jun;tue;297;1;999;2;failure;-2.9;92.963;-40.8;1.262;5076.2;no
+32;admin.;married;university.degree;no;yes;yes;cellular;jun;tue;384;1;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;yes
+32;admin.;married;university.degree;no;no;no;cellular;jun;tue;596;1;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;yes
+37;technician;single;university.degree;no;no;no;cellular;jun;tue;654;1;999;1;failure;-2.9;92.963;-40.8;1.262;5076.2;yes
+49;admin.;divorced;university.degree;no;yes;no;cellular;jun;tue;144;1;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;no
+49;admin.;divorced;university.degree;no;yes;no;cellular;jun;tue;88;1;4;1;success;-2.9;92.963;-40.8;1.262;5076.2;no
+52;unknown;married;professional.course;unknown;yes;no;telephone;jun;tue;50;2;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;no
+31;admin.;single;university.degree;no;no;no;cellular;jun;tue;99;1;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;no
+43;admin.;divorced;university.degree;no;yes;no;cellular;jun;tue;418;1;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;no
+41;entrepreneur;married;high.school;no;yes;no;cellular;jun;tue;169;1;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;yes
+27;student;married;university.degree;no;no;no;cellular;jun;tue;59;1;999;1;failure;-2.9;92.963;-40.8;1.262;5076.2;no
+34;technician;married;university.degree;no;yes;no;cellular;jun;tue;195;1;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;yes
+31;blue-collar;single;basic.9y;no;yes;yes;cellular;jun;tue;103;1;3;2;success;-2.9;92.963;-40.8;1.262;5076.2;yes
+32;technician;single;high.school;no;no;no;cellular;jun;tue;430;1;999;1;failure;-2.9;92.963;-40.8;1.262;5076.2;yes
+33;admin.;single;high.school;no;yes;no;cellular;jun;tue;167;1;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;no
+52;services;divorced;basic.4y;no;yes;no;cellular;jun;tue;74;1;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;no
+24;student;single;high.school;no;no;no;cellular;jun;tue;253;1;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;no
+24;student;single;high.school;no;no;no;cellular;jun;tue;225;1;3;1;success;-2.9;92.963;-40.8;1.262;5076.2;no
+25;admin.;single;university.degree;no;no;no;cellular;jun;tue;417;1;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;yes
+52;unknown;married;professional.course;unknown;yes;yes;cellular;jun;tue;135;1;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;no
+41;technician;married;professional.course;no;no;no;cellular;jun;tue;160;2;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;yes
+32;services;married;high.school;no;unknown;unknown;cellular;jun;tue;172;1;999;1;failure;-2.9;92.963;-40.8;1.262;5076.2;no
+27;self-employed;single;professional.course;no;no;no;cellular;jun;tue;162;2;999;2;failure;-2.9;92.963;-40.8;1.262;5076.2;no
+34;services;married;high.school;no;yes;no;cellular;jun;tue;136;1;999;2;failure;-2.9;92.963;-40.8;1.262;5076.2;no
+41;technician;single;university.degree;no;no;no;telephone;jun;tue;270;1;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;yes
+34;services;single;high.school;no;no;yes;cellular;jun;tue;92;1;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;no
+27;self-employed;single;university.degree;no;no;no;cellular;jun;tue;271;1;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;no
+46;unemployed;married;basic.9y;no;no;no;cellular;jun;tue;200;2;999;1;failure;-2.9;92.963;-40.8;1.262;5076.2;yes
+47;management;married;basic.9y;no;no;no;cellular;jun;tue;309;1;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;no
+37;unemployed;unknown;university.degree;no;no;no;cellular;jun;tue;100;1;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;no
+26;admin.;single;university.degree;no;unknown;unknown;cellular;jun;tue;271;2;3;1;success;-2.9;92.963;-40.8;1.262;5076.2;yes
+29;unemployed;single;high.school;no;no;no;cellular;jun;tue;189;1;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;no
+79;retired;married;high.school;no;unknown;unknown;cellular;jun;tue;61;1;999;1;failure;-2.9;92.963;-40.8;1.262;5076.2;no
+79;retired;married;high.school;no;yes;yes;cellular;jun;tue;163;1;999;1;failure;-2.9;92.963;-40.8;1.262;5076.2;no
+33;admin.;single;high.school;no;yes;no;cellular;jun;tue;74;2;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;no
+32;admin.;married;university.degree;no;yes;yes;cellular;jun;tue;82;1;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;yes
+23;student;single;high.school;no;no;no;telephone;jun;tue;108;4;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;no
+43;admin.;married;university.degree;no;yes;no;cellular;jun;tue;91;1;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;no
+43;admin.;married;university.degree;no;no;yes;cellular;jun;tue;310;1;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;no
+32;admin.;married;university.degree;no;yes;no;cellular;jun;tue;712;1;3;2;failure;-2.9;92.963;-40.8;1.262;5076.2;yes
+32;admin.;married;university.degree;no;no;no;cellular;jun;tue;74;1;4;1;success;-2.9;92.963;-40.8;1.262;5076.2;yes
+29;admin.;single;university.degree;no;yes;no;telephone;jun;tue;128;1;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;no
+52;services;divorced;basic.4y;no;yes;no;cellular;jun;tue;80;3;999;1;failure;-2.9;92.963;-40.8;1.262;5076.2;no
+29;admin.;single;university.degree;no;yes;no;telephone;jun;tue;392;2;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;no
+27;services;single;professional.course;no;yes;no;cellular;jun;tue;392;1;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;no
+32;admin.;single;university.degree;no;yes;no;cellular;jun;tue;369;1;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;no
+31;management;married;university.degree;no;no;no;cellular;jun;tue;217;1;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;no
+30;unemployed;married;professional.course;no;yes;no;cellular;jun;tue;194;1;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;no
+30;unemployed;married;professional.course;no;yes;yes;cellular;jun;tue;495;1;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;no
+38;admin.;divorced;high.school;no;yes;no;cellular;jun;tue;116;1;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;no
+41;technician;married;professional.course;no;unknown;unknown;cellular;jun;tue;318;1;4;3;success;-2.9;92.963;-40.8;1.262;5076.2;yes
+33;management;single;university.degree;no;unknown;unknown;cellular;jun;tue;73;1;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;no
+28;admin.;single;high.school;no;yes;no;cellular;jun;tue;135;1;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;no
+28;admin.;single;high.school;no;yes;no;cellular;jun;tue;359;1;999;2;failure;-2.9;92.963;-40.8;1.262;5076.2;yes
+34;technician;married;university.degree;no;no;no;cellular;jun;tue;116;2;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;no
+24;technician;single;professional.course;no;yes;no;cellular;jun;tue;211;1;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;no
+59;admin.;married;unknown;no;no;no;cellular;jun;tue;245;1;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;yes
+26;admin.;married;high.school;no;yes;yes;cellular;jun;tue;142;1;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;no
+35;admin.;married;high.school;no;yes;yes;cellular;jun;tue;444;1;999;1;failure;-2.9;92.963;-40.8;1.262;5076.2;no
+33;admin.;single;university.degree;no;yes;no;cellular;jun;tue;251;1;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;yes
+56;management;married;university.degree;no;yes;yes;cellular;jun;tue;673;1;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;no
+24;unknown;single;university.degree;no;no;no;cellular;jun;tue;119;1;3;2;success;-2.9;92.963;-40.8;1.262;5076.2;yes
+24;unknown;single;university.degree;no;yes;yes;cellular;jun;tue;134;1;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;yes
+24;unknown;single;university.degree;no;yes;no;cellular;jun;tue;74;1;3;2;success;-2.9;92.963;-40.8;1.262;5076.2;no
+24;unknown;single;university.degree;no;yes;no;cellular;jun;tue;728;1;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;yes
+24;unknown;single;university.degree;no;no;no;cellular;jun;tue;263;1;999;1;failure;-2.9;92.963;-40.8;1.262;5076.2;yes
+27;admin.;single;university.degree;no;no;yes;cellular;jun;tue;154;1;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;no
+24;unknown;single;university.degree;no;yes;yes;cellular;jun;tue;696;1;999;2;failure;-2.9;92.963;-40.8;1.262;5076.2;no
+23;blue-collar;single;basic.9y;no;no;no;cellular;jun;tue;159;1;999;1;failure;-2.9;92.963;-40.8;1.262;5076.2;no
+41;technician;single;university.degree;no;yes;no;cellular;jun;tue;118;1;999;1;failure;-2.9;92.963;-40.8;1.262;5076.2;no
+46;unemployed;married;basic.9y;no;yes;yes;cellular;jun;tue;1210;4;999;1;failure;-2.9;92.963;-40.8;1.262;5076.2;yes
+31;admin.;single;university.degree;no;no;yes;cellular;jun;tue;210;1;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;no
+23;student;single;high.school;no;no;no;cellular;jun;tue;310;1;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;yes
+30;admin.;single;university.degree;no;no;no;cellular;jun;tue;482;2;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;yes
+30;admin.;single;university.degree;no;yes;no;cellular;jun;tue;224;1;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;no
+47;technician;divorced;high.school;no;yes;no;cellular;jun;tue;221;1;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;no
+30;self-employed;single;university.degree;no;no;no;cellular;jun;tue;147;3;999;1;failure;-2.9;92.963;-40.8;1.262;5076.2;no
+44;admin.;single;university.degree;no;no;no;cellular;jun;tue;924;2;4;1;success;-2.9;92.963;-40.8;1.262;5076.2;yes
+44;admin.;divorced;university.degree;no;yes;yes;cellular;jun;tue;130;1;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;no
+33;admin.;single;high.school;no;no;no;cellular;jun;tue;53;1;999;1;failure;-2.9;92.963;-40.8;1.262;5076.2;no
+29;management;divorced;basic.9y;no;yes;no;cellular;jun;tue;72;1;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;no
+28;technician;single;professional.course;no;yes;no;cellular;jun;tue;318;1;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;yes
+34;services;single;high.school;no;no;no;telephone;jun;tue;306;2;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;no
+33;housemaid;unknown;university.degree;no;no;no;cellular;jun;tue;77;3;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;no
+27;self-employed;single;university.degree;no;yes;no;cellular;jun;tue;112;2;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;no
+37;admin.;married;university.degree;no;yes;no;cellular;jun;tue;80;1;999;1;failure;-2.9;92.963;-40.8;1.262;5076.2;no
+37;admin.;married;high.school;no;yes;yes;cellular;jun;tue;123;2;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;no
+31;management;married;university.degree;no;no;no;cellular;jun;tue;212;1;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;no
+40;admin.;married;university.degree;no;yes;no;cellular;jun;tue;192;1;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;yes
+47;management;married;basic.9y;no;yes;no;cellular;jun;tue;181;3;999;1;failure;-2.9;92.963;-40.8;1.262;5076.2;yes
+34;admin.;single;university.degree;no;yes;no;cellular;jun;tue;96;2;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;no
+47;management;married;basic.9y;no;no;no;cellular;jun;tue;132;4;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;no
+30;technician;single;professional.course;no;yes;no;cellular;jun;tue;76;3;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;no
+38;entrepreneur;married;professional.course;no;yes;yes;cellular;jun;tue;262;2;999;1;failure;-2.9;92.963;-40.8;1.262;5076.2;no
+30;admin.;married;university.degree;no;no;no;cellular;jun;tue;250;2;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;yes
+43;admin.;married;university.degree;no;yes;yes;cellular;jun;tue;146;2;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;no
+33;technician;married;professional.course;no;no;no;cellular;jun;tue;189;2;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;no
+53;services;married;unknown;no;yes;no;cellular;jun;tue;501;3;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;yes
+46;entrepreneur;married;high.school;no;no;no;cellular;jun;tue;69;2;999;1;failure;-2.9;92.963;-40.8;1.262;5076.2;no
+40;admin.;married;university.degree;no;no;no;cellular;jun;tue;269;1;999;1;failure;-2.9;92.963;-40.8;1.262;5076.2;no
+46;unemployed;married;basic.9y;no;yes;no;cellular;jun;tue;236;2;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;yes
+32;admin.;married;university.degree;no;yes;yes;cellular;jun;tue;102;4;999;2;failure;-2.9;92.963;-40.8;1.262;5076.2;no
+36;admin.;married;university.degree;unknown;yes;yes;cellular;jun;tue;308;1;3;1;success;-2.9;92.963;-40.8;1.262;5076.2;no
+24;technician;single;professional.course;no;no;no;cellular;jun;tue;122;2;999;1;failure;-2.9;92.963;-40.8;1.262;5076.2;no
+58;retired;divorced;high.school;no;yes;no;cellular;jun;tue;145;2;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;no
+55;retired;married;basic.4y;no;no;no;cellular;jun;tue;130;2;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;no
+25;blue-collar;single;professional.course;no;yes;no;cellular;jun;tue;179;2;3;1;success;-2.9;92.963;-40.8;1.262;5076.2;yes
+24;technician;single;high.school;no;yes;no;cellular;jun;tue;142;2;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;no
+44;management;married;university.degree;no;yes;no;cellular;jun;tue;71;3;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;no
+55;retired;married;basic.4y;no;no;no;cellular;jun;tue;553;2;3;4;failure;-2.9;92.963;-40.8;1.262;5076.2;no
+31;management;married;university.degree;no;yes;no;cellular;jun;tue;305;1;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;yes
+31;technician;single;professional.course;no;no;no;cellular;jun;tue;163;1;999;1;failure;-2.9;92.963;-40.8;1.262;5076.2;yes
+33;admin.;single;university.degree;no;no;no;cellular;jun;tue;541;3;999;0;nonexistent;-2.9;92.963;-40.8;1.262;5076.2;yes
+28;technician;single;professional.course;no;yes;no;cellular;jun;wed;209;2;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+43;admin.;married;university.degree;no;yes;no;cellular;jun;wed;262;2;3;1;success;-2.9;92.963;-40.8;1.26;5076.2;yes
+38;technician;single;university.degree;no;yes;no;telephone;jun;wed;225;3;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+28;admin.;married;high.school;no;no;no;telephone;jun;wed;206;4;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+40;blue-collar;divorced;professional.course;no;no;no;cellular;jun;wed;115;2;3;1;success;-2.9;92.963;-40.8;1.26;5076.2;yes
+24;blue-collar;single;basic.9y;no;yes;no;cellular;jun;wed;406;2;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+30;admin.;single;university.degree;no;yes;no;cellular;jun;wed;244;2;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+31;services;married;high.school;no;no;no;cellular;jun;wed;592;4;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+47;admin.;single;university.degree;no;no;no;cellular;jun;wed;78;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+26;retired;single;high.school;no;unknown;unknown;cellular;jun;wed;508;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+59;retired;married;professional.course;no;yes;no;telephone;jun;wed;437;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+24;blue-collar;single;basic.9y;no;unknown;unknown;cellular;jun;wed;192;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+59;retired;married;professional.course;no;no;no;cellular;jun;wed;136;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+59;retired;married;professional.course;no;yes;no;cellular;jun;wed;68;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+53;blue-collar;divorced;basic.6y;no;yes;no;cellular;jun;wed;123;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+33;admin.;single;university.degree;no;yes;no;cellular;jun;wed;313;2;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+31;admin.;single;high.school;no;no;no;cellular;jun;wed;137;3;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+53;technician;divorced;university.degree;no;no;no;cellular;jun;wed;705;1;999;1;failure;-2.9;92.963;-40.8;1.26;5076.2;yes
+26;student;single;professional.course;no;yes;no;cellular;jun;wed;96;1;999;1;failure;-2.9;92.963;-40.8;1.26;5076.2;no
+28;admin.;single;high.school;no;no;no;cellular;jun;wed;198;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+37;services;married;high.school;no;yes;no;cellular;jun;wed;200;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+40;blue-collar;divorced;professional.course;no;no;no;cellular;jun;wed;210;2;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+40;management;divorced;university.degree;no;yes;no;cellular;jun;wed;117;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+58;blue-collar;married;basic.4y;no;yes;no;cellular;jun;wed;110;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+38;technician;married;university.degree;no;yes;no;cellular;jun;wed;171;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+36;admin.;married;university.degree;no;no;no;cellular;jun;wed;334;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+37;self-employed;married;professional.course;no;no;no;cellular;jun;wed;321;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+28;student;single;high.school;no;yes;no;cellular;jun;wed;296;4;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+58;management;married;basic.4y;no;yes;no;cellular;jun;wed;86;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+20;student;single;unknown;no;yes;no;cellular;jun;wed;213;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+29;admin.;single;university.degree;no;yes;yes;telephone;jun;wed;252;2;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+28;technician;single;professional.course;no;no;no;cellular;jun;wed;411;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+29;admin.;married;high.school;no;yes;no;cellular;jun;wed;37;1;999;1;failure;-2.9;92.963;-40.8;1.26;5076.2;no
+28;admin.;single;university.degree;no;yes;no;cellular;jun;wed;593;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+29;technician;single;university.degree;no;yes;no;cellular;jun;wed;101;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+34;technician;married;professional.course;no;yes;no;cellular;jun;wed;302;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+29;technician;single;university.degree;no;yes;no;cellular;jun;wed;138;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+29;technician;single;university.degree;no;yes;no;cellular;jun;wed;165;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+30;blue-collar;single;high.school;no;yes;no;cellular;jun;wed;88;2;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+29;services;single;high.school;no;no;no;telephone;jun;wed;116;2;999;1;failure;-2.9;92.963;-40.8;1.26;5076.2;no
+59;blue-collar;married;basic.4y;unknown;no;no;cellular;jun;wed;340;1;999;1;failure;-2.9;92.963;-40.8;1.26;5076.2;yes
+48;admin.;married;university.degree;no;yes;no;cellular;jun;wed;95;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+31;services;married;high.school;no;yes;no;cellular;jun;wed;591;2;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+33;blue-collar;married;professional.course;no;yes;no;cellular;jun;wed;88;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+33;blue-collar;married;professional.course;no;yes;no;cellular;jun;wed;90;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+28;services;single;basic.6y;no;no;no;cellular;jun;wed;385;2;4;1;success;-2.9;92.963;-40.8;1.26;5076.2;yes
+39;admin.;married;university.degree;no;no;no;cellular;jun;wed;2219;1;999;1;failure;-2.9;92.963;-40.8;1.26;5076.2;no
+33;blue-collar;married;professional.course;no;unknown;unknown;cellular;jun;wed;240;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+29;admin.;single;university.degree;no;no;no;cellular;jun;wed;174;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+57;entrepreneur;married;basic.4y;no;yes;no;cellular;jun;wed;467;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+30;admin.;single;university.degree;no;yes;no;cellular;jun;wed;107;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+29;admin.;divorced;university.degree;no;yes;no;cellular;jun;wed;238;3;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+39;management;married;university.degree;no;yes;no;cellular;jun;wed;95;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+29;admin.;single;university.degree;no;yes;no;cellular;jun;wed;170;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+32;admin.;married;high.school;no;yes;no;cellular;jun;wed;342;1;10;1;success;-2.9;92.963;-40.8;1.26;5076.2;no
+29;admin.;married;university.degree;no;unknown;unknown;cellular;jun;wed;113;1;999;1;failure;-2.9;92.963;-40.8;1.26;5076.2;no
+56;retired;married;university.degree;no;yes;no;cellular;jun;wed;252;1;999;2;failure;-2.9;92.963;-40.8;1.26;5076.2;no
+33;admin.;single;high.school;no;no;no;cellular;jun;wed;170;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+20;student;single;high.school;no;yes;yes;cellular;jun;wed;74;2;999;1;failure;-2.9;92.963;-40.8;1.26;5076.2;no
+38;admin.;divorced;high.school;no;no;no;cellular;jun;wed;65;1;999;1;failure;-2.9;92.963;-40.8;1.26;5076.2;no
+61;admin.;married;university.degree;no;yes;no;cellular;jun;wed;151;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+38;technician;married;university.degree;no;yes;no;cellular;jun;wed;273;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+38;technician;married;university.degree;no;no;no;cellular;jun;wed;539;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+40;services;married;high.school;unknown;no;no;cellular;jun;wed;157;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+38;admin.;divorced;high.school;no;yes;no;cellular;jun;wed;1361;1;999;1;failure;-2.9;92.963;-40.8;1.26;5076.2;no
+33;admin.;single;university.degree;no;no;no;cellular;jun;wed;254;1;999;2;failure;-2.9;92.963;-40.8;1.26;5076.2;no
+21;admin.;single;high.school;no;yes;no;cellular;jun;wed;180;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+48;admin.;married;university.degree;no;yes;no;cellular;jun;wed;447;2;4;1;success;-2.9;92.963;-40.8;1.26;5076.2;yes
+26;student;single;university.degree;unknown;yes;no;cellular;jun;wed;247;2;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+29;services;single;high.school;no;no;no;cellular;jun;wed;136;6;3;1;success;-2.9;92.963;-40.8;1.26;5076.2;no
+32;technician;married;university.degree;no;yes;no;cellular;jun;wed;123;1;999;1;failure;-2.9;92.963;-40.8;1.26;5076.2;no
+37;admin.;married;university.degree;no;no;no;cellular;jun;wed;167;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+24;student;single;high.school;no;yes;no;cellular;jun;wed;74;3;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+26;technician;single;professional.course;no;yes;no;cellular;jun;wed;80;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+26;technician;single;professional.course;no;yes;no;cellular;jun;wed;102;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+30;admin.;single;university.degree;no;yes;no;cellular;jun;wed;214;3;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+36;management;single;university.degree;no;yes;no;cellular;jun;wed;300;2;3;1;success;-2.9;92.963;-40.8;1.26;5076.2;yes
+29;admin.;married;high.school;no;no;no;cellular;jun;wed;200;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+42;self-employed;married;university.degree;no;yes;no;cellular;jun;wed;436;1;3;1;success;-2.9;92.963;-40.8;1.26;5076.2;yes
+34;management;married;university.degree;no;yes;yes;telephone;jun;wed;192;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+33;management;married;university.degree;no;yes;no;cellular;jun;wed;97;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+50;admin.;single;basic.9y;no;yes;no;cellular;jun;wed;343;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+47;admin.;single;university.degree;no;yes;no;cellular;jun;wed;156;3;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+50;admin.;single;basic.9y;no;unknown;unknown;cellular;jun;wed;699;1;999;1;failure;-2.9;92.963;-40.8;1.26;5076.2;yes
+23;student;single;high.school;no;no;no;cellular;jun;wed;200;2;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+24;services;single;high.school;no;no;no;cellular;jun;wed;150;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+54;management;married;university.degree;no;yes;no;cellular;jun;wed;42;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+29;services;single;high.school;no;yes;yes;cellular;jun;wed;431;2;999;2;failure;-2.9;92.963;-40.8;1.26;5076.2;yes
+56;management;married;university.degree;no;yes;no;cellular;jun;wed;175;3;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+25;technician;single;university.degree;no;yes;yes;cellular;jun;wed;124;1;999;1;failure;-2.9;92.963;-40.8;1.26;5076.2;no
+30;admin.;single;university.degree;no;no;no;cellular;jun;wed;656;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+54;admin.;married;university.degree;no;no;no;cellular;jun;wed;77;2;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+40;entrepreneur;married;basic.6y;no;no;no;cellular;jun;wed;837;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+29;services;single;high.school;no;no;no;cellular;jun;wed;725;2;3;1;success;-2.9;92.963;-40.8;1.26;5076.2;yes
+27;blue-collar;single;basic.6y;no;yes;no;cellular;jun;wed;334;3;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+57;housemaid;divorced;high.school;no;no;yes;telephone;jun;wed;230;4;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+69;entrepreneur;married;high.school;no;no;no;cellular;jun;wed;144;2;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+30;admin.;single;university.degree;no;yes;no;cellular;jun;wed;617;2;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+69;entrepreneur;married;high.school;no;no;no;cellular;jun;wed;140;2;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+69;entrepreneur;married;high.school;no;yes;no;cellular;jun;wed;178;2;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+31;admin.;married;high.school;no;no;no;cellular;jun;wed;161;1;2;1;success;-2.9;92.963;-40.8;1.26;5076.2;no
+29;technician;married;university.degree;no;no;no;cellular;jun;wed;150;2;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+61;admin.;married;university.degree;unknown;yes;no;cellular;jun;wed;1076;2;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+26;admin.;single;university.degree;no;yes;no;cellular;jun;wed;213;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+35;admin.;single;university.degree;no;yes;no;cellular;jun;wed;266;1;999;1;failure;-2.9;92.963;-40.8;1.26;5076.2;no
+52;admin.;married;university.degree;no;yes;yes;cellular;jun;wed;247;2;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+26;student;single;university.degree;unknown;no;no;cellular;jun;wed;78;2;999;1;failure;-2.9;92.963;-40.8;1.26;5076.2;no
+54;admin.;single;high.school;no;no;no;cellular;jun;wed;114;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+33;technician;single;university.degree;no;yes;yes;cellular;jun;wed;203;2;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+42;admin.;single;university.degree;no;unknown;unknown;telephone;jun;wed;34;2;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+25;technician;married;professional.course;no;no;no;cellular;jun;wed;595;3;999;1;failure;-2.9;92.963;-40.8;1.26;5076.2;no
+33;management;divorced;university.degree;no;yes;no;cellular;jun;wed;63;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+21;student;single;high.school;no;no;no;cellular;jun;wed;295;4;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+33;management;divorced;university.degree;no;yes;no;cellular;jun;wed;187;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+56;management;married;university.degree;no;yes;no;telephone;jun;wed;218;5;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+35;admin.;married;university.degree;no;no;no;cellular;jun;thu;510;3;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+25;unemployed;married;high.school;no;no;no;cellular;jun;thu;125;2;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+55;unknown;married;university.degree;no;yes;no;cellular;jun;thu;153;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+62;unknown;married;professional.course;no;no;no;cellular;jun;thu;277;3;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+53;blue-collar;married;basic.6y;no;yes;no;cellular;jun;thu;328;2;3;1;success;-2.9;92.963;-40.8;1.26;5076.2;yes
+51;unemployed;married;basic.6y;no;yes;no;cellular;jun;thu;262;2;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+51;unemployed;married;basic.6y;no;no;no;cellular;jun;thu;280;2;999;1;failure;-2.9;92.963;-40.8;1.26;5076.2;yes
+45;admin.;single;university.degree;no;yes;no;cellular;jun;thu;207;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+53;housemaid;married;high.school;no;yes;no;cellular;jun;thu;94;2;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+30;admin.;single;university.degree;no;yes;no;cellular;jun;thu;106;1;3;2;success;-2.9;92.963;-40.8;1.26;5076.2;no
+29;technician;single;university.degree;no;no;no;cellular;jun;thu;176;1;3;1;success;-2.9;92.963;-40.8;1.26;5076.2;no
+51;unemployed;married;basic.6y;no;yes;no;cellular;jun;thu;79;1;999;1;failure;-2.9;92.963;-40.8;1.26;5076.2;no
+29;admin.;single;university.degree;no;yes;yes;cellular;jun;thu;449;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+30;admin.;married;basic.9y;no;yes;no;cellular;jun;thu;111;2;999;1;failure;-2.9;92.963;-40.8;1.26;5076.2;no
+26;admin.;single;university.degree;no;no;yes;cellular;jun;thu;224;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+54;admin.;married;university.degree;no;yes;no;cellular;jun;thu;151;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+21;student;single;high.school;no;no;no;cellular;jun;thu;400;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+30;admin.;married;professional.course;no;yes;no;cellular;jun;thu;80;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+25;services;single;high.school;no;yes;no;cellular;jun;thu;217;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+42;admin.;married;university.degree;no;no;no;cellular;jun;thu;160;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+30;admin.;single;university.degree;no;no;no;cellular;jun;thu;144;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+24;admin.;single;high.school;no;no;no;cellular;jun;thu;352;2;999;1;failure;-2.9;92.963;-40.8;1.26;5076.2;yes
+21;services;single;professional.course;no;yes;yes;cellular;jun;thu;787;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+30;admin.;single;university.degree;no;no;no;cellular;jun;thu;323;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+50;technician;single;professional.course;no;yes;yes;cellular;jun;thu;78;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+50;technician;single;professional.course;no;yes;yes;cellular;jun;thu;160;1;999;1;failure;-2.9;92.963;-40.8;1.26;5076.2;yes
+22;student;single;high.school;no;yes;yes;cellular;jun;thu;221;1;999;1;failure;-2.9;92.963;-40.8;1.26;5076.2;no
+25;services;single;high.school;no;yes;no;cellular;jun;thu;239;2;3;1;success;-2.9;92.963;-40.8;1.26;5076.2;yes
+36;management;married;university.degree;no;yes;no;cellular;jun;thu;156;1;999;1;failure;-2.9;92.963;-40.8;1.26;5076.2;yes
+36;management;married;university.degree;no;no;no;cellular;jun;thu;194;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+32;admin.;married;university.degree;no;yes;no;cellular;jun;thu;105;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+36;technician;married;basic.9y;no;yes;no;cellular;jun;thu;390;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+30;admin.;married;university.degree;no;yes;no;cellular;jun;thu;96;2;4;1;success;-2.9;92.963;-40.8;1.26;5076.2;yes
+25;student;single;university.degree;no;no;yes;cellular;jun;thu;136;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+31;admin.;married;university.degree;no;no;no;cellular;jun;thu;81;2;999;1;failure;-2.9;92.963;-40.8;1.26;5076.2;yes
+35;self-employed;married;university.degree;no;yes;no;cellular;jun;thu;269;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+32;admin.;married;university.degree;no;no;yes;cellular;jun;thu;327;3;3;1;success;-2.9;92.963;-40.8;1.26;5076.2;yes
+28;admin.;single;high.school;no;yes;yes;cellular;jun;thu;296;2;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+53;housemaid;married;high.school;no;no;yes;cellular;jun;thu;147;1;999;2;failure;-2.9;92.963;-40.8;1.26;5076.2;yes
+35;admin.;married;university.degree;no;no;no;cellular;jun;thu;121;4;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+32;admin.;single;university.degree;no;yes;no;cellular;jun;thu;89;2;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+26;blue-collar;single;professional.course;no;yes;no;cellular;jun;thu;77;2;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+53;unknown;married;professional.course;no;no;no;cellular;jun;thu;217;2;3;1;success;-2.9;92.963;-40.8;1.26;5076.2;no
+30;technician;single;professional.course;no;no;no;cellular;jun;thu;137;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+26;student;single;university.degree;no;yes;no;cellular;jun;thu;112;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+34;technician;married;professional.course;no;no;no;cellular;jun;thu;218;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+28;self-employed;single;professional.course;no;yes;no;cellular;jun;thu;207;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+28;management;single;university.degree;no;yes;no;cellular;jun;thu;1161;1;4;1;success;-2.9;92.963;-40.8;1.26;5076.2;yes
+38;technician;single;professional.course;no;yes;no;cellular;jun;thu;113;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+38;technician;single;professional.course;no;no;no;cellular;jun;thu;138;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+29;technician;single;university.degree;no;no;no;cellular;jun;thu;442;3;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+52;admin.;married;university.degree;no;yes;no;cellular;jun;thu;352;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+30;admin.;single;professional.course;no;unknown;unknown;cellular;jun;thu;246;1;7;1;success;-2.9;92.963;-40.8;1.26;5076.2;yes
+42;services;divorced;high.school;no;yes;no;telephone;jun;thu;143;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+29;admin.;single;university.degree;no;no;no;telephone;jun;thu;247;2;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+25;services;divorced;high.school;no;yes;yes;cellular;jun;thu;437;2;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+32;admin.;married;university.degree;no;yes;no;cellular;jun;thu;216;2;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+53;blue-collar;married;basic.9y;no;no;yes;cellular;jun;thu;578;2;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+24;student;single;high.school;no;unknown;unknown;cellular;jun;thu;282;3;999;2;failure;-2.9;92.963;-40.8;1.26;5076.2;yes
+42;admin.;married;university.degree;no;yes;no;cellular;jun;thu;156;2;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+28;management;single;university.degree;no;yes;no;cellular;jun;thu;66;1;999;1;failure;-2.9;92.963;-40.8;1.26;5076.2;no
+28;admin.;married;university.degree;no;yes;no;cellular;jun;thu;73;1;999;1;failure;-2.9;92.963;-40.8;1.26;5076.2;no
+53;blue-collar;married;basic.6y;no;no;no;cellular;jun;thu;592;3;999;1;failure;-2.9;92.963;-40.8;1.26;5076.2;yes
+32;management;married;high.school;no;yes;yes;cellular;jun;thu;119;2;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+35;admin.;married;university.degree;no;no;yes;telephone;jun;thu;125;5;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+33;admin.;single;university.degree;no;yes;no;cellular;jun;thu;114;3;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+22;student;single;high.school;no;no;yes;telephone;jun;thu;166;2;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+34;management;married;university.degree;no;yes;no;telephone;jun;thu;111;3;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+50;blue-collar;married;basic.9y;no;yes;no;cellular;jun;thu;117;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+33;admin.;single;university.degree;no;unknown;unknown;cellular;jun;thu;101;3;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+31;admin.;single;high.school;no;unknown;unknown;cellular;jun;thu;105;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+34;admin.;single;high.school;no;no;yes;cellular;jun;thu;207;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+31;management;single;university.degree;no;no;no;cellular;jun;thu;1094;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+52;blue-collar;single;basic.9y;no;no;no;cellular;jun;fri;174;2;3;1;success;-2.9;92.963;-40.8;1.268;5076.2;yes
+44;admin.;married;university.degree;no;yes;no;cellular;jun;fri;133;1;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;no
+29;technician;married;high.school;no;no;no;cellular;jun;fri;397;1;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;yes
+27;blue-collar;married;high.school;no;yes;no;cellular;jun;fri;264;1;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;no
+46;housemaid;single;university.degree;no;yes;yes;cellular;jun;fri;324;1;3;1;success;-2.9;92.963;-40.8;1.268;5076.2;yes
+45;admin.;married;unknown;no;no;no;cellular;jun;fri;155;1;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;no
+49;admin.;divorced;high.school;no;yes;no;cellular;jun;fri;169;1;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;no
+30;admin.;single;university.degree;no;no;no;cellular;jun;fri;275;1;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;yes
+30;admin.;single;university.degree;no;no;yes;cellular;jun;fri;199;1;3;1;success;-2.9;92.963;-40.8;1.268;5076.2;yes
+32;admin.;single;university.degree;no;no;no;cellular;jun;fri;255;1;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;yes
+28;admin.;single;university.degree;no;yes;no;cellular;jun;fri;232;1;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;yes
+32;admin.;single;university.degree;no;no;no;cellular;jun;fri;462;1;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;yes
+27;admin.;single;university.degree;no;yes;no;cellular;jun;fri;136;1;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;no
+56;admin.;married;basic.9y;no;yes;no;cellular;jun;fri;146;1;999;1;failure;-2.9;92.963;-40.8;1.268;5076.2;no
+24;admin.;single;university.degree;no;no;no;cellular;jun;fri;255;2;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;yes
+45;entrepreneur;married;university.degree;no;yes;no;cellular;jun;fri;247;3;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;no
+24;student;single;high.school;no;yes;no;telephone;jun;fri;109;1;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;no
+50;entrepreneur;married;basic.9y;no;no;no;telephone;jun;fri;227;1;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;no
+27;admin.;single;university.degree;no;no;no;cellular;jun;fri;398;2;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;no
+51;technician;married;basic.9y;no;no;no;telephone;jun;fri;302;1;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;yes
+28;technician;single;professional.course;no;yes;yes;cellular;jun;fri;149;1;3;1;success;-2.9;92.963;-40.8;1.268;5076.2;yes
+25;student;married;university.degree;no;no;no;cellular;jun;fri;191;1;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;yes
+49;unemployed;married;professional.course;no;no;no;cellular;jun;fri;317;1;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;no
+59;admin.;married;university.degree;unknown;yes;no;cellular;jun;fri;1543;1;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;yes
+31;self-employed;married;university.degree;no;yes;no;cellular;jun;fri;207;1;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;yes
+21;student;single;university.degree;no;no;no;cellular;jun;fri;493;2;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;yes
+51;technician;single;university.degree;no;yes;no;cellular;jun;fri;509;1;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;yes
+27;admin.;single;university.degree;no;yes;no;cellular;jun;fri;77;1;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;no
+55;housemaid;married;unknown;no;no;no;cellular;jun;fri;133;1;999;1;failure;-2.9;92.963;-40.8;1.268;5076.2;no
+32;technician;single;professional.course;no;yes;no;cellular;jun;fri;329;1;3;1;success;-2.9;92.963;-40.8;1.268;5076.2;no
+51;technician;single;university.degree;no;no;no;cellular;jun;fri;657;1;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;yes
+29;technician;married;high.school;no;yes;no;cellular;jun;fri;365;3;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;yes
+28;admin.;single;university.degree;no;yes;no;cellular;jun;fri;188;1;999;1;failure;-2.9;92.963;-40.8;1.268;5076.2;no
+46;technician;married;professional.course;no;no;no;telephone;jun;fri;215;1;999;1;failure;-2.9;92.963;-40.8;1.268;5076.2;no
+37;admin.;married;university.degree;no;yes;no;telephone;jun;fri;145;1;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;no
+51;admin.;single;university.degree;no;no;no;cellular;jun;fri;159;2;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;yes
+37;student;single;unknown;no;no;no;cellular;jun;fri;99;1;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;no
+31;technician;married;university.degree;no;yes;no;cellular;jun;fri;276;2;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;yes
+29;admin.;single;high.school;no;yes;no;cellular;jun;fri;213;2;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;no
+37;student;single;unknown;no;no;yes;cellular;jun;fri;604;1;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;no
+21;blue-collar;single;basic.4y;no;no;no;telephone;jun;fri;153;1;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;no
+48;admin.;married;university.degree;no;yes;no;telephone;jun;fri;522;3;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;yes
+26;admin.;single;high.school;no;no;no;cellular;jun;fri;76;2;999;1;failure;-2.9;92.963;-40.8;1.268;5076.2;no
+31;unemployed;divorced;unknown;no;yes;no;cellular;jun;fri;227;1;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;no
+33;admin.;single;university.degree;no;no;no;cellular;jun;fri;471;2;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;no
+30;admin.;single;university.degree;no;no;no;cellular;jun;fri;92;2;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;no
+27;admin.;single;university.degree;no;yes;no;telephone;jun;fri;329;1;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;no
+30;admin.;married;unknown;no;yes;no;cellular;jun;fri;207;2;4;1;success;-2.9;92.963;-40.8;1.268;5076.2;yes
+51;admin.;single;university.degree;no;yes;yes;cellular;jun;fri;263;2;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;no
+25;self-employed;married;university.degree;no;yes;no;cellular;jun;fri;57;2;999;1;failure;-2.9;92.963;-40.8;1.268;5076.2;no
+28;student;single;high.school;no;yes;no;cellular;jun;fri;577;3;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;yes
+25;technician;single;university.degree;no;yes;no;cellular;jun;fri;271;2;3;1;success;-2.9;92.963;-40.8;1.268;5076.2;no
+54;admin.;married;high.school;no;no;no;cellular;jun;fri;455;3;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;no
+25;technician;single;basic.9y;no;yes;no;cellular;jun;fri;103;2;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;yes
+52;admin.;married;university.degree;no;yes;no;cellular;jun;fri;333;1;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;no
+35;technician;married;professional.course;no;yes;no;telephone;jun;fri;366;1;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;yes
+20;student;single;high.school;no;yes;no;cellular;jun;fri;201;2;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;yes
+30;technician;single;university.degree;no;yes;no;cellular;jun;fri;166;2;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;yes
+29;services;married;university.degree;no;no;yes;cellular;jun;fri;89;2;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;no
+32;admin.;single;university.degree;no;yes;no;cellular;jun;fri;58;2;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;no
+34;admin.;single;high.school;no;no;no;cellular;jun;fri;548;2;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;yes
+29;student;single;professional.course;no;no;no;cellular;jun;fri;95;2;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;no
+27;admin.;single;university.degree;no;no;no;cellular;jun;fri;96;2;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;no
+45;admin.;married;unknown;no;no;no;cellular;jun;fri;438;2;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;yes
+30;self-employed;married;university.degree;no;yes;no;cellular;jun;fri;138;2;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;no
+31;management;married;university.degree;no;no;no;telephone;jun;fri;614;2;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;no
+52;management;married;university.degree;no;no;no;telephone;jun;fri;303;2;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;no
+21;services;single;high.school;no;no;no;cellular;jun;fri;110;2;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;no
+53;admin.;single;university.degree;no;yes;no;cellular;jun;fri;304;2;3;1;success;-2.9;92.963;-40.8;1.268;5076.2;yes
+36;technician;single;professional.course;no;no;no;cellular;jun;fri;146;2;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;yes
+36;technician;single;professional.course;no;yes;no;cellular;jun;fri;126;2;3;1;success;-2.9;92.963;-40.8;1.268;5076.2;yes
+30;management;single;university.degree;no;no;yes;cellular;jun;fri;244;7;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;yes
+29;technician;married;high.school;no;no;no;cellular;jun;fri;157;2;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;yes
+51;technician;single;university.degree;no;no;no;cellular;jun;fri;151;2;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;no
+25;technician;single;basic.9y;no;no;no;telephone;jun;fri;800;2;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;no
+26;admin.;single;high.school;no;yes;yes;cellular;jun;fri;200;2;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;no
+33;admin.;single;university.degree;no;no;no;telephone;jun;fri;113;1;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;no
+25;admin.;divorced;university.degree;no;no;no;cellular;jun;mon;143;2;999;0;nonexistent;-2.9;92.963;-40.8;1.281;5076.2;no
+52;technician;married;professional.course;no;no;no;cellular;jun;mon;130;5;999;0;nonexistent;-2.9;92.963;-40.8;1.281;5076.2;no
+45;services;single;unknown;no;no;no;cellular;jun;mon;58;2;999;0;nonexistent;-2.9;92.963;-40.8;1.281;5076.2;no
+29;admin.;single;university.degree;no;yes;no;cellular;jun;mon;97;4;999;0;nonexistent;-2.9;92.963;-40.8;1.281;5076.2;no
+36;blue-collar;married;basic.9y;no;no;no;cellular;jun;mon;86;1;999;0;nonexistent;-2.9;92.963;-40.8;1.281;5076.2;no
+36;management;married;unknown;no;no;no;cellular;jun;mon;98;2;999;0;nonexistent;-2.9;92.963;-40.8;1.281;5076.2;no
+32;management;single;university.degree;no;no;no;cellular;jun;mon;257;2;3;1;success;-2.9;92.963;-40.8;1.281;5076.2;yes
+32;management;single;university.degree;no;no;no;cellular;jun;mon;152;2;3;1;success;-2.9;92.963;-40.8;1.281;5076.2;no
+28;services;single;basic.9y;no;yes;yes;cellular;jun;mon;252;5;999;0;nonexistent;-2.9;92.963;-40.8;1.281;5076.2;no
+27;blue-collar;single;high.school;no;yes;no;cellular;jun;mon;148;2;4;1;success;-2.9;92.963;-40.8;1.281;5076.2;yes
+53;retired;single;basic.4y;no;yes;no;cellular;jun;mon;107;3;999;0;nonexistent;-2.9;92.963;-40.8;1.281;5076.2;yes
+32;student;single;university.degree;no;yes;no;cellular;jun;mon;197;2;999;1;failure;-2.9;92.963;-40.8;1.281;5076.2;no
+31;admin.;single;university.degree;no;no;no;cellular;jun;mon;127;3;999;1;failure;-2.9;92.963;-40.8;1.281;5076.2;no
+27;admin.;single;university.degree;no;no;no;cellular;jun;mon;138;3;999;0;nonexistent;-2.9;92.963;-40.8;1.281;5076.2;yes
+43;blue-collar;married;basic.6y;no;yes;no;cellular;jun;mon;458;6;999;0;nonexistent;-2.9;92.963;-40.8;1.281;5076.2;yes
+25;student;single;unknown;no;no;no;cellular;jun;mon;301;3;999;0;nonexistent;-2.9;92.963;-40.8;1.281;5076.2;yes
+33;blue-collar;married;high.school;no;yes;no;cellular;jun;mon;110;2;999;0;nonexistent;-2.9;92.963;-40.8;1.281;5076.2;no
+22;blue-collar;single;basic.9y;no;yes;no;cellular;jun;mon;84;2;999;0;nonexistent;-2.9;92.963;-40.8;1.281;5076.2;no
+47;admin.;single;university.degree;no;yes;no;cellular;jun;mon;243;4;999;0;nonexistent;-2.9;92.963;-40.8;1.281;5076.2;yes
+36;management;married;university.degree;no;no;no;cellular;jun;mon;200;4;999;0;nonexistent;-2.9;92.963;-40.8;1.281;5076.2;yes
+43;blue-collar;married;basic.6y;no;yes;no;cellular;jun;mon;131;4;999;1;failure;-2.9;92.963;-40.8;1.281;5076.2;yes
+31;services;married;unknown;no;yes;no;cellular;jun;tue;98;3;999;0;nonexistent;-2.9;92.963;-40.8;1.286;5076.2;no
+25;admin.;single;university.degree;no;yes;yes;cellular;jun;tue;431;3;4;1;success;-2.9;92.963;-40.8;1.286;5076.2;no
+30;self-employed;single;university.degree;no;yes;yes;cellular;jun;tue;106;4;999;0;nonexistent;-2.9;92.963;-40.8;1.286;5076.2;no
+44;self-employed;married;university.degree;no;no;no;cellular;jun;tue;234;2;3;1;success;-2.9;92.963;-40.8;1.286;5076.2;yes
+29;admin.;single;high.school;no;yes;yes;cellular;jun;tue;100;2;999;0;nonexistent;-2.9;92.963;-40.8;1.286;5076.2;no
+57;management;married;university.degree;no;yes;no;cellular;jun;tue;337;3;999;0;nonexistent;-2.9;92.963;-40.8;1.286;5076.2;no
+22;admin.;single;university.degree;no;unknown;unknown;cellular;jun;tue;835;2;999;0;nonexistent;-2.9;92.963;-40.8;1.286;5076.2;no
+35;services;single;university.degree;no;unknown;unknown;cellular;jun;tue;67;2;999;1;failure;-2.9;92.963;-40.8;1.286;5076.2;no
+49;services;married;high.school;no;no;no;cellular;jun;tue;239;4;999;0;nonexistent;-2.9;92.963;-40.8;1.286;5076.2;yes
+29;admin.;single;university.degree;no;no;no;cellular;jun;tue;160;2;999;0;nonexistent;-2.9;92.963;-40.8;1.286;5076.2;yes
+38;technician;married;professional.course;no;yes;no;cellular;jun;tue;993;4;3;1;success;-2.9;92.963;-40.8;1.286;5076.2;yes
+48;services;married;high.school;no;yes;yes;cellular;jun;tue;217;3;999;0;nonexistent;-2.9;92.963;-40.8;1.286;5076.2;no
+25;unemployed;married;university.degree;no;no;no;cellular;jun;tue;529;2;999;0;nonexistent;-2.9;92.963;-40.8;1.286;5076.2;yes
+32;entrepreneur;married;basic.4y;no;yes;no;cellular;jun;tue;183;2;999;1;failure;-2.9;92.963;-40.8;1.286;5076.2;yes
+27;student;single;unknown;no;yes;no;cellular;jun;tue;103;4;999;0;nonexistent;-2.9;92.963;-40.8;1.286;5076.2;no
+25;admin.;single;unknown;no;no;no;telephone;jun;tue;221;7;999;0;nonexistent;-2.9;92.963;-40.8;1.286;5076.2;yes
+25;self-employed;single;university.degree;no;no;no;cellular;jun;fri;105;4;999;1;failure;-2.9;92.963;-40.8;1.268;5076.2;no
+22;technician;single;university.degree;no;yes;no;cellular;jun;fri;127;2;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;no
+33;student;single;unknown;no;no;no;telephone;jun;fri;137;3;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;no
+54;blue-collar;married;basic.9y;no;no;no;cellular;jun;fri;258;2;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;yes
+54;blue-collar;married;basic.9y;no;yes;no;cellular;jun;fri;239;2;3;1;success;-2.9;92.963;-40.8;1.268;5076.2;yes
+26;management;single;university.degree;no;yes;no;cellular;jun;fri;230;2;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;no
+55;retired;married;high.school;no;yes;yes;cellular;jun;fri;186;2;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;yes
+25;self-employed;single;university.degree;no;yes;no;cellular;jun;fri;382;5;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;no
+26;self-employed;single;university.degree;no;yes;no;cellular;jun;fri;175;2;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;no
+22;self-employed;single;university.degree;no;yes;yes;cellular;jun;fri;126;6;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;yes
+22;technician;single;university.degree;no;yes;no;cellular;jun;fri;163;4;999;1;failure;-2.9;92.963;-40.8;1.268;5076.2;yes
+50;admin.;married;university.degree;no;yes;no;cellular;jun;fri;95;7;999;1;failure;-2.9;92.963;-40.8;1.268;5076.2;yes
+44;blue-collar;married;professional.course;no;yes;no;cellular;jun;fri;336;3;3;1;success;-2.9;92.963;-40.8;1.268;5076.2;no
+55;retired;married;high.school;no;yes;no;cellular;jun;fri;136;3;3;1;success;-2.9;92.963;-40.8;1.268;5076.2;no
+52;entrepreneur;married;high.school;no;yes;no;cellular;jun;fri;177;3;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;no
+60;retired;married;basic.6y;no;unknown;unknown;cellular;jun;fri;110;2;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;no
+33;management;married;university.degree;no;yes;no;cellular;jun;fri;139;5;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;no
+31;admin.;single;high.school;no;no;no;cellular;jun;fri;39;3;999;0;nonexistent;-2.9;92.963;-40.8;1.268;5076.2;no
+25;admin.;single;university.degree;no;no;no;telephone;jun;mon;94;2;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+59;retired;married;basic.4y;no;yes;no;telephone;jun;mon;263;4;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+64;retired;married;unknown;no;yes;no;cellular;jun;mon;294;3;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+32;management;married;university.degree;no;yes;no;cellular;jun;mon;54;3;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+33;unemployed;married;university.degree;no;yes;no;cellular;jun;mon;579;3;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+28;admin.;single;high.school;no;no;no;cellular;jun;mon;491;2;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+32;technician;divorced;university.degree;no;yes;no;cellular;jun;mon;532;2;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+40;unemployed;married;basic.9y;no;no;no;cellular;jun;mon;143;3;999;1;failure;-2.9;92.963;-40.8;1.26;5076.2;no
+33;blue-collar;divorced;unknown;no;no;no;cellular;jun;mon;84;5;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+52;technician;married;professional.course;no;yes;no;cellular;jun;mon;268;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+20;technician;single;unknown;no;no;no;cellular;jun;mon;441;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+30;admin.;married;high.school;no;no;no;cellular;jun;mon;439;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+44;services;married;unknown;no;no;yes;cellular;jun;mon;151;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+57;retired;married;basic.4y;no;no;yes;cellular;jun;mon;292;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+35;entrepreneur;divorced;university.degree;no;yes;no;cellular;jun;mon;92;2;999;1;failure;-2.9;92.963;-40.8;1.26;5076.2;no
+41;admin.;single;university.degree;no;yes;no;cellular;jun;mon;95;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+28;admin.;single;university.degree;no;no;no;cellular;jun;mon;114;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+22;services;single;high.school;no;yes;no;cellular;jun;mon;147;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+22;services;single;high.school;no;yes;yes;cellular;jun;mon;181;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+22;student;single;unknown;no;yes;no;cellular;jun;mon;139;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+35;entrepreneur;divorced;university.degree;no;yes;no;telephone;jun;mon;351;6;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+46;admin.;divorced;high.school;no;yes;no;cellular;jun;mon;372;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+34;admin.;married;high.school;no;no;no;cellular;jun;mon;135;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+30;admin.;married;university.degree;no;yes;no;cellular;jun;mon;288;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+23;admin.;single;high.school;no;no;no;cellular;jun;mon;92;1;999;1;failure;-2.9;92.963;-40.8;1.26;5076.2;no
+36;self-employed;single;university.degree;no;no;no;cellular;jun;mon;177;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+27;services;single;university.degree;no;yes;no;cellular;jun;mon;41;2;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+29;admin.;single;high.school;no;yes;no;cellular;jun;mon;415;1;3;1;success;-2.9;92.963;-40.8;1.26;5076.2;yes
+29;admin.;single;high.school;no;no;yes;cellular;jun;mon;74;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+31;blue-collar;married;university.degree;no;yes;no;cellular;jun;mon;382;2;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+34;housemaid;single;basic.4y;no;no;no;cellular;jun;mon;157;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+29;technician;single;basic.9y;no;no;no;cellular;jun;mon;24;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+74;retired;married;basic.4y;no;yes;no;cellular;jun;mon;257;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+32;self-employed;single;university.degree;no;yes;no;cellular;jun;mon;104;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+32;self-employed;single;university.degree;no;yes;no;cellular;jun;mon;64;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+57;management;married;unknown;no;no;no;cellular;jun;mon;112;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+30;services;single;high.school;no;yes;no;cellular;jun;mon;181;2;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+34;blue-collar;married;basic.4y;no;yes;no;cellular;jun;mon;88;2;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+57;unemployed;married;basic.4y;no;yes;no;cellular;jun;mon;284;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+57;unemployed;married;basic.4y;no;no;no;cellular;jun;mon;651;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+24;student;single;unknown;no;yes;no;cellular;jun;mon;220;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+24;blue-collar;single;unknown;no;no;yes;cellular;jun;mon;188;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+41;unemployed;single;basic.4y;no;no;no;cellular;jun;mon;170;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+29;admin.;married;high.school;no;no;no;cellular;jun;mon;155;1;999;1;failure;-2.9;92.963;-40.8;1.26;5076.2;yes
+24;admin.;single;university.degree;no;yes;yes;cellular;jun;mon;74;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+25;admin.;single;high.school;no;no;no;cellular;jun;mon;95;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+28;admin.;single;university.degree;no;yes;no;cellular;jun;mon;333;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+52;self-employed;married;university.degree;no;yes;no;cellular;jun;mon;322;1;3;1;success;-2.9;92.963;-40.8;1.26;5076.2;yes
+22;services;single;high.school;no;yes;no;telephone;jun;mon;94;2;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+23;admin.;single;university.degree;no;no;no;cellular;jun;mon;60;1;999;1;failure;-2.9;92.963;-40.8;1.26;5076.2;no
+26;technician;single;professional.course;no;no;no;cellular;jun;mon;175;1;999;1;failure;-2.9;92.963;-40.8;1.26;5076.2;no
+43;admin.;married;university.degree;no;no;no;cellular;jun;mon;108;1;999;1;failure;-2.9;92.963;-40.8;1.26;5076.2;no
+32;technician;married;university.degree;no;no;no;cellular;jun;mon;60;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+30;technician;married;university.degree;no;no;no;cellular;jun;mon;108;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+29;admin.;single;high.school;no;yes;yes;cellular;jun;mon;89;2;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+34;blue-collar;married;basic.4y;no;yes;no;cellular;jun;mon;75;2;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+25;technician;single;professional.course;no;yes;no;cellular;jun;mon;29;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+42;management;single;university.degree;no;unknown;unknown;cellular;jun;mon;83;4;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+26;admin.;married;high.school;no;no;no;cellular;jun;mon;79;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+21;admin.;single;high.school;no;no;no;cellular;jun;mon;173;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+22;student;single;unknown;no;no;no;cellular;jun;mon;77;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+38;admin.;single;university.degree;no;yes;no;cellular;jun;mon;318;3;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+25;admin.;single;professional.course;no;yes;no;cellular;jun;mon;205;2;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;no
+37;technician;married;professional.course;no;no;no;cellular;jun;mon;129;1;999;0;nonexistent;-2.9;92.963;-40.8;1.26;5076.2;yes
+49;unemployed;married;professional.course;no;yes;no;cellular;jun;tue;298;3;999;0;nonexistent;-2.9;92.963;-40.8;1.252;5076.2;no
+35;management;married;university.degree;no;no;no;cellular;jun;tue;136;2;999;0;nonexistent;-2.9;92.963;-40.8;1.252;5076.2;yes
+53;housemaid;married;basic.4y;no;no;yes;cellular;jun;tue;263;2;999;0;nonexistent;-2.9;92.963;-40.8;1.252;5076.2;yes
+29;services;single;professional.course;no;yes;no;telephone;jun;tue;161;2;999;0;nonexistent;-2.9;92.963;-40.8;1.252;5076.2;no
+53;housemaid;married;basic.4y;no;yes;no;cellular;jun;tue;245;2;999;0;nonexistent;-2.9;92.963;-40.8;1.252;5076.2;yes
+57;admin.;married;university.degree;no;no;no;cellular;jun;tue;214;1;999;0;nonexistent;-2.9;92.963;-40.8;1.252;5076.2;no
+56;admin.;married;university.degree;no;yes;no;cellular;jun;tue;202;1;999;0;nonexistent;-2.9;92.963;-40.8;1.252;5076.2;no
+48;housemaid;married;high.school;no;no;no;cellular;jun;tue;399;1;999;0;nonexistent;-2.9;92.963;-40.8;1.252;5076.2;no
+40;unemployed;single;basic.4y;no;no;no;cellular;jun;tue;355;1;999;0;nonexistent;-2.9;92.963;-40.8;1.252;5076.2;yes
+43;admin.;married;university.degree;no;yes;no;cellular;jun;tue;281;1;999;0;nonexistent;-2.9;92.963;-40.8;1.252;5076.2;no
+39;blue-collar;married;basic.9y;no;yes;no;cellular;jun;tue;250;1;999;0;nonexistent;-2.9;92.963;-40.8;1.252;5076.2;no
+35;management;married;university.degree;no;yes;no;cellular;jun;tue;66;1;999;0;nonexistent;-2.9;92.963;-40.8;1.252;5076.2;no
+50;self-employed;married;professional.course;no;yes;no;cellular;jun;tue;102;1;999;1;failure;-2.9;92.963;-40.8;1.252;5076.2;no
+25;admin.;married;university.degree;no;yes;no;telephone;jun;tue;64;1;999;0;nonexistent;-2.9;92.963;-40.8;1.252;5076.2;no
+40;unemployed;single;basic.4y;no;no;no;cellular;jun;tue;459;2;999;0;nonexistent;-2.9;92.963;-40.8;1.252;5076.2;no
+46;admin.;single;university.degree;no;no;no;cellular;jun;tue;119;1;999;0;nonexistent;-2.9;92.963;-40.8;1.252;5076.2;no
+49;unemployed;married;professional.course;no;no;no;cellular;jun;tue;229;1;999;0;nonexistent;-2.9;92.963;-40.8;1.252;5076.2;no
+43;admin.;married;university.degree;no;yes;no;telephone;jun;tue;30;1;999;0;nonexistent;-2.9;92.963;-40.8;1.252;5076.2;no
+58;retired;married;basic.4y;no;yes;no;cellular;jun;tue;79;2;999;0;nonexistent;-2.9;92.963;-40.8;1.252;5076.2;no
+55;management;married;university.degree;no;yes;no;cellular;jun;tue;114;3;999;0;nonexistent;-2.9;92.963;-40.8;1.252;5076.2;yes
+44;unemployed;single;basic.4y;no;no;no;cellular;jun;tue;276;2;999;0;nonexistent;-2.9;92.963;-40.8;1.252;5076.2;no
+31;technician;married;professional.course;no;yes;no;cellular;jun;tue;404;3;11;2;failure;-2.9;92.963;-40.8;1.252;5076.2;no
+57;retired;married;basic.4y;no;yes;yes;cellular;jun;tue;162;3;999;0;nonexistent;-2.9;92.963;-40.8;1.252;5076.2;yes
+36;technician;single;professional.course;no;yes;no;cellular;jun;tue;569;2;999;0;nonexistent;-2.9;92.963;-40.8;1.252;5076.2;no
+44;unemployed;single;basic.4y;no;yes;no;telephone;jun;tue;55;2;999;0;nonexistent;-2.9;92.963;-40.8;1.252;5076.2;no
+25;technician;married;professional.course;no;yes;no;cellular;jun;tue;551;4;999;1;failure;-2.9;92.963;-40.8;1.252;5076.2;yes
+24;admin.;single;university.degree;no;yes;no;cellular;jun;wed;65;3;999;1;failure;-2.9;92.963;-40.8;1.244;5076.2;no
+32;admin.;single;university.degree;no;yes;yes;cellular;jun;wed;49;2;999;1;failure;-2.9;92.963;-40.8;1.244;5076.2;no
+26;self-employed;single;university.degree;no;yes;no;cellular;jun;wed;181;2;999;0;nonexistent;-2.9;92.963;-40.8;1.244;5076.2;no
+40;self-employed;single;university.degree;no;no;yes;cellular;jun;wed;54;4;999;0;nonexistent;-2.9;92.963;-40.8;1.244;5076.2;no
+29;unemployed;single;basic.4y;no;no;yes;cellular;jun;wed;243;3;3;2;success;-2.9;92.963;-40.8;1.244;5076.2;yes
+28;student;single;unknown;no;no;no;cellular;jun;wed;208;4;999;0;nonexistent;-2.9;92.963;-40.8;1.244;5076.2;no
+24;admin.;single;university.degree;no;yes;no;cellular;jun;wed;151;7;999;1;failure;-2.9;92.963;-40.8;1.244;5076.2;no
+32;services;married;professional.course;no;no;no;cellular;jun;wed;94;6;999;0;nonexistent;-2.9;92.963;-40.8;1.244;5076.2;no
+34;admin.;married;university.degree;no;no;no;telephone;jun;wed;84;4;999;0;nonexistent;-2.9;92.963;-40.8;1.244;5076.2;no
+25;student;single;university.degree;no;yes;yes;cellular;jun;thu;393;2;999;0;nonexistent;-2.9;92.963;-40.8;1.235;5076.2;yes
+56;self-employed;married;university.degree;no;yes;no;telephone;jun;thu;390;15;999;0;nonexistent;-2.9;92.963;-40.8;1.235;5076.2;no
+29;admin.;single;university.degree;no;no;yes;cellular;jun;thu;813;4;999;0;nonexistent;-2.9;92.963;-40.8;1.235;5076.2;yes
+56;self-employed;married;university.degree;no;yes;no;cellular;jun;thu;88;3;999;0;nonexistent;-2.9;92.963;-40.8;1.235;5076.2;no
+56;self-employed;married;university.degree;no;no;no;cellular;jun;thu;754;3;999;0;nonexistent;-2.9;92.963;-40.8;1.235;5076.2;no
+53;admin.;married;university.degree;no;no;yes;telephone;jun;thu;1603;10;999;0;nonexistent;-2.9;92.963;-40.8;1.235;5076.2;yes
+27;entrepreneur;single;university.degree;no;no;no;cellular;jun;thu;133;2;999;1;failure;-2.9;92.963;-40.8;1.235;5076.2;no
+49;admin.;married;university.degree;no;no;no;cellular;jun;thu;259;2;999;0;nonexistent;-2.9;92.963;-40.8;1.235;5076.2;yes
+25;student;single;university.degree;no;no;yes;telephone;jun;thu;280;6;999;1;failure;-2.9;92.963;-40.8;1.235;5076.2;yes
+32;technician;married;high.school;no;no;yes;cellular;jun;fri;112;4;999;1;failure;-2.9;92.963;-40.8;1.224;5076.2;no
+47;technician;married;professional.course;no;yes;no;cellular;jun;fri;63;5;999;1;failure;-2.9;92.963;-40.8;1.224;5076.2;no
+32;technician;married;high.school;no;yes;no;telephone;jun;fri;293;5;999;1;failure;-2.9;92.963;-40.8;1.224;5076.2;yes
+39;student;single;unknown;no;yes;no;cellular;jun;fri;474;3;999;0;nonexistent;-2.9;92.963;-40.8;1.224;5076.2;yes
+31;technician;single;university.degree;no;yes;yes;cellular;jun;fri;241;5;999;0;nonexistent;-2.9;92.963;-40.8;1.224;5076.2;no
+38;services;married;basic.9y;no;no;no;cellular;jun;fri;140;2;999;0;nonexistent;-2.9;92.963;-40.8;1.224;5076.2;no
+38;services;married;basic.9y;no;no;yes;telephone;jun;fri;177;2;999;0;nonexistent;-2.9;92.963;-40.8;1.224;5076.2;no
+40;management;married;university.degree;no;yes;no;cellular;jun;mon;295;3;999;0;nonexistent;-2.9;92.963;-40.8;1.215;5076.2;yes
+25;admin.;married;university.degree;no;yes;no;cellular;jun;mon;457;3;999;0;nonexistent;-2.9;92.963;-40.8;1.215;5076.2;no
+55;admin.;married;high.school;no;yes;no;cellular;jun;mon;177;5;999;1;failure;-2.9;92.963;-40.8;1.215;5076.2;no
+58;retired;married;professional.course;no;yes;yes;telephone;jun;mon;100;2;999;0;nonexistent;-2.9;92.963;-40.8;1.215;5076.2;no
+48;admin.;married;university.degree;no;yes;no;cellular;jun;mon;136;1;999;1;failure;-2.9;92.963;-40.8;1.215;5076.2;no
+60;retired;divorced;basic.4y;no;no;no;cellular;jun;mon;111;5;999;0;nonexistent;-2.9;92.963;-40.8;1.215;5076.2;no
+55;blue-collar;married;basic.9y;no;no;no;cellular;jun;mon;271;2;999;0;nonexistent;-2.9;92.963;-40.8;1.215;5076.2;no
+47;housemaid;single;professional.course;no;yes;no;cellular;jun;mon;67;1;3;1;success;-2.9;92.963;-40.8;1.215;5076.2;no
+40;blue-collar;married;professional.course;no;no;no;telephone;jun;mon;883;1;999;1;failure;-2.9;92.963;-40.8;1.215;5076.2;yes
+53;admin.;married;university.degree;no;no;yes;cellular;jun;mon;115;1;999;0;nonexistent;-2.9;92.963;-40.8;1.215;5076.2;no
+50;admin.;married;university.degree;no;no;no;cellular;jun;mon;269;1;3;1;success;-2.9;92.963;-40.8;1.215;5076.2;yes
+42;admin.;single;university.degree;no;yes;no;cellular;jun;mon;570;3;999;0;nonexistent;-2.9;92.963;-40.8;1.215;5076.2;no
+41;technician;divorced;university.degree;no;no;no;cellular;jun;mon;238;1;999;0;nonexistent;-2.9;92.963;-40.8;1.215;5076.2;no
+32;technician;single;professional.course;no;no;no;cellular;jun;mon;524;1;999;0;nonexistent;-2.9;92.963;-40.8;1.215;5076.2;no
+32;technician;single;professional.course;no;yes;yes;cellular;jun;mon;187;1;999;0;nonexistent;-2.9;92.963;-40.8;1.215;5076.2;no
+49;technician;single;professional.course;no;yes;no;cellular;jun;mon;68;1;3;1;success;-2.9;92.963;-40.8;1.215;5076.2;no
+45;admin.;married;basic.9y;no;yes;no;telephone;jun;mon;60;2;999;0;nonexistent;-2.9;92.963;-40.8;1.215;5076.2;no
+39;admin.;married;university.degree;no;no;no;cellular;jun;mon;208;1;999;0;nonexistent;-2.9;92.963;-40.8;1.215;5076.2;no
+39;admin.;married;university.degree;no;no;no;cellular;jun;mon;459;1;999;1;failure;-2.9;92.963;-40.8;1.215;5076.2;yes
+51;admin.;married;university.degree;no;no;no;telephone;jun;mon;295;3;999;0;nonexistent;-2.9;92.963;-40.8;1.215;5076.2;no
+24;student;single;unknown;no;yes;yes;cellular;jun;tue;124;1;999;1;failure;-2.9;92.963;-40.8;1.206;5076.2;no
+36;admin.;single;high.school;no;yes;no;cellular;jun;tue;248;1;999;1;failure;-2.9;92.963;-40.8;1.206;5076.2;no
+45;technician;married;professional.course;no;yes;yes;cellular;jun;tue;191;1;999;0;nonexistent;-2.9;92.963;-40.8;1.206;5076.2;no
+30;student;single;unknown;no;no;no;cellular;jun;tue;205;3;999;0;nonexistent;-2.9;92.963;-40.8;1.206;5076.2;no
+36;services;married;university.degree;no;no;yes;cellular;jun;tue;255;2;3;1;success;-2.9;92.963;-40.8;1.206;5076.2;yes
+47;blue-collar;married;professional.course;no;no;yes;cellular;jun;tue;971;2;999;0;nonexistent;-2.9;92.963;-40.8;1.206;5076.2;no
+45;self-employed;single;basic.9y;no;yes;no;cellular;jun;tue;201;1;999;0;nonexistent;-2.9;92.963;-40.8;1.206;5076.2;no
+24;technician;single;professional.course;no;no;no;cellular;jun;tue;227;1;4;1;success;-2.9;92.963;-40.8;1.206;5076.2;yes
+47;admin.;married;university.degree;no;yes;yes;cellular;jun;tue;140;1;999;0;nonexistent;-2.9;92.963;-40.8;1.206;5076.2;no
+38;technician;single;university.degree;no;yes;no;cellular;jun;tue;128;1;999;0;nonexistent;-2.9;92.963;-40.8;1.099;5076.2;no
+45;technician;divorced;university.degree;no;no;no;cellular;jun;tue;224;1;999;0;nonexistent;-2.9;92.963;-40.8;1.099;5076.2;no
+42;services;married;university.degree;no;unknown;unknown;cellular;jun;tue;122;1;999;1;failure;-2.9;92.963;-40.8;1.099;5076.2;no
+37;entrepreneur;married;university.degree;no;yes;no;cellular;jun;tue;108;1;999;0;nonexistent;-2.9;92.963;-40.8;1.099;5076.2;no
+38;admin.;single;university.degree;no;no;no;cellular;jun;tue;103;1;999;0;nonexistent;-2.9;92.963;-40.8;1.099;5076.2;no
+38;admin.;single;university.degree;no;yes;no;telephone;jun;tue;42;1;999;0;nonexistent;-2.9;92.963;-40.8;1.099;5076.2;no
+36;entrepreneur;single;basic.4y;no;no;no;cellular;jun;tue;185;1;999;0;nonexistent;-2.9;92.963;-40.8;1.099;5076.2;yes
+36;entrepreneur;single;basic.4y;no;no;no;cellular;jun;tue;166;1;999;0;nonexistent;-2.9;92.963;-40.8;1.099;5076.2;no
+31;blue-collar;single;high.school;no;yes;no;cellular;jun;tue;160;1;999;0;nonexistent;-2.9;92.963;-40.8;1.099;5076.2;no
+64;management;married;university.degree;no;no;no;cellular;jun;tue;205;1;999;0;nonexistent;-2.9;92.963;-40.8;1.099;5076.2;yes
+33;housemaid;married;university.degree;no;no;no;cellular;jun;tue;224;1;999;0;nonexistent;-2.9;92.963;-40.8;1.099;5076.2;yes
+50;admin.;married;high.school;no;no;no;cellular;jul;wed;140;3;999;0;nonexistent;-2.9;92.469;-33.6;1.085;5076.2;yes
+51;retired;married;basic.4y;no;no;no;cellular;jul;wed;1057;1;13;1;success;-2.9;92.469;-33.6;1.085;5076.2;no
+56;management;married;professional.course;no;no;no;cellular;jul;wed;291;2;999;0;nonexistent;-2.9;92.469;-33.6;1.085;5076.2;no
+59;admin.;married;university.degree;no;yes;yes;cellular;jul;wed;92;1;999;0;nonexistent;-2.9;92.469;-33.6;1.085;5076.2;no
+55;management;married;university.degree;no;no;yes;cellular;jul;wed;260;2;3;1;success;-2.9;92.469;-33.6;1.085;5076.2;yes
+51;admin.;single;high.school;no;yes;no;telephone;jul;wed;372;1;999;0;nonexistent;-2.9;92.469;-33.6;1.085;5076.2;yes
+61;admin.;married;university.degree;no;yes;yes;telephone;jul;wed;261;4;999;0;nonexistent;-2.9;92.469;-33.6;1.085;5076.2;yes
+24;self-employed;single;unknown;no;no;yes;cellular;jul;thu;342;2;999;0;nonexistent;-2.9;92.469;-33.6;1.072;5076.2;yes
+51;housemaid;married;basic.4y;no;yes;yes;cellular;jul;thu;97;1;999;1;failure;-2.9;92.469;-33.6;1.072;5076.2;no
+34;admin.;married;university.degree;no;yes;no;telephone;jul;thu;248;3;999;0;nonexistent;-2.9;92.469;-33.6;1.072;5076.2;no
+45;admin.;married;university.degree;no;no;no;cellular;jul;thu;74;1;999;0;nonexistent;-2.9;92.469;-33.6;1.072;5076.2;no
+45;admin.;married;university.degree;no;no;no;cellular;jul;thu;252;1;999;0;nonexistent;-2.9;92.469;-33.6;1.072;5076.2;yes
+45;admin.;married;university.degree;no;no;no;cellular;jul;thu;252;1;999;0;nonexistent;-2.9;92.469;-33.6;1.072;5076.2;yes
+50;admin.;married;university.degree;no;no;no;cellular;jul;thu;356;1;999;0;nonexistent;-2.9;92.469;-33.6;1.072;5076.2;yes
+60;admin.;married;university.degree;no;yes;no;telephone;jul;thu;363;1;999;0;nonexistent;-2.9;92.469;-33.6;1.072;5076.2;yes
+59;blue-collar;divorced;basic.4y;no;yes;no;cellular;jul;thu;218;1;999;0;nonexistent;-2.9;92.469;-33.6;1.072;5076.2;yes
+59;blue-collar;divorced;basic.4y;no;no;no;cellular;jul;thu;367;1;999;0;nonexistent;-2.9;92.469;-33.6;1.072;5076.2;yes
+58;retired;married;professional.course;no;no;yes;cellular;jul;thu;82;1;3;1;success;-2.9;92.469;-33.6;1.072;5076.2;no
+63;retired;divorced;university.degree;no;yes;yes;cellular;jul;thu;146;1;999;1;failure;-2.9;92.469;-33.6;1.072;5076.2;no
+51;technician;married;professional.course;no;no;no;cellular;jul;thu;566;1;13;1;success;-2.9;92.469;-33.6;1.072;5076.2;yes
+46;admin.;single;university.degree;no;yes;no;cellular;jul;thu;309;1;999;0;nonexistent;-2.9;92.469;-33.6;1.072;5076.2;yes
+46;entrepreneur;married;university.degree;no;yes;no;cellular;jul;thu;396;1;999;0;nonexistent;-2.9;92.469;-33.6;1.072;5076.2;yes
+43;technician;single;university.degree;no;no;no;cellular;jul;thu;109;1;999;0;nonexistent;-2.9;92.469;-33.6;1.072;5076.2;no
+51;technician;married;university.degree;no;yes;no;cellular;jul;thu;226;1;999;0;nonexistent;-2.9;92.469;-33.6;1.072;5076.2;no
+54;management;married;unknown;no;yes;no;cellular;jul;thu;154;1;999;1;failure;-2.9;92.469;-33.6;1.072;5076.2;no
+56;entrepreneur;married;unknown;no;yes;no;cellular;jul;thu;129;1;999;0;nonexistent;-2.9;92.469;-33.6;1.072;5076.2;no
+63;retired;divorced;university.degree;no;no;yes;cellular;jul;thu;317;1;999;1;failure;-2.9;92.469;-33.6;1.072;5076.2;no
+60;housemaid;married;basic.4y;no;yes;no;cellular;jul;thu;229;1;999;0;nonexistent;-2.9;92.469;-33.6;1.072;5076.2;no
+38;technician;single;university.degree;no;yes;no;cellular;jul;thu;98;1;999;0;nonexistent;-2.9;92.469;-33.6;1.072;5076.2;no
+47;housemaid;married;basic.6y;unknown;no;yes;cellular;jul;thu;148;1;999;0;nonexistent;-2.9;92.469;-33.6;1.072;5076.2;no
+58;technician;married;university.degree;unknown;yes;no;cellular;jul;thu;160;1;999;0;nonexistent;-2.9;92.469;-33.6;1.072;5076.2;no
+32;self-employed;single;university.degree;no;no;no;cellular;jul;thu;590;1;999;2;failure;-2.9;92.469;-33.6;1.072;5076.2;no
+32;self-employed;single;university.degree;no;yes;no;cellular;jul;thu;940;1;14;1;success;-2.9;92.469;-33.6;1.072;5076.2;yes
+36;unemployed;married;basic.9y;no;no;no;cellular;jul;thu;153;1;999;0;nonexistent;-2.9;92.469;-33.6;1.072;5076.2;no
+29;technician;married;professional.course;no;no;no;cellular;jul;thu;86;2;999;1;failure;-2.9;92.469;-33.6;1.072;5076.2;no
+56;entrepreneur;married;unknown;no;yes;no;cellular;jul;thu;478;2;999;0;nonexistent;-2.9;92.469;-33.6;1.072;5076.2;yes
+32;self-employed;single;university.degree;no;no;no;cellular;jul;thu;276;2;999;0;nonexistent;-2.9;92.469;-33.6;1.072;5076.2;yes
+50;admin.;married;university.degree;no;yes;no;cellular;jul;thu;567;5;999;0;nonexistent;-2.9;92.469;-33.6;1.072;5076.2;yes
+60;housemaid;married;basic.4y;no;yes;no;cellular;jul;thu;503;2;5;2;success;-2.9;92.469;-33.6;1.072;5076.2;yes
+51;technician;married;professional.course;no;yes;no;cellular;jul;thu;135;2;999;1;failure;-2.9;92.469;-33.6;1.072;5076.2;yes
+46;admin.;divorced;high.school;no;yes;no;telephone;jul;thu;176;1;999;0;nonexistent;-2.9;92.469;-33.6;1.072;5076.2;yes
+57;retired;divorced;basic.9y;no;yes;no;cellular;jul;fri;247;2;999;0;nonexistent;-2.9;92.469;-33.6;1.059;5076.2;yes
+56;admin.;divorced;unknown;no;yes;no;telephone;jul;fri;353;2;999;0;nonexistent;-2.9;92.469;-33.6;1.059;5076.2;yes
+21;unemployed;single;high.school;no;yes;no;cellular;jul;fri;203;1;999;0;nonexistent;-2.9;92.469;-33.6;1.059;5076.2;yes
+29;admin.;single;high.school;no;no;no;cellular;jul;fri;446;1;999;0;nonexistent;-2.9;92.469;-33.6;1.059;5076.2;yes
+36;admin.;married;high.school;no;yes;no;cellular;jul;fri;122;1;999;1;failure;-2.9;92.469;-33.6;1.059;5076.2;no
+47;blue-collar;married;professional.course;no;yes;no;cellular;jul;fri;175;1;999;0;nonexistent;-2.9;92.469;-33.6;1.059;5076.2;yes
+29;technician;single;university.degree;no;no;no;cellular;jul;fri;1007;6;999;0;nonexistent;-2.9;92.469;-33.6;1.059;5076.2;yes
+57;unknown;married;basic.6y;no;no;no;cellular;jul;fri;64;1;999;0;nonexistent;-2.9;92.469;-33.6;1.059;5076.2;no
+48;admin.;divorced;university.degree;no;yes;no;cellular;jul;fri;409;2;999;0;nonexistent;-2.9;92.469;-33.6;1.059;5076.2;yes
+35;admin.;single;high.school;no;yes;no;cellular;jul;fri;147;2;14;2;failure;-2.9;92.469;-33.6;1.059;5076.2;no
+56;retired;married;high.school;no;yes;no;cellular;jul;fri;603;1;999;0;nonexistent;-2.9;92.469;-33.6;1.059;5076.2;no
+30;admin.;married;university.degree;no;no;no;cellular;jul;fri;438;2;999;0;nonexistent;-2.9;92.469;-33.6;1.059;5076.2;yes
+57;retired;divorced;basic.9y;no;no;no;cellular;jul;fri;897;3;999;0;nonexistent;-2.9;92.469;-33.6;1.059;5076.2;no
+53;technician;married;high.school;no;yes;no;cellular;jul;fri;531;3;999;0;nonexistent;-2.9;92.469;-33.6;1.059;5076.2;no
+33;admin.;single;university.degree;no;no;no;cellular;jul;fri;704;1;999;0;nonexistent;-2.9;92.469;-33.6;1.059;5076.2;yes
+29;technician;single;university.degree;no;yes;no;cellular;jul;fri;473;1;999;0;nonexistent;-2.9;92.469;-33.6;1.059;5076.2;no
+47;technician;married;professional.course;no;no;no;telephone;jul;fri;320;2;999;0;nonexistent;-2.9;92.469;-33.6;1.059;5076.2;no
+28;admin.;single;university.degree;no;yes;no;cellular;jul;fri;67;2;999;0;nonexistent;-2.9;92.469;-33.6;1.059;5076.2;no
+75;retired;married;basic.4y;no;yes;yes;cellular;jul;fri;67;2;999;0;nonexistent;-2.9;92.469;-33.6;1.059;5076.2;no
+58;admin.;married;high.school;no;yes;no;cellular;jul;fri;318;4;999;1;failure;-2.9;92.469;-33.6;1.059;5076.2;no
+34;admin.;married;high.school;no;no;no;cellular;jul;fri;59;7;999;0;nonexistent;-2.9;92.469;-33.6;1.059;5076.2;no
+35;technician;married;university.degree;no;yes;no;cellular;jul;fri;236;2;999;0;nonexistent;-2.9;92.469;-33.6;1.059;5076.2;no
+56;retired;married;high.school;no;yes;yes;cellular;jul;fri;308;2;999;0;nonexistent;-2.9;92.469;-33.6;1.059;5076.2;yes
+46;admin.;single;university.degree;no;yes;no;cellular;jul;mon;413;5;999;0;nonexistent;-2.9;92.469;-33.6;1.048;5076.2;no
+43;entrepreneur;single;unknown;no;no;no;cellular;jul;mon;96;3;999;1;failure;-2.9;92.469;-33.6;1.048;5076.2;no
+31;admin.;single;university.degree;no;yes;no;cellular;jul;mon;202;4;999;0;nonexistent;-2.9;92.469;-33.6;1.048;5076.2;yes
+25;student;single;unknown;no;no;no;telephone;jul;mon;116;3;999;0;nonexistent;-2.9;92.469;-33.6;1.048;5076.2;no
+30;admin.;single;university.degree;no;no;yes;cellular;jul;mon;207;2;999;0;nonexistent;-2.9;92.469;-33.6;1.048;5076.2;no
+23;student;single;high.school;no;no;no;cellular;jul;mon;270;3;999;0;nonexistent;-2.9;92.469;-33.6;1.048;5076.2;yes
+37;admin.;married;university.degree;no;yes;no;cellular;jul;mon;227;2;999;0;nonexistent;-2.9;92.469;-33.6;1.048;5076.2;yes
+28;services;single;university.degree;no;yes;no;cellular;jul;mon;316;4;999;0;nonexistent;-2.9;92.469;-33.6;1.048;5076.2;yes
+53;admin.;married;high.school;no;no;no;cellular;jul;tue;964;1;999;1;failure;-2.9;92.469;-33.6;1.044;5076.2;yes
+33;management;married;university.degree;no;yes;no;cellular;jul;tue;429;1;999;0;nonexistent;-2.9;92.469;-33.6;1.044;5076.2;yes
+41;admin.;married;university.degree;no;yes;no;cellular;jul;tue;826;1;999;1;failure;-2.9;92.469;-33.6;1.044;5076.2;no
+38;admin.;married;university.degree;no;yes;no;cellular;jul;tue;422;1;999;0;nonexistent;-2.9;92.469;-33.6;1.044;5076.2;no
+42;admin.;divorced;university.degree;no;no;no;cellular;jul;tue;94;1;999;0;nonexistent;-2.9;92.469;-33.6;1.044;5076.2;no
+37;admin.;married;high.school;no;no;no;cellular;jul;tue;106;1;999;0;nonexistent;-2.9;92.469;-33.6;1.044;5076.2;no
+25;student;single;unknown;unknown;yes;no;cellular;jul;tue;371;1;999;0;nonexistent;-2.9;92.469;-33.6;1.044;5076.2;yes
+50;admin.;married;high.school;no;yes;no;cellular;jul;tue;98;2;999;1;failure;-2.9;92.469;-33.6;1.044;5076.2;no
+46;admin.;divorced;high.school;no;unknown;unknown;cellular;jul;tue;297;1;999;0;nonexistent;-2.9;92.469;-33.6;1.044;5076.2;yes
+30;self-employed;single;university.degree;no;yes;no;cellular;jul;tue;185;1;999;0;nonexistent;-2.9;92.469;-33.6;1.044;5076.2;no
+26;services;single;high.school;no;yes;no;cellular;jul;tue;407;1;13;1;success;-2.9;92.469;-33.6;1.044;5076.2;yes
+31;services;single;university.degree;no;no;no;telephone;jul;tue;82;2;999;1;failure;-2.9;92.469;-33.6;1.044;5076.2;no
+25;student;single;high.school;no;yes;no;cellular;jul;tue;112;1;999;1;failure;-2.9;92.469;-33.6;1.044;5076.2;no
+29;unemployed;single;university.degree;no;yes;no;cellular;jul;tue;611;1;999;0;nonexistent;-2.9;92.469;-33.6;1.044;5076.2;no
+26;unemployed;single;high.school;no;yes;no;cellular;jul;tue;445;1;999;0;nonexistent;-2.9;92.469;-33.6;1.044;5076.2;no
+23;student;single;high.school;no;yes;no;cellular;jul;tue;682;2;13;1;success;-2.9;92.469;-33.6;1.044;5076.2;yes
+26;services;single;high.school;no;no;no;cellular;jul;tue;180;2;999;0;nonexistent;-2.9;92.469;-33.6;1.044;5076.2;yes
+46;admin.;divorced;high.school;no;no;no;cellular;jul;tue;282;1;999;0;nonexistent;-2.9;92.469;-33.6;1.044;5076.2;no
+45;technician;married;high.school;no;no;no;cellular;jul;tue;58;1;999;0;nonexistent;-2.9;92.469;-33.6;1.044;5076.2;no
+26;services;single;high.school;no;yes;no;cellular;jul;tue;98;1;999;0;nonexistent;-2.9;92.469;-33.6;1.044;5076.2;no
+23;student;single;high.school;no;no;no;cellular;jul;tue;370;1;999;1;failure;-2.9;92.469;-33.6;1.044;5076.2;yes
+42;blue-collar;married;high.school;no;yes;no;cellular;jul;tue;148;1;999;0;nonexistent;-2.9;92.469;-33.6;1.044;5076.2;no
+31;technician;married;university.degree;no;no;no;cellular;jul;tue;404;1;999;0;nonexistent;-2.9;92.469;-33.6;1.044;5076.2;no
+38;technician;single;university.degree;no;yes;no;cellular;jul;tue;321;1;999;0;nonexistent;-2.9;92.469;-33.6;1.044;5076.2;no
+26;student;single;high.school;no;yes;no;cellular;jul;tue;432;1;999;0;nonexistent;-2.9;92.469;-33.6;1.044;5076.2;no
+27;admin.;single;unknown;no;yes;no;telephone;jul;tue;876;1;999;0;nonexistent;-2.9;92.469;-33.6;1.044;5076.2;yes
+25;student;single;unknown;no;no;no;cellular;jul;tue;170;1;999;0;nonexistent;-2.9;92.469;-33.6;1.044;5076.2;no
+33;admin.;married;high.school;no;no;no;telephone;jul;tue;257;1;999;0;nonexistent;-2.9;92.469;-33.6;1.044;5076.2;yes
+27;admin.;single;university.degree;no;no;no;cellular;jul;tue;207;1;999;0;nonexistent;-2.9;92.469;-33.6;1.044;5076.2;no
+40;admin.;married;university.degree;no;yes;no;cellular;jul;tue;243;1;999;0;nonexistent;-2.9;92.469;-33.6;1.044;5076.2;yes
+44;technician;single;professional.course;no;yes;no;cellular;jul;tue;112;2;999;0;nonexistent;-2.9;92.469;-33.6;1.044;5076.2;no
+31;admin.;single;high.school;no;yes;no;cellular;jul;wed;167;1;999;1;failure;-2.9;92.469;-33.6;1.029;5076.2;yes
+42;technician;married;university.degree;no;no;no;cellular;jul;wed;361;1;999;1;failure;-2.9;92.469;-33.6;1.029;5076.2;yes
+47;management;married;university.degree;no;yes;no;cellular;jul;wed;123;1;999;0;nonexistent;-2.9;92.469;-33.6;1.029;5076.2;no
+42;admin.;single;university.degree;no;no;no;cellular;jul;wed;268;2;999;0;nonexistent;-2.9;92.469;-33.6;1.029;5076.2;yes
+29;technician;married;university.degree;no;yes;no;cellular;jul;wed;896;2;999;0;nonexistent;-2.9;92.469;-33.6;1.029;5076.2;yes
+68;retired;married;basic.4y;no;yes;no;cellular;jul;wed;665;1;999;0;nonexistent;-2.9;92.469;-33.6;1.029;5076.2;no
+50;technician;married;professional.course;no;no;no;cellular;jul;wed;87;1;999;0;nonexistent;-2.9;92.469;-33.6;1.029;5076.2;no
+45;admin.;married;university.degree;no;no;no;cellular;jul;wed;194;1;13;1;success;-2.9;92.469;-33.6;1.029;5076.2;no
+24;student;single;high.school;no;no;no;cellular;jul;wed;115;1;999;1;failure;-2.9;92.469;-33.6;1.029;5076.2;no
+41;admin.;married;university.degree;no;yes;no;cellular;jul;wed;181;1;999;1;failure;-2.9;92.469;-33.6;1.029;5076.2;no
+44;technician;married;professional.course;no;yes;no;cellular;jul;wed;188;2;999;0;nonexistent;-2.9;92.469;-33.6;1.029;5076.2;no
+20;student;single;high.school;no;no;no;cellular;jul;wed;625;1;999;1;failure;-2.9;92.469;-33.6;1.029;5076.2;no
+45;admin.;married;university.degree;no;yes;no;cellular;jul;wed;106;1;999;0;nonexistent;-2.9;92.469;-33.6;1.029;5076.2;no
+20;student;single;high.school;no;no;no;cellular;jul;wed;74;1;999;0;nonexistent;-2.9;92.469;-33.6;1.029;5076.2;no
+20;student;single;high.school;no;yes;no;cellular;jul;wed;349;1;999;0;nonexistent;-2.9;92.469;-33.6;1.029;5076.2;yes
+28;unemployed;single;university.degree;no;unknown;unknown;telephone;jul;wed;167;1;999;0;nonexistent;-2.9;92.469;-33.6;1.029;5076.2;no
+36;technician;single;high.school;no;yes;no;cellular;jul;wed;243;1;999;1;failure;-2.9;92.469;-33.6;1.029;5076.2;no
+69;services;married;unknown;no;no;no;telephone;jul;wed;396;2;999;0;nonexistent;-2.9;92.469;-33.6;1.029;5076.2;no
+30;self-employed;single;university.degree;no;yes;no;cellular;jul;wed;90;3;999;0;nonexistent;-2.9;92.469;-33.6;1.029;5076.2;no
+44;blue-collar;single;unknown;no;yes;no;telephone;jul;wed;576;1;999;0;nonexistent;-2.9;92.469;-33.6;1.029;5076.2;yes
+43;admin.;divorced;university.degree;no;no;no;cellular;jul;wed;281;1;999;0;nonexistent;-2.9;92.469;-33.6;1.029;5076.2;no
+42;blue-collar;married;basic.6y;no;yes;no;cellular;jul;wed;72;1;999;0;nonexistent;-2.9;92.469;-33.6;1.029;5076.2;no
+42;admin.;single;university.degree;no;yes;yes;cellular;jul;wed;122;1;999;0;nonexistent;-2.9;92.469;-33.6;1.029;5076.2;no
+32;admin.;single;professional.course;no;yes;no;cellular;jul;wed;72;1;999;0;nonexistent;-2.9;92.469;-33.6;1.029;5076.2;no
+27;student;single;high.school;no;no;yes;cellular;jul;wed;537;2;999;1;failure;-2.9;92.469;-33.6;1.029;5076.2;no
+42;technician;married;university.degree;no;no;yes;cellular;jul;wed;430;2;999;0;nonexistent;-2.9;92.469;-33.6;1.029;5076.2;no
+32;admin.;single;university.degree;no;yes;no;cellular;jul;wed;210;5;999;0;nonexistent;-2.9;92.469;-33.6;1.029;5076.2;yes
+59;admin.;married;high.school;no;yes;no;cellular;jul;wed;286;2;999;0;nonexistent;-2.9;92.469;-33.6;1.029;5076.2;no
+40;technician;married;high.school;no;yes;no;cellular;jul;wed;475;3;3;1;success;-2.9;92.469;-33.6;1.029;5076.2;no
+26;admin.;single;university.degree;no;yes;no;cellular;jul;wed;153;1;999;0;nonexistent;-2.9;92.469;-33.6;1.029;5076.2;yes
+36;technician;married;professional.course;no;yes;no;cellular;jul;wed;182;3;999;0;nonexistent;-2.9;92.469;-33.6;1.029;5076.2;no
+32;admin.;single;university.degree;no;yes;no;cellular;jul;wed;97;3;999;0;nonexistent;-2.9;92.469;-33.6;1.029;5076.2;yes
+38;admin.;married;high.school;no;yes;yes;telephone;jul;wed;64;3;999;0;nonexistent;-2.9;92.469;-33.6;1.029;5076.2;no
+29;student;single;high.school;no;yes;no;cellular;jul;thu;253;2;999;0;nonexistent;-2.9;92.469;-33.6;1.018;5076.2;yes
+33;technician;single;university.degree;no;yes;no;cellular;jul;thu;359;2;999;0;nonexistent;-2.9;92.469;-33.6;1.018;5076.2;no
+32;admin.;single;university.degree;no;yes;no;cellular;jul;thu;315;4;999;0;nonexistent;-2.9;92.469;-33.6;1.018;5076.2;no
+23;blue-collar;single;high.school;no;no;no;cellular;jul;fri;104;2;999;0;nonexistent;-2.9;92.469;-33.6;1.007;5076.2;yes
+32;admin.;single;university.degree;no;yes;no;telephone;jul;fri;123;4;999;0;nonexistent;-2.9;92.469;-33.6;1.007;5076.2;no
+23;technician;single;professional.course;no;yes;no;telephone;jul;fri;336;4;999;0;nonexistent;-2.9;92.469;-33.6;1.007;5076.2;yes
+29;technician;single;unknown;no;yes;yes;cellular;jul;mon;326;3;999;0;nonexistent;-2.9;92.469;-33.6;0.996;5076.2;no
+51;management;divorced;university.degree;no;yes;no;telephone;jul;wed;219;2;999;0;nonexistent;-2.9;92.469;-33.6;0.979;5076.2;no
+26;admin.;single;university.degree;no;yes;no;cellular;jul;wed;226;2;999;0;nonexistent;-2.9;92.469;-33.6;0.979;5076.2;no
+51;management;divorced;university.degree;no;no;no;cellular;jul;wed;166;7;999;1;failure;-2.9;92.469;-33.6;0.979;5076.2;no
+45;admin.;married;university.degree;no;yes;no;telephone;jul;thu;58;3;999;0;nonexistent;-2.9;92.469;-33.6;0.969;5076.2;no
+27;management;single;university.degree;no;yes;no;cellular;jul;mon;125;2;999;0;nonexistent;-2.9;92.469;-33.6;0.944;5076.2;yes
+37;services;married;high.school;no;yes;no;cellular;jul;mon;91;2;999;0;nonexistent;-2.9;92.469;-33.6;0.944;5076.2;no
+27;technician;single;university.degree;no;yes;no;cellular;jul;mon;258;3;999;0;nonexistent;-2.9;92.469;-33.6;0.944;5076.2;no
+36;admin.;married;high.school;no;yes;no;telephone;jul;tue;305;7;999;0;nonexistent;-2.9;92.469;-33.6;0.937;5076.2;no
+53;management;married;unknown;no;yes;yes;telephone;jul;tue;465;6;999;0;nonexistent;-2.9;92.469;-33.6;0.937;5076.2;no
+35;entrepreneur;married;high.school;no;no;no;cellular;jul;wed;1084;4;999;0;nonexistent;-2.9;92.469;-33.6;0.933;5076.2;yes
+33;admin.;divorced;university.degree;no;no;yes;cellular;jul;thu;106;3;999;0;nonexistent;-2.9;92.469;-33.6;0.927;5076.2;no
+27;student;single;high.school;no;no;no;cellular;jul;thu;64;3;999;0;nonexistent;-2.9;92.469;-33.6;0.927;5076.2;no
+51;admin.;married;university.degree;no;yes;no;cellular;jul;fri;139;5;999;0;nonexistent;-2.9;92.469;-33.6;0.921;5076.2;yes
+51;admin.;married;university.degree;no;unknown;unknown;telephone;jul;fri;116;3;999;0;nonexistent;-2.9;92.469;-33.6;0.921;5076.2;no
+50;self-employed;married;unknown;no;unknown;unknown;cellular;jul;mon;506;2;999;0;nonexistent;-2.9;92.469;-33.6;0.914;5076.2;no
+38;admin.;single;university.degree;no;yes;no;telephone;jul;mon;195;2;999;0;nonexistent;-2.9;92.469;-33.6;0.914;5076.2;no
+38;admin.;single;university.degree;no;yes;no;cellular;jul;mon;82;2;999;0;nonexistent;-2.9;92.469;-33.6;0.914;5076.2;no
+26;technician;single;university.degree;no;yes;yes;cellular;jul;tue;105;2;999;0;nonexistent;-2.9;92.469;-33.6;0.908;5076.2;no
+30;student;single;university.degree;no;no;no;cellular;jul;tue;332;2;13;2;failure;-2.9;92.469;-33.6;0.908;5076.2;yes
+44;admin.;divorced;high.school;no;no;yes;cellular;jul;tue;132;4;999;0;nonexistent;-2.9;92.469;-33.6;0.908;5076.2;no
+23;student;single;basic.9y;no;no;no;cellular;jul;tue;73;6;999;0;nonexistent;-2.9;92.469;-33.6;0.908;5076.2;no
+54;admin.;married;university.degree;no;no;yes;cellular;jul;tue;822;6;13;1;success;-2.9;92.469;-33.6;0.908;5076.2;yes
+34;admin.;married;university.degree;no;no;yes;cellular;jul;tue;51;4;999;1;failure;-2.9;92.469;-33.6;0.908;5076.2;no
+26;admin.;single;university.degree;no;no;yes;cellular;jul;tue;148;4;999;0;nonexistent;-2.9;92.469;-33.6;0.908;5076.2;no
+54;admin.;married;university.degree;no;yes;no;cellular;jul;tue;72;2;999;1;failure;-2.9;92.469;-33.6;0.908;5076.2;no
+26;technician;single;university.degree;no;no;yes;cellular;jul;tue;67;5;999;1;failure;-2.9;92.469;-33.6;0.908;5076.2;no
+27;admin.;married;university.degree;no;no;yes;cellular;jul;tue;99;6;999;1;failure;-2.9;92.469;-33.6;0.908;5076.2;yes
+38;management;married;university.degree;no;no;no;cellular;jul;tue;486;5;999;0;nonexistent;-2.9;92.469;-33.6;0.908;5076.2;yes
+30;student;single;university.degree;no;no;no;cellular;jul;tue;109;3;999;0;nonexistent;-2.9;92.469;-33.6;0.908;5076.2;no
+31;admin.;single;high.school;no;no;yes;telephone;jul;tue;258;6;999;0;nonexistent;-2.9;92.469;-33.6;0.908;5076.2;no
+44;admin.;divorced;high.school;no;no;no;cellular;jul;tue;573;5;999;0;nonexistent;-2.9;92.469;-33.6;0.908;5076.2;yes
+47;admin.;married;university.degree;no;no;no;telephone;jul;tue;186;9;999;0;nonexistent;-2.9;92.469;-33.6;0.908;5076.2;no
+36;admin.;married;high.school;no;no;no;cellular;jul;tue;383;6;999;0;nonexistent;-2.9;92.469;-33.6;0.908;5076.2;no
+58;management;married;university.degree;no;no;no;cellular;jul;wed;292;6;999;1;failure;-2.9;92.469;-33.6;0.903;5076.2;no
+54;unemployed;married;university.degree;no;yes;yes;cellular;jul;thu;141;2;999;0;nonexistent;-2.9;92.469;-33.6;0.899;5076.2;no
+41;admin.;married;high.school;no;no;no;cellular;aug;tue;151;1;999;0;nonexistent;-2.9;92.201;-31.4;0.884;5076.2;no
+32;services;married;high.school;no;no;no;cellular;aug;tue;205;1;999;0;nonexistent;-2.9;92.201;-31.4;0.884;5076.2;no
+61;self-employed;divorced;high.school;no;no;no;cellular;aug;tue;92;1;999;0;nonexistent;-2.9;92.201;-31.4;0.884;5076.2;no
+48;management;married;university.degree;no;yes;no;cellular;aug;tue;313;1;999;0;nonexistent;-2.9;92.201;-31.4;0.884;5076.2;no
+42;admin.;married;university.degree;no;yes;no;cellular;aug;tue;576;1;4;1;success;-2.9;92.201;-31.4;0.884;5076.2;yes
+61;retired;married;professional.course;no;no;no;cellular;aug;tue;219;1;999;0;nonexistent;-2.9;92.201;-31.4;0.884;5076.2;yes
+36;admin.;single;high.school;no;yes;no;cellular;aug;tue;320;1;999;0;nonexistent;-2.9;92.201;-31.4;0.884;5076.2;no
+31;admin.;single;university.degree;no;no;no;cellular;aug;tue;138;1;15;1;success;-2.9;92.201;-31.4;0.884;5076.2;no
+18;student;single;basic.9y;no;yes;no;cellular;aug;tue;642;1;999;0;nonexistent;-2.9;92.201;-31.4;0.884;5076.2;yes
+47;admin.;divorced;university.degree;no;yes;yes;cellular;aug;tue;185;1;999;0;nonexistent;-2.9;92.201;-31.4;0.884;5076.2;yes
+52;management;married;university.degree;no;no;no;cellular;aug;tue;600;1;999;0;nonexistent;-2.9;92.201;-31.4;0.884;5076.2;yes
+29;student;single;high.school;no;unknown;unknown;cellular;aug;tue;505;1;4;3;success;-2.9;92.201;-31.4;0.884;5076.2;yes
+64;unemployed;married;university.degree;no;yes;no;cellular;aug;tue;248;1;999;2;failure;-2.9;92.201;-31.4;0.884;5076.2;no
+26;technician;single;university.degree;no;yes;no;cellular;aug;tue;204;2;999;1;failure;-2.9;92.201;-31.4;0.884;5076.2;no
+51;management;married;university.degree;no;yes;no;cellular;aug;tue;138;1;999;0;nonexistent;-2.9;92.201;-31.4;0.884;5076.2;no
+21;student;single;high.school;no;yes;yes;cellular;aug;tue;220;1;999;0;nonexistent;-2.9;92.201;-31.4;0.884;5076.2;no
+51;management;married;university.degree;no;yes;no;cellular;aug;tue;249;1;999;0;nonexistent;-2.9;92.201;-31.4;0.884;5076.2;yes
+21;student;single;high.school;no;no;no;cellular;aug;tue;259;1;999;1;failure;-2.9;92.201;-31.4;0.884;5076.2;no
+42;technician;single;unknown;no;yes;no;cellular;aug;tue;158;1;999;1;failure;-2.9;92.201;-31.4;0.884;5076.2;no
+72;retired;divorced;university.degree;no;no;no;cellular;aug;tue;270;1;999;0;nonexistent;-2.9;92.201;-31.4;0.884;5076.2;no
+72;retired;divorced;university.degree;no;no;no;cellular;aug;tue;370;1;999;0;nonexistent;-2.9;92.201;-31.4;0.884;5076.2;no
+34;technician;single;professional.course;no;yes;no;cellular;aug;tue;251;1;999;0;nonexistent;-2.9;92.201;-31.4;0.884;5076.2;no
+24;student;single;high.school;no;yes;no;cellular;aug;tue;79;1;999;0;nonexistent;-2.9;92.201;-31.4;0.884;5076.2;no
+17;student;single;unknown;no;yes;no;cellular;aug;wed;432;3;4;2;success;-2.9;92.201;-31.4;0.884;5076.2;no
+34;technician;single;professional.course;no;no;no;cellular;aug;wed;305;1;999;0;nonexistent;-2.9;92.201;-31.4;0.884;5076.2;yes
+59;admin.;married;high.school;no;yes;no;cellular;aug;wed;1019;2;2;1;success;-2.9;92.201;-31.4;0.884;5076.2;yes
+34;technician;single;professional.course;no;no;no;cellular;aug;wed;211;1;999;0;nonexistent;-2.9;92.201;-31.4;0.884;5076.2;yes
+40;admin.;married;university.degree;no;no;no;cellular;aug;wed;397;2;999;1;failure;-2.9;92.201;-31.4;0.884;5076.2;no
+37;technician;married;professional.course;no;yes;no;cellular;aug;wed;414;1;999;0;nonexistent;-2.9;92.201;-31.4;0.884;5076.2;yes
+57;technician;married;high.school;no;yes;yes;cellular;aug;wed;290;2;4;1;success;-2.9;92.201;-31.4;0.884;5076.2;yes
+59;admin.;married;high.school;no;yes;no;cellular;aug;wed;277;1;999;0;nonexistent;-2.9;92.201;-31.4;0.884;5076.2;yes
+52;management;married;university.degree;no;no;no;cellular;aug;wed;206;1;999;1;failure;-2.9;92.201;-31.4;0.884;5076.2;no
+46;unknown;married;unknown;no;no;yes;cellular;aug;wed;299;2;999;0;nonexistent;-2.9;92.201;-31.4;0.884;5076.2;no
+43;services;divorced;basic.6y;no;yes;no;cellular;aug;wed;40;3;999;0;nonexistent;-2.9;92.201;-31.4;0.884;5076.2;no
+27;management;single;university.degree;no;yes;no;cellular;aug;wed;106;1;999;0;nonexistent;-2.9;92.201;-31.4;0.884;5076.2;no
+20;student;single;high.school;no;no;yes;cellular;aug;wed;254;1;999;0;nonexistent;-2.9;92.201;-31.4;0.884;5076.2;yes
+59;retired;married;unknown;no;unknown;unknown;cellular;aug;wed;177;1;999;0;nonexistent;-2.9;92.201;-31.4;0.884;5076.2;no
+32;services;single;high.school;no;yes;yes;cellular;aug;wed;253;1;4;2;success;-2.9;92.201;-31.4;0.884;5076.2;yes
+37;admin.;married;high.school;no;no;no;cellular;aug;wed;179;2;999;1;failure;-2.9;92.201;-31.4;0.884;5076.2;yes
+39;blue-collar;married;basic.9y;no;no;no;cellular;aug;wed;394;1;999;0;nonexistent;-2.9;92.201;-31.4;0.884;5076.2;yes
+59;retired;divorced;university.degree;no;yes;yes;cellular;aug;wed;526;1;999;0;nonexistent;-2.9;92.201;-31.4;0.884;5076.2;no
+45;unemployed;divorced;basic.4y;no;yes;no;cellular;aug;wed;156;1;999;0;nonexistent;-2.9;92.201;-31.4;0.884;5076.2;no
+45;unemployed;divorced;basic.4y;no;no;yes;telephone;aug;wed;416;1;999;0;nonexistent;-2.9;92.201;-31.4;0.884;5076.2;no
+46;admin.;married;high.school;no;no;no;telephone;aug;wed;231;2;999;0;nonexistent;-2.9;92.201;-31.4;0.884;5076.2;yes
+59;retired;married;unknown;no;no;no;cellular;aug;wed;385;2;999;1;failure;-2.9;92.201;-31.4;0.884;5076.2;yes
+43;services;divorced;basic.6y;no;yes;no;telephone;aug;wed;813;2;999;0;nonexistent;-2.9;92.201;-31.4;0.884;5076.2;no
+37;technician;married;professional.course;no;no;no;cellular;aug;wed;157;3;4;2;success;-2.9;92.201;-31.4;0.884;5076.2;yes
+56;entrepreneur;married;high.school;no;yes;no;cellular;aug;wed;131;5;999;1;failure;-2.9;92.201;-31.4;0.884;5076.2;no
+42;unemployed;married;unknown;no;no;no;cellular;aug;thu;175;4;999;0;nonexistent;-2.9;92.201;-31.4;0.883;5076.2;yes
+46;blue-collar;married;professional.course;no;no;no;cellular;aug;thu;99;5;999;0;nonexistent;-2.9;92.201;-31.4;0.883;5076.2;no
+31;admin.;single;university.degree;no;no;no;cellular;aug;thu;331;2;999;0;nonexistent;-2.9;92.201;-31.4;0.883;5076.2;no
+37;admin.;married;university.degree;no;no;no;cellular;aug;thu;89;1;999;0;nonexistent;-2.9;92.201;-31.4;0.883;5076.2;no
+52;retired;divorced;university.degree;no;yes;yes;cellular;aug;thu;155;2;4;1;success;-2.9;92.201;-31.4;0.883;5076.2;yes
+70;retired;married;basic.4y;unknown;yes;no;cellular;aug;thu;320;1;999;0;nonexistent;-2.9;92.201;-31.4;0.883;5076.2;no
+32;technician;married;university.degree;no;no;yes;cellular;aug;thu;975;4;999;0;nonexistent;-2.9;92.201;-31.4;0.883;5076.2;yes
+63;retired;married;basic.4y;no;no;no;telephone;aug;thu;49;3;999;0;nonexistent;-2.9;92.201;-31.4;0.883;5076.2;no
+42;unemployed;married;unknown;no;yes;no;telephone;aug;thu;280;7;999;0;nonexistent;-2.9;92.201;-31.4;0.883;5076.2;no
+52;technician;married;professional.course;no;no;no;cellular;aug;thu;126;6;999;0;nonexistent;-2.9;92.201;-31.4;0.883;5076.2;no
+57;management;married;university.degree;no;yes;no;cellular;aug;thu;107;4;999;0;nonexistent;-2.9;92.201;-31.4;0.883;5076.2;no
+60;self-employed;divorced;university.degree;no;no;no;cellular;aug;thu;90;2;999;0;nonexistent;-2.9;92.201;-31.4;0.883;5076.2;no
+59;housemaid;married;basic.4y;no;yes;no;cellular;aug;thu;121;6;999;0;nonexistent;-2.9;92.201;-31.4;0.883;5076.2;no
+32;technician;married;university.degree;no;yes;no;cellular;aug;thu;148;2;4;1;success;-2.9;92.201;-31.4;0.883;5076.2;no
+37;blue-collar;married;basic.9y;no;yes;yes;cellular;aug;thu;161;1;999;0;nonexistent;-2.9;92.201;-31.4;0.883;5076.2;no
+63;retired;married;basic.4y;no;no;no;cellular;aug;thu;87;4;999;0;nonexistent;-2.9;92.201;-31.4;0.883;5076.2;no
+37;admin.;married;university.degree;no;no;no;cellular;aug;thu;305;1;999;0;nonexistent;-2.9;92.201;-31.4;0.883;5076.2;no
+28;student;single;unknown;no;yes;no;cellular;aug;thu;111;1;999;1;failure;-2.9;92.201;-31.4;0.883;5076.2;no
+52;retired;divorced;university.degree;no;no;no;cellular;aug;thu;427;1;15;1;success;-2.9;92.201;-31.4;0.883;5076.2;yes
+45;technician;single;university.degree;no;no;no;cellular;aug;thu;146;1;999;0;nonexistent;-2.9;92.201;-31.4;0.883;5076.2;no
+58;retired;married;high.school;no;no;no;cellular;aug;thu;144;1;999;0;nonexistent;-2.9;92.201;-31.4;0.883;5076.2;no
+79;retired;married;unknown;no;no;no;cellular;aug;thu;86;2;999;0;nonexistent;-2.9;92.201;-31.4;0.883;5076.2;no
+53;technician;married;professional.course;no;yes;no;cellular;aug;thu;190;1;999;0;nonexistent;-2.9;92.201;-31.4;0.883;5076.2;no
+53;technician;married;professional.course;no;yes;no;cellular;aug;thu;100;1;999;1;failure;-2.9;92.201;-31.4;0.883;5076.2;no
+24;student;single;high.school;no;no;no;cellular;aug;thu;355;1;999;0;nonexistent;-2.9;92.201;-31.4;0.883;5076.2;yes
+74;retired;married;high.school;no;no;no;cellular;aug;thu;472;1;999;0;nonexistent;-2.9;92.201;-31.4;0.883;5076.2;no
+54;admin.;divorced;high.school;no;yes;no;cellular;aug;thu;131;2;4;1;success;-2.9;92.201;-31.4;0.883;5076.2;yes
+74;retired;married;high.school;no;no;no;cellular;aug;thu;174;1;999;0;nonexistent;-2.9;92.201;-31.4;0.883;5076.2;no
+74;retired;married;high.school;no;yes;no;cellular;aug;thu;1452;1;999;1;failure;-2.9;92.201;-31.4;0.883;5076.2;yes
+58;unemployed;divorced;professional.course;no;no;yes;cellular;aug;thu;142;1;999;0;nonexistent;-2.9;92.201;-31.4;0.883;5076.2;no
+74;retired;married;high.school;no;no;no;cellular;aug;thu;135;1;999;0;nonexistent;-2.9;92.201;-31.4;0.883;5076.2;no
+42;unemployed;married;unknown;no;yes;yes;cellular;aug;thu;250;4;4;2;success;-2.9;92.201;-31.4;0.883;5076.2;yes
+35;admin.;single;university.degree;no;yes;no;cellular;aug;thu;789;1;999;0;nonexistent;-2.9;92.201;-31.4;0.883;5076.2;no
+31;technician;divorced;professional.course;no;yes;no;cellular;aug;thu;310;2;999;1;failure;-2.9;92.201;-31.4;0.883;5076.2;yes
+35;admin.;single;university.degree;no;yes;no;telephone;aug;thu;338;1;999;0;nonexistent;-2.9;92.201;-31.4;0.883;5076.2;yes
+35;admin.;single;university.degree;no;yes;no;cellular;aug;thu;116;1;999;0;nonexistent;-2.9;92.201;-31.4;0.883;5076.2;no
+60;entrepreneur;married;unknown;no;no;no;cellular;aug;thu;130;2;999;0;nonexistent;-2.9;92.201;-31.4;0.883;5076.2;no
+35;admin.;single;university.degree;no;no;no;cellular;aug;thu;250;1;999;1;failure;-2.9;92.201;-31.4;0.883;5076.2;no
+35;admin.;single;university.degree;no;yes;yes;cellular;aug;thu;471;1;999;0;nonexistent;-2.9;92.201;-31.4;0.883;5076.2;no
+25;technician;single;university.degree;no;yes;no;telephone;aug;thu;256;1;999;0;nonexistent;-2.9;92.201;-31.4;0.883;5076.2;yes
+44;admin.;married;university.degree;no;yes;no;cellular;aug;thu;254;2;999;0;nonexistent;-2.9;92.201;-31.4;0.883;5076.2;yes
+76;retired;married;basic.4y;no;yes;no;cellular;aug;thu;550;1;999;0;nonexistent;-2.9;92.201;-31.4;0.883;5076.2;yes
+76;retired;married;basic.4y;no;yes;no;cellular;aug;fri;345;2;999;0;nonexistent;-2.9;92.201;-31.4;0.881;5076.2;yes
+32;technician;single;professional.course;no;no;no;cellular;aug;fri;169;2;999;0;nonexistent;-2.9;92.201;-31.4;0.881;5076.2;no
+46;housemaid;married;high.school;no;yes;no;cellular;aug;fri;358;1;999;0;nonexistent;-2.9;92.201;-31.4;0.881;5076.2;yes
+29;admin.;single;university.degree;no;yes;no;cellular;aug;fri;107;1;999;0;nonexistent;-2.9;92.201;-31.4;0.881;5076.2;no
+38;admin.;single;university.degree;no;yes;no;cellular;aug;fri;116;1;999;0;nonexistent;-2.9;92.201;-31.4;0.881;5076.2;no
+51;technician;married;professional.course;no;yes;no;telephone;aug;fri;115;2;999;0;nonexistent;-2.9;92.201;-31.4;0.881;5076.2;no
+82;retired;married;university.degree;no;no;no;cellular;aug;fri;79;2;999;2;failure;-2.9;92.201;-31.4;0.881;5076.2;no
+33;blue-collar;married;basic.9y;no;no;no;cellular;aug;fri;79;1;999;1;failure;-2.9;92.201;-31.4;0.881;5076.2;yes
+38;admin.;single;university.degree;no;yes;no;cellular;aug;fri;140;1;999;0;nonexistent;-2.9;92.201;-31.4;0.881;5076.2;no
+32;technician;single;professional.course;no;yes;no;telephone;aug;fri;107;2;999;1;failure;-2.9;92.201;-31.4;0.881;5076.2;no
+32;admin.;married;university.degree;no;yes;yes;cellular;aug;fri;131;1;999;0;nonexistent;-2.9;92.201;-31.4;0.881;5076.2;no
+29;admin.;single;university.degree;no;no;no;cellular;aug;fri;289;2;999;0;nonexistent;-2.9;92.201;-31.4;0.881;5076.2;yes
+75;retired;married;basic.4y;no;no;yes;cellular;aug;fri;714;1;999;0;nonexistent;-2.9;92.201;-31.4;0.881;5076.2;yes
+25;admin.;single;university.degree;no;yes;no;cellular;aug;fri;255;1;999;0;nonexistent;-2.9;92.201;-31.4;0.881;5076.2;yes
+34;admin.;married;university.degree;no;no;no;cellular;aug;fri;78;1;999;0;nonexistent;-2.9;92.201;-31.4;0.881;5076.2;no
+34;admin.;married;university.degree;no;yes;no;cellular;aug;fri;258;1;999;0;nonexistent;-2.9;92.201;-31.4;0.881;5076.2;no
+32;technician;single;professional.course;no;no;no;cellular;aug;fri;87;1;999;0;nonexistent;-2.9;92.201;-31.4;0.881;5076.2;yes
+46;housemaid;married;high.school;no;yes;no;cellular;aug;fri;258;1;999;0;nonexistent;-2.9;92.201;-31.4;0.881;5076.2;no
+51;housemaid;married;unknown;no;no;no;cellular;aug;fri;273;1;999;1;failure;-2.9;92.201;-31.4;0.881;5076.2;yes
+32;unemployed;single;university.degree;no;yes;no;cellular;aug;fri;88;1;999;1;failure;-2.9;92.201;-31.4;0.881;5076.2;no
+70;retired;married;basic.4y;no;yes;no;cellular;aug;fri;530;2;999;0;nonexistent;-2.9;92.201;-31.4;0.881;5076.2;yes
+24;student;single;high.school;no;no;no;cellular;aug;fri;292;1;999;0;nonexistent;-2.9;92.201;-31.4;0.881;5076.2;no
+24;student;single;high.school;no;yes;no;cellular;aug;fri;456;1;999;0;nonexistent;-2.9;92.201;-31.4;0.881;5076.2;yes
+41;services;single;university.degree;no;yes;no;cellular;aug;fri;142;1;4;2;success;-2.9;92.201;-31.4;0.881;5076.2;yes
+41;services;single;university.degree;no;yes;no;cellular;aug;fri;325;1;999;0;nonexistent;-2.9;92.201;-31.4;0.881;5076.2;yes
+33;admin.;single;high.school;no;yes;no;cellular;aug;fri;1088;3;999;0;nonexistent;-2.9;92.201;-31.4;0.881;5076.2;yes
+48;unemployed;single;basic.9y;no;no;no;cellular;aug;fri;173;2;999;0;nonexistent;-2.9;92.201;-31.4;0.881;5076.2;no
+54;technician;married;university.degree;no;yes;no;cellular;aug;fri;325;1;4;1;success;-2.9;92.201;-31.4;0.881;5076.2;no
+73;retired;married;basic.4y;no;no;no;cellular;aug;fri;453;1;999;0;nonexistent;-2.9;92.201;-31.4;0.881;5076.2;yes
+48;entrepreneur;married;university.degree;no;no;yes;cellular;aug;fri;295;2;4;2;success;-2.9;92.201;-31.4;0.881;5076.2;yes
+73;retired;married;basic.9y;no;no;no;cellular;aug;fri;239;1;15;1;success;-2.9;92.201;-31.4;0.881;5076.2;no
+58;admin.;married;university.degree;no;no;no;telephone;aug;fri;121;2;999;0;nonexistent;-2.9;92.201;-31.4;0.881;5076.2;no
+73;retired;married;basic.4y;no;yes;no;cellular;aug;fri;305;1;999;0;nonexistent;-2.9;92.201;-31.4;0.881;5076.2;no
+23;student;single;high.school;no;yes;no;cellular;aug;fri;136;1;999;3;failure;-2.9;92.201;-31.4;0.881;5076.2;no
+36;management;married;university.degree;no;yes;no;cellular;aug;fri;100;1;999;0;nonexistent;-2.9;92.201;-31.4;0.881;5076.2;no
+30;admin.;single;university.degree;no;yes;no;cellular;aug;fri;83;1;999;2;failure;-2.9;92.201;-31.4;0.881;5076.2;no
+28;admin.;single;university.degree;no;no;no;cellular;aug;fri;70;1;999;0;nonexistent;-2.9;92.201;-31.4;0.881;5076.2;no
+33;blue-collar;married;basic.9y;no;no;no;cellular;aug;fri;99;1;999;2;failure;-2.9;92.201;-31.4;0.881;5076.2;no
+28;admin.;single;university.degree;no;no;no;cellular;aug;fri;262;1;4;2;success;-2.9;92.201;-31.4;0.881;5076.2;yes
+28;admin.;single;university.degree;no;yes;no;cellular;aug;fri;119;1;999;1;failure;-2.9;92.201;-31.4;0.881;5076.2;no
+51;housemaid;married;unknown;no;yes;no;cellular;aug;fri;121;1;999;0;nonexistent;-2.9;92.201;-31.4;0.881;5076.2;no
+28;admin.;married;university.degree;no;yes;no;cellular;aug;fri;140;1;999;1;failure;-2.9;92.201;-31.4;0.881;5076.2;no
+36;services;married;basic.9y;no;yes;no;cellular;aug;fri;215;1;999;1;failure;-2.9;92.201;-31.4;0.881;5076.2;yes
+51;housemaid;married;unknown;no;yes;yes;cellular;aug;fri;268;1;999;0;nonexistent;-2.9;92.201;-31.4;0.881;5076.2;yes
+36;services;married;basic.9y;no;yes;no;cellular;aug;fri;221;1;4;1;success;-2.9;92.201;-31.4;0.881;5076.2;yes
+59;unemployed;married;professional.course;no;yes;no;cellular;aug;fri;378;2;999;1;failure;-2.9;92.201;-31.4;0.881;5076.2;no
+29;admin.;single;high.school;no;yes;no;cellular;aug;fri;140;1;999;0;nonexistent;-2.9;92.201;-31.4;0.881;5076.2;no
+29;admin.;single;high.school;no;no;no;cellular;aug;fri;384;1;4;3;success;-2.9;92.201;-31.4;0.881;5076.2;no
+30;self-employed;married;university.degree;no;yes;yes;cellular;aug;fri;390;2;999;0;nonexistent;-2.9;92.201;-31.4;0.881;5076.2;no
+29;admin.;single;high.school;no;no;no;cellular;aug;fri;88;1;999;2;failure;-2.9;92.201;-31.4;0.881;5076.2;no
+73;retired;married;basic.4y;no;yes;yes;cellular;aug;fri;135;1;999;0;nonexistent;-2.9;92.201;-31.4;0.881;5076.2;no
+27;blue-collar;unknown;high.school;no;no;no;cellular;aug;fri;192;1;4;1;success;-2.9;92.201;-31.4;0.881;5076.2;yes
+29;admin.;single;high.school;no;no;no;cellular;aug;fri;130;1;999;0;nonexistent;-2.9;92.201;-31.4;0.881;5076.2;yes
+76;retired;married;university.degree;no;no;no;cellular;aug;fri;233;2;999;0;nonexistent;-2.9;92.201;-31.4;0.881;5076.2;yes
+29;admin.;single;high.school;no;yes;no;cellular;aug;fri;121;1;999;0;nonexistent;-2.9;92.201;-31.4;0.881;5076.2;no
+31;admin.;married;university.degree;no;yes;no;cellular;aug;fri;353;2;999;0;nonexistent;-2.9;92.201;-31.4;0.881;5076.2;yes
+33;admin.;single;high.school;no;yes;no;cellular;aug;fri;182;2;999;1;failure;-2.9;92.201;-31.4;0.881;5076.2;yes
+48;admin.;divorced;university.degree;no;yes;no;cellular;aug;fri;103;1;4;1;success;-2.9;92.201;-31.4;0.881;5076.2;no
+43;admin.;single;high.school;no;yes;no;cellular;aug;fri;231;3;999;0;nonexistent;-2.9;92.201;-31.4;0.881;5076.2;yes
+54;unemployed;married;university.degree;no;no;no;telephone;aug;mon;122;3;999;0;nonexistent;-2.9;92.201;-31.4;0.884;5076.2;no
+44;entrepreneur;married;basic.4y;no;unknown;unknown;cellular;aug;mon;111;2;999;0;nonexistent;-2.9;92.201;-31.4;0.884;5076.2;no
+46;blue-collar;married;professional.course;no;no;no;telephone;aug;mon;255;3;999;0;nonexistent;-2.9;92.201;-31.4;0.884;5076.2;no
+35;services;single;university.degree;no;unknown;unknown;cellular;aug;mon;419;2;999;0;nonexistent;-2.9;92.201;-31.4;0.884;5076.2;no
+36;management;married;university.degree;no;no;no;cellular;aug;mon;1225;2;999;0;nonexistent;-2.9;92.201;-31.4;0.884;5076.2;no
+40;blue-collar;divorced;basic.9y;no;no;no;cellular;aug;mon;54;1;999;1;failure;-2.9;92.201;-31.4;0.884;5076.2;no
+36;management;married;university.degree;no;no;no;telephone;aug;mon;328;1;999;0;nonexistent;-2.9;92.201;-31.4;0.884;5076.2;yes
+52;admin.;married;university.degree;no;no;no;cellular;aug;mon;268;1;999;0;nonexistent;-2.9;92.201;-31.4;0.884;5076.2;no
+38;technician;married;professional.course;no;no;no;cellular;aug;mon;923;1;999;1;failure;-2.9;92.201;-31.4;0.884;5076.2;yes
+41;admin.;married;high.school;no;no;no;cellular;aug;mon;88;1;999;0;nonexistent;-2.9;92.201;-31.4;0.884;5076.2;no
+27;student;single;high.school;no;no;no;cellular;aug;mon;131;1;3;2;success;-2.9;92.201;-31.4;0.884;5076.2;no
+38;admin.;single;high.school;no;yes;yes;cellular;aug;mon;167;1;999;0;nonexistent;-2.9;92.201;-31.4;0.884;5076.2;yes
+64;retired;married;university.degree;no;no;no;telephone;aug;mon;133;1;999;0;nonexistent;-2.9;92.201;-31.4;0.884;5076.2;no
+36;admin.;divorced;university.degree;no;no;no;cellular;aug;mon;559;1;5;1;success;-2.9;92.201;-31.4;0.884;5076.2;yes
+36;admin.;divorced;university.degree;no;yes;no;cellular;aug;mon;146;2;999;2;failure;-2.9;92.201;-31.4;0.884;5076.2;yes
+37;technician;married;university.degree;no;yes;no;cellular;aug;mon;187;1;4;1;success;-2.9;92.201;-31.4;0.884;5076.2;yes
+65;retired;married;basic.6y;no;no;no;cellular;aug;mon;161;2;999;1;failure;-2.9;92.201;-31.4;0.884;5076.2;yes
+66;admin.;married;university.degree;no;no;no;cellular;aug;mon;489;2;4;1;success;-2.9;92.201;-31.4;0.884;5076.2;no
+19;student;single;basic.9y;no;no;no;cellular;aug;mon;120;1;3;1;success;-2.9;92.201;-31.4;0.884;5076.2;no
+40;blue-collar;married;high.school;no;yes;no;cellular;aug;mon;158;1;4;1;success;-2.9;92.201;-31.4;0.884;5076.2;no
+40;admin.;married;university.degree;no;no;no;cellular;aug;mon;246;1;3;1;success;-2.9;92.201;-31.4;0.884;5076.2;no
+33;admin.;married;high.school;no;yes;no;cellular;aug;mon;252;1;6;1;success;-2.9;92.201;-31.4;0.884;5076.2;yes
+43;self-employed;divorced;university.degree;no;no;no;telephone;aug;mon;156;1;999;0;nonexistent;-2.9;92.201;-31.4;0.884;5076.2;no
+43;self-employed;divorced;university.degree;no;no;no;cellular;aug;mon;1529;1;999;1;failure;-2.9;92.201;-31.4;0.884;5076.2;no
+63;housemaid;married;basic.4y;no;yes;no;telephone;aug;mon;235;1;6;2;failure;-2.9;92.201;-31.4;0.884;5076.2;yes
+35;admin.;married;high.school;no;no;no;cellular;aug;mon;155;1;4;1;success;-2.9;92.201;-31.4;0.884;5076.2;no
+31;admin.;married;high.school;no;no;yes;cellular;aug;mon;155;2;4;1;success;-2.9;92.201;-31.4;0.884;5076.2;yes
+33;technician;single;basic.9y;no;yes;yes;cellular;aug;mon;289;1;999;2;failure;-2.9;92.201;-31.4;0.884;5076.2;yes
+36;blue-collar;married;basic.9y;no;no;no;cellular;aug;mon;153;2;999;1;failure;-2.9;92.201;-31.4;0.884;5076.2;no
+32;entrepreneur;married;unknown;no;no;no;cellular;aug;mon;352;2;999;2;failure;-2.9;92.201;-31.4;0.884;5076.2;no
+69;retired;married;professional.course;no;yes;no;telephone;aug;mon;411;1;999;0;nonexistent;-2.9;92.201;-31.4;0.884;5076.2;no
+35;admin.;single;high.school;no;yes;yes;cellular;aug;mon;107;4;2;3;success;-2.9;92.201;-31.4;0.884;5076.2;no
+21;admin.;single;university.degree;no;yes;no;cellular;aug;mon;89;2;4;1;success;-2.9;92.201;-31.4;0.884;5076.2;no
+19;student;single;basic.9y;no;yes;no;telephone;aug;mon;85;2;999;0;nonexistent;-2.9;92.201;-31.4;0.884;5076.2;no
+46;blue-collar;married;professional.course;no;no;no;telephone;aug;mon;151;3;999;1;failure;-2.9;92.201;-31.4;0.884;5076.2;no
+19;student;single;basic.9y;no;no;no;cellular;aug;mon;96;1;3;1;success;-2.9;92.201;-31.4;0.884;5076.2;no
+32;student;married;professional.course;no;yes;no;cellular;aug;mon;540;2;999;0;nonexistent;-2.9;92.201;-31.4;0.884;5076.2;no
+44;unknown;married;university.degree;no;yes;no;cellular;aug;mon;263;2;999;0;nonexistent;-2.9;92.201;-31.4;0.884;5076.2;no
+39;technician;married;professional.course;no;yes;no;cellular;aug;mon;247;1;4;1;success;-2.9;92.201;-31.4;0.884;5076.2;no
+40;management;married;university.degree;no;no;no;cellular;aug;mon;162;1;999;1;failure;-2.9;92.201;-31.4;0.884;5076.2;no
+40;management;married;university.degree;no;no;yes;cellular;aug;mon;121;1;999;1;failure;-2.9;92.201;-31.4;0.884;5076.2;no
+52;admin.;married;university.degree;no;yes;no;cellular;aug;mon;179;3;4;2;success;-2.9;92.201;-31.4;0.884;5076.2;yes
+67;retired;married;professional.course;no;yes;yes;cellular;aug;mon;71;1;999;0;nonexistent;-2.9;92.201;-31.4;0.884;5076.2;no
+57;entrepreneur;married;professional.course;no;yes;no;telephone;aug;mon;157;1;3;1;success;-2.9;92.201;-31.4;0.884;5076.2;no
+37;blue-collar;married;basic.9y;no;no;no;cellular;aug;mon;213;1;999;0;nonexistent;-2.9;92.201;-31.4;0.884;5076.2;yes
+37;blue-collar;married;basic.9y;no;no;no;cellular;aug;tue;373;2;999;0;nonexistent;-2.9;92.201;-31.4;0.883;5076.2;no
+34;technician;single;professional.course;no;yes;no;cellular;aug;tue;1416;2;12;1;success;-2.9;92.201;-31.4;0.883;5076.2;yes
+35;technician;married;university.degree;no;yes;no;cellular;aug;tue;425;2;999;1;failure;-2.9;92.201;-31.4;0.883;5076.2;no
+58;technician;married;professional.course;no;no;no;cellular;aug;tue;48;2;999;0;nonexistent;-2.9;92.201;-31.4;0.883;5076.2;no
+43;services;married;high.school;no;yes;no;telephone;aug;tue;329;1;999;0;nonexistent;-2.9;92.201;-31.4;0.883;5076.2;no
+70;housemaid;divorced;basic.4y;no;no;no;telephone;aug;tue;90;3;999;1;failure;-2.9;92.201;-31.4;0.883;5076.2;no
+34;admin.;single;university.degree;no;yes;yes;cellular;aug;tue;265;1;999;1;failure;-2.9;92.201;-31.4;0.883;5076.2;no
+69;retired;married;high.school;no;yes;no;cellular;aug;tue;151;1;999;0;nonexistent;-2.9;92.201;-31.4;0.883;5076.2;no
+59;technician;single;basic.6y;no;no;no;telephone;aug;tue;181;1;999;0;nonexistent;-2.9;92.201;-31.4;0.883;5076.2;no
+49;management;divorced;university.degree;no;yes;yes;cellular;aug;tue;138;1;999;0;nonexistent;-2.9;92.201;-31.4;0.883;5076.2;no
+31;admin.;single;university.degree;no;no;no;cellular;aug;tue;265;1;4;3;success;-2.9;92.201;-31.4;0.883;5076.2;yes
+31;admin.;single;university.degree;no;no;no;cellular;aug;tue;157;1;999;0;nonexistent;-2.9;92.201;-31.4;0.883;5076.2;no
+50;management;married;university.degree;no;no;no;cellular;aug;tue;89;3;4;1;success;-2.9;92.201;-31.4;0.883;5076.2;no
+31;admin.;single;university.degree;no;no;no;telephone;aug;tue;387;1;999;0;nonexistent;-2.9;92.201;-31.4;0.883;5076.2;no
+45;services;married;high.school;no;no;no;cellular;aug;tue;249;3;999;0;nonexistent;-2.9;92.201;-31.4;0.883;5076.2;no
+60;retired;married;high.school;no;no;no;cellular;aug;tue;123;1;4;1;success;-2.9;92.201;-31.4;0.883;5076.2;no
+30;admin.;single;university.degree;no;no;no;cellular;aug;tue;156;1;999;2;failure;-2.9;92.201;-31.4;0.883;5076.2;no
+30;admin.;single;university.degree;no;yes;yes;cellular;aug;tue;155;1;4;1;success;-2.9;92.201;-31.4;0.883;5076.2;no
+31;admin.;single;university.degree;no;yes;yes;telephone;aug;tue;115;2;999;0;nonexistent;-2.9;92.201;-31.4;0.883;5076.2;no
+58;technician;married;professional.course;no;no;no;cellular;aug;tue;704;2;999;0;nonexistent;-2.9;92.201;-31.4;0.883;5076.2;yes
+33;admin.;single;high.school;no;yes;no;cellular;aug;tue;136;3;999;0;nonexistent;-2.9;92.201;-31.4;0.883;5076.2;yes
+26;student;single;professional.course;no;yes;no;cellular;aug;tue;176;2;999;1;failure;-2.9;92.201;-31.4;0.883;5076.2;yes
+35;self-employed;married;university.degree;no;yes;no;telephone;aug;tue;88;1;999;1;failure;-2.9;92.201;-31.4;0.883;5076.2;no
+59;retired;married;high.school;no;yes;no;cellular;aug;tue;85;1;999;1;failure;-2.9;92.201;-31.4;0.883;5076.2;no
+29;technician;single;professional.course;no;yes;yes;cellular;aug;tue;110;1;999;0;nonexistent;-2.9;92.201;-31.4;0.883;5076.2;no
+50;blue-collar;married;unknown;no;yes;no;cellular;aug;tue;1398;1;999;0;nonexistent;-2.9;92.201;-31.4;0.883;5076.2;no
+61;entrepreneur;married;university.degree;unknown;yes;no;cellular;aug;tue;651;1;999;0;nonexistent;-2.9;92.201;-31.4;0.883;5076.2;yes
+52;management;married;high.school;no;yes;yes;cellular;aug;tue;167;1;10;4;failure;-2.9;92.201;-31.4;0.883;5076.2;yes
+52;management;married;high.school;no;no;no;cellular;aug;tue;408;1;999;0;nonexistent;-2.9;92.201;-31.4;0.883;5076.2;yes
+42;admin.;single;university.degree;no;no;no;cellular;aug;tue;982;1;999;0;nonexistent;-2.9;92.201;-31.4;0.883;5076.2;no
+85;retired;married;professional.course;no;no;no;cellular;aug;tue;140;1;999;0;nonexistent;-2.9;92.201;-31.4;0.883;5076.2;yes
+27;admin.;single;university.degree;no;yes;no;cellular;aug;tue;168;1;999;0;nonexistent;-2.9;92.201;-31.4;0.883;5076.2;no
+27;admin.;single;university.degree;no;yes;no;cellular;aug;tue;287;1;6;1;success;-2.9;92.201;-31.4;0.883;5076.2;no
+49;technician;married;professional.course;no;yes;no;cellular;aug;tue;75;1;999;1;failure;-2.9;92.201;-31.4;0.883;5076.2;no
+30;admin.;married;university.degree;no;no;no;cellular;aug;tue;139;3;6;1;success;-2.9;92.201;-31.4;0.883;5076.2;yes
+69;entrepreneur;married;university.degree;no;yes;no;cellular;aug;tue;93;1;999;1;failure;-2.9;92.201;-31.4;0.883;5076.2;no
+28;admin.;single;university.degree;no;no;no;cellular;aug;tue;225;1;999;2;failure;-2.9;92.201;-31.4;0.883;5076.2;no
+33;student;single;unknown;no;yes;yes;cellular;aug;tue;203;1;999;0;nonexistent;-2.9;92.201;-31.4;0.883;5076.2;no
+41;admin.;single;university.degree;no;yes;no;cellular;aug;tue;280;2;999;0;nonexistent;-2.9;92.201;-31.4;0.883;5076.2;no
+54;admin.;single;university.degree;unknown;yes;no;cellular;aug;tue;159;1;999;0;nonexistent;-2.9;92.201;-31.4;0.883;5076.2;no
+60;admin.;married;professional.course;no;no;no;cellular;aug;tue;66;1;999;0;nonexistent;-2.9;92.201;-31.4;0.883;5076.2;no
+57;admin.;married;university.degree;no;yes;no;cellular;aug;tue;149;1;999;1;failure;-2.9;92.201;-31.4;0.883;5076.2;yes
+35;admin.;married;university.degree;no;no;yes;cellular;aug;tue;349;1;999;3;failure;-2.9;92.201;-31.4;0.883;5076.2;yes
+35;admin.;single;university.degree;no;no;yes;cellular;aug;tue;371;1;999;0;nonexistent;-2.9;92.201;-31.4;0.883;5076.2;no
+80;retired;married;illiterate;unknown;yes;yes;cellular;aug;tue;125;1;6;1;success;-2.9;92.201;-31.4;0.883;5076.2;yes
+26;admin.;single;university.degree;no;no;no;cellular;aug;tue;221;1;15;1;success;-2.9;92.201;-31.4;0.883;5076.2;yes
+67;retired;married;university.degree;no;no;no;cellular;aug;tue;201;1;999;1;failure;-2.9;92.201;-31.4;0.883;5076.2;no
+56;retired;married;high.school;no;yes;yes;cellular;aug;tue;97;1;3;2;success;-2.9;92.201;-31.4;0.883;5076.2;no
+59;admin.;divorced;professional.course;no;yes;no;telephone;aug;tue;91;1;999;1;failure;-2.9;92.201;-31.4;0.883;5076.2;no
+44;management;married;university.degree;no;no;no;cellular;aug;tue;175;2;999;2;failure;-2.9;92.201;-31.4;0.883;5076.2;yes
+47;admin.;married;university.degree;no;yes;no;cellular;aug;tue;526;1;999;1;failure;-2.9;92.201;-31.4;0.883;5076.2;no
+58;technician;married;professional.course;no;yes;no;cellular;aug;tue;89;2;999;0;nonexistent;-2.9;92.201;-31.4;0.883;5076.2;yes
+59;admin.;divorced;professional.course;no;no;no;cellular;aug;tue;206;1;999;1;failure;-2.9;92.201;-31.4;0.883;5076.2;yes
+59;admin.;divorced;professional.course;no;no;no;cellular;aug;tue;477;1;999;0;nonexistent;-2.9;92.201;-31.4;0.883;5076.2;no
+69;blue-collar;married;unknown;no;yes;no;cellular;aug;tue;400;3;999;0;nonexistent;-2.9;92.201;-31.4;0.883;5076.2;no
+59;admin.;divorced;professional.course;no;no;no;telephone;aug;tue;198;1;999;0;nonexistent;-2.9;92.201;-31.4;0.883;5076.2;no
+59;admin.;divorced;professional.course;no;unknown;unknown;cellular;aug;tue;203;1;4;1;success;-2.9;92.201;-31.4;0.883;5076.2;yes
+34;admin.;divorced;university.degree;no;no;no;cellular;aug;tue;267;2;999;0;nonexistent;-2.9;92.201;-31.4;0.883;5076.2;yes
+30;admin.;married;university.degree;no;yes;no;cellular;aug;tue;120;3;999;1;failure;-2.9;92.201;-31.4;0.883;5076.2;no
+50;blue-collar;married;unknown;no;yes;yes;cellular;aug;tue;589;2;999;0;nonexistent;-2.9;92.201;-31.4;0.883;5076.2;yes
+70;retired;married;high.school;no;yes;no;cellular;aug;tue;162;1;999;0;nonexistent;-2.9;92.201;-31.4;0.883;5076.2;no
+59;blue-collar;married;basic.4y;no;no;no;cellular;aug;tue;163;3;999;0;nonexistent;-2.9;92.201;-31.4;0.883;5076.2;no
+58;admin.;married;university.degree;no;no;no;cellular;aug;tue;373;4;999;0;nonexistent;-2.9;92.201;-31.4;0.883;5076.2;no
+49;admin.;married;university.degree;no;yes;no;cellular;aug;tue;464;2;999;1;failure;-2.9;92.201;-31.4;0.883;5076.2;yes
+35;technician;single;university.degree;no;yes;no;cellular;aug;tue;113;3;999;0;nonexistent;-2.9;92.201;-31.4;0.883;5076.2;no
+57;management;married;university.degree;no;yes;no;cellular;aug;tue;71;1;5;2;failure;-2.9;92.201;-31.4;0.883;5076.2;no
+21;unemployed;single;high.school;no;yes;no;telephone;aug;tue;172;2;999;0;nonexistent;-2.9;92.201;-31.4;0.883;5076.2;no
+57;management;married;university.degree;no;no;no;cellular;aug;tue;162;1;999;0;nonexistent;-2.9;92.201;-31.4;0.883;5076.2;no
+42;management;divorced;unknown;no;yes;no;cellular;aug;wed;266;2;999;0;nonexistent;-2.9;92.201;-31.4;0.879;5076.2;no
+66;retired;married;unknown;no;no;no;cellular;aug;wed;68;3;999;0;nonexistent;-2.9;92.201;-31.4;0.879;5076.2;no
+62;management;married;university.degree;no;yes;yes;cellular;aug;wed;345;2;999;0;nonexistent;-2.9;92.201;-31.4;0.879;5076.2;no
+27;admin.;single;university.degree;no;yes;no;cellular;aug;wed;1117;2;999;0;nonexistent;-2.9;92.201;-31.4;0.879;5076.2;no
+60;management;married;university.degree;no;no;no;cellular;aug;wed;159;4;999;0;nonexistent;-2.9;92.201;-31.4;0.879;5076.2;no
+31;services;single;university.degree;no;yes;no;telephone;aug;wed;701;1;999;0;nonexistent;-2.9;92.201;-31.4;0.879;5076.2;no
+27;admin.;single;university.degree;no;yes;no;cellular;aug;wed;429;2;999;0;nonexistent;-2.9;92.201;-31.4;0.879;5076.2;yes
+36;admin.;divorced;university.degree;no;no;yes;cellular;aug;wed;623;2;6;2;success;-2.9;92.201;-31.4;0.879;5076.2;yes
+66;retired;unknown;basic.9y;no;yes;no;cellular;aug;wed;340;2;999;0;nonexistent;-2.9;92.201;-31.4;0.879;5076.2;no
+42;management;divorced;unknown;no;yes;no;cellular;aug;wed;137;2;4;1;success;-2.9;92.201;-31.4;0.879;5076.2;yes
+31;blue-collar;single;university.degree;no;no;no;cellular;aug;wed;174;2;999;0;nonexistent;-2.9;92.201;-31.4;0.879;5076.2;no
+48;admin.;married;high.school;no;no;no;cellular;aug;wed;74;2;999;0;nonexistent;-2.9;92.201;-31.4;0.879;5076.2;no
+25;admin.;single;high.school;no;yes;yes;cellular;aug;wed;121;1;999;0;nonexistent;-2.9;92.201;-31.4;0.879;5076.2;no
+26;student;single;basic.9y;no;no;no;telephone;aug;wed;127;1;999;0;nonexistent;-2.9;92.201;-31.4;0.879;5076.2;no
+26;student;single;basic.9y;no;yes;no;cellular;aug;wed;182;1;4;1;success;-2.9;92.201;-31.4;0.879;5076.2;yes
+49;admin.;married;high.school;no;yes;no;cellular;aug;wed;668;2;15;1;success;-2.9;92.201;-31.4;0.879;5076.2;yes
+26;student;single;basic.9y;no;no;no;telephone;aug;wed;449;1;999;0;nonexistent;-2.9;92.201;-31.4;0.879;5076.2;yes
+49;admin.;married;high.school;no;yes;no;cellular;aug;wed;90;2;999;0;nonexistent;-2.9;92.201;-31.4;0.879;5076.2;no
+26;student;single;basic.9y;no;yes;no;cellular;aug;wed;582;1;999;0;nonexistent;-2.9;92.201;-31.4;0.879;5076.2;yes
+25;self-employed;single;university.degree;no;no;no;cellular;aug;wed;169;2;999;1;failure;-2.9;92.201;-31.4;0.879;5076.2;no
+34;blue-collar;married;high.school;no;yes;no;cellular;aug;wed;115;2;999;1;failure;-2.9;92.201;-31.4;0.879;5076.2;no
+45;blue-collar;single;basic.9y;no;yes;no;cellular;aug;wed;249;1;4;1;success;-2.9;92.201;-31.4;0.879;5076.2;no
+27;admin.;single;university.degree;no;no;no;cellular;aug;wed;1336;2;999;0;nonexistent;-2.9;92.201;-31.4;0.879;5076.2;yes
+45;blue-collar;single;basic.9y;no;no;no;cellular;aug;wed;150;1;3;2;success;-2.9;92.201;-31.4;0.879;5076.2;no
+74;retired;married;university.degree;no;yes;no;cellular;aug;wed;239;2;999;1;failure;-2.9;92.201;-31.4;0.879;5076.2;yes
+36;admin.;married;university.degree;no;yes;no;cellular;aug;wed;90;1;999;2;failure;-2.9;92.201;-31.4;0.879;5076.2;no
+42;management;divorced;unknown;no;no;no;cellular;aug;wed;251;2;15;2;failure;-2.9;92.201;-31.4;0.879;5076.2;no
+32;technician;married;professional.course;no;yes;no;cellular;aug;wed;641;1;999;0;nonexistent;-2.9;92.201;-31.4;0.879;5076.2;yes
+60;retired;married;university.degree;no;no;no;cellular;aug;wed;576;1;999;0;nonexistent;-2.9;92.201;-31.4;0.879;5076.2;yes
+40;management;married;university.degree;no;unknown;unknown;cellular;aug;wed;699;2;999;1;failure;-2.9;92.201;-31.4;0.879;5076.2;no
+56;admin.;married;basic.9y;no;yes;no;cellular;aug;wed;73;1;4;1;success;-2.9;92.201;-31.4;0.879;5076.2;yes
+66;retired;married;unknown;no;no;no;cellular;aug;wed;147;2;999;1;failure;-2.9;92.201;-31.4;0.879;5076.2;yes
+27;admin.;single;university.degree;no;yes;no;cellular;aug;wed;398;4;999;1;failure;-2.9;92.201;-31.4;0.879;5076.2;yes
+37;blue-collar;single;professional.course;no;yes;no;cellular;aug;wed;100;1;999;0;nonexistent;-2.9;92.201;-31.4;0.879;5076.2;no
+59;technician;married;university.degree;no;no;no;cellular;aug;wed;119;4;999;0;nonexistent;-2.9;92.201;-31.4;0.879;5076.2;no
+32;technician;single;professional.course;no;no;no;cellular;aug;wed;313;2;999;1;failure;-2.9;92.201;-31.4;0.879;5076.2;yes
+29;services;married;high.school;no;yes;no;cellular;aug;wed;90;2;4;1;success;-2.9;92.201;-31.4;0.879;5076.2;no
+48;entrepreneur;divorced;high.school;no;no;no;cellular;aug;wed;307;1;999;0;nonexistent;-2.9;92.201;-31.4;0.879;5076.2;yes
+38;admin.;married;university.degree;no;no;no;cellular;aug;wed;236;1;4;1;success;-2.9;92.201;-31.4;0.879;5076.2;no
+20;student;single;basic.4y;no;yes;no;cellular;aug;wed;131;1;999;1;failure;-2.9;92.201;-31.4;0.879;5076.2;yes
+20;student;single;basic.4y;no;yes;no;cellular;aug;wed;267;1;999;0;nonexistent;-2.9;92.201;-31.4;0.879;5076.2;yes
+27;unemployed;single;high.school;no;no;no;cellular;aug;wed;93;1;4;3;success;-2.9;92.201;-31.4;0.879;5076.2;no
+33;services;married;high.school;no;yes;no;cellular;aug;wed;417;1;999;0;nonexistent;-2.9;92.201;-31.4;0.879;5076.2;yes
+36;admin.;single;university.degree;no;yes;no;cellular;aug;wed;87;1;999;2;failure;-2.9;92.201;-31.4;0.879;5076.2;no
+54;housemaid;married;university.degree;no;no;no;cellular;aug;wed;77;3;999;0;nonexistent;-2.9;92.201;-31.4;0.879;5076.2;no
+36;admin.;single;university.degree;no;no;no;cellular;aug;wed;82;1;999;0;nonexistent;-2.9;92.201;-31.4;0.879;5076.2;no
+66;retired;unknown;basic.9y;no;yes;no;cellular;aug;wed;810;3;999;2;failure;-2.9;92.201;-31.4;0.879;5076.2;yes
+36;admin.;divorced;university.degree;no;yes;no;cellular;aug;wed;161;2;999;0;nonexistent;-2.9;92.201;-31.4;0.879;5076.2;no
+66;technician;married;professional.course;no;yes;no;telephone;aug;wed;150;2;999;0;nonexistent;-2.9;92.201;-31.4;0.879;5076.2;no
+35;blue-collar;single;basic.9y;no;no;no;cellular;aug;wed;305;3;999;1;failure;-2.9;92.201;-31.4;0.879;5076.2;no
+28;admin.;single;university.degree;no;no;no;cellular;aug;wed;202;1;999;0;nonexistent;-2.9;92.201;-31.4;0.879;5076.2;no
+28;admin.;single;university.degree;no;no;no;cellular;aug;wed;332;1;999;0;nonexistent;-2.9;92.201;-31.4;0.879;5076.2;yes
+28;admin.;single;university.degree;no;no;no;cellular;aug;wed;153;1;999;0;nonexistent;-2.9;92.201;-31.4;0.879;5076.2;no
+44;admin.;married;university.degree;no;yes;no;cellular;aug;wed;113;1;999;0;nonexistent;-2.9;92.201;-31.4;0.879;5076.2;no
+56;admin.;married;basic.9y;no;no;no;cellular;aug;wed;338;2;4;1;success;-2.9;92.201;-31.4;0.879;5076.2;yes
+32;admin.;married;high.school;no;no;no;cellular;aug;wed;96;1;999;0;nonexistent;-2.9;92.201;-31.4;0.879;5076.2;no
+29;blue-collar;single;high.school;no;yes;no;cellular;aug;wed;71;1;999;0;nonexistent;-2.9;92.201;-31.4;0.879;5076.2;no
+41;services;married;high.school;no;unknown;unknown;cellular;aug;wed;301;1;999;0;nonexistent;-2.9;92.201;-31.4;0.879;5076.2;no
+33;admin.;single;university.degree;no;unknown;unknown;cellular;aug;wed;123;1;999;0;nonexistent;-2.9;92.201;-31.4;0.879;5076.2;no
+33;admin.;single;university.degree;no;no;no;cellular;aug;wed;192;1;999;0;nonexistent;-2.9;92.201;-31.4;0.879;5076.2;no
+45;admin.;married;university.degree;no;no;no;cellular;aug;wed;363;1;4;2;success;-2.9;92.201;-31.4;0.879;5076.2;no
+44;admin.;married;university.degree;no;no;no;cellular;aug;wed;96;2;4;1;success;-2.9;92.201;-31.4;0.879;5076.2;no
+28;student;single;high.school;no;yes;no;cellular;aug;wed;188;1;999;0;nonexistent;-2.9;92.201;-31.4;0.879;5076.2;no
+66;retired;married;basic.6y;unknown;yes;no;cellular;aug;wed;124;1;1;1;success;-2.9;92.201;-31.4;0.879;5076.2;no
+66;retired;married;basic.6y;unknown;no;no;cellular;aug;wed;174;1;999;0;nonexistent;-2.9;92.201;-31.4;0.879;5076.2;no
+32;technician;married;professional.course;no;yes;no;cellular;aug;wed;44;1;3;1;success;-2.9;92.201;-31.4;0.879;5076.2;no
+33;admin.;single;university.degree;no;yes;no;cellular;aug;wed;222;2;999;2;failure;-2.9;92.201;-31.4;0.879;5076.2;no
+42;technician;married;professional.course;no;yes;no;cellular;aug;wed;246;1;999;0;nonexistent;-2.9;92.201;-31.4;0.879;5076.2;no
+42;technician;married;professional.course;no;no;no;cellular;aug;wed;96;1;999;1;failure;-2.9;92.201;-31.4;0.879;5076.2;no
+44;admin.;married;university.degree;no;no;no;cellular;aug;wed;120;1;999;1;failure;-2.9;92.201;-31.4;0.879;5076.2;no
+37;management;single;university.degree;no;yes;no;cellular;aug;wed;243;1;999;0;nonexistent;-2.9;92.201;-31.4;0.879;5076.2;no
+42;technician;married;professional.course;no;yes;yes;cellular;aug;wed;543;1;999;0;nonexistent;-2.9;92.201;-31.4;0.879;5076.2;no
+28;self-employed;single;university.degree;no;unknown;unknown;cellular;aug;wed;227;1;999;0;nonexistent;-2.9;92.201;-31.4;0.879;5076.2;no
+28;technician;single;professional.course;no;no;yes;cellular;aug;wed;162;1;3;1;success;-2.9;92.201;-31.4;0.879;5076.2;no
+38;admin.;married;high.school;no;no;no;cellular;aug;wed;289;2;999;0;nonexistent;-2.9;92.201;-31.4;0.879;5076.2;yes
+74;retired;married;professional.course;no;no;no;cellular;aug;wed;298;1;999;0;nonexistent;-2.9;92.201;-31.4;0.879;5076.2;no
+76;retired;married;basic.4y;no;no;no;cellular;aug;wed;331;2;999;0;nonexistent;-2.9;92.201;-31.4;0.879;5076.2;no
+29;admin.;married;university.degree;no;no;no;cellular;aug;thu;111;5;999;0;nonexistent;-2.9;92.201;-31.4;0.873;5076.2;no
+28;admin.;single;university.degree;no;no;no;cellular;aug;thu;489;5;999;0;nonexistent;-2.9;92.201;-31.4;0.873;5076.2;yes
+27;admin.;single;high.school;no;no;yes;cellular;aug;thu;255;2;999;1;failure;-2.9;92.201;-31.4;0.873;5076.2;no
+37;technician;single;university.degree;no;yes;yes;cellular;aug;thu;73;2;4;1;success;-2.9;92.201;-31.4;0.873;5076.2;no
+33;technician;married;university.degree;no;yes;no;cellular;aug;thu;101;4;999;2;failure;-2.9;92.201;-31.4;0.873;5076.2;no
+23;student;single;high.school;no;yes;no;cellular;aug;thu;784;3;15;3;failure;-2.9;92.201;-31.4;0.873;5076.2;yes
+36;unemployed;married;university.degree;no;no;no;cellular;aug;thu;222;1;999;0;nonexistent;-2.9;92.201;-31.4;0.873;5076.2;yes
+22;student;single;high.school;no;yes;no;cellular;aug;thu;425;2;999;0;nonexistent;-2.9;92.201;-31.4;0.873;5076.2;yes
+30;admin.;married;university.degree;no;yes;no;telephone;aug;thu;181;1;999;0;nonexistent;-2.9;92.201;-31.4;0.873;5076.2;no
+29;admin.;single;university.degree;no;yes;yes;cellular;aug;thu;254;3;3;1;success;-2.9;92.201;-31.4;0.873;5076.2;yes
+41;admin.;married;high.school;no;yes;no;cellular;aug;thu;1175;3;999;0;nonexistent;-2.9;92.201;-31.4;0.873;5076.2;no
+31;blue-collar;married;professional.course;no;no;no;cellular;aug;thu;414;1;999;0;nonexistent;-2.9;92.201;-31.4;0.873;5076.2;yes
+39;admin.;married;university.degree;unknown;yes;no;cellular;aug;thu;102;1;4;1;success;-2.9;92.201;-31.4;0.873;5076.2;no
+39;admin.;married;university.degree;unknown;yes;no;cellular;aug;thu;200;1;999;1;failure;-2.9;92.201;-31.4;0.873;5076.2;no
+30;services;single;high.school;no;yes;no;cellular;aug;thu;148;2;999;0;nonexistent;-2.9;92.201;-31.4;0.873;5076.2;yes
+36;admin.;married;university.degree;no;yes;yes;cellular;aug;thu;220;2;999;1;failure;-2.9;92.201;-31.4;0.873;5076.2;no
+88;retired;divorced;basic.4y;no;yes;no;cellular;aug;thu;402;2;999;0;nonexistent;-2.9;92.201;-31.4;0.873;5076.2;no
+39;admin.;married;high.school;no;no;no;cellular;aug;thu;315;2;4;1;success;-2.9;92.201;-31.4;0.873;5076.2;yes
+39;management;married;university.degree;no;no;no;cellular;aug;thu;105;1;999;0;nonexistent;-2.9;92.201;-31.4;0.873;5076.2;no
+39;admin.;married;university.degree;unknown;yes;no;cellular;aug;thu;368;1;999;0;nonexistent;-2.9;92.201;-31.4;0.873;5076.2;no
+45;admin.;divorced;university.degree;no;yes;no;cellular;aug;thu;150;3;999;1;failure;-2.9;92.201;-31.4;0.873;5076.2;no
+34;housemaid;married;university.degree;no;no;no;cellular;aug;thu;485;3;4;1;success;-2.9;92.201;-31.4;0.873;5076.2;no
+32;blue-collar;single;basic.9y;no;yes;no;cellular;aug;thu;282;1;999;0;nonexistent;-2.9;92.201;-31.4;0.873;5076.2;yes
+74;retired;married;basic.4y;no;no;no;cellular;aug;thu;307;1;999;1;failure;-2.9;92.201;-31.4;0.873;5076.2;no
+46;admin.;married;university.degree;no;yes;no;cellular;aug;thu;399;1;999;1;failure;-2.9;92.201;-31.4;0.873;5076.2;yes
+46;admin.;married;university.degree;no;yes;no;cellular;aug;thu;164;1;999;0;nonexistent;-2.9;92.201;-31.4;0.873;5076.2;no
+62;retired;married;university.degree;unknown;yes;yes;cellular;aug;thu;791;2;999;0;nonexistent;-2.9;92.201;-31.4;0.873;5076.2;no
+34;housemaid;married;university.degree;no;no;yes;cellular;aug;thu;1152;2;6;1;success;-2.9;92.201;-31.4;0.873;5076.2;no
+36;admin.;married;university.degree;no;no;no;cellular;aug;thu;138;2;999;1;failure;-2.9;92.201;-31.4;0.873;5076.2;no
+36;unemployed;married;university.degree;no;yes;no;cellular;aug;thu;138;2;999;0;nonexistent;-2.9;92.201;-31.4;0.873;5076.2;no
+38;management;married;university.degree;no;yes;no;cellular;aug;thu;328;2;999;0;nonexistent;-2.9;92.201;-31.4;0.873;5076.2;no
+33;admin.;single;university.degree;no;yes;no;cellular;aug;thu;72;3;999;0;nonexistent;-2.9;92.201;-31.4;0.873;5076.2;no
+24;student;single;high.school;no;no;no;cellular;aug;thu;136;1;999;2;failure;-2.9;92.201;-31.4;0.873;5076.2;no
+39;unemployed;married;high.school;no;no;no;cellular;aug;thu;192;3;999;0;nonexistent;-2.9;92.201;-31.4;0.873;5076.2;yes
+34;self-employed;married;university.degree;no;no;no;cellular;aug;thu;78;2;999;0;nonexistent;-2.9;92.201;-31.4;0.873;5076.2;no
+20;student;single;high.school;no;no;no;cellular;aug;thu;347;2;999;0;nonexistent;-2.9;92.201;-31.4;0.873;5076.2;no
+46;technician;married;basic.6y;no;yes;no;cellular;aug;thu;464;4;999;0;nonexistent;-2.9;92.201;-31.4;0.873;5076.2;yes
+81;retired;married;basic.6y;no;no;no;cellular;aug;thu;189;2;4;1;success;-2.9;92.201;-31.4;0.873;5076.2;no
+43;technician;married;university.degree;no;no;no;cellular;aug;thu;160;1;999;0;nonexistent;-2.9;92.201;-31.4;0.873;5076.2;no
+22;student;single;basic.6y;no;yes;no;cellular;aug;thu;293;2;4;2;success;-2.9;92.201;-31.4;0.873;5076.2;yes
+34;management;married;university.degree;no;no;no;cellular;aug;thu;233;1;999;0;nonexistent;-2.9;92.201;-31.4;0.873;5076.2;no
+32;services;married;high.school;no;yes;no;cellular;aug;thu;105;1;999;0;nonexistent;-2.9;92.201;-31.4;0.873;5076.2;no
+36;services;married;high.school;no;yes;yes;cellular;aug;thu;227;2;999;1;failure;-2.9;92.201;-31.4;0.873;5076.2;yes
+32;services;married;high.school;no;no;no;cellular;aug;thu;100;1;999;0;nonexistent;-2.9;92.201;-31.4;0.873;5076.2;no
+34;self-employed;single;university.degree;no;no;no;telephone;aug;thu;57;1;999;0;nonexistent;-2.9;92.201;-31.4;0.873;5076.2;no
+24;technician;single;professional.course;no;no;no;cellular;aug;thu;129;1;999;0;nonexistent;-2.9;92.201;-31.4;0.873;5076.2;no
+28;unemployed;single;university.degree;no;no;yes;cellular;aug;thu;74;2;999;0;nonexistent;-2.9;92.201;-31.4;0.873;5076.2;no
+27;technician;single;university.degree;no;no;no;cellular;aug;thu;103;1;4;1;success;-2.9;92.201;-31.4;0.873;5076.2;no
+46;admin.;married;university.degree;no;yes;no;telephone;aug;thu;213;1;999;0;nonexistent;-2.9;92.201;-31.4;0.873;5076.2;no
+76;retired;married;basic.6y;no;no;yes;cellular;aug;thu;284;1;999;1;failure;-2.9;92.201;-31.4;0.873;5076.2;no
+64;unknown;married;unknown;no;yes;yes;cellular;aug;thu;219;1;999;0;nonexistent;-2.9;92.201;-31.4;0.873;5076.2;no
+40;admin.;married;high.school;no;no;no;cellular;aug;thu;477;2;999;0;nonexistent;-2.9;92.201;-31.4;0.873;5076.2;yes
+35;admin.;single;high.school;no;no;yes;cellular;aug;thu;73;1;999;1;failure;-2.9;92.201;-31.4;0.873;5076.2;no
+74;retired;married;professional.course;no;yes;no;cellular;aug;thu;204;3;999;1;failure;-2.9;92.201;-31.4;0.873;5076.2;yes
+41;blue-collar;married;basic.9y;no;no;no;cellular;aug;thu;726;1;999;0;nonexistent;-2.9;92.201;-31.4;0.873;5076.2;no
+41;blue-collar;married;basic.9y;no;no;no;cellular;aug;thu;75;1;999;1;failure;-2.9;92.201;-31.4;0.873;5076.2;no
+76;retired;married;university.degree;no;yes;no;cellular;aug;thu;344;1;999;1;failure;-2.9;92.201;-31.4;0.873;5076.2;no
+48;self-employed;married;university.degree;no;no;no;cellular;aug;thu;135;1;4;3;success;-2.9;92.201;-31.4;0.873;5076.2;no
+25;admin.;single;university.degree;no;no;yes;cellular;aug;thu;112;1;999;0;nonexistent;-2.9;92.201;-31.4;0.873;5076.2;no
+25;admin.;single;university.degree;no;no;yes;cellular;aug;thu;99;1;999;0;nonexistent;-2.9;92.201;-31.4;0.873;5076.2;no
+21;student;single;high.school;no;no;no;cellular;aug;thu;185;2;4;2;success;-2.9;92.201;-31.4;0.873;5076.2;no
+39;admin.;married;basic.9y;unknown;no;no;cellular;aug;thu;371;2;999;0;nonexistent;-2.9;92.201;-31.4;0.873;5076.2;no
+44;unemployed;married;high.school;no;yes;no;cellular;aug;thu;143;1;3;1;success;-2.9;92.201;-31.4;0.873;5076.2;no
+44;unemployed;married;high.school;no;yes;no;telephone;aug;thu;99;1;999;0;nonexistent;-2.9;92.201;-31.4;0.873;5076.2;no
+44;unemployed;married;high.school;no;yes;no;cellular;aug;thu;146;1;999;0;nonexistent;-2.9;92.201;-31.4;0.873;5076.2;no
+44;unemployed;married;high.school;no;yes;no;cellular;aug;thu;284;1;999;0;nonexistent;-2.9;92.201;-31.4;0.873;5076.2;no
+33;services;married;high.school;no;no;no;cellular;aug;thu;738;1;999;0;nonexistent;-2.9;92.201;-31.4;0.873;5076.2;yes
+29;management;married;university.degree;no;yes;no;cellular;aug;thu;75;1;4;2;success;-2.9;92.201;-31.4;0.873;5076.2;no
+39;blue-collar;married;basic.6y;no;no;no;cellular;aug;thu;320;2;3;1;success;-2.9;92.201;-31.4;0.873;5076.2;yes
+73;retired;married;professional.course;no;yes;no;cellular;aug;thu;135;2;999;0;nonexistent;-2.9;92.201;-31.4;0.873;5076.2;no
+36;technician;married;professional.course;no;yes;no;cellular;aug;thu;92;2;999;1;failure;-2.9;92.201;-31.4;0.873;5076.2;no
+22;student;single;high.school;no;no;no;cellular;aug;thu;53;2;3;1;success;-2.9;92.201;-31.4;0.873;5076.2;no
+33;services;married;high.school;no;unknown;unknown;cellular;aug;thu;240;2;999;0;nonexistent;-2.9;92.201;-31.4;0.873;5076.2;no
+57;admin.;single;high.school;no;yes;no;cellular;aug;thu;479;1;999;0;nonexistent;-2.9;92.201;-31.4;0.873;5076.2;yes
+62;retired;married;university.degree;unknown;no;no;cellular;aug;thu;154;2;999;0;nonexistent;-2.9;92.201;-31.4;0.873;5076.2;no
+21;student;single;high.school;no;no;no;cellular;aug;thu;236;3;999;0;nonexistent;-2.9;92.201;-31.4;0.873;5076.2;no
+72;retired;divorced;basic.4y;no;yes;yes;cellular;aug;thu;238;2;999;1;failure;-2.9;92.201;-31.4;0.873;5076.2;no
+31;technician;married;university.degree;no;no;no;cellular;aug;thu;158;1;999;0;nonexistent;-2.9;92.201;-31.4;0.873;5076.2;no
+33;admin.;single;university.degree;no;no;no;cellular;aug;thu;275;1;999;0;nonexistent;-2.9;92.201;-31.4;0.873;5076.2;no
+43;unemployed;married;high.school;no;no;no;cellular;aug;thu;319;4;3;2;success;-2.9;92.201;-31.4;0.873;5076.2;no
+36;management;married;basic.6y;no;yes;yes;cellular;aug;thu;354;3;999;0;nonexistent;-2.9;92.201;-31.4;0.873;5076.2;yes
+36;admin.;married;university.degree;no;no;no;cellular;aug;thu;126;2;999;0;nonexistent;-2.9;92.201;-31.4;0.873;5076.2;no
+28;unemployed;married;professional.course;no;yes;no;telephone;aug;fri;275;6;999;0;nonexistent;-2.9;92.201;-31.4;0.869;5076.2;yes
+17;student;single;basic.9y;no;yes;no;cellular;aug;fri;182;2;999;2;failure;-2.9;92.201;-31.4;0.869;5076.2;no
+26;student;single;professional.course;no;yes;no;cellular;aug;fri;150;2;999;0;nonexistent;-2.9;92.201;-31.4;0.869;5076.2;yes
+43;management;married;basic.9y;no;yes;yes;cellular;aug;fri;233;2;999;0;nonexistent;-2.9;92.201;-31.4;0.869;5076.2;no
+61;retired;married;basic.9y;no;yes;no;telephone;aug;fri;176;2;999;0;nonexistent;-2.9;92.201;-31.4;0.869;5076.2;no
+39;technician;married;university.degree;no;yes;no;cellular;aug;fri;156;2;999;0;nonexistent;-2.9;92.201;-31.4;0.869;5076.2;yes
+62;retired;married;unknown;no;no;no;cellular;aug;fri;172;4;999;0;nonexistent;-2.9;92.201;-31.4;0.869;5076.2;yes
+70;retired;married;professional.course;no;no;no;cellular;aug;fri;185;3;999;1;failure;-2.9;92.201;-31.4;0.869;5076.2;no
+45;unemployed;married;basic.9y;no;no;no;cellular;aug;fri;126;3;999;0;nonexistent;-2.9;92.201;-31.4;0.869;5076.2;no
+43;management;married;basic.9y;no;yes;no;cellular;aug;fri;180;1;6;2;failure;-2.9;92.201;-31.4;0.869;5076.2;no
+29;blue-collar;married;basic.4y;no;yes;no;cellular;aug;fri;98;1;999;1;failure;-2.9;92.201;-31.4;0.869;5076.2;no
+48;management;divorced;university.degree;no;no;no;cellular;aug;fri;117;1;999;0;nonexistent;-2.9;92.201;-31.4;0.869;5076.2;no
+35;technician;married;professional.course;no;yes;no;cellular;aug;fri;225;1;999;0;nonexistent;-2.9;92.201;-31.4;0.869;5076.2;yes
+61;management;married;university.degree;no;yes;no;cellular;aug;fri;209;2;4;2;success;-2.9;92.201;-31.4;0.869;5076.2;yes
+24;student;single;high.school;unknown;yes;no;cellular;aug;fri;319;1;999;1;failure;-2.9;92.201;-31.4;0.869;5076.2;no
+33;blue-collar;single;basic.9y;no;no;no;cellular;aug;fri;257;1;999;1;failure;-2.9;92.201;-31.4;0.869;5076.2;no
+32;blue-collar;married;basic.9y;no;yes;yes;cellular;aug;fri;230;1;999;0;nonexistent;-2.9;92.201;-31.4;0.869;5076.2;no
+42;management;married;university.degree;no;yes;no;cellular;aug;fri;436;1;13;1;success;-2.9;92.201;-31.4;0.869;5076.2;yes
+36;unemployed;single;university.degree;no;no;no;cellular;aug;fri;415;1;999;0;nonexistent;-2.9;92.201;-31.4;0.869;5076.2;no
+36;unemployed;single;university.degree;no;no;no;cellular;aug;fri;260;1;999;0;nonexistent;-2.9;92.201;-31.4;0.869;5076.2;no
+17;student;single;basic.9y;no;yes;no;cellular;aug;fri;92;3;4;2;success;-2.9;92.201;-31.4;0.869;5076.2;no
+54;admin.;married;university.degree;no;yes;no;cellular;aug;fri;326;3;999;0;nonexistent;-2.9;92.201;-31.4;0.869;5076.2;yes
+25;student;single;high.school;no;no;no;cellular;aug;fri;253;1;999;0;nonexistent;-2.9;92.201;-31.4;0.869;5076.2;no
+25;student;single;high.school;no;yes;no;cellular;aug;fri;78;1;999;1;failure;-2.9;92.201;-31.4;0.869;5076.2;no
+48;admin.;single;university.degree;no;yes;no;cellular;aug;fri;260;2;999;1;failure;-2.9;92.201;-31.4;0.869;5076.2;no
+20;student;single;high.school;no;no;no;cellular;aug;fri;190;2;999;1;failure;-2.9;92.201;-31.4;0.869;5076.2;no
+63;blue-collar;married;basic.4y;no;yes;yes;cellular;aug;fri;107;3;999;0;nonexistent;-2.9;92.201;-31.4;0.869;5076.2;no
+58;blue-collar;divorced;basic.4y;no;no;no;cellular;aug;fri;186;1;999;0;nonexistent;-2.9;92.201;-31.4;0.869;5076.2;yes
+55;retired;married;basic.4y;no;yes;no;cellular;aug;fri;137;1;3;1;success;-2.9;92.201;-31.4;0.869;5076.2;yes
+35;admin.;single;high.school;no;yes;no;cellular;aug;fri;105;1;999;0;nonexistent;-2.9;92.201;-31.4;0.869;5076.2;no
+71;retired;married;basic.4y;no;yes;no;cellular;aug;fri;125;1;999;0;nonexistent;-2.9;92.201;-31.4;0.869;5076.2;yes
+25;services;single;high.school;no;no;no;cellular;aug;fri;553;1;999;0;nonexistent;-2.9;92.201;-31.4;0.869;5076.2;no
+70;retired;married;professional.course;no;yes;no;cellular;aug;fri;94;4;999;0;nonexistent;-2.9;92.201;-31.4;0.869;5076.2;yes
+28;unemployed;married;professional.course;no;no;no;cellular;aug;fri;276;2;999;0;nonexistent;-2.9;92.201;-31.4;0.869;5076.2;yes
+46;technician;married;professional.course;no;yes;no;cellular;aug;fri;182;6;999;1;failure;-2.9;92.201;-31.4;0.869;5076.2;yes
+42;technician;married;professional.course;no;yes;no;cellular;aug;fri;100;2;999;0;nonexistent;-2.9;92.201;-31.4;0.869;5076.2;yes
+26;student;single;high.school;no;no;no;cellular;aug;fri;482;2;999;0;nonexistent;-2.9;92.201;-31.4;0.869;5076.2;no
+35;admin.;married;university.degree;no;no;no;cellular;aug;fri;201;1;999;0;nonexistent;-2.9;92.201;-31.4;0.869;5076.2;yes
+32;admin.;married;university.degree;no;yes;no;cellular;aug;fri;88;5;999;0;nonexistent;-2.9;92.201;-31.4;0.869;5076.2;no
+38;self-employed;divorced;high.school;no;no;no;cellular;aug;fri;391;3;999;1;failure;-2.9;92.201;-31.4;0.869;5076.2;yes
+28;unemployed;married;professional.course;no;yes;no;cellular;aug;fri;190;3;999;1;failure;-2.9;92.201;-31.4;0.869;5076.2;yes
+17;student;single;basic.9y;no;unknown;unknown;cellular;aug;fri;498;2;999;1;failure;-2.9;92.201;-31.4;0.869;5076.2;yes
+31;admin.;married;university.degree;no;no;no;cellular;aug;fri;880;3;999;0;nonexistent;-2.9;92.201;-31.4;0.869;5076.2;yes
+63;retired;divorced;basic.4y;no;yes;no;cellular;aug;fri;153;2;3;1;success;-2.9;92.201;-31.4;0.869;5076.2;no
+29;blue-collar;single;basic.6y;no;no;no;cellular;aug;fri;260;3;999;0;nonexistent;-2.9;92.201;-31.4;0.869;5076.2;yes
+37;entrepreneur;married;basic.6y;no;yes;no;cellular;aug;fri;148;2;999;0;nonexistent;-2.9;92.201;-31.4;0.869;5076.2;no
+25;technician;single;university.degree;no;yes;no;cellular;aug;fri;142;2;999;1;failure;-2.9;92.201;-31.4;0.869;5076.2;no
+61;retired;married;basic.9y;no;no;no;cellular;aug;fri;99;3;999;0;nonexistent;-2.9;92.201;-31.4;0.869;5076.2;no
+70;retired;married;professional.course;no;no;no;cellular;aug;fri;70;3;999;0;nonexistent;-2.9;92.201;-31.4;0.869;5076.2;no
+28;unemployed;married;professional.course;no;no;no;telephone;aug;fri;140;11;999;0;nonexistent;-2.9;92.201;-31.4;0.869;5076.2;no
+31;entrepreneur;single;university.degree;no;yes;no;cellular;aug;fri;211;3;999;0;nonexistent;-2.9;92.201;-31.4;0.869;5076.2;yes
+35;technician;married;university.degree;no;no;no;cellular;aug;fri;224;3;999;0;nonexistent;-2.9;92.201;-31.4;0.869;5076.2;no
+20;student;single;high.school;no;no;no;telephone;aug;fri;159;2;4;2;success;-2.9;92.201;-31.4;0.869;5076.2;no
+35;management;married;high.school;no;yes;yes;cellular;aug;fri;313;4;999;2;failure;-2.9;92.201;-31.4;0.869;5076.2;no
+22;student;single;basic.9y;no;no;no;telephone;aug;mon;297;1;999;0;nonexistent;-2.9;92.201;-31.4;0.861;5076.2;no
+68;retired;married;basic.4y;no;no;no;cellular;aug;mon;110;1;999;2;failure;-2.9;92.201;-31.4;0.861;5076.2;no
+62;management;divorced;high.school;no;no;no;cellular;aug;mon;405;1;999;0;nonexistent;-2.9;92.201;-31.4;0.861;5076.2;yes
+65;retired;married;high.school;no;no;no;cellular;aug;mon;80;1;999;1;failure;-2.9;92.201;-31.4;0.861;5076.2;no
+26;admin.;single;university.degree;no;yes;no;cellular;aug;mon;138;1;999;0;nonexistent;-2.9;92.201;-31.4;0.861;5076.2;no
+76;retired;married;professional.course;no;no;no;cellular;aug;mon;308;1;15;1;success;-2.9;92.201;-31.4;0.861;5076.2;yes
+66;retired;married;unknown;no;no;no;cellular;aug;mon;43;1;999;2;failure;-2.9;92.201;-31.4;0.861;5076.2;no
+23;technician;single;university.degree;no;yes;no;cellular;aug;mon;116;1;999;0;nonexistent;-2.9;92.201;-31.4;0.861;5076.2;no
+43;management;married;university.degree;no;no;no;cellular;aug;mon;75;1;999;0;nonexistent;-2.9;92.201;-31.4;0.861;5076.2;no
+72;retired;divorced;basic.4y;no;no;no;cellular;aug;mon;152;1;999;0;nonexistent;-2.9;92.201;-31.4;0.861;5076.2;no
+73;retired;married;basic.4y;no;no;no;cellular;aug;mon;348;1;999;0;nonexistent;-2.9;92.201;-31.4;0.861;5076.2;yes
+67;retired;married;professional.course;no;yes;yes;cellular;aug;mon;186;1;999;0;nonexistent;-2.9;92.201;-31.4;0.861;5076.2;yes
+80;retired;married;high.school;no;no;no;telephone;aug;mon;199;1;999;0;nonexistent;-2.9;92.201;-31.4;0.861;5076.2;yes
+60;admin.;married;university.degree;no;no;no;cellular;aug;mon;133;1;999;0;nonexistent;-2.9;92.201;-31.4;0.861;5076.2;no
+33;technician;married;university.degree;no;yes;no;cellular;aug;mon;551;2;999;0;nonexistent;-2.9;92.201;-31.4;0.861;5076.2;no
+23;student;single;high.school;no;no;no;cellular;aug;mon;123;1;999;0;nonexistent;-2.9;92.201;-31.4;0.861;5076.2;no
+23;student;single;high.school;no;no;no;cellular;aug;mon;80;1;999;0;nonexistent;-2.9;92.201;-31.4;0.861;5076.2;no
+25;admin.;single;university.degree;no;no;no;cellular;aug;mon;286;1;999;0;nonexistent;-2.9;92.201;-31.4;0.861;5076.2;yes
+25;admin.;single;university.degree;no;yes;no;cellular;aug;mon;163;1;6;1;success;-2.9;92.201;-31.4;0.861;5076.2;yes
+33;unemployed;single;university.degree;no;no;no;cellular;aug;mon;156;1;999;0;nonexistent;-2.9;92.201;-31.4;0.861;5076.2;no
+65;retired;married;high.school;no;yes;yes;cellular;aug;mon;97;2;999;0;nonexistent;-2.9;92.201;-31.4;0.861;5076.2;no
+34;technician;married;university.degree;no;no;no;cellular;aug;mon;220;1;999;0;nonexistent;-2.9;92.201;-31.4;0.861;5076.2;yes
+34;technician;married;university.degree;no;no;no;cellular;aug;mon;473;1;999;0;nonexistent;-2.9;92.201;-31.4;0.861;5076.2;no
+31;admin.;single;university.degree;no;no;no;telephone;aug;mon;122;1;999;0;nonexistent;-2.9;92.201;-31.4;0.861;5076.2;no
+34;technician;single;professional.course;no;no;no;cellular;aug;mon;237;1;999;1;failure;-2.9;92.201;-31.4;0.861;5076.2;no
+31;technician;married;university.degree;no;no;no;cellular;aug;mon;109;1;999;1;failure;-2.9;92.201;-31.4;0.861;5076.2;no
+26;admin.;single;university.degree;no;unknown;unknown;cellular;aug;mon;115;1;999;0;nonexistent;-2.9;92.201;-31.4;0.861;5076.2;no
+43;management;married;university.degree;no;no;no;telephone;aug;mon;123;1;999;0;nonexistent;-2.9;92.201;-31.4;0.861;5076.2;no
+50;blue-collar;married;basic.4y;no;no;no;cellular;aug;mon;123;2;15;1;success;-2.9;92.201;-31.4;0.861;5076.2;no
+30;services;single;high.school;no;no;no;cellular;aug;mon;366;2;999;0;nonexistent;-2.9;92.201;-31.4;0.861;5076.2;no
+28;admin.;single;university.degree;no;yes;no;cellular;aug;mon;343;2;999;1;failure;-2.9;92.201;-31.4;0.861;5076.2;yes
+34;technician;married;professional.course;no;no;no;cellular;aug;mon;123;1;999;0;nonexistent;-2.9;92.201;-31.4;0.861;5076.2;no
+48;technician;married;high.school;no;yes;no;cellular;aug;mon;711;1;999;0;nonexistent;-2.9;92.201;-31.4;0.861;5076.2;yes
+44;admin.;single;university.degree;no;no;no;cellular;aug;mon;207;1;6;1;success;-2.9;92.201;-31.4;0.861;5076.2;yes
+18;student;single;basic.6y;no;yes;no;cellular;aug;mon;628;1;999;0;nonexistent;-2.9;92.201;-31.4;0.861;5076.2;no
+23;technician;married;professional.course;no;yes;no;cellular;aug;mon;341;1;3;2;success;-2.9;92.201;-31.4;0.861;5076.2;yes
+27;self-employed;single;university.degree;no;unknown;unknown;cellular;aug;mon;130;2;999;1;failure;-2.9;92.201;-31.4;0.861;5076.2;no
+27;self-employed;single;university.degree;no;no;no;cellular;aug;mon;241;2;999;0;nonexistent;-2.9;92.201;-31.4;0.861;5076.2;no
+28;admin.;single;university.degree;no;no;no;cellular;aug;mon;192;1;999;0;nonexistent;-2.9;92.201;-31.4;0.861;5076.2;no
+28;admin.;single;university.degree;no;yes;no;cellular;aug;mon;340;1;999;0;nonexistent;-2.9;92.201;-31.4;0.861;5076.2;yes
+28;admin.;single;university.degree;no;unknown;unknown;cellular;aug;mon;148;1;999;2;failure;-2.9;92.201;-31.4;0.861;5076.2;no
+41;admin.;single;high.school;no;yes;no;cellular;aug;mon;606;1;6;1;success;-2.9;92.201;-31.4;0.861;5076.2;yes
+29;management;single;university.degree;no;no;no;cellular;aug;mon;300;1;999;0;nonexistent;-2.9;92.201;-31.4;0.861;5076.2;no
+74;retired;married;basic.9y;no;yes;no;cellular;aug;mon;156;1;999;1;failure;-2.9;92.201;-31.4;0.861;5076.2;yes
+46;entrepreneur;married;high.school;no;yes;no;cellular;aug;mon;109;1;999;0;nonexistent;-2.9;92.201;-31.4;0.861;5076.2;no
+22;student;single;professional.course;no;yes;no;cellular;aug;mon;162;2;999;1;failure;-2.9;92.201;-31.4;0.861;5076.2;yes
+29;unemployed;single;university.degree;no;yes;no;cellular;aug;tue;33;2;999;0;nonexistent;-2.9;92.201;-31.4;0.859;5076.2;no
+67;retired;married;basic.6y;no;no;no;cellular;aug;tue;460;2;999;0;nonexistent;-2.9;92.201;-31.4;0.859;5076.2;yes
+36;admin.;single;university.degree;no;no;no;cellular;aug;tue;278;1;999;0;nonexistent;-2.9;92.201;-31.4;0.859;5076.2;yes
+65;housemaid;divorced;basic.4y;no;yes;no;cellular;aug;tue;212;1;999;0;nonexistent;-2.9;92.201;-31.4;0.859;5076.2;no
+31;admin.;single;high.school;no;yes;no;cellular;aug;tue;243;2;999;0;nonexistent;-2.9;92.201;-31.4;0.859;5076.2;no
+61;retired;married;university.degree;no;no;no;telephone;aug;tue;249;2;3;1;success;-2.9;92.201;-31.4;0.859;5076.2;yes
+63;retired;married;university.degree;no;no;no;cellular;aug;tue;177;1;999;0;nonexistent;-2.9;92.201;-31.4;0.859;5076.2;no
+34;admin.;single;university.degree;no;yes;no;telephone;aug;tue;205;1;999;0;nonexistent;-2.9;92.201;-31.4;0.859;5076.2;yes
+34;admin.;single;university.degree;no;no;yes;cellular;aug;tue;543;1;999;1;failure;-2.9;92.201;-31.4;0.859;5076.2;no
+33;admin.;married;high.school;no;no;no;cellular;aug;tue;147;1;999;1;failure;-2.9;92.201;-31.4;0.859;5076.2;no
+33;admin.;married;high.school;no;no;yes;cellular;aug;tue;113;1;6;2;success;-2.9;92.201;-31.4;0.859;5076.2;no
+26;admin.;single;university.degree;no;yes;no;telephone;aug;tue;215;1;999;1;failure;-2.9;92.201;-31.4;0.859;5076.2;yes
+47;admin.;single;university.degree;no;yes;no;cellular;aug;tue;161;1;999;1;failure;-2.9;92.201;-31.4;0.859;5076.2;yes
+49;technician;married;university.degree;no;no;no;cellular;aug;tue;90;1;999;0;nonexistent;-2.9;92.201;-31.4;0.859;5076.2;no
+32;technician;single;university.degree;no;yes;yes;cellular;aug;tue;96;1;999;0;nonexistent;-2.9;92.201;-31.4;0.859;5076.2;no
+56;management;married;university.degree;no;no;no;telephone;aug;tue;108;1;999;0;nonexistent;-2.9;92.201;-31.4;0.859;5076.2;no
+59;management;married;university.degree;no;yes;no;cellular;aug;tue;210;2;999;1;failure;-2.9;92.201;-31.4;0.859;5076.2;no
+61;retired;married;university.degree;no;yes;no;cellular;aug;tue;101;1;999;0;nonexistent;-2.9;92.201;-31.4;0.859;5076.2;no
+34;admin.;married;university.degree;no;yes;no;cellular;aug;tue;360;1;999;0;nonexistent;-2.9;92.201;-31.4;0.859;5076.2;no
+37;admin.;married;university.degree;no;no;yes;cellular;aug;tue;66;1;999;1;failure;-2.9;92.201;-31.4;0.859;5076.2;no
+37;admin.;married;university.degree;no;yes;no;cellular;aug;tue;148;1;999;2;failure;-2.9;92.201;-31.4;0.859;5076.2;yes
+35;technician;married;university.degree;no;unknown;unknown;cellular;aug;tue;117;1;999;0;nonexistent;-2.9;92.201;-31.4;0.859;5076.2;no
+32;services;married;high.school;no;no;no;cellular;aug;tue;363;1;999;0;nonexistent;-2.9;92.201;-31.4;0.859;5076.2;no
+71;retired;married;basic.4y;unknown;unknown;unknown;cellular;aug;tue;216;1;999;0;nonexistent;-2.9;92.201;-31.4;0.859;5076.2;yes
+50;admin.;married;university.degree;no;no;no;cellular;aug;tue;587;2;999;1;failure;-2.9;92.201;-31.4;0.859;5076.2;yes
+34;technician;married;professional.course;no;no;no;cellular;aug;tue;193;1;13;1;success;-2.9;92.201;-31.4;0.859;5076.2;yes
+56;management;married;university.degree;no;yes;no;cellular;aug;tue;370;2;999;0;nonexistent;-2.9;92.201;-31.4;0.859;5076.2;yes
+33;blue-collar;divorced;basic.4y;no;yes;no;cellular;aug;tue;395;1;999;0;nonexistent;-2.9;92.201;-31.4;0.859;5076.2;yes
+20;student;single;high.school;no;yes;no;cellular;aug;tue;532;1;999;1;failure;-2.9;92.201;-31.4;0.859;5076.2;yes
+64;retired;married;high.school;unknown;no;no;cellular;aug;tue;301;1;999;1;failure;-2.9;92.201;-31.4;0.859;5076.2;yes
+29;admin.;single;university.degree;no;yes;no;cellular;aug;tue;307;1;999;0;nonexistent;-2.9;92.201;-31.4;0.859;5076.2;no
+65;retired;married;basic.4y;no;yes;no;cellular;aug;tue;197;2;999;1;failure;-2.9;92.201;-31.4;0.859;5076.2;no
+63;retired;married;university.degree;no;no;no;telephone;aug;tue;280;3;999;0;nonexistent;-2.9;92.201;-31.4;0.859;5076.2;no
+35;technician;married;professional.course;no;no;no;cellular;aug;tue;441;1;999;0;nonexistent;-2.9;92.201;-31.4;0.859;5076.2;yes
+35;admin.;single;university.degree;no;no;no;telephone;aug;tue;396;3;999;0;nonexistent;-2.9;92.201;-31.4;0.859;5076.2;no
+26;admin.;single;high.school;no;no;no;cellular;aug;wed;431;4;999;0;nonexistent;-2.9;92.201;-31.4;0.854;5076.2;no
+38;technician;married;university.degree;no;yes;no;cellular;aug;wed;220;5;999;0;nonexistent;-2.9;92.201;-31.4;0.854;5076.2;no
+74;retired;divorced;basic.4y;no;yes;no;cellular;aug;wed;536;1;13;1;success;-2.9;92.201;-31.4;0.854;5076.2;yes
+33;admin.;married;high.school;no;yes;no;cellular;aug;wed;206;4;999;0;nonexistent;-2.9;92.201;-31.4;0.854;5076.2;no
+33;admin.;married;high.school;no;yes;no;telephone;aug;wed;578;2;999;0;nonexistent;-2.9;92.201;-31.4;0.854;5076.2;no
+62;unemployed;married;high.school;no;yes;no;cellular;aug;wed;250;1;999;1;failure;-2.9;92.201;-31.4;0.854;5076.2;no
+80;retired;married;basic.4y;no;no;no;cellular;aug;wed;207;4;999;0;nonexistent;-2.9;92.201;-31.4;0.854;5076.2;no
+26;technician;single;university.degree;no;yes;yes;cellular;aug;wed;65;1;999;0;nonexistent;-2.9;92.201;-31.4;0.854;5076.2;no
+38;technician;married;university.degree;no;yes;no;cellular;aug;wed;238;4;999;0;nonexistent;-2.9;92.201;-31.4;0.854;5076.2;yes
+35;admin.;married;university.degree;no;yes;no;cellular;aug;wed;768;2;999;2;failure;-2.9;92.201;-31.4;0.854;5076.2;yes
+37;admin.;married;university.degree;no;no;no;cellular;aug;wed;225;2;999;0;nonexistent;-2.9;92.201;-31.4;0.854;5076.2;yes
+56;housemaid;divorced;basic.4y;no;no;no;cellular;aug;wed;89;1;999;0;nonexistent;-2.9;92.201;-31.4;0.854;5076.2;no
+20;student;single;basic.9y;no;no;no;cellular;aug;wed;98;2;999;0;nonexistent;-2.9;92.201;-31.4;0.854;5076.2;no
+32;technician;single;university.degree;no;yes;no;cellular;aug;wed;240;2;999;0;nonexistent;-2.9;92.201;-31.4;0.854;5076.2;yes
+33;admin.;single;university.degree;no;yes;no;cellular;aug;wed;173;1;1;1;success;-2.9;92.201;-31.4;0.854;5076.2;yes
+55;unknown;married;university.degree;no;yes;no;cellular;aug;wed;164;1;999;0;nonexistent;-2.9;92.201;-31.4;0.854;5076.2;yes
+26;admin.;single;high.school;no;yes;no;telephone;aug;wed;170;1;999;0;nonexistent;-2.9;92.201;-31.4;0.854;5076.2;no
+74;retired;married;university.degree;no;yes;yes;cellular;aug;wed;232;3;999;0;nonexistent;-2.9;92.201;-31.4;0.854;5076.2;yes
+33;admin.;single;university.degree;no;yes;no;cellular;aug;wed;67;1;3;1;success;-2.9;92.201;-31.4;0.854;5076.2;no
+73;retired;married;basic.4y;unknown;no;no;cellular;aug;wed;76;1;999;0;nonexistent;-2.9;92.201;-31.4;0.854;5076.2;no
+64;retired;married;basic.4y;no;yes;no;cellular;aug;wed;145;1;3;2;success;-2.9;92.201;-31.4;0.854;5076.2;yes
+32;admin.;married;university.degree;no;yes;no;telephone;aug;wed;328;1;999;1;failure;-2.9;92.201;-31.4;0.854;5076.2;no
+34;admin.;single;university.degree;no;no;no;cellular;aug;wed;195;1;999;0;nonexistent;-2.9;92.201;-31.4;0.854;5076.2;yes
+34;unemployed;single;university.degree;no;no;no;cellular;aug;wed;484;1;999;0;nonexistent;-2.9;92.201;-31.4;0.854;5076.2;no
+33;admin.;married;high.school;no;no;no;cellular;aug;wed;321;2;999;0;nonexistent;-2.9;92.201;-31.4;0.854;5076.2;no
+54;technician;married;basic.9y;no;no;no;cellular;aug;wed;196;2;999;0;nonexistent;-2.9;92.201;-31.4;0.854;5076.2;no
+35;admin.;married;university.degree;no;no;yes;cellular;aug;wed;65;5;999;0;nonexistent;-2.9;92.201;-31.4;0.854;5076.2;no
+32;admin.;married;university.degree;no;yes;no;cellular;aug;wed;80;2;999;0;nonexistent;-2.9;92.201;-31.4;0.854;5076.2;no
+66;retired;married;basic.4y;no;yes;yes;telephone;aug;wed;82;3;999;3;failure;-2.9;92.201;-31.4;0.854;5076.2;no
+33;admin.;single;university.degree;no;no;no;cellular;aug;wed;338;1;999;0;nonexistent;-2.9;92.201;-31.4;0.854;5076.2;yes
+40;admin.;divorced;high.school;no;yes;no;cellular;aug;thu;262;2;999;1;failure;-2.9;92.201;-31.4;0.851;5076.2;no
+37;admin.;divorced;university.degree;no;no;no;cellular;aug;thu;329;3;9;1;success;-2.9;92.201;-31.4;0.851;5076.2;yes
+25;admin.;single;university.degree;no;yes;no;telephone;aug;thu;84;1;999;0;nonexistent;-2.9;92.201;-31.4;0.851;5076.2;no
+66;retired;married;basic.6y;no;yes;no;cellular;aug;thu;267;1;999;0;nonexistent;-2.9;92.201;-31.4;0.851;5076.2;yes
+36;technician;single;professional.course;no;yes;no;cellular;aug;thu;474;1;999;0;nonexistent;-2.9;92.201;-31.4;0.851;5076.2;yes
+34;admin.;single;university.degree;no;yes;no;cellular;aug;thu;377;6;3;1;success;-2.9;92.201;-31.4;0.851;5076.2;yes
+27;admin.;single;university.degree;no;yes;no;cellular;aug;thu;97;2;999;0;nonexistent;-2.9;92.201;-31.4;0.851;5076.2;no
+35;blue-collar;divorced;high.school;no;no;no;cellular;aug;thu;151;1;3;1;success;-2.9;92.201;-31.4;0.851;5076.2;yes
+37;student;single;unknown;no;no;no;cellular;aug;thu;928;1;999;0;nonexistent;-2.9;92.201;-31.4;0.851;5076.2;no
+62;admin.;married;university.degree;no;no;no;cellular;aug;thu;68;1;999;1;failure;-2.9;92.201;-31.4;0.851;5076.2;no
+32;management;single;university.degree;no;no;no;cellular;aug;thu;149;1;3;2;success;-2.9;92.201;-31.4;0.851;5076.2;yes
+38;services;single;high.school;no;yes;no;cellular;aug;thu;83;5;999;0;nonexistent;-2.9;92.201;-31.4;0.851;5076.2;no
+74;retired;married;basic.9y;no;no;no;cellular;aug;thu;188;2;999;1;failure;-2.9;92.201;-31.4;0.851;5076.2;no
+71;retired;single;university.degree;no;yes;no;cellular;aug;thu;217;1;6;2;failure;-2.9;92.201;-31.4;0.851;5076.2;yes
+29;admin.;married;university.degree;no;yes;no;cellular;aug;thu;69;1;999;1;failure;-2.9;92.201;-31.4;0.851;5076.2;no
+29;admin.;married;university.degree;no;no;no;cellular;aug;thu;131;1;999;0;nonexistent;-2.9;92.201;-31.4;0.851;5076.2;no
+24;admin.;single;university.degree;no;no;no;cellular;aug;thu;147;1;999;1;failure;-2.9;92.201;-31.4;0.851;5076.2;no
+24;admin.;single;university.degree;no;yes;no;cellular;aug;thu;158;1;999;0;nonexistent;-2.9;92.201;-31.4;0.851;5076.2;yes
+45;self-employed;married;university.degree;no;no;yes;cellular;aug;thu;157;1;999;0;nonexistent;-2.9;92.201;-31.4;0.851;5076.2;no
+26;admin.;single;university.degree;no;no;no;cellular;aug;thu;99;1;999;1;failure;-2.9;92.201;-31.4;0.851;5076.2;no
+25;student;single;university.degree;no;no;no;cellular;aug;thu;184;1;999;0;nonexistent;-2.9;92.201;-31.4;0.851;5076.2;yes
+38;admin.;divorced;professional.course;no;no;no;cellular;aug;thu;201;2;999;0;nonexistent;-2.9;92.201;-31.4;0.851;5076.2;no
+28;technician;single;professional.course;no;yes;no;cellular;aug;thu;64;1;999;0;nonexistent;-2.9;92.201;-31.4;0.851;5076.2;no
+28;technician;single;professional.course;no;yes;no;cellular;aug;thu;63;2;3;1;success;-2.9;92.201;-31.4;0.851;5076.2;yes
+28;technician;single;professional.course;no;yes;no;cellular;aug;thu;78;3;999;0;nonexistent;-2.9;92.201;-31.4;0.851;5076.2;yes
+25;student;single;university.degree;no;no;no;cellular;aug;thu;75;1;999;0;nonexistent;-2.9;92.201;-31.4;0.851;5076.2;no
+34;technician;single;unknown;no;yes;no;cellular;aug;thu;320;2;3;1;success;-2.9;92.201;-31.4;0.851;5076.2;yes
+51;management;married;high.school;no;yes;yes;cellular;aug;fri;228;4;999;0;nonexistent;-2.9;92.201;-31.4;0.849;5076.2;yes
+53;admin.;married;university.degree;no;no;no;cellular;aug;fri;139;1;999;0;nonexistent;-2.9;92.201;-31.4;0.849;5076.2;no
+64;retired;married;unknown;no;yes;yes;cellular;aug;fri;89;1;999;1;failure;-2.9;92.201;-31.4;0.849;5076.2;no
+64;retired;married;university.degree;no;no;no;cellular;aug;fri;102;1;999;1;failure;-2.9;92.201;-31.4;0.849;5076.2;no
+64;retired;married;university.degree;no;yes;yes;cellular;aug;fri;146;1;999;1;failure;-2.9;92.201;-31.4;0.849;5076.2;no
+76;retired;married;basic.4y;no;yes;no;cellular;aug;fri;406;1;999;0;nonexistent;-2.9;92.201;-31.4;0.849;5076.2;no
+76;retired;married;basic.4y;no;no;no;cellular;aug;fri;61;1;999;1;failure;-2.9;92.201;-31.4;0.849;5076.2;no
+61;retired;married;basic.4y;no;yes;yes;cellular;aug;fri;374;1;999;0;nonexistent;-2.9;92.201;-31.4;0.849;5076.2;yes
+61;retired;married;basic.4y;no;yes;no;cellular;aug;fri;168;1;15;1;success;-2.9;92.201;-31.4;0.849;5076.2;yes
+61;retired;married;basic.4y;no;yes;yes;cellular;aug;fri;69;1;999;1;failure;-2.9;92.201;-31.4;0.849;5076.2;no
+58;retired;married;university.degree;no;yes;no;cellular;aug;fri;92;1;999;0;nonexistent;-2.9;92.201;-31.4;0.849;5076.2;no
+36;admin.;married;university.degree;no;yes;yes;cellular;aug;fri;96;1;999;1;failure;-2.9;92.201;-31.4;0.849;5076.2;no
+62;admin.;married;university.degree;no;yes;yes;cellular;aug;fri;64;1;999;0;nonexistent;-2.9;92.201;-31.4;0.849;5076.2;no
+87;retired;divorced;basic.4y;no;no;no;cellular;aug;fri;273;1;999;0;nonexistent;-2.9;92.201;-31.4;0.849;5076.2;yes
+39;student;single;unknown;no;yes;no;telephone;aug;fri;104;2;999;0;nonexistent;-2.9;92.201;-31.4;0.849;5076.2;no
+54;admin.;married;university.degree;no;yes;yes;cellular;aug;fri;204;1;999;1;failure;-2.9;92.201;-31.4;0.849;5076.2;yes
+54;technician;divorced;university.degree;no;no;no;cellular;aug;fri;90;1;999;1;failure;-2.9;92.201;-31.4;0.849;5076.2;no
+24;student;single;high.school;no;yes;no;cellular;aug;fri;200;1;6;4;failure;-2.9;92.201;-31.4;0.849;5076.2;no
+24;student;single;high.school;no;yes;no;cellular;aug;fri;53;1;999;0;nonexistent;-2.9;92.201;-31.4;0.849;5076.2;no
+24;student;single;high.school;no;yes;yes;cellular;aug;fri;44;1;999;1;failure;-2.9;92.201;-31.4;0.849;5076.2;no
+24;student;single;high.school;no;yes;yes;cellular;aug;fri;298;1;999;0;nonexistent;-2.9;92.201;-31.4;0.849;5076.2;no
+24;student;single;high.school;no;no;no;cellular;aug;fri;276;1;999;0;nonexistent;-2.9;92.201;-31.4;0.849;5076.2;yes
+34;unemployed;single;professional.course;no;no;no;cellular;aug;fri;531;2;2;1;success;-2.9;92.201;-31.4;0.849;5076.2;yes
+54;admin.;married;university.degree;no;yes;no;cellular;aug;fri;91;2;3;1;success;-2.9;92.201;-31.4;0.849;5076.2;yes
+55;management;married;university.degree;no;no;no;cellular;aug;fri;72;1;999;1;failure;-2.9;92.201;-31.4;0.849;5076.2;no
+62;admin.;married;university.degree;no;yes;no;cellular;aug;fri;116;1;999;0;nonexistent;-2.9;92.201;-31.4;0.849;5076.2;yes
+79;housemaid;married;basic.4y;no;no;no;cellular;aug;fri;126;1;3;2;success;-2.9;92.201;-31.4;0.849;5076.2;yes
+30;blue-collar;married;high.school;no;yes;no;cellular;aug;fri;252;1;999;0;nonexistent;-2.9;92.201;-31.4;0.849;5076.2;yes
+36;admin.;single;high.school;no;yes;no;cellular;aug;fri;159;1;3;2;success;-2.9;92.201;-31.4;0.849;5076.2;yes
+64;retired;married;unknown;no;yes;no;cellular;aug;fri;171;3;999;1;failure;-2.9;92.201;-31.4;0.849;5076.2;no
+39;admin.;married;university.degree;no;yes;yes;cellular;aug;fri;343;2;14;1;success;-2.9;92.201;-31.4;0.849;5076.2;yes
+35;admin.;married;university.degree;no;yes;no;cellular;aug;fri;419;5;3;2;success;-2.9;92.201;-31.4;0.849;5076.2;no
+64;retired;married;unknown;no;no;no;cellular;aug;fri;252;4;999;0;nonexistent;-2.9;92.201;-31.4;0.849;5076.2;yes
+24;student;single;unknown;no;yes;yes;cellular;aug;fri;744;1;3;2;success;-2.9;92.201;-31.4;0.849;5076.2;yes
+24;student;single;unknown;no;yes;no;cellular;aug;fri;438;1;6;1;success;-2.9;92.201;-31.4;0.849;5076.2;yes
+70;retired;married;university.degree;no;yes;no;cellular;aug;mon;73;3;999;1;failure;-2.9;92.201;-31.4;0.843;5076.2;no
+34;admin.;married;university.degree;no;no;no;cellular;aug;mon;62;2;999;0;nonexistent;-2.9;92.201;-31.4;0.843;5076.2;no
+54;self-employed;married;university.degree;no;yes;no;cellular;aug;mon;323;2;999;0;nonexistent;-2.9;92.201;-31.4;0.843;5076.2;no
+34;admin.;married;university.degree;no;yes;no;cellular;aug;mon;227;2;999;0;nonexistent;-2.9;92.201;-31.4;0.843;5076.2;no
+74;retired;married;basic.4y;unknown;yes;no;cellular;aug;mon;467;2;6;1;success;-2.9;92.201;-31.4;0.843;5076.2;yes
+47;housemaid;married;university.degree;no;yes;no;cellular;aug;mon;232;2;999;0;nonexistent;-2.9;92.201;-31.4;0.843;5076.2;yes
+38;unemployed;single;high.school;no;yes;no;cellular;aug;mon;712;2;999;0;nonexistent;-2.9;92.201;-31.4;0.843;5076.2;yes
+66;retired;married;university.degree;no;no;yes;cellular;aug;mon;315;1;999;0;nonexistent;-2.9;92.201;-31.4;0.843;5076.2;no
+69;housemaid;married;basic.4y;no;no;no;telephone;aug;mon;420;4;999;0;nonexistent;-2.9;92.201;-31.4;0.843;5076.2;no
+58;retired;married;university.degree;no;yes;no;telephone;aug;mon;100;1;999;0;nonexistent;-2.9;92.201;-31.4;0.843;5076.2;no
+88;retired;married;university.degree;no;yes;no;cellular;aug;mon;401;1;999;0;nonexistent;-2.9;92.201;-31.4;0.843;5076.2;no
+40;admin.;married;university.degree;no;yes;no;cellular;aug;mon;55;1;999;2;failure;-2.9;92.201;-31.4;0.843;5076.2;no
+57;retired;married;university.degree;no;yes;no;cellular;aug;mon;349;1;999;0;nonexistent;-2.9;92.201;-31.4;0.843;5076.2;no
+47;self-employed;married;university.degree;no;yes;no;cellular;aug;mon;143;2;999;0;nonexistent;-2.9;92.201;-31.4;0.843;5076.2;no
+64;retired;married;basic.9y;no;yes;no;cellular;aug;mon;79;2;3;1;success;-2.9;92.201;-31.4;0.843;5076.2;no
+57;retired;married;university.degree;no;no;no;cellular;aug;mon;497;2;999;1;failure;-2.9;92.201;-31.4;0.843;5076.2;no
+49;technician;divorced;high.school;no;no;no;cellular;aug;tue;109;2;999;0;nonexistent;-2.9;92.201;-31.4;0.838;5076.2;no
+25;admin.;single;university.degree;no;no;no;telephone;aug;tue;103;3;999;0;nonexistent;-2.9;92.201;-31.4;0.838;5076.2;no
+66;retired;married;basic.4y;unknown;yes;no;cellular;aug;tue;142;2;999;0;nonexistent;-2.9;92.201;-31.4;0.838;5076.2;yes
+81;retired;married;high.school;no;no;no;cellular;aug;tue;50;3;999;0;nonexistent;-2.9;92.201;-31.4;0.838;5076.2;no
+44;technician;divorced;high.school;no;no;no;cellular;aug;tue;188;3;999;0;nonexistent;-2.9;92.201;-31.4;0.838;5076.2;no
+43;services;married;high.school;no;no;yes;cellular;aug;tue;79;2;3;2;success;-2.9;92.201;-31.4;0.838;5076.2;no
+38;student;single;unknown;no;yes;yes;cellular;aug;tue;158;2;999;0;nonexistent;-2.9;92.201;-31.4;0.838;5076.2;no
+63;housemaid;married;basic.4y;no;no;no;cellular;aug;tue;511;1;999;1;failure;-2.9;92.201;-31.4;0.838;5076.2;yes
+51;admin.;divorced;high.school;no;yes;no;cellular;aug;tue;192;1;6;1;success;-2.9;92.201;-31.4;0.838;5076.2;yes
+58;retired;married;high.school;no;no;no;cellular;aug;tue;585;4;999;0;nonexistent;-2.9;92.201;-31.4;0.838;5076.2;no
+51;admin.;divorced;high.school;no;yes;no;cellular;aug;tue;133;1;999;1;failure;-2.9;92.201;-31.4;0.838;5076.2;no
+51;admin.;divorced;high.school;no;no;no;cellular;aug;tue;83;1;6;2;failure;-2.9;92.201;-31.4;0.838;5076.2;no
+54;technician;married;professional.course;no;yes;no;cellular;aug;tue;41;2;999;0;nonexistent;-2.9;92.201;-31.4;0.838;5076.2;no
+63;technician;married;unknown;no;yes;no;cellular;aug;tue;173;1;999;0;nonexistent;-2.9;92.201;-31.4;0.838;5076.2;no
+63;technician;married;unknown;no;yes;no;cellular;aug;tue;279;1;999;1;failure;-2.9;92.201;-31.4;0.838;5076.2;no
+63;technician;married;unknown;no;no;no;cellular;aug;tue;47;1;999;1;failure;-2.9;92.201;-31.4;0.838;5076.2;no
+64;unknown;married;unknown;no;no;no;cellular;aug;tue;275;1;999;0;nonexistent;-2.9;92.201;-31.4;0.838;5076.2;no
+58;retired;married;high.school;no;no;no;cellular;aug;tue;130;2;999;0;nonexistent;-2.9;92.201;-31.4;0.838;5076.2;yes
+54;retired;married;professional.course;unknown;no;no;cellular;aug;tue;76;1;999;0;nonexistent;-2.9;92.201;-31.4;0.838;5076.2;no
+63;housemaid;married;basic.4y;no;no;no;cellular;aug;tue;479;1;999;0;nonexistent;-2.9;92.201;-31.4;0.838;5076.2;yes
+54;retired;married;professional.course;unknown;no;no;cellular;aug;tue;95;2;999;0;nonexistent;-2.9;92.201;-31.4;0.838;5076.2;yes
+60;housemaid;divorced;professional.course;no;yes;no;cellular;aug;tue;186;3;999;1;failure;-2.9;92.201;-31.4;0.838;5076.2;no
+62;retired;married;professional.course;no;yes;no;cellular;aug;tue;531;3;6;1;success;-2.9;92.201;-31.4;0.838;5076.2;yes
+58;retired;married;high.school;no;no;no;cellular;aug;tue;360;5;999;0;nonexistent;-2.9;92.201;-31.4;0.838;5076.2;no
+58;retired;married;high.school;no;yes;no;cellular;aug;tue;242;6;3;1;success;-2.9;92.201;-31.4;0.838;5076.2;yes
+53;admin.;divorced;high.school;no;yes;no;cellular;aug;tue;159;2;3;1;success;-2.9;92.201;-31.4;0.838;5076.2;no
+56;services;single;high.school;no;no;yes;cellular;aug;tue;555;3;999;0;nonexistent;-2.9;92.201;-31.4;0.838;5076.2;yes
+43;admin.;married;high.school;no;yes;no;cellular;aug;tue;291;2;3;2;success;-2.9;92.201;-31.4;0.838;5076.2;yes
+43;admin.;married;university.degree;no;no;yes;cellular;aug;tue;161;3;13;1;success;-2.9;92.201;-31.4;0.838;5076.2;no
+67;retired;divorced;university.degree;no;yes;no;cellular;aug;wed;89;5;999;1;failure;-2.9;92.201;-31.4;0.834;5076.2;no
+27;admin.;single;high.school;no;no;no;telephone;aug;wed;415;3;999;0;nonexistent;-2.9;92.201;-31.4;0.834;5076.2;yes
+49;entrepreneur;single;university.degree;no;yes;no;cellular;aug;wed;78;6;5;1;success;-2.9;92.201;-31.4;0.834;5076.2;no
+42;retired;divorced;illiterate;no;no;no;telephone;aug;wed;128;3;999;0;nonexistent;-2.9;92.201;-31.4;0.834;5076.2;yes
+59;technician;married;professional.course;no;yes;no;telephone;aug;wed;240;3;999;1;failure;-2.9;92.201;-31.4;0.834;5076.2;no
+57;retired;married;university.degree;no;yes;no;cellular;aug;wed;187;1;999;1;failure;-2.9;92.201;-31.4;0.834;5076.2;no
+59;technician;married;professional.course;no;yes;no;cellular;aug;wed;210;4;999;0;nonexistent;-2.9;92.201;-31.4;0.834;5076.2;yes
+28;admin.;married;university.degree;no;yes;no;cellular;aug;wed;75;1;999;1;failure;-2.9;92.201;-31.4;0.834;5076.2;no
+80;retired;married;basic.4y;no;yes;no;cellular;aug;wed;323;1;999;0;nonexistent;-2.9;92.201;-31.4;0.834;5076.2;yes
+80;retired;married;basic.4y;no;yes;no;cellular;aug;wed;76;1;3;2;success;-2.9;92.201;-31.4;0.834;5076.2;no
+78;retired;married;basic.4y;no;no;yes;cellular;aug;wed;103;1;999;0;nonexistent;-2.9;92.201;-31.4;0.834;5076.2;no
+56;housemaid;married;basic.4y;no;yes;no;cellular;aug;wed;359;3;999;0;nonexistent;-2.9;92.201;-31.4;0.834;5076.2;no
+42;retired;divorced;illiterate;no;no;no;cellular;aug;wed;146;4;999;0;nonexistent;-2.9;92.201;-31.4;0.834;5076.2;no
+28;student;single;unknown;no;no;no;cellular;aug;thu;700;4;999;1;failure;-2.9;92.201;-31.4;0.829;5076.2;yes
+24;self-employed;single;university.degree;no;no;no;cellular;aug;thu;64;3;999;0;nonexistent;-2.9;92.201;-31.4;0.829;5076.2;no
+71;retired;married;university.degree;no;no;no;cellular;aug;thu;148;1;999;0;nonexistent;-2.9;92.201;-31.4;0.829;5076.2;no
+71;retired;married;university.degree;no;yes;no;cellular;aug;thu;1112;1;999;0;nonexistent;-2.9;92.201;-31.4;0.829;5076.2;no
+59;admin.;single;university.degree;no;no;no;cellular;aug;thu;259;3;15;1;success;-2.9;92.201;-31.4;0.829;5076.2;yes
+46;housemaid;married;basic.4y;no;unknown;unknown;cellular;aug;thu;154;2;999;0;nonexistent;-2.9;92.201;-31.4;0.829;5076.2;no
+51;admin.;married;university.degree;no;yes;no;cellular;aug;thu;212;1;999;0;nonexistent;-2.9;92.201;-31.4;0.829;5076.2;yes
+46;admin.;married;university.degree;no;yes;no;cellular;aug;thu;445;3;999;0;nonexistent;-2.9;92.201;-31.4;0.829;5076.2;yes
+50;admin.;married;university.degree;no;no;yes;cellular;aug;thu;460;1;15;2;failure;-2.9;92.201;-31.4;0.829;5076.2;yes
+46;self-employed;married;university.degree;no;yes;no;cellular;aug;thu;148;2;999;0;nonexistent;-2.9;92.201;-31.4;0.829;5076.2;no
+58;retired;divorced;high.school;no;no;no;cellular;aug;thu;398;2;999;1;failure;-2.9;92.201;-31.4;0.829;5076.2;yes
+31;admin.;single;university.degree;no;no;no;cellular;aug;thu;81;1;3;1;success;-2.9;92.201;-31.4;0.829;5076.2;yes
+42;admin.;divorced;university.degree;no;yes;no;cellular;aug;thu;294;1;999;0;nonexistent;-2.9;92.201;-31.4;0.829;5076.2;no
+31;admin.;single;university.degree;no;yes;no;cellular;aug;fri;118;2;999;0;nonexistent;-2.9;92.201;-31.4;0.825;5076.2;no
+36;housemaid;single;university.degree;no;unknown;unknown;cellular;aug;fri;119;2;3;1;success;-2.9;92.201;-31.4;0.825;5076.2;no
+59;retired;married;unknown;no;no;no;cellular;aug;fri;109;2;999;0;nonexistent;-2.9;92.201;-31.4;0.825;5076.2;no
+48;management;married;university.degree;unknown;yes;no;cellular;aug;fri;207;3;999;1;failure;-2.9;92.201;-31.4;0.825;5076.2;no
+45;services;married;high.school;no;yes;no;cellular;aug;fri;67;3;999;1;failure;-2.9;92.201;-31.4;0.825;5076.2;no
+28;student;single;unknown;no;yes;no;telephone;aug;fri;268;3;999;0;nonexistent;-2.9;92.201;-31.4;0.825;5076.2;no
+27;student;single;university.degree;no;yes;no;cellular;aug;fri;630;2;999;0;nonexistent;-2.9;92.201;-31.4;0.825;5076.2;no
+25;student;single;unknown;unknown;yes;no;cellular;aug;fri;50;1;999;0;nonexistent;-2.9;92.201;-31.4;0.825;5076.2;no
+25;student;single;unknown;unknown;no;no;cellular;aug;fri;248;1;999;0;nonexistent;-2.9;92.201;-31.4;0.825;5076.2;no
+25;student;single;unknown;unknown;yes;no;cellular;aug;fri;121;1;15;2;failure;-2.9;92.201;-31.4;0.825;5076.2;no
+25;student;single;unknown;unknown;yes;no;cellular;aug;fri;90;1;999;2;failure;-2.9;92.201;-31.4;0.825;5076.2;no
+25;student;single;unknown;unknown;yes;no;cellular;aug;fri;81;1;999;1;failure;-2.9;92.201;-31.4;0.825;5076.2;no
+24;student;single;high.school;no;no;no;cellular;aug;fri;65;1;999;2;failure;-2.9;92.201;-31.4;0.825;5076.2;no
+24;student;single;high.school;no;yes;no;telephone;aug;fri;359;1;999;0;nonexistent;-2.9;92.201;-31.4;0.825;5076.2;no
+33;admin.;married;high.school;no;no;no;cellular;aug;fri;207;3;15;1;success;-2.9;92.201;-31.4;0.825;5076.2;yes
+43;technician;single;professional.course;no;no;no;cellular;aug;fri;255;1;999;0;nonexistent;-2.9;92.201;-31.4;0.825;5076.2;no
+26;student;single;high.school;no;no;no;cellular;aug;fri;133;1;999;0;nonexistent;-2.9;92.201;-31.4;0.825;5076.2;no
+55;entrepreneur;divorced;basic.9y;no;yes;no;cellular;aug;fri;622;1;999;0;nonexistent;-2.9;92.201;-31.4;0.825;5076.2;yes
+26;student;single;university.degree;no;no;yes;cellular;aug;fri;173;1;999;0;nonexistent;-2.9;92.201;-31.4;0.825;5076.2;yes
+62;retired;married;professional.course;no;yes;yes;cellular;aug;fri;517;2;999;1;failure;-2.9;92.201;-31.4;0.825;5076.2;yes
+44;admin.;married;high.school;no;no;no;cellular;aug;fri;283;1;999;0;nonexistent;-2.9;92.201;-31.4;0.825;5076.2;no
+34;technician;married;university.degree;no;yes;no;cellular;aug;fri;94;3;999;0;nonexistent;-2.9;92.201;-31.4;0.825;5076.2;no
+28;student;single;professional.course;no;no;no;cellular;aug;fri;36;2;999;0;nonexistent;-2.9;92.201;-31.4;0.825;5076.2;no
+44;management;married;unknown;no;yes;no;cellular;aug;fri;247;2;999;0;nonexistent;-2.9;92.201;-31.4;0.825;5076.2;no
+26;student;single;high.school;no;yes;no;cellular;aug;fri;155;2;6;2;failure;-2.9;92.201;-31.4;0.825;5076.2;yes
+72;unknown;married;unknown;no;yes;yes;cellular;aug;fri;207;8;999;1;failure;-2.9;92.201;-31.4;0.825;5076.2;yes
+45;technician;married;high.school;no;yes;no;cellular;aug;fri;368;2;999;0;nonexistent;-2.9;92.201;-31.4;0.825;5076.2;no
+30;student;married;university.degree;no;no;no;cellular;aug;mon;98;2;3;2;success;-2.9;92.201;-31.4;0.821;5076.2;yes
+51;technician;married;professional.course;no;yes;no;cellular;aug;mon;72;2;999;1;failure;-2.9;92.201;-31.4;0.821;5076.2;no
+40;technician;married;high.school;no;yes;no;cellular;aug;mon;69;2;999;2;failure;-2.9;92.201;-31.4;0.821;5076.2;no
+26;self-employed;single;university.degree;no;yes;no;cellular;aug;mon;102;2;999;1;failure;-2.9;92.201;-31.4;0.821;5076.2;no
+40;technician;married;high.school;no;no;no;cellular;aug;mon;115;3;999;0;nonexistent;-2.9;92.201;-31.4;0.821;5076.2;no
+73;retired;married;university.degree;no;no;no;telephone;aug;mon;245;4;999;0;nonexistent;-2.9;92.201;-31.4;0.821;5076.2;no
+36;admin.;married;high.school;no;no;no;cellular;aug;mon;54;5;999;0;nonexistent;-2.9;92.201;-31.4;0.821;5076.2;no
+73;retired;married;basic.4y;no;unknown;unknown;cellular;aug;mon;160;3;999;1;failure;-2.9;92.201;-31.4;0.821;5076.2;yes
+38;technician;married;professional.course;no;unknown;unknown;telephone;aug;mon;473;2;9;1;success;-2.9;92.201;-31.4;0.821;5076.2;yes
+36;technician;single;professional.course;no;yes;no;cellular;aug;mon;62;1;999;1;failure;-2.9;92.201;-31.4;0.821;5076.2;no
+73;retired;divorced;high.school;no;yes;no;cellular;aug;mon;114;1;999;0;nonexistent;-2.9;92.201;-31.4;0.821;5076.2;no
+40;technician;married;high.school;no;yes;no;cellular;aug;mon;83;1;999;0;nonexistent;-2.9;92.201;-31.4;0.821;5076.2;no
+30;student;married;university.degree;no;yes;no;cellular;aug;mon;186;3;3;1;success;-2.9;92.201;-31.4;0.821;5076.2;yes
+29;admin.;single;university.degree;no;yes;yes;cellular;aug;mon;121;12;999;0;nonexistent;-2.9;92.201;-31.4;0.821;5076.2;no
+53;admin.;married;university.degree;no;yes;no;cellular;aug;mon;81;1;999;2;failure;-2.9;92.201;-31.4;0.821;5076.2;no
+53;admin.;married;university.degree;no;yes;no;cellular;aug;mon;267;1;999;1;failure;-2.9;92.201;-31.4;0.821;5076.2;yes
+38;admin.;married;high.school;no;yes;no;cellular;aug;mon;106;1;999;1;failure;-2.9;92.201;-31.4;0.821;5076.2;no
+38;admin.;married;high.school;no;yes;no;cellular;aug;mon;470;1;6;2;failure;-2.9;92.201;-31.4;0.821;5076.2;yes
+33;self-employed;married;university.degree;no;yes;no;cellular;aug;mon;98;3;999;0;nonexistent;-2.9;92.201;-31.4;0.821;5076.2;no
+31;management;married;university.degree;no;yes;yes;cellular;aug;mon;271;2;999;0;nonexistent;-2.9;92.201;-31.4;0.821;5076.2;yes
+59;self-employed;married;university.degree;no;yes;no;telephone;aug;mon;139;1;999;0;nonexistent;-2.9;92.201;-31.4;0.821;5076.2;no
+63;retired;married;university.degree;no;yes;no;cellular;aug;mon;79;1;6;2;failure;-2.9;92.201;-31.4;0.821;5076.2;no
+34;admin.;married;university.degree;no;yes;no;cellular;aug;mon;89;1;999;0;nonexistent;-2.9;92.201;-31.4;0.821;5076.2;no
+31;management;married;university.degree;no;yes;no;cellular;aug;mon;197;2;999;0;nonexistent;-2.9;92.201;-31.4;0.821;5076.2;no
+53;admin.;married;university.degree;unknown;yes;no;cellular;sep;tue;81;5;999;0;nonexistent;-3.4;92.379;-29.8;0.819;5017.5;no
+32;admin.;single;university.degree;no;yes;yes;cellular;sep;tue;69;2;999;0;nonexistent;-3.4;92.379;-29.8;0.819;5017.5;no
+52;admin.;married;unknown;no;no;no;telephone;sep;tue;97;5;999;0;nonexistent;-3.4;92.379;-29.8;0.819;5017.5;no
+39;entrepreneur;married;basic.6y;no;yes;no;cellular;sep;tue;265;2;16;1;success;-3.4;92.379;-29.8;0.819;5017.5;yes
+32;admin.;single;university.degree;no;yes;no;cellular;sep;tue;157;2;999;0;nonexistent;-3.4;92.379;-29.8;0.819;5017.5;no
+36;admin.;married;university.degree;no;yes;yes;cellular;sep;tue;28;2;999;0;nonexistent;-3.4;92.379;-29.8;0.819;5017.5;no
+52;admin.;married;unknown;no;no;no;telephone;sep;tue;513;13;14;2;failure;-3.4;92.379;-29.8;0.819;5017.5;no
+35;entrepreneur;married;high.school;no;no;no;cellular;sep;tue;91;2;999;0;nonexistent;-3.4;92.379;-29.8;0.819;5017.5;no
+48;technician;married;basic.9y;no;no;no;cellular;sep;tue;99;3;999;1;failure;-3.4;92.379;-29.8;0.819;5017.5;no
+27;management;single;university.degree;no;yes;no;cellular;sep;tue;137;2;4;2;success;-3.4;92.379;-29.8;0.819;5017.5;no
+38;admin.;single;university.degree;no;yes;yes;cellular;sep;tue;115;1;999;0;nonexistent;-3.4;92.379;-29.8;0.819;5017.5;no
+38;admin.;single;university.degree;no;yes;no;telephone;sep;tue;490;1;999;0;nonexistent;-3.4;92.379;-29.8;0.819;5017.5;no
+28;management;single;university.degree;no;yes;no;cellular;sep;tue;76;1;999;0;nonexistent;-3.4;92.379;-29.8;0.819;5017.5;no
+28;management;single;university.degree;no;yes;no;cellular;sep;tue;368;1;999;0;nonexistent;-3.4;92.379;-29.8;0.819;5017.5;no
+51;blue-collar;married;professional.course;no;yes;no;cellular;sep;tue;86;1;999;0;nonexistent;-3.4;92.379;-29.8;0.819;5017.5;no
+52;technician;married;professional.course;no;yes;yes;cellular;sep;tue;77;1;999;0;nonexistent;-3.4;92.379;-29.8;0.819;5017.5;no
+33;admin.;married;high.school;no;yes;no;cellular;sep;tue;212;1;999;0;nonexistent;-3.4;92.379;-29.8;0.819;5017.5;yes
+54;admin.;married;unknown;no;yes;no;cellular;sep;tue;82;1;999;0;nonexistent;-3.4;92.379;-29.8;0.819;5017.5;yes
+79;retired;married;basic.9y;no;no;no;cellular;sep;tue;181;1;999;1;failure;-3.4;92.379;-29.8;0.819;5017.5;yes
+39;entrepreneur;married;basic.6y;no;yes;no;cellular;sep;tue;531;2;999;0;nonexistent;-3.4;92.379;-29.8;0.819;5017.5;yes
+39;entrepreneur;married;basic.6y;no;no;no;cellular;sep;tue;106;4;16;2;failure;-3.4;92.379;-29.8;0.819;5017.5;no
+45;admin.;married;university.degree;no;unknown;unknown;cellular;sep;tue;55;6;999;1;failure;-3.4;92.379;-29.8;0.819;5017.5;no
+19;student;single;basic.9y;no;yes;no;cellular;sep;wed;207;2;999;1;failure;-3.4;92.379;-29.8;0.813;5017.5;no
+37;admin.;married;university.degree;no;yes;no;cellular;sep;wed;140;2;999;0;nonexistent;-3.4;92.379;-29.8;0.813;5017.5;yes
+34;technician;married;professional.course;no;yes;no;cellular;sep;wed;233;2;999;0;nonexistent;-3.4;92.379;-29.8;0.813;5017.5;yes
+60;admin.;married;professional.course;no;yes;yes;telephone;sep;wed;61;3;999;0;nonexistent;-3.4;92.379;-29.8;0.813;5017.5;no
+40;unemployed;married;university.degree;no;yes;yes;cellular;sep;wed;172;4;999;0;nonexistent;-3.4;92.379;-29.8;0.813;5017.5;no
+34;technician;married;professional.course;no;yes;yes;cellular;sep;wed;121;3;999;0;nonexistent;-3.4;92.379;-29.8;0.813;5017.5;yes
+60;unemployed;married;basic.6y;no;yes;no;cellular;sep;thu;95;1;3;1;success;-3.4;92.379;-29.8;0.809;5017.5;no
+18;student;single;unknown;no;no;no;cellular;sep;thu;385;1;3;1;success;-3.4;92.379;-29.8;0.809;5017.5;yes
+18;student;single;unknown;no;yes;no;cellular;sep;thu;114;1;999;0;nonexistent;-3.4;92.379;-29.8;0.809;5017.5;no
+25;admin.;single;university.degree;no;yes;no;cellular;sep;thu;420;1;1;1;success;-3.4;92.379;-29.8;0.809;5017.5;no
+26;admin.;single;university.degree;no;yes;no;telephone;sep;thu;471;1;7;1;success;-3.4;92.379;-29.8;0.809;5017.5;yes
+72;retired;married;unknown;no;no;no;cellular;sep;thu;60;1;999;0;nonexistent;-3.4;92.379;-29.8;0.809;5017.5;no
+60;management;married;university.degree;no;yes;yes;telephone;sep;thu;225;1;999;0;nonexistent;-3.4;92.379;-29.8;0.809;5017.5;no
+32;admin.;married;university.degree;no;no;no;cellular;sep;thu;444;1;999;1;failure;-3.4;92.379;-29.8;0.809;5017.5;yes
+46;technician;married;professional.course;no;yes;yes;cellular;sep;thu;144;2;999;1;failure;-3.4;92.379;-29.8;0.809;5017.5;no
+60;retired;married;professional.course;no;yes;no;cellular;sep;thu;104;1;999;1;failure;-3.4;92.379;-29.8;0.809;5017.5;no
+60;retired;married;professional.course;no;yes;no;cellular;sep;thu;365;1;3;1;success;-3.4;92.379;-29.8;0.809;5017.5;yes
+44;admin.;married;university.degree;no;yes;no;cellular;sep;thu;331;1;999;0;nonexistent;-3.4;92.379;-29.8;0.809;5017.5;yes
+44;admin.;married;university.degree;no;yes;no;cellular;sep;thu;259;1;14;1;success;-3.4;92.379;-29.8;0.809;5017.5;no
+63;unknown;married;unknown;no;yes;no;cellular;sep;thu;268;1;999;1;failure;-3.4;92.379;-29.8;0.809;5017.5;no
+40;unknown;single;unknown;no;no;no;cellular;sep;thu;224;1;999;1;failure;-3.4;92.379;-29.8;0.809;5017.5;yes
+43;technician;married;high.school;no;yes;no;cellular;sep;thu;531;1;999;0;nonexistent;-3.4;92.379;-29.8;0.809;5017.5;no
+43;technician;married;high.school;no;yes;yes;cellular;sep;thu;167;1;3;2;success;-3.4;92.379;-29.8;0.809;5017.5;no
+26;student;single;unknown;no;no;no;cellular;sep;thu;81;1;999;1;failure;-3.4;92.379;-29.8;0.809;5017.5;no
+26;student;single;unknown;no;yes;yes;cellular;sep;thu;733;1;3;1;success;-3.4;92.379;-29.8;0.809;5017.5;yes
+18;student;single;unknown;no;unknown;unknown;cellular;sep;thu;72;2;999;0;nonexistent;-3.4;92.379;-29.8;0.809;5017.5;no
+71;retired;married;basic.4y;no;yes;no;telephone;sep;thu;2055;1;999;0;nonexistent;-3.4;92.379;-29.8;0.809;5017.5;no
+35;services;divorced;high.school;no;yes;no;cellular;sep;fri;56;2;999;0;nonexistent;-3.4;92.379;-29.8;0.803;5017.5;no
+35;admin.;married;university.degree;no;yes;yes;cellular;sep;fri;73;2;999;0;nonexistent;-3.4;92.379;-29.8;0.803;5017.5;no
+61;retired;married;basic.9y;no;yes;yes;cellular;sep;fri;104;2;999;0;nonexistent;-3.4;92.379;-29.8;0.803;5017.5;no
+59;management;married;university.degree;no;yes;no;cellular;sep;fri;328;2;3;1;success;-3.4;92.379;-29.8;0.803;5017.5;yes
+38;technician;married;professional.course;no;yes;no;cellular;sep;fri;166;1;999;0;nonexistent;-3.4;92.379;-29.8;0.803;5017.5;no
+51;technician;married;professional.course;no;no;yes;cellular;sep;fri;520;1;999;0;nonexistent;-3.4;92.379;-29.8;0.803;5017.5;yes
+53;technician;married;professional.course;no;yes;yes;cellular;sep;fri;730;1;999;1;failure;-3.4;92.379;-29.8;0.803;5017.5;yes
+26;management;single;university.degree;no;no;no;cellular;sep;fri;351;2;999;0;nonexistent;-3.4;92.379;-29.8;0.803;5017.5;no
+41;management;married;basic.6y;no;no;no;cellular;sep;fri;181;1;999;0;nonexistent;-3.4;92.379;-29.8;0.803;5017.5;no
+53;technician;married;professional.course;no;yes;no;telephone;sep;fri;384;1;999;0;nonexistent;-3.4;92.379;-29.8;0.803;5017.5;no
+83;retired;married;unknown;no;yes;no;cellular;sep;fri;369;1;999;0;nonexistent;-3.4;92.379;-29.8;0.803;5017.5;no
+45;admin.;single;high.school;no;no;no;cellular;sep;fri;204;1;999;0;nonexistent;-3.4;92.379;-29.8;0.803;5017.5;no
+40;admin.;divorced;high.school;no;yes;no;telephone;sep;fri;101;1;999;0;nonexistent;-3.4;92.379;-29.8;0.803;5017.5;no
+32;admin.;married;university.degree;no;yes;no;cellular;sep;fri;205;2;999;0;nonexistent;-3.4;92.379;-29.8;0.803;5017.5;no
+50;admin.;married;high.school;no;yes;yes;cellular;sep;fri;128;1;999;0;nonexistent;-3.4;92.379;-29.8;0.803;5017.5;no
+76;management;married;unknown;no;no;no;cellular;sep;fri;113;1;999;0;nonexistent;-3.4;92.379;-29.8;0.803;5017.5;no
+76;management;married;unknown;no;no;no;cellular;sep;fri;879;1;999;0;nonexistent;-3.4;92.379;-29.8;0.803;5017.5;yes
+39;blue-collar;married;basic.9y;no;yes;no;cellular;sep;fri;293;1;3;1;success;-3.4;92.379;-29.8;0.803;5017.5;yes
+72;retired;married;basic.4y;no;no;no;cellular;sep;fri;230;1;3;2;success;-3.4;92.379;-29.8;0.803;5017.5;yes
+18;student;single;unknown;no;yes;no;cellular;sep;fri;563;1;999;0;nonexistent;-3.4;92.379;-29.8;0.803;5017.5;yes
+31;admin.;single;university.degree;no;no;no;cellular;sep;fri;123;3;999;0;nonexistent;-3.4;92.379;-29.8;0.803;5017.5;no
+28;student;single;high.school;no;no;no;cellular;sep;fri;555;2;999;0;nonexistent;-3.4;92.379;-29.8;0.803;5017.5;yes
+71;retired;married;professional.course;no;no;no;cellular;sep;fri;313;1;999;0;nonexistent;-3.4;92.379;-29.8;0.803;5017.5;no
+63;management;married;unknown;no;yes;no;cellular;sep;fri;156;2;999;2;failure;-3.4;92.379;-29.8;0.803;5017.5;no
+50;admin.;married;high.school;no;yes;no;cellular;sep;fri;434;2;999;0;nonexistent;-3.4;92.379;-29.8;0.803;5017.5;yes
+39;technician;married;basic.9y;no;no;no;cellular;sep;fri;171;2;999;1;failure;-3.4;92.379;-29.8;0.803;5017.5;no
+46;admin.;married;high.school;no;yes;yes;cellular;sep;fri;154;3;999;0;nonexistent;-3.4;92.379;-29.8;0.803;5017.5;no
+55;admin.;single;university.degree;no;yes;no;cellular;sep;fri;93;2;999;0;nonexistent;-3.4;92.379;-29.8;0.803;5017.5;no
+47;admin.;married;university.degree;no;no;no;cellular;sep;fri;639;3;999;1;failure;-3.4;92.379;-29.8;0.803;5017.5;no
+31;admin.;single;university.degree;no;yes;no;cellular;sep;fri;112;7;999;0;nonexistent;-3.4;92.379;-29.8;0.803;5017.5;no
+54;admin.;married;university.degree;no;no;yes;cellular;sep;fri;172;1;999;0;nonexistent;-3.4;92.379;-29.8;0.803;5017.5;no
+28;admin.;married;university.degree;no;yes;yes;cellular;sep;mon;589;3;999;1;failure;-3.4;92.379;-29.8;0.797;5017.5;no
+45;housemaid;single;basic.4y;no;no;no;telephone;sep;mon;569;4;999;0;nonexistent;-3.4;92.379;-29.8;0.797;5017.5;yes
+59;admin.;married;unknown;no;yes;yes;cellular;sep;mon;281;3;3;1;success;-3.4;92.379;-29.8;0.797;5017.5;yes
+61;retired;married;university.degree;no;no;no;cellular;sep;mon;350;1;3;2;success;-3.4;92.379;-29.8;0.797;5017.5;yes
+59;admin.;married;unknown;no;no;yes;cellular;sep;mon;295;4;999;1;failure;-3.4;92.379;-29.8;0.797;5017.5;yes
+45;housemaid;single;basic.4y;no;yes;no;cellular;sep;mon;219;1;999;0;nonexistent;-3.4;92.379;-29.8;0.797;5017.5;yes
+41;admin.;married;university.degree;no;yes;no;cellular;sep;mon;182;1;999;0;nonexistent;-3.4;92.379;-29.8;0.797;5017.5;no
+30;management;married;university.degree;no;yes;no;telephone;sep;mon;221;1;999;1;failure;-3.4;92.379;-29.8;0.797;5017.5;no
+48;technician;married;professional.course;no;yes;no;cellular;sep;mon;669;1;999;0;nonexistent;-3.4;92.379;-29.8;0.797;5017.5;no
+41;admin.;married;university.degree;no;no;no;cellular;sep;mon;133;3;999;0;nonexistent;-3.4;92.379;-29.8;0.797;5017.5;no
+54;technician;married;professional.course;no;no;no;cellular;sep;mon;99;1;999;0;nonexistent;-3.4;92.379;-29.8;0.797;5017.5;no
+54;technician;married;professional.course;no;yes;no;telephone;sep;mon;289;1;999;0;nonexistent;-3.4;92.379;-29.8;0.797;5017.5;no
+25;blue-collar;single;basic.9y;no;no;no;cellular;sep;mon;92;1;999;2;failure;-3.4;92.379;-29.8;0.797;5017.5;no
+28;technician;married;high.school;no;yes;no;cellular;sep;mon;89;1;4;1;success;-3.4;92.379;-29.8;0.797;5017.5;no
+41;admin.;married;university.degree;no;yes;no;cellular;sep;mon;97;1;999;0;nonexistent;-3.4;92.379;-29.8;0.797;5017.5;no
+52;technician;married;professional.course;no;yes;yes;cellular;sep;mon;211;1;999;1;failure;-3.4;92.379;-29.8;0.797;5017.5;yes
+45;admin.;married;university.degree;no;no;no;cellular;sep;mon;394;1;999;0;nonexistent;-3.4;92.379;-29.8;0.797;5017.5;no
+45;admin.;married;university.degree;no;no;no;cellular;sep;mon;587;1;999;0;nonexistent;-3.4;92.379;-29.8;0.797;5017.5;yes
+61;retired;married;university.degree;no;no;no;telephone;sep;mon;147;1;999;0;nonexistent;-3.4;92.379;-29.8;0.797;5017.5;no
+25;self-employed;single;university.degree;no;yes;no;cellular;sep;mon;510;1;999;0;nonexistent;-3.4;92.379;-29.8;0.797;5017.5;no
+45;admin.;married;university.degree;no;no;no;cellular;sep;mon;351;1;3;2;success;-3.4;92.379;-29.8;0.797;5017.5;yes
+28;services;single;university.degree;no;yes;no;cellular;sep;mon;274;1;999;0;nonexistent;-3.4;92.379;-29.8;0.797;5017.5;no
+41;admin.;married;university.degree;no;no;no;cellular;sep;mon;800;2;999;1;failure;-3.4;92.379;-29.8;0.797;5017.5;yes
+46;blue-collar;married;professional.course;no;no;no;cellular;sep;mon;98;2;999;0;nonexistent;-3.4;92.379;-29.8;0.797;5017.5;no
+39;admin.;married;university.degree;no;no;no;cellular;sep;mon;57;2;999;0;nonexistent;-3.4;92.379;-29.8;0.797;5017.5;no
+30;admin.;single;university.degree;no;no;no;cellular;sep;mon;199;6;999;0;nonexistent;-3.4;92.379;-29.8;0.797;5017.5;yes
+68;retired;married;basic.4y;no;no;no;telephone;sep;tue;201;1;999;1;failure;-3.4;92.379;-29.8;0.788;5017.5;no
+30;self-employed;single;university.degree;no;yes;no;cellular;sep;tue;145;1;999;0;nonexistent;-3.4;92.379;-29.8;0.788;5017.5;yes
+43;technician;married;professional.course;no;no;no;cellular;sep;tue;293;1;999;0;nonexistent;-3.4;92.379;-29.8;0.788;5017.5;yes
+49;admin.;married;high.school;no;no;no;cellular;sep;tue;495;1;3;1;success;-3.4;92.379;-29.8;0.788;5017.5;yes
+71;retired;married;basic.4y;no;yes;no;cellular;sep;tue;206;1;999;0;nonexistent;-3.4;92.379;-29.8;0.788;5017.5;yes
+66;management;divorced;university.degree;no;no;no;cellular;sep;tue;679;1;1;1;success;-3.4;92.379;-29.8;0.788;5017.5;yes
+76;retired;divorced;basic.4y;no;no;no;cellular;sep;tue;221;1;999;0;nonexistent;-3.4;92.379;-29.8;0.788;5017.5;no
+39;self-employed;divorced;high.school;no;no;no;cellular;sep;tue;261;1;3;1;success;-3.4;92.379;-29.8;0.788;5017.5;yes
+30;self-employed;single;university.degree;no;no;no;cellular;sep;tue;169;1;999;0;nonexistent;-3.4;92.379;-29.8;0.788;5017.5;yes
+29;self-employed;single;university.degree;no;yes;no;cellular;sep;tue;445;2;999;0;nonexistent;-3.4;92.379;-29.8;0.788;5017.5;yes
+63;retired;married;unknown;no;yes;yes;cellular;sep;tue;167;1;999;1;failure;-3.4;92.379;-29.8;0.788;5017.5;no
+43;technician;married;high.school;no;yes;no;cellular;sep;tue;260;1;3;1;success;-3.4;92.379;-29.8;0.788;5017.5;yes
+75;retired;married;unknown;no;no;no;cellular;sep;tue;191;1;999;1;failure;-3.4;92.379;-29.8;0.788;5017.5;yes
+24;student;single;basic.9y;no;unknown;unknown;cellular;sep;tue;137;1;999;0;nonexistent;-3.4;92.379;-29.8;0.788;5017.5;yes
+71;retired;married;basic.4y;no;no;no;cellular;sep;tue;76;1;999;0;nonexistent;-3.4;92.379;-29.8;0.788;5017.5;no
+39;self-employed;divorced;high.school;no;no;no;cellular;sep;tue;108;2;3;1;success;-3.4;92.379;-29.8;0.788;5017.5;yes
+18;student;single;unknown;no;no;no;telephone;sep;tue;401;2;999;0;nonexistent;-3.4;92.379;-29.8;0.788;5017.5;no
+30;self-employed;single;university.degree;no;yes;no;cellular;sep;tue;191;1;999;0;nonexistent;-3.4;92.379;-29.8;0.788;5017.5;no
+35;services;married;high.school;no;no;no;cellular;sep;tue;421;2;3;1;success;-3.4;92.379;-29.8;0.788;5017.5;no
+34;technician;married;professional.course;no;yes;yes;telephone;sep;tue;376;2;999;0;nonexistent;-3.4;92.379;-29.8;0.788;5017.5;yes
+53;technician;married;unknown;no;no;no;cellular;sep;wed;121;2;999;0;nonexistent;-3.4;92.379;-29.8;0.781;5017.5;no
+30;admin.;married;university.degree;no;yes;yes;cellular;sep;wed;475;5;999;0;nonexistent;-3.4;92.379;-29.8;0.781;5017.5;yes
+69;retired;married;basic.9y;no;yes;no;cellular;sep;wed;71;1;5;1;success;-3.4;92.379;-29.8;0.781;5017.5;no
+58;retired;married;basic.4y;no;no;no;cellular;sep;wed;394;1;999;0;nonexistent;-3.4;92.379;-29.8;0.781;5017.5;yes
+58;retired;married;basic.4y;no;no;no;telephone;sep;wed;180;1;999;0;nonexistent;-3.4;92.379;-29.8;0.781;5017.5;no
+36;services;married;high.school;no;yes;yes;cellular;sep;wed;569;3;999;0;nonexistent;-3.4;92.379;-29.8;0.781;5017.5;yes
+78;unknown;married;unknown;no;yes;no;cellular;sep;wed;95;1;999;0;nonexistent;-3.4;92.379;-29.8;0.781;5017.5;no
+78;unknown;married;unknown;no;yes;no;cellular;sep;wed;234;1;999;1;failure;-3.4;92.379;-29.8;0.781;5017.5;yes
+46;admin.;married;high.school;no;yes;no;cellular;sep;wed;408;1;999;0;nonexistent;-3.4;92.379;-29.8;0.781;5017.5;yes
+91;retired;married;university.degree;no;yes;yes;cellular;sep;wed;837;1;999;2;failure;-3.4;92.379;-29.8;0.781;5017.5;no
+62;retired;married;university.degree;no;yes;no;cellular;sep;wed;105;3;999;1;failure;-3.4;92.379;-29.8;0.781;5017.5;no
+27;admin.;single;university.degree;no;yes;yes;cellular;sep;wed;345;1;999;0;nonexistent;-3.4;92.379;-29.8;0.781;5017.5;yes
+27;admin.;single;university.degree;no;no;no;cellular;sep;wed;397;1;999;0;nonexistent;-3.4;92.379;-29.8;0.781;5017.5;yes
+36;unemployed;married;unknown;unknown;no;no;cellular;sep;wed;344;1;999;1;failure;-3.4;92.379;-29.8;0.781;5017.5;yes
+32;self-employed;single;university.degree;no;yes;no;cellular;sep;wed;372;1;999;0;nonexistent;-3.4;92.379;-29.8;0.781;5017.5;no
+62;retired;married;university.degree;no;no;no;telephone;sep;wed;595;1;999;0;nonexistent;-3.4;92.379;-29.8;0.781;5017.5;no
+29;admin.;single;university.degree;no;yes;no;cellular;sep;wed;307;2;999;1;failure;-3.4;92.379;-29.8;0.781;5017.5;no
+58;housemaid;divorced;basic.4y;no;yes;yes;cellular;sep;wed;511;1;999;0;nonexistent;-3.4;92.379;-29.8;0.781;5017.5;no
+32;student;married;high.school;no;no;no;telephone;sep;wed;277;5;999;0;nonexistent;-3.4;92.379;-29.8;0.781;5017.5;no
+91;retired;married;university.degree;no;no;yes;cellular;sep;wed;223;2;999;0;nonexistent;-3.4;92.379;-29.8;0.781;5017.5;no
+76;retired;married;basic.4y;no;yes;no;cellular;sep;wed;259;2;3;1;success;-3.4;92.379;-29.8;0.781;5017.5;yes
+56;admin.;married;university.degree;no;yes;no;cellular;sep;thu;169;2;3;2;success;-3.4;92.379;-29.8;0.778;5017.5;yes
+56;entrepreneur;married;university.degree;no;yes;no;cellular;sep;thu;105;2;999;0;nonexistent;-3.4;92.379;-29.8;0.778;5017.5;no
+42;management;married;basic.6y;no;yes;no;cellular;sep;thu;84;3;999;0;nonexistent;-3.4;92.379;-29.8;0.778;5017.5;yes
+25;admin.;single;high.school;no;no;no;cellular;sep;thu;185;1;3;1;success;-3.4;92.379;-29.8;0.778;5017.5;yes
+59;management;married;unknown;no;yes;no;cellular;sep;thu;107;1;999;0;nonexistent;-3.4;92.379;-29.8;0.778;5017.5;no
+56;admin.;married;high.school;no;no;no;cellular;sep;thu;276;1;999;0;nonexistent;-3.4;92.379;-29.8;0.778;5017.5;no
+42;management;married;basic.6y;no;yes;no;telephone;sep;thu;230;3;999;0;nonexistent;-3.4;92.379;-29.8;0.778;5017.5;yes
+31;technician;married;professional.course;no;yes;no;cellular;sep;fri;90;4;999;0;nonexistent;-3.4;92.379;-29.8;0.773;5017.5;no
+69;retired;married;high.school;no;no;no;cellular;sep;fri;346;3;999;0;nonexistent;-3.4;92.379;-29.8;0.773;5017.5;yes
+69;retired;married;university.degree;no;yes;no;cellular;sep;fri;324;8;999;0;nonexistent;-3.4;92.379;-29.8;0.773;5017.5;no
+57;management;married;basic.4y;no;yes;no;cellular;sep;fri;122;2;999;1;failure;-3.4;92.379;-29.8;0.773;5017.5;no
+73;retired;married;basic.4y;no;yes;no;cellular;sep;fri;96;2;999;0;nonexistent;-3.4;92.379;-29.8;0.773;5017.5;no
+34;admin.;single;university.degree;no;no;no;cellular;sep;fri;260;3;3;2;success;-3.4;92.379;-29.8;0.773;5017.5;yes
+49;admin.;divorced;university.degree;no;yes;no;cellular;sep;fri;283;3;3;1;success;-3.4;92.379;-29.8;0.773;5017.5;yes
+53;housemaid;married;basic.4y;no;yes;no;cellular;sep;fri;129;2;999;0;nonexistent;-3.4;92.379;-29.8;0.773;5017.5;no
+36;admin.;single;university.degree;no;yes;no;cellular;sep;fri;339;1;999;1;failure;-3.4;92.379;-29.8;0.773;5017.5;no
+36;admin.;married;university.degree;no;yes;no;cellular;sep;fri;355;1;999;0;nonexistent;-3.4;92.379;-29.8;0.773;5017.5;no
+43;admin.;single;high.school;no;yes;no;cellular;sep;fri;212;1;999;0;nonexistent;-3.4;92.379;-29.8;0.773;5017.5;yes
+76;retired;married;university.degree;no;yes;no;cellular;sep;fri;336;1;999;1;failure;-3.4;92.379;-29.8;0.773;5017.5;no
+28;admin.;single;university.degree;no;yes;no;cellular;sep;fri;91;1;1;3;success;-3.4;92.379;-29.8;0.773;5017.5;yes
+73;retired;married;basic.4y;no;yes;no;cellular;sep;fri;158;2;999;0;nonexistent;-3.4;92.379;-29.8;0.773;5017.5;no
+40;unemployed;married;professional.course;no;no;yes;telephone;sep;fri;91;1;999;0;nonexistent;-3.4;92.379;-29.8;0.773;5017.5;yes
+38;admin.;single;high.school;no;yes;no;cellular;sep;fri;113;1;999;1;failure;-3.4;92.379;-29.8;0.773;5017.5;no
+31;admin.;single;high.school;no;yes;no;cellular;sep;fri;210;1;999;0;nonexistent;-3.4;92.379;-29.8;0.773;5017.5;yes
+36;admin.;single;university.degree;no;yes;no;cellular;sep;fri;100;2;999;0;nonexistent;-3.4;92.379;-29.8;0.773;5017.5;yes
+69;retired;married;high.school;no;no;no;cellular;sep;fri;240;1;999;0;nonexistent;-3.4;92.379;-29.8;0.773;5017.5;no
+71;retired;married;unknown;no;yes;no;cellular;sep;fri;658;4;999;0;nonexistent;-3.4;92.379;-29.8;0.773;5017.5;yes
+34;admin.;married;university.degree;no;no;no;telephone;sep;fri;290;2;999;0;nonexistent;-3.4;92.379;-29.8;0.773;5017.5;yes
+40;unemployed;married;professional.course;no;yes;no;cellular;sep;fri;155;3;999;0;nonexistent;-3.4;92.379;-29.8;0.773;5017.5;no
+47;management;married;university.degree;no;yes;no;cellular;sep;mon;323;1;3;2;success;-3.4;92.379;-29.8;0.771;5017.5;yes
+30;self-employed;married;university.degree;no;yes;no;telephone;sep;mon;103;2;999;0;nonexistent;-3.4;92.379;-29.8;0.771;5017.5;no
+83;retired;married;unknown;no;yes;no;cellular;sep;mon;75;2;999;0;nonexistent;-3.4;92.379;-29.8;0.771;5017.5;no
+39;admin.;married;high.school;no;no;no;cellular;sep;mon;85;2;999;0;nonexistent;-3.4;92.379;-29.8;0.771;5017.5;no
+41;technician;married;professional.course;no;yes;no;cellular;sep;mon;394;2;999;0;nonexistent;-3.4;92.379;-29.8;0.771;5017.5;no
+46;unemployed;married;university.degree;no;yes;yes;cellular;sep;mon;161;1;999;0;nonexistent;-3.4;92.379;-29.8;0.771;5017.5;no
+62;entrepreneur;married;university.degree;no;no;no;cellular;sep;tue;170;1;999;1;failure;-3.4;92.379;-29.8;0.77;5017.5;yes
+62;entrepreneur;married;university.degree;no;yes;no;telephone;sep;tue;722;1;999;0;nonexistent;-3.4;92.379;-29.8;0.77;5017.5;yes
+70;retired;married;basic.4y;no;no;no;cellular;sep;tue;150;1;3;2;success;-3.4;92.379;-29.8;0.77;5017.5;yes
+59;retired;married;basic.4y;no;yes;no;cellular;sep;tue;458;1;999;0;nonexistent;-3.4;92.379;-29.8;0.77;5017.5;yes
+49;blue-collar;married;basic.4y;no;yes;no;cellular;sep;tue;133;2;999;0;nonexistent;-3.4;92.379;-29.8;0.77;5017.5;no
+70;admin.;married;basic.4y;no;no;no;cellular;sep;tue;1962;1;999;2;failure;-3.4;92.379;-29.8;0.77;5017.5;yes
+29;admin.;single;high.school;no;yes;no;cellular;sep;tue;107;2;3;1;success;-3.4;92.379;-29.8;0.77;5017.5;yes
+27;admin.;married;university.degree;no;yes;no;cellular;sep;tue;173;2;6;2;failure;-3.4;92.379;-29.8;0.77;5017.5;yes
+24;technician;married;university.degree;no;yes;yes;cellular;sep;tue;89;2;3;1;success;-3.4;92.379;-29.8;0.77;5017.5;yes
+21;student;single;basic.9y;no;unknown;unknown;cellular;sep;tue;875;1;999;0;nonexistent;-3.4;92.379;-29.8;0.77;5017.5;yes
+51;services;married;high.school;no;yes;no;cellular;sep;tue;208;1;3;1;success;-3.4;92.379;-29.8;0.77;5017.5;no
+27;admin.;single;university.degree;no;yes;no;cellular;sep;tue;126;2;999;0;nonexistent;-3.4;92.379;-29.8;0.77;5017.5;yes
+70;admin.;married;basic.4y;no;yes;yes;cellular;sep;tue;91;1;3;1;success;-3.4;92.379;-29.8;0.77;5017.5;yes
+24;admin.;single;university.degree;no;no;no;cellular;sep;tue;106;1;3;1;success;-3.4;92.379;-29.8;0.77;5017.5;yes
+53;technician;married;professional.course;no;no;no;cellular;sep;tue;103;1;999;1;failure;-3.4;92.379;-29.8;0.77;5017.5;no
+53;technician;married;professional.course;no;no;no;cellular;sep;tue;925;1;3;1;success;-3.4;92.379;-29.8;0.77;5017.5;yes
+66;admin.;married;university.degree;no;no;no;cellular;sep;tue;39;1;999;0;nonexistent;-3.4;92.379;-29.8;0.77;5017.5;no
+69;unknown;married;university.degree;no;yes;yes;cellular;sep;tue;109;2;3;1;success;-3.4;92.379;-29.8;0.77;5017.5;no
+47;admin.;divorced;high.school;no;yes;no;cellular;sep;tue;188;1;3;1;success;-3.4;92.379;-29.8;0.77;5017.5;no
+70;admin.;married;basic.4y;no;no;no;cellular;sep;tue;111;1;3;1;success;-3.4;92.379;-29.8;0.77;5017.5;no
+38;admin.;single;university.degree;unknown;yes;no;cellular;sep;wed;153;1;3;1;success;-3.4;92.379;-29.8;0.768;5017.5;yes
+31;self-employed;married;university.degree;no;no;no;cellular;sep;wed;106;1;999;0;nonexistent;-3.4;92.379;-29.8;0.768;5017.5;no
+31;self-employed;married;university.degree;no;no;no;cellular;sep;wed;152;1;3;1;success;-3.4;92.379;-29.8;0.768;5017.5;yes
+49;unemployed;married;high.school;no;no;no;cellular;sep;wed;169;1;999;1;failure;-3.4;92.379;-29.8;0.768;5017.5;no
+49;unemployed;married;high.school;no;yes;no;cellular;sep;wed;177;1;999;0;nonexistent;-3.4;92.379;-29.8;0.768;5017.5;no
+32;technician;married;university.degree;no;no;no;telephone;sep;wed;994;3;999;0;nonexistent;-3.4;92.379;-29.8;0.768;5017.5;no
+49;unemployed;married;high.school;no;no;no;cellular;sep;wed;292;1;999;0;nonexistent;-3.4;92.379;-29.8;0.768;5017.5;yes
+49;unemployed;married;high.school;no;no;no;cellular;sep;wed;387;1;999;0;nonexistent;-3.4;92.379;-29.8;0.768;5017.5;yes
+60;retired;divorced;high.school;no;no;no;cellular;sep;wed;99;2;999;2;failure;-3.4;92.379;-29.8;0.768;5017.5;no
+51;unemployed;married;high.school;no;yes;no;cellular;sep;wed;657;2;999;0;nonexistent;-3.4;92.379;-29.8;0.768;5017.5;no
+32;technician;married;university.degree;no;no;no;cellular;sep;wed;246;3;999;0;nonexistent;-3.4;92.379;-29.8;0.768;5017.5;no
+50;blue-collar;married;basic.6y;no;yes;no;cellular;sep;wed;92;3;999;1;failure;-3.4;92.379;-29.8;0.768;5017.5;no
+63;retired;married;professional.course;no;no;no;telephone;sep;wed;134;3;999;1;failure;-3.4;92.379;-29.8;0.768;5017.5;no
+43;self-employed;married;high.school;no;yes;no;cellular;sep;thu;613;1;999;0;nonexistent;-3.4;92.379;-29.8;0.766;5017.5;no
+36;admin.;married;high.school;no;yes;no;cellular;sep;thu;192;1;999;0;nonexistent;-3.4;92.379;-29.8;0.766;5017.5;no
+36;admin.;married;high.school;no;no;no;cellular;sep;thu;543;1;999;0;nonexistent;-3.4;92.379;-29.8;0.766;5017.5;yes
+46;self-employed;divorced;high.school;no;no;no;cellular;sep;fri;267;2;999;1;failure;-3.4;92.379;-29.8;0.762;5017.5;yes
+56;unemployed;married;professional.course;no;no;no;cellular;sep;fri;323;3;6;1;success;-3.4;92.379;-29.8;0.762;5017.5;yes
+52;admin.;married;university.degree;no;no;no;cellular;sep;fri;1104;2;999;0;nonexistent;-3.4;92.379;-29.8;0.762;5017.5;yes
+56;unemployed;married;professional.course;no;no;no;cellular;sep;fri;1551;1;999;2;failure;-3.4;92.379;-29.8;0.762;5017.5;no
+37;technician;married;university.degree;no;yes;no;telephone;sep;tue;773;1;3;2;success;-3.4;92.379;-29.8;0.755;5017.5;yes
+39;services;married;high.school;no;no;no;cellular;sep;tue;65;1;999;0;nonexistent;-3.4;92.379;-29.8;0.755;5017.5;yes
+60;self-employed;divorced;university.degree;no;no;no;cellular;sep;tue;83;1;3;1;success;-3.4;92.379;-29.8;0.755;5017.5;yes
+47;admin.;divorced;high.school;no;yes;no;cellular;sep;tue;159;1;999;1;failure;-3.4;92.379;-29.8;0.755;5017.5;no
+44;technician;married;professional.course;no;yes;no;cellular;sep;tue;173;1;4;1;success;-3.4;92.379;-29.8;0.755;5017.5;yes
+22;services;single;professional.course;no;yes;yes;cellular;sep;tue;239;1;3;2;success;-3.4;92.379;-29.8;0.755;5017.5;yes
+22;services;single;professional.course;no;yes;yes;cellular;sep;tue;369;1;999;0;nonexistent;-3.4;92.379;-29.8;0.755;5017.5;yes
+50;technician;married;university.degree;no;yes;yes;cellular;sep;wed;1353;2;999;0;nonexistent;-3.4;92.379;-29.8;0.749;5017.5;no
+63;housemaid;married;basic.4y;no;yes;no;cellular;sep;wed;299;1;3;1;success;-3.4;92.379;-29.8;0.749;5017.5;yes
+35;technician;married;university.degree;no;yes;yes;cellular;sep;thu;62;3;999;0;nonexistent;-3.4;92.379;-29.8;0.743;5017.5;no
+60;retired;divorced;professional.course;no;yes;no;cellular;sep;thu;63;1;999;2;failure;-3.4;92.379;-29.8;0.743;5017.5;no
+60;retired;divorced;professional.course;no;yes;yes;cellular;sep;thu;794;1;999;0;nonexistent;-3.4;92.379;-29.8;0.743;5017.5;no
+33;technician;single;basic.9y;no;no;no;cellular;sep;fri;105;2;999;0;nonexistent;-3.4;92.379;-29.8;0.741;5017.5;no
+54;blue-collar;married;basic.4y;no;no;no;cellular;sep;fri;49;2;999;1;failure;-3.4;92.379;-29.8;0.741;5017.5;no
+53;admin.;divorced;university.degree;no;yes;yes;cellular;sep;fri;168;2;999;1;failure;-3.4;92.379;-29.8;0.741;5017.5;no
+61;management;married;university.degree;no;yes;no;cellular;sep;fri;491;1;999;0;nonexistent;-3.4;92.379;-29.8;0.741;5017.5;no
+70;retired;married;high.school;no;yes;no;cellular;sep;fri;144;1;999;0;nonexistent;-3.4;92.379;-29.8;0.741;5017.5;no
+61;management;married;university.degree;no;no;no;cellular;sep;fri;105;1;999;0;nonexistent;-3.4;92.379;-29.8;0.741;5017.5;no
+70;retired;divorced;university.degree;no;yes;no;cellular;sep;fri;692;1;999;0;nonexistent;-3.4;92.379;-29.8;0.741;5017.5;yes
+68;retired;single;university.degree;no;yes;no;cellular;sep;fri;81;1;3;1;success;-3.4;92.379;-29.8;0.741;5017.5;no
+70;retired;divorced;university.degree;no;no;no;cellular;sep;fri;399;2;999;0;nonexistent;-3.4;92.379;-29.8;0.741;5017.5;no
+68;retired;single;university.degree;no;yes;no;cellular;sep;fri;139;1;999;0;nonexistent;-3.4;92.379;-29.8;0.741;5017.5;no
+33;technician;single;basic.9y;no;yes;no;cellular;sep;fri;114;1;999;0;nonexistent;-3.4;92.379;-29.8;0.741;5017.5;no
+45;admin.;married;university.degree;no;yes;no;cellular;sep;fri;64;1;999;2;failure;-3.4;92.379;-29.8;0.741;5017.5;no
+53;blue-collar;married;basic.4y;no;yes;no;cellular;sep;fri;85;1;999;0;nonexistent;-3.4;92.379;-29.8;0.741;5017.5;no
+62;self-employed;married;university.degree;unknown;no;no;cellular;sep;fri;74;1;999;0;nonexistent;-3.4;92.379;-29.8;0.741;5017.5;no
+62;self-employed;married;university.degree;unknown;yes;no;cellular;sep;fri;79;1;999;0;nonexistent;-3.4;92.379;-29.8;0.741;5017.5;no
+81;retired;married;basic.4y;no;yes;no;cellular;sep;fri;210;1;999;0;nonexistent;-3.4;92.379;-29.8;0.741;5017.5;yes
+68;retired;single;university.degree;no;no;no;cellular;sep;mon;500;2;999;1;failure;-3.4;92.379;-29.8;0.739;5017.5;no
+30;admin.;married;university.degree;no;no;no;cellular;sep;mon;294;2;6;1;success;-3.4;92.379;-29.8;0.739;5017.5;yes
+68;retired;single;university.degree;no;yes;no;telephone;sep;mon;80;3;999;0;nonexistent;-3.4;92.379;-29.8;0.739;5017.5;no
+43;services;married;basic.6y;no;no;no;cellular;sep;tue;115;1;999;0;nonexistent;-3.4;92.379;-29.8;0.75;5017.5;no
+43;services;married;basic.6y;no;no;no;cellular;sep;tue;159;1;999;1;failure;-3.4;92.379;-29.8;0.75;5017.5;yes
+43;services;married;basic.6y;no;yes;no;cellular;sep;tue;79;1;999;0;nonexistent;-3.4;92.379;-29.8;0.75;5017.5;no
+30;unemployed;single;high.school;no;yes;no;cellular;sep;tue;75;1;999;1;failure;-3.4;92.379;-29.8;0.75;5017.5;no
+70;housemaid;divorced;basic.4y;no;no;no;cellular;sep;tue;213;1;999;1;failure;-3.4;92.379;-29.8;0.75;5017.5;no
+70;housemaid;divorced;basic.4y;no;yes;no;cellular;sep;tue;161;1;999;0;nonexistent;-3.4;92.379;-29.8;0.75;5017.5;no
+56;management;divorced;university.degree;no;no;no;cellular;sep;tue;277;1;999;1;failure;-3.4;92.379;-29.8;0.75;5017.5;yes
+37;housemaid;divorced;high.school;no;no;no;cellular;sep;wed;134;1;999;0;nonexistent;-3.4;92.379;-29.8;0.753;5017.5;no
+61;retired;married;high.school;no;yes;no;cellular;sep;wed;117;1;3;1;success;-3.4;92.379;-29.8;0.753;5017.5;yes
+35;technician;married;professional.course;no;yes;no;cellular;sep;wed;195;1;999;0;nonexistent;-3.4;92.379;-29.8;0.753;5017.5;no
+55;unemployed;married;university.degree;no;yes;yes;cellular;sep;wed;585;1;999;0;nonexistent;-3.4;92.379;-29.8;0.753;5017.5;no
+35;admin.;married;university.degree;no;yes;no;telephone;sep;wed;234;1;999;0;nonexistent;-3.4;92.379;-29.8;0.753;5017.5;yes
+37;unknown;single;university.degree;no;yes;yes;cellular;sep;wed;78;1;999;1;failure;-3.4;92.379;-29.8;0.753;5017.5;no
+37;unknown;single;university.degree;no;no;no;cellular;sep;wed;314;1;1;1;success;-3.4;92.379;-29.8;0.753;5017.5;no
+50;management;married;university.degree;no;yes;no;cellular;oct;thu;305;2;4;1;success;-3.4;92.431;-26.9;0.754;5017.5;yes
+37;admin.;single;university.degree;no;yes;no;cellular;oct;thu;447;3;999;0;nonexistent;-3.4;92.431;-26.9;0.754;5017.5;yes
+59;technician;single;basic.6y;no;no;no;cellular;oct;thu;86;1;999;2;failure;-3.4;92.431;-26.9;0.754;5017.5;no
+31;admin.;married;university.degree;no;yes;no;cellular;oct;thu;760;1;999;0;nonexistent;-3.4;92.431;-26.9;0.754;5017.5;no
+35;admin.;married;high.school;no;yes;no;cellular;oct;thu;194;1;4;1;success;-3.4;92.431;-26.9;0.754;5017.5;yes
+35;admin.;married;high.school;no;no;no;cellular;oct;thu;302;1;4;2;success;-3.4;92.431;-26.9;0.754;5017.5;no
+36;admin.;married;university.degree;no;yes;no;cellular;oct;thu;66;1;999;0;nonexistent;-3.4;92.431;-26.9;0.754;5017.5;no
+69;retired;married;university.degree;no;yes;no;cellular;oct;thu;199;1;999;0;nonexistent;-3.4;92.431;-26.9;0.754;5017.5;no
+65;admin.;married;university.degree;no;yes;no;cellular;oct;thu;120;1;999;0;nonexistent;-3.4;92.431;-26.9;0.754;5017.5;no
+49;technician;divorced;unknown;no;no;no;cellular;oct;thu;56;1;999;2;failure;-3.4;92.431;-26.9;0.754;5017.5;no
+49;technician;divorced;unknown;no;no;no;cellular;oct;thu;237;1;999;2;failure;-3.4;92.431;-26.9;0.754;5017.5;no
+49;technician;divorced;unknown;no;yes;no;cellular;oct;thu;168;1;4;1;success;-3.4;92.431;-26.9;0.754;5017.5;no
+78;retired;married;basic.9y;no;yes;no;telephone;oct;thu;321;1;999;0;nonexistent;-3.4;92.431;-26.9;0.754;5017.5;no
+32;admin.;married;university.degree;no;yes;no;cellular;oct;thu;177;1;999;0;nonexistent;-3.4;92.431;-26.9;0.754;5017.5;no
+50;management;married;university.degree;no;yes;no;telephone;oct;thu;258;1;999;1;failure;-3.4;92.431;-26.9;0.754;5017.5;no
+71;retired;married;basic.4y;no;no;no;cellular;oct;thu;250;2;999;2;failure;-3.4;92.431;-26.9;0.754;5017.5;no
+29;admin.;single;university.degree;no;yes;no;cellular;oct;thu;99;1;999;0;nonexistent;-3.4;92.431;-26.9;0.754;5017.5;no
+51;technician;married;professional.course;no;yes;no;cellular;oct;thu;67;6;6;3;failure;-3.4;92.431;-26.9;0.754;5017.5;no
+49;technician;divorced;unknown;no;yes;yes;cellular;oct;thu;81;1;999;0;nonexistent;-3.4;92.431;-26.9;0.754;5017.5;no
+23;unemployed;single;basic.9y;no;yes;no;cellular;oct;thu;238;1;4;1;success;-3.4;92.431;-26.9;0.754;5017.5;yes
+38;admin.;married;high.school;no;yes;no;cellular;oct;thu;82;1;999;1;failure;-3.4;92.431;-26.9;0.754;5017.5;no
+71;retired;married;basic.4y;no;yes;no;cellular;oct;thu;137;1;999;1;failure;-3.4;92.431;-26.9;0.754;5017.5;yes
+26;technician;single;university.degree;no;yes;no;cellular;oct;thu;152;1;999;0;nonexistent;-3.4;92.431;-26.9;0.754;5017.5;no
+54;management;divorced;university.degree;unknown;yes;no;cellular;oct;thu;214;1;999;0;nonexistent;-3.4;92.431;-26.9;0.754;5017.5;no
+75;retired;divorced;basic.4y;unknown;yes;no;cellular;oct;thu;502;1;999;0;nonexistent;-3.4;92.431;-26.9;0.754;5017.5;yes
+83;retired;married;professional.course;no;yes;no;cellular;oct;fri;849;2;4;1;success;-3.4;92.431;-26.9;0.752;5017.5;yes
+28;unemployed;single;basic.4y;no;yes;yes;cellular;oct;fri;462;1;999;0;nonexistent;-3.4;92.431;-26.9;0.752;5017.5;no
+63;retired;married;basic.6y;no;yes;no;cellular;oct;fri;91;2;999;0;nonexistent;-3.4;92.431;-26.9;0.752;5017.5;no
+28;unemployed;single;basic.4y;no;yes;no;cellular;oct;fri;160;2;4;1;success;-3.4;92.431;-26.9;0.752;5017.5;no
+71;retired;married;basic.9y;no;no;no;cellular;oct;fri;131;2;999;0;nonexistent;-3.4;92.431;-26.9;0.752;5017.5;no
+82;retired;married;university.degree;no;yes;no;cellular;oct;tue;215;1;999;0;nonexistent;-3.4;92.431;-26.9;0.744;5017.5;yes
+45;blue-collar;married;professional.course;no;no;no;cellular;oct;tue;117;1;999;0;nonexistent;-3.4;92.431;-26.9;0.744;5017.5;no
+68;retired;married;high.school;no;yes;no;cellular;oct;tue;88;1;999;2;failure;-3.4;92.431;-26.9;0.744;5017.5;no
+37;housemaid;single;university.degree;no;yes;no;cellular;oct;tue;89;1;999;1;failure;-3.4;92.431;-26.9;0.744;5017.5;no
+43;management;single;university.degree;no;yes;no;cellular;oct;tue;205;1;999;0;nonexistent;-3.4;92.431;-26.9;0.744;5017.5;no
+43;management;single;university.degree;no;no;no;cellular;oct;tue;408;1;999;1;failure;-3.4;92.431;-26.9;0.744;5017.5;no
+69;retired;divorced;professional.course;no;no;no;cellular;oct;tue;144;1;999;0;nonexistent;-3.4;92.431;-26.9;0.744;5017.5;yes
+82;retired;married;university.degree;no;yes;yes;cellular;oct;tue;63;1;999;1;failure;-3.4;92.431;-26.9;0.744;5017.5;no
+82;retired;married;university.degree;no;yes;no;cellular;oct;tue;526;1;999;0;nonexistent;-3.4;92.431;-26.9;0.744;5017.5;no
+80;retired;divorced;basic.4y;no;no;no;cellular;oct;tue;96;1;999;0;nonexistent;-3.4;92.431;-26.9;0.744;5017.5;no
+65;retired;married;high.school;no;yes;no;cellular;oct;tue;384;2;999;0;nonexistent;-3.4;92.431;-26.9;0.744;5017.5;yes
+80;retired;divorced;basic.4y;no;no;no;cellular;oct;tue;125;1;999;0;nonexistent;-3.4;92.431;-26.9;0.744;5017.5;no
+41;technician;married;professional.course;no;yes;no;cellular;oct;tue;304;2;999;0;nonexistent;-3.4;92.431;-26.9;0.744;5017.5;no
+27;admin.;married;high.school;no;no;no;cellular;oct;tue;572;1;999;0;nonexistent;-3.4;92.431;-26.9;0.744;5017.5;no
+56;unknown;married;basic.4y;no;yes;no;cellular;oct;tue;172;1;999;0;nonexistent;-3.4;92.431;-26.9;0.744;5017.5;no
+56;unknown;married;basic.4y;no;no;no;cellular;oct;tue;480;1;2;2;success;-3.4;92.431;-26.9;0.744;5017.5;yes
+37;housemaid;single;university.degree;no;no;no;cellular;oct;tue;296;3;999;0;nonexistent;-3.4;92.431;-26.9;0.744;5017.5;yes
+36;admin.;married;university.degree;no;yes;no;cellular;oct;wed;133;1;999;1;failure;-3.4;92.431;-26.9;0.74;5017.5;no
+63;retired;married;high.school;no;yes;no;cellular;oct;wed;323;1;999;0;nonexistent;-3.4;92.431;-26.9;0.74;5017.5;no
+30;unemployed;single;high.school;no;yes;yes;cellular;oct;wed;953;1;999;0;nonexistent;-3.4;92.431;-26.9;0.74;5017.5;no
+50;unknown;married;unknown;no;no;no;cellular;oct;wed;209;1;8;3;failure;-3.4;92.431;-26.9;0.74;5017.5;yes
+35;admin.;married;university.degree;no;no;no;cellular;oct;wed;371;1;999;1;failure;-3.4;92.431;-26.9;0.74;5017.5;yes
+86;retired;divorced;basic.4y;no;unknown;unknown;cellular;oct;wed;130;1;999;0;nonexistent;-3.4;92.431;-26.9;0.74;5017.5;no
+48;management;married;university.degree;no;yes;yes;cellular;oct;wed;157;2;999;0;nonexistent;-3.4;92.431;-26.9;0.74;5017.5;no
+34;self-employed;married;university.degree;no;no;no;cellular;oct;wed;201;1;5;3;failure;-3.4;92.431;-26.9;0.74;5017.5;yes
+58;technician;married;basic.4y;no;no;yes;cellular;oct;wed;867;2;4;2;success;-3.4;92.431;-26.9;0.74;5017.5;no
+38;admin.;married;university.degree;no;yes;no;cellular;oct;wed;90;1;999;0;nonexistent;-3.4;92.431;-26.9;0.74;5017.5;no
+60;admin.;married;unknown;no;yes;no;cellular;oct;wed;290;1;999;1;failure;-3.4;92.431;-26.9;0.74;5017.5;yes
+48;management;married;university.degree;no;no;no;cellular;oct;wed;81;1;6;1;success;-3.4;92.431;-26.9;0.74;5017.5;yes
+48;management;married;university.degree;no;yes;no;cellular;oct;wed;294;1;999;1;failure;-3.4;92.431;-26.9;0.74;5017.5;yes
+48;management;married;university.degree;no;no;no;cellular;oct;wed;301;1;999;1;failure;-3.4;92.431;-26.9;0.74;5017.5;no
+35;technician;married;university.degree;no;yes;no;telephone;oct;wed;73;2;999;0;nonexistent;-3.4;92.431;-26.9;0.74;5017.5;no
+38;admin.;married;university.degree;no;no;no;cellular;oct;wed;180;2;999;1;failure;-3.4;92.431;-26.9;0.74;5017.5;no
+58;technician;married;basic.4y;no;yes;no;telephone;oct;wed;88;1;999;0;nonexistent;-3.4;92.431;-26.9;0.74;5017.5;no
+53;admin.;married;unknown;no;yes;no;cellular;oct;wed;73;2;999;0;nonexistent;-3.4;92.431;-26.9;0.74;5017.5;no
+58;technician;married;basic.4y;no;yes;no;cellular;oct;wed;525;1;999;0;nonexistent;-3.4;92.431;-26.9;0.74;5017.5;no
+32;admin.;married;university.degree;no;yes;yes;cellular;oct;wed;223;1;999;0;nonexistent;-3.4;92.431;-26.9;0.74;5017.5;no
+63;retired;married;high.school;no;no;no;cellular;oct;wed;335;1;999;0;nonexistent;-3.4;92.431;-26.9;0.74;5017.5;yes
+63;retired;married;high.school;no;no;no;cellular;oct;wed;1386;1;999;0;nonexistent;-3.4;92.431;-26.9;0.74;5017.5;no
+41;technician;married;professional.course;no;no;no;cellular;oct;thu;173;2;999;0;nonexistent;-3.4;92.431;-26.9;0.741;5017.5;no
+48;admin.;married;high.school;no;no;no;cellular;oct;thu;113;1;999;0;nonexistent;-3.4;92.431;-26.9;0.741;5017.5;no
+69;technician;married;professional.course;no;yes;no;cellular;oct;thu;189;1;999;0;nonexistent;-3.4;92.431;-26.9;0.741;5017.5;no
+42;management;divorced;unknown;no;yes;no;cellular;oct;thu;148;1;999;0;nonexistent;-3.4;92.431;-26.9;0.741;5017.5;no
+42;management;divorced;unknown;no;yes;no;telephone;oct;thu;259;1;999;0;nonexistent;-3.4;92.431;-26.9;0.741;5017.5;no
+42;management;divorced;unknown;no;no;no;cellular;oct;thu;78;1;999;0;nonexistent;-3.4;92.431;-26.9;0.741;5017.5;no
+77;retired;divorced;unknown;no;no;no;cellular;oct;thu;97;2;999;0;nonexistent;-3.4;92.431;-26.9;0.741;5017.5;no
+54;management;divorced;university.degree;no;yes;no;cellular;oct;thu;234;2;6;1;success;-3.4;92.431;-26.9;0.741;5017.5;yes
+36;technician;married;professional.course;unknown;no;no;cellular;oct;thu;667;1;999;0;nonexistent;-3.4;92.431;-26.9;0.741;5017.5;yes
+37;management;single;basic.9y;no;no;no;cellular;oct;thu;137;1;999;0;nonexistent;-3.4;92.431;-26.9;0.741;5017.5;yes
+69;technician;married;professional.course;no;yes;no;cellular;oct;thu;676;1;999;0;nonexistent;-3.4;92.431;-26.9;0.741;5017.5;no
+42;management;single;university.degree;no;no;no;cellular;oct;fri;1106;2;999;0;nonexistent;-3.4;92.431;-26.9;0.743;5017.5;yes
+29;unemployed;divorced;high.school;no;no;no;cellular;oct;mon;181;2;999;0;nonexistent;-3.4;92.431;-26.9;0.743;5017.5;no
+59;technician;married;university.degree;no;no;no;cellular;oct;mon;268;1;999;1;failure;-3.4;92.431;-26.9;0.743;5017.5;no
+42;management;single;university.degree;no;yes;no;cellular;oct;mon;105;1;999;0;nonexistent;-3.4;92.431;-26.9;0.743;5017.5;yes
+42;management;single;university.degree;no;no;no;cellular;oct;mon;134;1;6;1;success;-3.4;92.431;-26.9;0.743;5017.5;no
+59;technician;married;university.degree;no;yes;no;cellular;oct;mon;511;3;999;1;failure;-3.4;92.431;-26.9;0.743;5017.5;yes
+42;management;single;university.degree;no;yes;no;cellular;oct;mon;138;1;999;0;nonexistent;-3.4;92.431;-26.9;0.743;5017.5;yes
+75;retired;married;basic.9y;no;no;no;cellular;oct;mon;120;1;999;0;nonexistent;-3.4;92.431;-26.9;0.743;5017.5;no
+36;admin.;married;university.degree;no;yes;yes;cellular;oct;mon;78;1;999;1;failure;-3.4;92.431;-26.9;0.743;5017.5;yes
+29;unemployed;divorced;high.school;no;no;no;cellular;oct;mon;92;1;999;0;nonexistent;-3.4;92.431;-26.9;0.743;5017.5;no
+42;management;single;university.degree;no;no;no;cellular;oct;mon;146;1;999;0;nonexistent;-3.4;92.431;-26.9;0.743;5017.5;yes
+33;blue-collar;married;basic.4y;no;yes;no;telephone;oct;mon;99;3;3;1;success;-3.4;92.431;-26.9;0.743;5017.5;no
+77;retired;married;university.degree;no;no;yes;cellular;oct;mon;348;1;999;0;nonexistent;-3.4;92.431;-26.9;0.743;5017.5;yes
+70;retired;married;university.degree;no;yes;no;cellular;oct;mon;837;2;999;1;failure;-3.4;92.431;-26.9;0.743;5017.5;no
+38;technician;divorced;professional.course;no;no;yes;cellular;oct;tue;135;1;999;2;failure;-3.4;92.431;-26.9;0.742;5017.5;no
+32;admin.;married;professional.course;no;yes;no;cellular;oct;tue;435;1;999;0;nonexistent;-3.4;92.431;-26.9;0.742;5017.5;yes
+44;technician;married;basic.9y;no;yes;no;cellular;oct;tue;306;1;2;1;success;-3.4;92.431;-26.9;0.742;5017.5;no
+48;admin.;married;basic.6y;no;no;no;cellular;oct;tue;61;1;999;0;nonexistent;-3.4;92.431;-26.9;0.742;5017.5;no
+80;retired;married;basic.4y;no;yes;yes;cellular;oct;tue;78;1;999;1;failure;-3.4;92.431;-26.9;0.742;5017.5;no
+71;retired;single;university.degree;no;unknown;unknown;cellular;oct;tue;98;1;999;0;nonexistent;-3.4;92.431;-26.9;0.742;5017.5;no
+71;retired;single;university.degree;no;yes;no;cellular;oct;tue;167;1;999;0;nonexistent;-3.4;92.431;-26.9;0.742;5017.5;no
+71;retired;single;university.degree;no;no;no;telephone;oct;tue;120;1;999;0;nonexistent;-3.4;92.431;-26.9;0.742;5017.5;no
+26;student;single;basic.9y;no;unknown;unknown;cellular;oct;tue;92;1;999;1;failure;-3.4;92.431;-26.9;0.742;5017.5;no
+30;management;married;university.degree;no;no;no;cellular;oct;tue;411;2;999;0;nonexistent;-3.4;92.431;-26.9;0.742;5017.5;yes
+35;student;single;university.degree;no;yes;no;cellular;oct;tue;79;2;999;0;nonexistent;-3.4;92.431;-26.9;0.742;5017.5;yes
+30;management;married;university.degree;no;yes;no;cellular;oct;tue;1226;2;999;0;nonexistent;-3.4;92.431;-26.9;0.742;5017.5;yes
+80;retired;married;basic.4y;no;no;no;cellular;oct;tue;242;1;999;2;failure;-3.4;92.431;-26.9;0.742;5017.5;yes
+45;blue-collar;single;basic.9y;no;no;no;cellular;oct;tue;845;1;999;2;failure;-3.4;92.431;-26.9;0.742;5017.5;no
+33;unemployed;married;high.school;no;no;yes;cellular;oct;tue;227;1;999;0;nonexistent;-3.4;92.431;-26.9;0.742;5017.5;no
+58;unemployed;married;basic.9y;no;no;yes;cellular;oct;tue;49;1;999;2;failure;-3.4;92.431;-26.9;0.742;5017.5;no
+55;technician;married;professional.course;no;yes;no;cellular;oct;tue;182;1;999;0;nonexistent;-3.4;92.431;-26.9;0.742;5017.5;no
+55;technician;married;professional.course;no;no;no;cellular;oct;tue;213;1;999;0;nonexistent;-3.4;92.431;-26.9;0.742;5017.5;no
+55;technician;married;professional.course;no;no;no;cellular;oct;tue;285;1;999;0;nonexistent;-3.4;92.431;-26.9;0.742;5017.5;no
+48;technician;married;professional.course;no;no;yes;telephone;oct;tue;200;2;999;0;nonexistent;-3.4;92.431;-26.9;0.742;5017.5;no
+32;admin.;married;professional.course;no;yes;no;cellular;oct;tue;169;1;999;0;nonexistent;-3.4;92.431;-26.9;0.742;5017.5;no
+32;admin.;married;professional.course;no;no;yes;cellular;oct;tue;221;1;6;1;success;-3.4;92.431;-26.9;0.742;5017.5;yes
+22;student;single;high.school;no;yes;no;cellular;oct;tue;210;1;6;1;success;-3.4;92.431;-26.9;0.742;5017.5;yes
+26;student;single;basic.9y;no;yes;no;cellular;oct;tue;75;2;999;1;failure;-3.4;92.431;-26.9;0.742;5017.5;no
+27;technician;single;unknown;no;no;no;cellular;oct;tue;404;1;999;0;nonexistent;-3.4;92.431;-26.9;0.742;5017.5;no
+56;admin.;married;basic.9y;no;yes;no;cellular;oct;tue;1573;2;999;1;failure;-3.4;92.431;-26.9;0.742;5017.5;no
+17;student;single;unknown;no;no;yes;cellular;oct;tue;896;1;2;2;success;-3.4;92.431;-26.9;0.742;5017.5;yes
+33;unemployed;married;high.school;no;yes;yes;cellular;oct;tue;301;2;999;0;nonexistent;-3.4;92.431;-26.9;0.742;5017.5;yes
+45;blue-collar;single;basic.9y;no;no;yes;cellular;oct;tue;204;2;999;1;failure;-3.4;92.431;-26.9;0.742;5017.5;yes
+26;student;single;basic.9y;no;yes;no;telephone;oct;tue;1003;3;999;0;nonexistent;-3.4;92.431;-26.9;0.742;5017.5;yes
+48;admin.;married;basic.6y;no;yes;no;cellular;oct;tue;115;2;5;2;success;-3.4;92.431;-26.9;0.742;5017.5;no
+80;retired;married;basic.4y;no;no;no;cellular;oct;tue;82;2;999;0;nonexistent;-3.4;92.431;-26.9;0.742;5017.5;no
+44;blue-collar;single;professional.course;no;no;no;cellular;oct;tue;123;2;999;0;nonexistent;-3.4;92.431;-26.9;0.742;5017.5;no
+71;retired;single;university.degree;no;no;no;telephone;oct;tue;120;1;999;0;nonexistent;-3.4;92.431;-26.9;0.742;5017.5;no
+28;technician;single;high.school;no;no;no;cellular;oct;wed;216;1;999;1;failure;-3.4;92.431;-26.9;0.742;5017.5;yes
+28;technician;single;high.school;no;unknown;unknown;cellular;oct;wed;84;1;6;1;success;-3.4;92.431;-26.9;0.742;5017.5;yes
+28;admin.;single;high.school;no;no;no;telephone;oct;wed;958;1;999;0;nonexistent;-3.4;92.431;-26.9;0.742;5017.5;yes
+36;admin.;single;university.degree;no;no;no;cellular;oct;wed;146;1;999;1;failure;-3.4;92.431;-26.9;0.742;5017.5;no
+71;retired;married;basic.9y;no;no;no;cellular;oct;wed;237;1;999;0;nonexistent;-3.4;92.431;-26.9;0.742;5017.5;no
+36;admin.;single;university.degree;no;yes;no;cellular;oct;wed;113;1;2;2;success;-3.4;92.431;-26.9;0.742;5017.5;no
+74;retired;married;unknown;no;yes;yes;cellular;oct;wed;251;1;999;0;nonexistent;-3.4;92.431;-26.9;0.742;5017.5;yes
+37;technician;married;university.degree;no;yes;no;cellular;oct;wed;364;1;999;1;failure;-3.4;92.431;-26.9;0.742;5017.5;yes
+36;admin.;married;university.degree;no;yes;no;cellular;oct;wed;104;1;999;2;failure;-3.4;92.431;-26.9;0.742;5017.5;no
+37;blue-collar;single;professional.course;no;no;no;cellular;oct;wed;727;3;999;0;nonexistent;-3.4;92.431;-26.9;0.742;5017.5;no
+56;admin.;married;basic.9y;no;no;no;cellular;oct;wed;79;2;999;0;nonexistent;-3.4;92.431;-26.9;0.742;5017.5;no
+38;admin.;married;high.school;no;yes;no;cellular;oct;wed;108;1;999;0;nonexistent;-3.4;92.431;-26.9;0.742;5017.5;no
+35;technician;married;university.degree;no;yes;no;cellular;oct;wed;68;1;999;0;nonexistent;-3.4;92.431;-26.9;0.742;5017.5;no
+42;entrepreneur;married;basic.9y;no;no;no;cellular;oct;wed;122;3;999;0;nonexistent;-3.4;92.431;-26.9;0.742;5017.5;no
+34;management;married;university.degree;no;no;no;telephone;oct;wed;290;2;999;0;nonexistent;-3.4;92.431;-26.9;0.742;5017.5;yes
+28;technician;single;university.degree;no;yes;yes;cellular;oct;wed;166;2;999;0;nonexistent;-3.4;92.431;-26.9;0.742;5017.5;no
+36;admin.;married;university.degree;no;no;no;cellular;oct;wed;632;2;999;0;nonexistent;-3.4;92.431;-26.9;0.742;5017.5;no
+36;unemployed;married;high.school;no;no;no;telephone;oct;thu;130;2;999;0;nonexistent;-3.4;92.431;-26.9;0.74;5017.5;no
+33;admin.;single;university.degree;no;no;no;cellular;oct;thu;441;5;999;1;failure;-3.4;92.431;-26.9;0.74;5017.5;yes
+37;blue-collar;married;basic.6y;no;yes;no;cellular;oct;thu;262;4;999;0;nonexistent;-3.4;92.431;-26.9;0.74;5017.5;no
+35;admin.;married;university.degree;no;yes;no;cellular;oct;thu;86;1;999;1;failure;-3.4;92.431;-26.9;0.74;5017.5;no
+49;admin.;single;university.degree;no;no;no;cellular;oct;thu;73;1;999;0;nonexistent;-3.4;92.431;-26.9;0.74;5017.5;no
+28;student;single;high.school;no;no;no;telephone;oct;thu;280;1;999;0;nonexistent;-3.4;92.431;-26.9;0.74;5017.5;no
+34;technician;single;professional.course;no;no;no;cellular;oct;thu;138;1;999;1;failure;-3.4;92.431;-26.9;0.74;5017.5;no
+30;self-employed;single;high.school;no;no;no;telephone;oct;thu;172;1;999;0;nonexistent;-3.4;92.431;-26.9;0.74;5017.5;no
+44;admin.;divorced;high.school;no;no;no;cellular;oct;thu;634;1;999;0;nonexistent;-3.4;92.431;-26.9;0.74;5017.5;no
+28;admin.;single;university.degree;no;yes;no;cellular;oct;thu;522;2;999;0;nonexistent;-3.4;92.431;-26.9;0.74;5017.5;no
+68;retired;married;professional.course;no;no;no;cellular;oct;thu;76;1;999;1;failure;-3.4;92.431;-26.9;0.74;5017.5;no
+37;blue-collar;married;basic.6y;no;no;no;cellular;oct;thu;244;1;999;0;nonexistent;-3.4;92.431;-26.9;0.74;5017.5;no
+37;blue-collar;married;basic.6y;no;yes;no;cellular;oct;thu;68;1;999;0;nonexistent;-3.4;92.431;-26.9;0.74;5017.5;no
+40;services;married;professional.course;no;yes;no;cellular;oct;thu;244;1;3;1;success;-3.4;92.431;-26.9;0.74;5017.5;yes
+28;student;single;unknown;no;yes;no;cellular;oct;thu;231;1;999;0;nonexistent;-3.4;92.431;-26.9;0.74;5017.5;no
+74;retired;married;professional.course;no;yes;no;cellular;oct;thu;96;2;3;1;success;-3.4;92.431;-26.9;0.74;5017.5;no
+35;admin.;married;university.degree;no;yes;no;cellular;oct;thu;126;2;999;0;nonexistent;-3.4;92.431;-26.9;0.74;5017.5;no
+74;retired;married;basic.9y;no;yes;no;cellular;oct;thu;134;2;6;1;success;-3.4;92.431;-26.9;0.74;5017.5;yes
+37;blue-collar;married;basic.6y;no;no;no;cellular;oct;thu;246;5;999;0;nonexistent;-3.4;92.431;-26.9;0.74;5017.5;no
+37;blue-collar;married;basic.6y;no;no;no;cellular;oct;thu;128;2;6;3;failure;-3.4;92.431;-26.9;0.74;5017.5;yes
+33;admin.;single;university.degree;no;yes;no;telephone;oct;thu;166;3;6;2;success;-3.4;92.431;-26.9;0.74;5017.5;yes
+25;admin.;single;university.degree;no;yes;yes;telephone;oct;thu;227;1;999;0;nonexistent;-3.4;92.431;-26.9;0.74;5017.5;no
+37;management;single;university.degree;no;no;no;cellular;oct;thu;570;1;999;1;failure;-3.4;92.431;-26.9;0.74;5017.5;yes
+83;retired;married;basic.9y;no;no;no;cellular;oct;fri;138;2;999;0;nonexistent;-3.4;92.431;-26.9;0.739;5017.5;no
+25;admin.;single;university.degree;no;yes;yes;cellular;oct;fri;115;1;999;1;failure;-3.4;92.431;-26.9;0.739;5017.5;yes
+28;services;married;basic.9y;no;yes;no;telephone;oct;fri;186;1;999;1;failure;-3.4;92.431;-26.9;0.739;5017.5;yes
+28;services;married;basic.9y;no;yes;no;cellular;oct;fri;847;1;2;1;success;-3.4;92.431;-26.9;0.739;5017.5;yes
+85;housemaid;divorced;basic.4y;unknown;yes;no;telephone;oct;fri;181;2;999;0;nonexistent;-3.4;92.431;-26.9;0.739;5017.5;no
+22;student;single;high.school;no;no;no;cellular;oct;fri;154;2;999;1;failure;-3.4;92.431;-26.9;0.739;5017.5;yes
+32;self-employed;married;professional.course;no;no;yes;cellular;oct;fri;55;2;999;0;nonexistent;-3.4;92.431;-26.9;0.739;5017.5;no
+25;admin.;single;university.degree;no;unknown;unknown;cellular;oct;fri;1580;2;999;0;nonexistent;-3.4;92.431;-26.9;0.739;5017.5;no
+39;technician;married;university.degree;no;no;no;cellular;oct;fri;170;1;6;1;success;-3.4;92.431;-26.9;0.739;5017.5;yes
+33;technician;married;professional.course;no;yes;no;cellular;oct;fri;154;2;999;0;nonexistent;-3.4;92.431;-26.9;0.739;5017.5;yes
+40;admin.;married;university.degree;no;yes;yes;cellular;oct;fri;109;5;999;0;nonexistent;-3.4;92.431;-26.9;0.739;5017.5;no
+38;admin.;married;university.degree;no;yes;no;cellular;oct;fri;131;2;8;1;success;-3.4;92.431;-26.9;0.739;5017.5;no
+39;technician;married;university.degree;no;yes;no;cellular;oct;fri;141;1;7;2;failure;-3.4;92.431;-26.9;0.739;5017.5;no
+39;admin.;single;high.school;no;no;no;cellular;oct;fri;95;1;999;0;nonexistent;-3.4;92.431;-26.9;0.739;5017.5;no
+39;admin.;single;high.school;no;yes;no;cellular;oct;fri;132;1;999;0;nonexistent;-3.4;92.431;-26.9;0.739;5017.5;no
+33;admin.;single;university.degree;no;yes;no;cellular;oct;fri;233;1;999;0;nonexistent;-3.4;92.431;-26.9;0.739;5017.5;yes
+60;self-employed;married;university.degree;no;yes;no;telephone;oct;fri;128;1;999;0;nonexistent;-3.4;92.431;-26.9;0.739;5017.5;no
+33;self-employed;single;professional.course;no;yes;yes;telephone;oct;fri;193;1;999;1;failure;-3.4;92.431;-26.9;0.739;5017.5;no
+26;admin.;single;university.degree;no;no;no;cellular;oct;fri;306;1;999;0;nonexistent;-3.4;92.431;-26.9;0.739;5017.5;yes
+30;technician;single;professional.course;no;yes;no;telephone;oct;fri;169;2;999;0;nonexistent;-3.4;92.431;-26.9;0.739;5017.5;no
+36;services;married;high.school;no;yes;no;cellular;oct;fri;104;1;6;1;success;-3.4;92.431;-26.9;0.739;5017.5;no
+36;services;married;high.school;no;no;no;cellular;oct;fri;141;1;999;2;failure;-3.4;92.431;-26.9;0.739;5017.5;no
+49;admin.;single;high.school;no;no;no;cellular;oct;fri;165;1;999;1;failure;-3.4;92.431;-26.9;0.739;5017.5;no
+49;admin.;single;high.school;no;yes;no;telephone;oct;fri;434;1;999;1;failure;-3.4;92.431;-26.9;0.739;5017.5;yes
+28;admin.;single;university.degree;no;no;no;cellular;oct;fri;317;2;999;0;nonexistent;-3.4;92.431;-26.9;0.739;5017.5;no
+50;technician;married;professional.course;no;unknown;unknown;cellular;oct;fri;447;1;8;2;failure;-3.4;92.431;-26.9;0.739;5017.5;yes
+33;admin.;married;university.degree;no;no;no;cellular;oct;fri;130;1;6;1;success;-3.4;92.431;-26.9;0.739;5017.5;yes
+38;technician;married;university.degree;no;no;no;cellular;oct;fri;156;1;999;0;nonexistent;-3.4;92.431;-26.9;0.739;5017.5;yes
+28;management;single;university.degree;no;no;no;cellular;oct;fri;324;1;999;1;failure;-3.4;92.431;-26.9;0.739;5017.5;yes
+62;retired;married;university.degree;unknown;no;no;cellular;oct;fri;717;2;999;0;nonexistent;-3.4;92.431;-26.9;0.739;5017.5;yes
+34;management;married;university.degree;no;yes;no;cellular;oct;fri;87;1;2;1;success;-3.4;92.431;-26.9;0.739;5017.5;no
+44;blue-collar;married;professional.course;no;no;no;cellular;oct;fri;283;1;999;2;failure;-3.4;92.431;-26.9;0.739;5017.5;no
+32;admin.;single;university.degree;no;no;no;cellular;oct;fri;147;2;6;1;success;-3.4;92.431;-26.9;0.739;5017.5;no
+49;admin.;single;high.school;no;yes;no;cellular;oct;fri;136;2;999;0;nonexistent;-3.4;92.431;-26.9;0.739;5017.5;yes
+36;admin.;married;university.degree;no;no;no;cellular;oct;fri;342;1;999;2;failure;-3.4;92.431;-26.9;0.739;5017.5;yes
+36;management;married;basic.4y;no;no;no;cellular;oct;mon;143;2;999;0;nonexistent;-3.4;92.431;-26.9;0.739;5017.5;no
+70;retired;married;basic.4y;no;yes;no;cellular;oct;mon;131;1;999;0;nonexistent;-3.4;92.431;-26.9;0.739;5017.5;yes
+34;admin.;single;university.degree;no;no;no;cellular;oct;mon;131;1;999;1;failure;-3.4;92.431;-26.9;0.739;5017.5;no
+29;management;single;university.degree;no;no;no;cellular;oct;mon;94;1;999;2;failure;-3.4;92.431;-26.9;0.739;5017.5;no
+21;student;single;high.school;no;no;yes;cellular;oct;mon;238;1;999;0;nonexistent;-3.4;92.431;-26.9;0.739;5017.5;no
+60;retired;married;basic.4y;no;no;no;cellular;oct;mon;98;1;999;0;nonexistent;-3.4;92.431;-26.9;0.739;5017.5;yes
+60;retired;married;basic.4y;no;no;no;cellular;oct;mon;599;1;999;1;failure;-3.4;92.431;-26.9;0.739;5017.5;no
+60;retired;married;basic.4y;no;yes;no;cellular;oct;mon;1020;1;999;0;nonexistent;-3.4;92.431;-26.9;0.739;5017.5;no
+25;admin.;single;university.degree;no;yes;no;cellular;oct;mon;123;1;999;0;nonexistent;-3.4;92.431;-26.9;0.739;5017.5;no
+36;admin.;single;high.school;no;yes;no;cellular;oct;mon;113;1;6;1;success;-3.4;92.431;-26.9;0.739;5017.5;no
+55;entrepreneur;married;professional.course;no;yes;no;cellular;oct;mon;534;1;999;0;nonexistent;-3.4;92.431;-26.9;0.739;5017.5;no
+60;retired;married;basic.4y;no;no;no;cellular;oct;mon;82;1;999;0;nonexistent;-3.4;92.431;-26.9;0.739;5017.5;no
+55;entrepreneur;married;professional.course;no;no;no;cellular;oct;mon;116;1;999;0;nonexistent;-3.4;92.431;-26.9;0.739;5017.5;no
+30;services;single;high.school;no;no;no;cellular;oct;mon;120;1;999;0;nonexistent;-3.4;92.431;-26.9;0.739;5017.5;no
+32;services;married;high.school;no;no;no;cellular;oct;mon;217;1;999;0;nonexistent;-3.4;92.431;-26.9;0.739;5017.5;no
+54;unemployed;divorced;high.school;no;no;yes;cellular;oct;mon;54;1;999;0;nonexistent;-3.4;92.431;-26.9;0.739;5017.5;no
+20;student;single;high.school;no;no;yes;cellular;oct;mon;169;1;999;0;nonexistent;-3.4;92.431;-26.9;0.739;5017.5;no
+36;management;married;basic.4y;no;yes;no;cellular;oct;mon;109;3;999;0;nonexistent;-3.4;92.431;-26.9;0.739;5017.5;no
+38;blue-collar;married;basic.9y;no;yes;no;cellular;oct;mon;167;3;999;0;nonexistent;-3.4;92.431;-26.9;0.739;5017.5;no
+30;services;single;high.school;no;yes;no;cellular;oct;mon;385;2;999;0;nonexistent;-3.4;92.431;-26.9;0.739;5017.5;yes
+55;entrepreneur;married;professional.course;no;yes;no;telephone;oct;mon;323;2;999;0;nonexistent;-3.4;92.431;-26.9;0.739;5017.5;no
+41;blue-collar;married;basic.9y;no;no;no;cellular;oct;mon;79;1;999;1;failure;-3.4;92.431;-26.9;0.739;5017.5;no
+41;blue-collar;married;basic.9y;no;no;no;cellular;oct;mon;104;1;999;0;nonexistent;-3.4;92.431;-26.9;0.739;5017.5;no
+55;entrepreneur;married;professional.course;no;yes;yes;cellular;oct;mon;233;1;999;2;failure;-3.4;92.431;-26.9;0.739;5017.5;no
+65;retired;married;unknown;no;unknown;unknown;telephone;oct;mon;208;3;999;1;failure;-3.4;92.431;-26.9;0.739;5017.5;no
+54;housemaid;married;professional.course;no;no;no;telephone;oct;mon;187;2;999;0;nonexistent;-3.4;92.431;-26.9;0.739;5017.5;no
+67;retired;married;professional.course;no;no;no;telephone;oct;mon;270;2;999;0;nonexistent;-3.4;92.431;-26.9;0.739;5017.5;no
+35;self-employed;single;university.degree;no;unknown;unknown;cellular;oct;mon;123;2;999;0;nonexistent;-3.4;92.431;-26.9;0.739;5017.5;no
+54;housemaid;married;professional.course;no;no;no;telephone;oct;mon;1745;3;999;1;failure;-3.4;92.431;-26.9;0.739;5017.5;no
+21;student;single;high.school;no;no;no;cellular;oct;mon;328;1;999;0;nonexistent;-3.4;92.431;-26.9;0.739;5017.5;yes
+51;entrepreneur;married;basic.4y;no;no;no;cellular;oct;tue;626;1;999;1;failure;-3.4;92.431;-26.9;0.737;5017.5;no
+59;housemaid;married;basic.4y;no;no;no;telephone;oct;tue;2187;1;999;0;nonexistent;-3.4;92.431;-26.9;0.737;5017.5;no
+30;technician;married;professional.course;no;yes;no;cellular;oct;tue;59;1;999;1;failure;-3.4;92.431;-26.9;0.737;5017.5;no
+58;blue-collar;married;basic.9y;no;yes;no;cellular;oct;tue;164;1;999;1;failure;-3.4;92.431;-26.9;0.737;5017.5;no
+58;blue-collar;married;basic.9y;no;yes;no;cellular;oct;tue;92;1;999;1;failure;-3.4;92.431;-26.9;0.737;5017.5;no
+36;management;married;basic.6y;no;yes;no;cellular;oct;tue;332;1;999;1;failure;-3.4;92.431;-26.9;0.737;5017.5;yes
+33;admin.;married;university.degree;no;yes;no;cellular;oct;tue;148;2;6;1;success;-3.4;92.431;-26.9;0.737;5017.5;yes
+31;admin.;married;university.degree;no;yes;no;cellular;oct;tue;107;1;999;0;nonexistent;-3.4;92.431;-26.9;0.737;5017.5;no
+57;admin.;single;high.school;no;unknown;unknown;telephone;oct;tue;513;1;999;0;nonexistent;-3.4;92.431;-26.9;0.737;5017.5;yes
+31;services;single;professional.course;no;yes;no;telephone;oct;tue;373;1;999;0;nonexistent;-3.4;92.431;-26.9;0.737;5017.5;yes
+31;admin.;married;university.degree;no;yes;no;cellular;oct;tue;213;1;999;0;nonexistent;-3.4;92.431;-26.9;0.737;5017.5;yes
+60;technician;married;basic.4y;no;yes;no;cellular;oct;tue;595;2;6;1;success;-3.4;92.431;-26.9;0.737;5017.5;yes
+70;retired;married;basic.4y;no;yes;no;cellular;oct;tue;76;2;999;0;nonexistent;-3.4;92.431;-26.9;0.737;5017.5;no
+59;housemaid;married;basic.4y;no;yes;no;cellular;oct;tue;518;2;6;1;success;-3.4;92.431;-26.9;0.737;5017.5;yes
+53;entrepreneur;married;basic.4y;no;yes;no;telephone;oct;tue;251;2;999;0;nonexistent;-3.4;92.431;-26.9;0.737;5017.5;no
+30;technician;married;professional.course;no;yes;no;cellular;oct;tue;427;1;999;0;nonexistent;-3.4;92.431;-26.9;0.737;5017.5;yes
+24;management;single;university.degree;no;yes;no;cellular;oct;tue;676;2;999;1;failure;-3.4;92.431;-26.9;0.737;5017.5;yes
+39;admin.;single;high.school;no;yes;no;cellular;oct;tue;386;1;999;0;nonexistent;-3.4;92.431;-26.9;0.737;5017.5;yes
+44;admin.;married;university.degree;no;yes;no;cellular;oct;wed;192;3;6;1;success;-3.4;92.431;-26.9;0.735;5017.5;yes
+38;admin.;married;university.degree;no;yes;no;cellular;oct;wed;828;1;999;1;failure;-3.4;92.431;-26.9;0.735;5017.5;yes
+38;admin.;married;university.degree;no;yes;no;cellular;oct;wed;576;1;6;1;success;-3.4;92.431;-26.9;0.735;5017.5;yes
+70;retired;married;high.school;no;yes;no;cellular;oct;wed;72;3;999;0;nonexistent;-3.4;92.431;-26.9;0.735;5017.5;no
+33;admin.;single;university.degree;no;no;yes;cellular;oct;wed;110;1;999;2;failure;-3.4;92.431;-26.9;0.735;5017.5;no
+88;retired;divorced;basic.4y;no;yes;no;cellular;oct;wed;180;1;999;0;nonexistent;-3.4;92.431;-26.9;0.735;5017.5;no
+36;admin.;married;university.degree;no;yes;no;cellular;oct;wed;825;1;6;1;success;-3.4;92.431;-26.9;0.735;5017.5;yes
+62;retired;divorced;university.degree;no;yes;no;telephone;oct;wed;129;3;999;0;nonexistent;-3.4;92.431;-26.9;0.735;5017.5;no
+44;admin.;married;university.degree;no;no;no;cellular;oct;wed;1206;1;999;0;nonexistent;-3.4;92.431;-26.9;0.735;5017.5;no
+32;admin.;married;university.degree;no;yes;no;cellular;oct;wed;467;2;6;1;success;-3.4;92.431;-26.9;0.735;5017.5;yes
+88;retired;divorced;basic.4y;no;no;no;cellular;oct;wed;512;2;6;1;success;-3.4;92.431;-26.9;0.735;5017.5;yes
+44;admin.;married;university.degree;no;yes;no;telephone;oct;wed;749;1;999;0;nonexistent;-3.4;92.431;-26.9;0.735;5017.5;yes
+36;admin.;married;university.degree;no;no;no;cellular;oct;wed;135;1;999;0;nonexistent;-3.4;92.431;-26.9;0.735;5017.5;yes
+54;admin.;divorced;university.degree;no;yes;no;cellular;oct;wed;164;2;6;2;success;-3.4;92.431;-26.9;0.735;5017.5;no
+42;blue-collar;married;professional.course;no;yes;no;cellular;oct;wed;307;1;7;1;success;-3.4;92.431;-26.9;0.735;5017.5;yes
+42;blue-collar;married;professional.course;no;no;no;cellular;oct;wed;287;1;999;0;nonexistent;-3.4;92.431;-26.9;0.735;5017.5;yes
+29;blue-collar;single;basic.9y;no;no;yes;cellular;oct;wed;107;2;999;0;nonexistent;-3.4;92.431;-26.9;0.735;5017.5;yes
+54;unemployed;married;basic.9y;no;yes;no;cellular;oct;wed;200;1;999;0;nonexistent;-3.4;92.431;-26.9;0.735;5017.5;yes
+34;technician;married;professional.course;no;yes;no;cellular;oct;wed;442;2;8;1;success;-3.4;92.431;-26.9;0.735;5017.5;yes
+32;admin.;single;university.degree;no;yes;no;cellular;oct;wed;197;2;999;0;nonexistent;-3.4;92.431;-26.9;0.735;5017.5;no
+30;admin.;married;university.degree;no;yes;no;telephone;oct;wed;196;2;999;0;nonexistent;-3.4;92.431;-26.9;0.735;5017.5;no
+37;unemployed;married;university.degree;no;yes;no;cellular;oct;thu;249;2;999;1;failure;-3.4;92.431;-26.9;0.733;5017.5;yes
+35;unemployed;married;university.degree;no;no;no;cellular;oct;thu;360;5;999;0;nonexistent;-3.4;92.431;-26.9;0.733;5017.5;yes
+56;technician;married;basic.4y;no;no;no;cellular;oct;thu;257;1;6;1;success;-3.4;92.431;-26.9;0.733;5017.5;yes
+33;services;married;high.school;no;yes;no;cellular;oct;thu;313;3;999;0;nonexistent;-3.4;92.431;-26.9;0.733;5017.5;yes
+71;management;married;university.degree;no;yes;no;cellular;oct;thu;127;3;999;2;failure;-3.4;92.431;-26.9;0.733;5017.5;yes
+56;retired;married;professional.course;no;unknown;unknown;cellular;oct;thu;181;1;6;1;success;-3.4;92.431;-26.9;0.733;5017.5;yes
+56;retired;married;professional.course;no;no;no;cellular;oct;thu;133;1;3;1;success;-3.4;92.431;-26.9;0.733;5017.5;yes
+25;services;single;high.school;no;yes;no;cellular;oct;thu;287;1;999;0;nonexistent;-3.4;92.431;-26.9;0.733;5017.5;no
+31;admin.;single;university.degree;no;no;no;cellular;oct;thu;334;1;999;0;nonexistent;-3.4;92.431;-26.9;0.733;5017.5;no
+35;unemployed;married;university.degree;no;yes;no;cellular;oct;thu;391;2;999;0;nonexistent;-3.4;92.431;-26.9;0.733;5017.5;no
+45;technician;married;professional.course;no;no;no;cellular;oct;thu;504;1;6;1;success;-3.4;92.431;-26.9;0.733;5017.5;yes
+30;admin.;single;university.degree;no;yes;no;telephone;oct;thu;1002;4;999;0;nonexistent;-3.4;92.431;-26.9;0.733;5017.5;yes
+56;technician;married;basic.4y;no;no;no;cellular;oct;thu;306;3;3;1;success;-3.4;92.431;-26.9;0.733;5017.5;yes
+25;services;single;high.school;no;yes;no;cellular;oct;thu;260;2;999;0;nonexistent;-3.4;92.431;-26.9;0.733;5017.5;yes
+24;admin.;single;university.degree;no;yes;yes;telephone;oct;thu;97;1;999;0;nonexistent;-3.4;92.431;-26.9;0.733;5017.5;yes
+30;admin.;single;university.degree;no;no;yes;cellular;oct;thu;102;1;999;1;failure;-3.4;92.431;-26.9;0.733;5017.5;no
+35;unemployed;married;university.degree;no;no;no;cellular;oct;thu;344;1;6;1;success;-3.4;92.431;-26.9;0.733;5017.5;yes
+24;student;single;unknown;no;no;no;cellular;oct;fri;114;4;999;0;nonexistent;-3.4;92.431;-26.9;0.73;5017.5;no
+61;management;married;university.degree;no;yes;no;cellular;oct;fri;336;2;999;1;failure;-3.4;92.431;-26.9;0.73;5017.5;yes
+22;student;single;high.school;no;no;no;cellular;oct;fri;270;3;6;1;success;-3.4;92.431;-26.9;0.73;5017.5;yes
+64;admin.;married;high.school;no;yes;no;cellular;oct;fri;130;1;999;1;failure;-3.4;92.431;-26.9;0.73;5017.5;yes
+23;technician;single;university.degree;no;yes;no;cellular;oct;fri;374;1;999;0;nonexistent;-3.4;92.431;-26.9;0.73;5017.5;yes
+21;student;single;high.school;no;yes;no;cellular;oct;fri;149;1;999;0;nonexistent;-3.4;92.431;-26.9;0.73;5017.5;yes
+32;unknown;single;high.school;no;yes;no;cellular;oct;fri;267;1;999;0;nonexistent;-3.4;92.431;-26.9;0.73;5017.5;no
+24;student;single;unknown;no;yes;no;cellular;oct;fri;460;1;999;0;nonexistent;-3.4;92.431;-26.9;0.73;5017.5;yes
+32;admin.;married;university.degree;no;yes;no;cellular;oct;fri;94;1;999;0;nonexistent;-3.4;92.431;-26.9;0.73;5017.5;no
+98;retired;married;basic.4y;unknown;yes;no;cellular;oct;fri;476;1;2;2;success;-3.4;92.431;-26.9;0.73;5017.5;yes
+64;admin.;married;high.school;no;yes;no;cellular;oct;fri;427;1;999;1;failure;-3.4;92.431;-26.9;0.73;5017.5;yes
+35;blue-collar;single;high.school;no;no;no;cellular;oct;fri;622;1;6;1;success;-3.4;92.431;-26.9;0.73;5017.5;no
+98;retired;married;basic.4y;unknown;yes;no;cellular;oct;fri;272;2;999;0;nonexistent;-3.4;92.431;-26.9;0.73;5017.5;yes
+22;student;single;basic.9y;no;no;no;cellular;oct;fri;438;1;999;1;failure;-3.4;92.431;-26.9;0.73;5017.5;yes
+22;student;single;basic.9y;no;no;no;cellular;oct;fri;221;2;6;1;success;-3.4;92.431;-26.9;0.73;5017.5;yes
+26;admin.;single;university.degree;no;no;no;cellular;oct;fri;133;2;999;1;failure;-3.4;92.431;-26.9;0.73;5017.5;no
+31;self-employed;single;university.degree;no;yes;no;cellular;oct;fri;91;1;999;1;failure;-3.4;92.431;-26.9;0.73;5017.5;no
+31;self-employed;single;university.degree;no;no;no;cellular;oct;fri;76;1;999;0;nonexistent;-3.4;92.431;-26.9;0.73;5017.5;no
+29;admin.;single;high.school;no;yes;no;cellular;oct;fri;292;1;6;1;success;-3.4;92.431;-26.9;0.73;5017.5;yes
+34;admin.;married;university.degree;no;no;no;cellular;oct;fri;281;1;999;2;failure;-3.4;92.431;-26.9;0.73;5017.5;yes
+37;blue-collar;married;basic.6y;no;unknown;unknown;cellular;oct;fri;93;1;999;0;nonexistent;-3.4;92.431;-26.9;0.73;5017.5;no
+37;blue-collar;married;basic.6y;no;no;no;telephone;oct;fri;131;1;999;0;nonexistent;-3.4;92.431;-26.9;0.73;5017.5;no
+26;admin.;single;high.school;no;no;no;telephone;oct;fri;257;2;4;1;success;-3.4;92.431;-26.9;0.73;5017.5;yes
+61;management;married;university.degree;no;no;no;cellular;oct;fri;56;4;999;0;nonexistent;-3.4;92.431;-26.9;0.73;5017.5;no
+33;admin.;single;high.school;no;yes;no;cellular;oct;mon;61;2;6;2;failure;-3.4;92.431;-26.9;0.731;5017.5;no
+26;admin.;married;high.school;no;yes;yes;cellular;oct;mon;183;2;999;0;nonexistent;-3.4;92.431;-26.9;0.731;5017.5;no
+29;admin.;single;university.degree;no;no;no;cellular;oct;mon;87;2;999;1;failure;-3.4;92.431;-26.9;0.731;5017.5;no
+29;technician;single;professional.course;no;yes;no;cellular;oct;mon;633;2;999;0;nonexistent;-3.4;92.431;-26.9;0.731;5017.5;no
+73;retired;divorced;basic.4y;no;yes;no;cellular;oct;mon;127;2;999;3;failure;-3.4;92.431;-26.9;0.731;5017.5;no
+29;admin.;single;university.degree;no;yes;no;cellular;oct;mon;110;2;999;0;nonexistent;-3.4;92.431;-26.9;0.731;5017.5;no
+50;management;married;basic.9y;no;no;no;cellular;oct;mon;151;2;6;2;failure;-3.4;92.431;-26.9;0.731;5017.5;no
+29;admin.;single;university.degree;no;yes;no;cellular;oct;mon;99;2;999;1;failure;-3.4;92.431;-26.9;0.731;5017.5;no
+33;admin.;single;high.school;no;no;no;cellular;oct;mon;87;1;999;0;nonexistent;-3.4;92.431;-26.9;0.731;5017.5;no
+33;admin.;single;high.school;no;no;no;cellular;oct;mon;251;1;999;0;nonexistent;-3.4;92.431;-26.9;0.731;5017.5;yes
+30;unemployed;single;high.school;no;yes;no;cellular;oct;mon;67;1;999;0;nonexistent;-3.4;92.431;-26.9;0.731;5017.5;no
+26;admin.;married;high.school;no;yes;no;cellular;oct;mon;703;1;999;0;nonexistent;-3.4;92.431;-26.9;0.731;5017.5;yes
+26;admin.;married;high.school;no;yes;yes;cellular;oct;mon;126;1;999;0;nonexistent;-3.4;92.431;-26.9;0.731;5017.5;no
+42;management;married;university.degree;no;yes;no;cellular;oct;mon;355;1;999;1;failure;-3.4;92.431;-26.9;0.731;5017.5;yes
+42;management;married;university.degree;no;yes;yes;cellular;oct;mon;298;1;999;0;nonexistent;-3.4;92.431;-26.9;0.731;5017.5;no
+55;unemployed;married;basic.9y;no;yes;no;cellular;oct;tue;156;1;999;0;nonexistent;-3.4;92.431;-26.9;0.728;5017.5;no
+55;unemployed;married;basic.9y;no;no;no;cellular;oct;tue;131;1;999;0;nonexistent;-3.4;92.431;-26.9;0.728;5017.5;yes
+32;admin.;single;university.degree;no;no;no;cellular;oct;tue;96;1;999;3;failure;-3.4;92.431;-26.9;0.728;5017.5;no
+63;technician;married;professional.course;no;no;no;cellular;oct;tue;157;1;999;0;nonexistent;-3.4;92.431;-26.9;0.728;5017.5;no
+72;admin.;married;university.degree;unknown;no;yes;cellular;oct;tue;143;1;6;1;success;-3.4;92.431;-26.9;0.728;5017.5;yes
+71;retired;married;basic.4y;no;yes;yes;cellular;oct;tue;120;1;6;1;success;-3.4;92.431;-26.9;0.728;5017.5;no
+71;retired;married;basic.4y;no;no;no;cellular;oct;tue;207;1;999;0;nonexistent;-3.4;92.431;-26.9;0.728;5017.5;yes
+32;technician;single;university.degree;no;no;no;cellular;oct;tue;96;1;999;1;failure;-3.4;92.431;-26.9;0.728;5017.5;yes
+52;housemaid;married;high.school;no;no;no;cellular;oct;tue;297;1;999;2;failure;-3.4;92.431;-26.9;0.728;5017.5;yes
+68;retired;married;basic.4y;no;yes;no;cellular;oct;tue;102;1;6;2;success;-3.4;92.431;-26.9;0.728;5017.5;yes
+45;blue-collar;married;university.degree;no;no;no;telephone;oct;tue;79;2;999;0;nonexistent;-3.4;92.431;-26.9;0.728;5017.5;no
+29;services;married;high.school;no;no;no;cellular;oct;tue;424;1;999;1;failure;-3.4;92.431;-26.9;0.728;5017.5;yes
+33;services;single;high.school;no;no;no;cellular;oct;tue;137;1;999;0;nonexistent;-3.4;92.431;-26.9;0.728;5017.5;yes
+65;housemaid;married;basic.4y;no;unknown;unknown;cellular;oct;tue;759;2;999;0;nonexistent;-3.4;92.431;-26.9;0.728;5017.5;yes
+42;management;married;university.degree;no;no;no;telephone;oct;tue;83;1;3;1;success;-3.4;92.431;-26.9;0.728;5017.5;yes
+61;retired;married;high.school;no;no;no;telephone;oct;tue;515;1;999;0;nonexistent;-3.4;92.431;-26.9;0.728;5017.5;no
+22;student;single;basic.6y;no;yes;no;cellular;oct;tue;89;1;999;0;nonexistent;-3.4;92.431;-26.9;0.728;5017.5;no
+22;student;single;basic.6y;no;yes;no;cellular;oct;tue;88;1;999;0;nonexistent;-3.4;92.431;-26.9;0.728;5017.5;no
+30;technician;married;professional.course;no;yes;no;telephone;oct;tue;521;2;999;0;nonexistent;-3.4;92.431;-26.9;0.728;5017.5;no
+32;admin.;single;university.degree;no;yes;no;telephone;oct;tue;376;1;999;2;failure;-3.4;92.431;-26.9;0.728;5017.5;no
+39;admin.;married;professional.course;no;no;no;telephone;oct;tue;219;2;999;0;nonexistent;-3.4;92.431;-26.9;0.728;5017.5;no
+63;technician;married;professional.course;no;yes;no;cellular;oct;tue;298;1;999;0;nonexistent;-3.4;92.431;-26.9;0.728;5017.5;yes
+63;technician;married;professional.course;no;no;no;cellular;oct;tue;259;1;999;0;nonexistent;-3.4;92.431;-26.9;0.728;5017.5;no
+81;retired;married;university.degree;unknown;yes;yes;cellular;oct;tue;327;2;6;1;success;-3.4;92.431;-26.9;0.728;5017.5;no
+65;housemaid;married;basic.4y;no;yes;no;cellular;oct;tue;253;2;999;1;failure;-3.4;92.431;-26.9;0.728;5017.5;no
+44;technician;married;unknown;no;no;yes;cellular;oct;tue;139;2;999;0;nonexistent;-3.4;92.431;-26.9;0.728;5017.5;no
+31;management;married;university.degree;no;yes;no;cellular;oct;tue;255;3;4;1;success;-3.4;92.431;-26.9;0.728;5017.5;yes
+68;retired;divorced;professional.course;no;yes;no;cellular;oct;tue;418;2;999;0;nonexistent;-3.4;92.431;-26.9;0.728;5017.5;yes
+46;blue-collar;married;basic.9y;no;yes;no;cellular;oct;tue;65;1;999;1;failure;-3.4;92.431;-26.9;0.728;5017.5;no
+33;services;single;high.school;no;yes;no;cellular;oct;tue;189;2;999;0;nonexistent;-3.4;92.431;-26.9;0.728;5017.5;no
+26;management;single;university.degree;no;yes;no;cellular;oct;tue;114;1;6;1;success;-3.4;92.431;-26.9;0.728;5017.5;no
+28;admin.;single;high.school;no;yes;no;cellular;oct;tue;83;2;999;3;failure;-3.4;92.431;-26.9;0.728;5017.5;no
+71;retired;married;basic.4y;no;no;no;cellular;oct;tue;353;1;999;0;nonexistent;-3.4;92.431;-26.9;0.728;5017.5;yes
+21;student;single;high.school;no;no;no;cellular;oct;tue;113;1;999;0;nonexistent;-3.4;92.431;-26.9;0.728;5017.5;yes
+32;technician;single;university.degree;no;yes;no;cellular;oct;tue;149;1;999;0;nonexistent;-3.4;92.431;-26.9;0.728;5017.5;yes
+75;retired;married;basic.4y;no;no;no;cellular;oct;wed;113;2;999;0;nonexistent;-3.4;92.431;-26.9;0.724;5017.5;no
+81;housemaid;married;basic.4y;no;yes;no;cellular;oct;wed;246;2;999;0;nonexistent;-3.4;92.431;-26.9;0.724;5017.5;no
+60;management;married;professional.course;no;yes;no;cellular;oct;wed;219;2;999;0;nonexistent;-3.4;92.431;-26.9;0.724;5017.5;no
+61;blue-collar;married;high.school;no;no;no;cellular;oct;wed;108;1;999;0;nonexistent;-3.4;92.431;-26.9;0.724;5017.5;no
+63;retired;married;high.school;no;yes;no;cellular;oct;wed;96;1;999;0;nonexistent;-3.4;92.431;-26.9;0.724;5017.5;yes
+46;admin.;married;high.school;no;yes;no;cellular;oct;wed;143;1;999;0;nonexistent;-3.4;92.431;-26.9;0.724;5017.5;no
+46;admin.;married;high.school;no;yes;yes;telephone;oct;wed;149;1;999;0;nonexistent;-3.4;92.431;-26.9;0.724;5017.5;no
+35;admin.;married;university.degree;no;yes;no;cellular;oct;wed;300;1;999;0;nonexistent;-3.4;92.431;-26.9;0.724;5017.5;no
+40;admin.;married;high.school;no;yes;yes;cellular;oct;wed;73;1;999;0;nonexistent;-3.4;92.431;-26.9;0.724;5017.5;no
+35;management;married;university.degree;no;yes;no;cellular;oct;wed;1118;1;999;0;nonexistent;-3.4;92.431;-26.9;0.724;5017.5;no
+62;retired;married;high.school;no;no;no;cellular;oct;wed;210;1;999;0;nonexistent;-3.4;92.431;-26.9;0.724;5017.5;no
+45;admin.;married;high.school;no;yes;no;cellular;oct;wed;1092;1;999;0;nonexistent;-3.4;92.431;-26.9;0.724;5017.5;no
+58;unemployed;divorced;basic.9y;no;yes;no;telephone;oct;wed;509;1;999;0;nonexistent;-3.4;92.431;-26.9;0.724;5017.5;yes
+61;blue-collar;married;high.school;no;no;no;cellular;oct;wed;190;1;2;1;success;-3.4;92.431;-26.9;0.724;5017.5;no
+32;admin.;single;university.degree;no;no;no;cellular;oct;wed;371;1;999;0;nonexistent;-3.4;92.431;-26.9;0.724;5017.5;yes
+34;unknown;single;university.degree;no;yes;no;telephone;oct;wed;182;2;999;0;nonexistent;-3.4;92.431;-26.9;0.724;5017.5;no
+24;technician;single;university.degree;no;no;no;cellular;oct;wed;197;1;999;0;nonexistent;-3.4;92.431;-26.9;0.724;5017.5;no
+30;admin.;married;university.degree;no;yes;no;cellular;oct;wed;133;1;999;0;nonexistent;-3.4;92.431;-26.9;0.724;5017.5;no
+40;management;married;university.degree;no;yes;no;telephone;oct;wed;172;1;999;0;nonexistent;-3.4;92.431;-26.9;0.724;5017.5;no
+73;retired;married;basic.4y;no;yes;no;telephone;oct;wed;185;1;999;0;nonexistent;-3.4;92.431;-26.9;0.724;5017.5;no
+34;unknown;single;university.degree;no;no;no;telephone;oct;wed;85;1;999;0;nonexistent;-3.4;92.431;-26.9;0.724;5017.5;no
+40;admin.;married;high.school;no;no;no;cellular;oct;wed;524;3;999;1;failure;-3.4;92.431;-26.9;0.724;5017.5;yes
+62;retired;married;high.school;no;no;no;cellular;oct;wed;207;1;6;1;success;-3.4;92.431;-26.9;0.724;5017.5;yes
+54;retired;married;basic.4y;no;no;yes;cellular;oct;thu;164;2;999;0;nonexistent;-3.4;92.431;-26.9;0.722;5017.5;yes
+24;student;single;high.school;no;yes;no;cellular;oct;thu;423;3;999;0;nonexistent;-3.4;92.431;-26.9;0.722;5017.5;yes
+23;technician;married;professional.course;no;yes;yes;cellular;oct;thu;408;2;999;0;nonexistent;-3.4;92.431;-26.9;0.722;5017.5;no
+36;admin.;married;university.degree;no;no;no;cellular;oct;thu;343;2;999;1;failure;-3.4;92.431;-26.9;0.722;5017.5;no
+31;admin.;married;high.school;no;yes;no;cellular;oct;thu;269;2;999;1;failure;-3.4;92.431;-26.9;0.722;5017.5;no
+61;technician;married;professional.course;no;no;no;cellular;oct;thu;76;1;999;0;nonexistent;-3.4;92.431;-26.9;0.722;5017.5;no
+55;retired;married;basic.4y;no;yes;no;cellular;oct;thu;139;1;999;0;nonexistent;-3.4;92.431;-26.9;0.722;5017.5;yes
+33;admin.;single;university.degree;no;no;no;cellular;oct;thu;410;1;999;1;failure;-3.4;92.431;-26.9;0.722;5017.5;yes
+80;retired;divorced;high.school;no;yes;no;cellular;oct;thu;169;1;999;0;nonexistent;-3.4;92.431;-26.9;0.722;5017.5;yes
+75;retired;divorced;basic.4y;no;no;no;cellular;oct;thu;247;2;999;0;nonexistent;-3.4;92.431;-26.9;0.722;5017.5;no
+31;entrepreneur;unknown;university.degree;no;no;no;cellular;oct;thu;164;1;999;0;nonexistent;-3.4;92.431;-26.9;0.722;5017.5;yes
+31;admin.;married;high.school;no;no;no;cellular;oct;thu;142;1;999;0;nonexistent;-3.4;92.431;-26.9;0.722;5017.5;yes
+53;admin.;divorced;high.school;no;no;no;cellular;oct;thu;209;1;999;0;nonexistent;-3.4;92.431;-26.9;0.722;5017.5;yes
+58;retired;divorced;high.school;no;yes;no;cellular;oct;thu;76;4;999;0;nonexistent;-3.4;92.431;-26.9;0.722;5017.5;no
+30;technician;married;professional.course;no;yes;yes;cellular;oct;thu;1707;2;999;0;nonexistent;-3.4;92.431;-26.9;0.722;5017.5;yes
+28;admin.;single;university.degree;no;no;no;cellular;oct;thu;72;2;999;0;nonexistent;-3.4;92.431;-26.9;0.722;5017.5;no
+72;retired;married;basic.6y;no;yes;yes;cellular;oct;thu;189;3;999;0;nonexistent;-3.4;92.431;-26.9;0.722;5017.5;yes
+82;retired;single;basic.4y;no;yes;no;cellular;oct;thu;251;2;999;0;nonexistent;-3.4;92.431;-26.9;0.722;5017.5;yes
+34;admin.;married;university.degree;no;no;no;cellular;oct;thu;401;1;999;0;nonexistent;-3.4;92.431;-26.9;0.722;5017.5;yes
+69;retired;married;professional.course;no;no;yes;cellular;oct;thu;103;1;999;1;failure;-3.4;92.431;-26.9;0.722;5017.5;no
+32;self-employed;married;university.degree;no;yes;yes;cellular;oct;thu;679;1;999;0;nonexistent;-3.4;92.431;-26.9;0.722;5017.5;no
+67;admin.;married;basic.4y;unknown;no;no;cellular;oct;thu;299;2;2;2;success;-3.4;92.431;-26.9;0.722;5017.5;yes
+48;technician;married;high.school;no;no;no;cellular;oct;thu;264;1;999;0;nonexistent;-3.4;92.431;-26.9;0.722;5017.5;yes
+60;retired;divorced;basic.4y;no;yes;no;cellular;oct;thu;262;1;999;0;nonexistent;-3.4;92.431;-26.9;0.722;5017.5;no
+61;technician;married;professional.course;no;no;no;cellular;oct;thu;106;2;999;1;failure;-3.4;92.431;-26.9;0.722;5017.5;yes
+48;technician;married;high.school;no;yes;no;cellular;oct;thu;215;2;999;0;nonexistent;-3.4;92.431;-26.9;0.722;5017.5;yes
+48;technician;married;high.school;no;no;yes;cellular;oct;thu;288;3;999;0;nonexistent;-3.4;92.431;-26.9;0.722;5017.5;yes
+67;retired;married;unknown;no;no;no;cellular;oct;thu;140;2;999;0;nonexistent;-3.4;92.431;-26.9;0.722;5017.5;no
+36;technician;married;university.degree;no;yes;yes;cellular;oct;thu;68;2;999;0;nonexistent;-3.4;92.431;-26.9;0.722;5017.5;no
+69;retired;married;basic.4y;no;yes;no;cellular;oct;thu;124;1;999;0;nonexistent;-3.4;92.431;-26.9;0.722;5017.5;yes
+34;technician;single;university.degree;no;no;no;cellular;oct;thu;136;1;999;1;failure;-3.4;92.431;-26.9;0.722;5017.5;yes
+32;admin.;single;university.degree;no;yes;no;telephone;oct;thu;220;3;999;0;nonexistent;-3.4;92.431;-26.9;0.722;5017.5;yes
+51;blue-collar;married;basic.9y;no;yes;no;cellular;oct;thu;746;2;999;0;nonexistent;-3.4;92.431;-26.9;0.722;5017.5;yes
+54;retired;married;basic.4y;no;no;no;cellular;oct;thu;377;1;999;0;nonexistent;-3.4;92.431;-26.9;0.722;5017.5;yes
+55;retired;married;basic.4y;no;no;no;cellular;oct;thu;250;1;999;2;failure;-3.4;92.431;-26.9;0.722;5017.5;no
+55;retired;married;high.school;no;yes;no;cellular;oct;thu;424;2;7;1;success;-3.4;92.431;-26.9;0.722;5017.5;yes
+61;technician;married;professional.course;no;no;no;cellular;oct;thu;174;2;999;0;nonexistent;-3.4;92.431;-26.9;0.722;5017.5;no
+82;retired;single;basic.4y;no;yes;no;cellular;oct;thu;185;2;999;0;nonexistent;-3.4;92.431;-26.9;0.722;5017.5;no
+60;technician;married;basic.4y;no;yes;no;cellular;oct;thu;133;6;999;2;failure;-3.4;92.431;-26.9;0.722;5017.5;no
+31;entrepreneur;unknown;university.degree;no;yes;no;telephone;oct;thu;157;4;999;1;failure;-3.4;92.431;-26.9;0.722;5017.5;no
+78;retired;divorced;basic.6y;no;no;no;cellular;oct;fri;631;2;999;2;failure;-3.4;92.431;-26.9;0.72;5017.5;no
+27;admin.;single;university.degree;no;yes;yes;telephone;oct;fri;70;3;999;0;nonexistent;-3.4;92.431;-26.9;0.72;5017.5;no
+78;retired;divorced;basic.6y;no;no;no;cellular;oct;fri;212;2;999;0;nonexistent;-3.4;92.431;-26.9;0.72;5017.5;yes
+65;retired;married;basic.4y;no;no;no;cellular;oct;fri;176;5;999;0;nonexistent;-3.4;92.431;-26.9;0.72;5017.5;no
+26;student;single;high.school;no;no;no;cellular;oct;fri;373;3;999;0;nonexistent;-3.4;92.431;-26.9;0.72;5017.5;yes
+37;admin.;single;university.degree;no;yes;no;telephone;oct;fri;62;3;999;0;nonexistent;-3.4;92.431;-26.9;0.72;5017.5;no
+24;blue-collar;married;basic.9y;no;yes;no;cellular;oct;fri;160;1;999;0;nonexistent;-3.4;92.431;-26.9;0.72;5017.5;no
+72;retired;married;basic.4y;no;no;no;cellular;oct;fri;155;1;6;1;success;-3.4;92.431;-26.9;0.72;5017.5;no
+60;retired;married;basic.4y;unknown;yes;no;cellular;oct;fri;59;1;999;0;nonexistent;-3.4;92.431;-26.9;0.72;5017.5;no
+39;technician;single;university.degree;unknown;no;yes;cellular;oct;fri;125;1;999;0;nonexistent;-3.4;92.431;-26.9;0.72;5017.5;yes
+39;technician;single;university.degree;unknown;yes;no;cellular;oct;fri;217;1;999;0;nonexistent;-3.4;92.431;-26.9;0.72;5017.5;yes
+34;technician;single;university.degree;no;no;no;cellular;oct;fri;144;1;999;0;nonexistent;-3.4;92.431;-26.9;0.72;5017.5;yes
+36;self-employed;single;university.degree;no;no;no;cellular;oct;fri;480;1;999;0;nonexistent;-3.4;92.431;-26.9;0.72;5017.5;yes
+37;admin.;single;university.degree;no;yes;no;cellular;oct;fri;183;2;999;0;nonexistent;-3.4;92.431;-26.9;0.72;5017.5;no
+59;technician;married;basic.9y;no;no;no;cellular;oct;fri;445;1;999;0;nonexistent;-3.4;92.431;-26.9;0.72;5017.5;yes
+25;student;single;high.school;no;no;no;cellular;oct;fri;294;1;999;1;failure;-3.4;92.431;-26.9;0.72;5017.5;yes
+69;retired;married;basic.4y;no;yes;yes;cellular;oct;fri;257;3;999;0;nonexistent;-3.4;92.431;-26.9;0.72;5017.5;yes
+18;student;single;basic.6y;no;no;yes;cellular;oct;fri;368;2;999;0;nonexistent;-3.4;92.431;-26.9;0.72;5017.5;yes
+59;retired;divorced;basic.4y;no;yes;no;telephone;oct;fri;152;4;999;0;nonexistent;-3.4;92.431;-26.9;0.72;5017.5;no
+37;admin.;single;university.degree;no;no;no;cellular;oct;fri;416;2;999;0;nonexistent;-3.4;92.431;-26.9;0.72;5017.5;yes
+78;retired;divorced;basic.6y;no;no;no;telephone;oct;fri;177;2;999;0;nonexistent;-3.4;92.431;-26.9;0.72;5017.5;no
+23;student;single;high.school;no;no;no;telephone;nov;mon;105;2;999;0;nonexistent;-3.4;92.649;-30.1;0.722;5017.5;no
+41;admin.;single;high.school;no;no;no;cellular;nov;mon;131;2;999;1;failure;-3.4;92.649;-30.1;0.722;5017.5;no
+34;admin.;single;high.school;no;yes;no;cellular;nov;mon;121;2;999;1;failure;-3.4;92.649;-30.1;0.722;5017.5;yes
+37;admin.;married;high.school;no;yes;no;cellular;nov;mon;101;3;3;1;success;-3.4;92.649;-30.1;0.722;5017.5;no
+37;admin.;divorced;high.school;no;no;no;cellular;nov;mon;131;2;999;0;nonexistent;-3.4;92.649;-30.1;0.722;5017.5;no
+36;self-employed;single;university.degree;no;yes;no;cellular;nov;mon;69;4;999;1;failure;-3.4;92.649;-30.1;0.722;5017.5;no
+50;admin.;married;university.degree;no;yes;no;cellular;nov;mon;91;2;999;0;nonexistent;-3.4;92.649;-30.1;0.722;5017.5;no
+35;management;single;university.degree;no;no;yes;cellular;nov;mon;75;2;999;0;nonexistent;-3.4;92.649;-30.1;0.722;5017.5;no
+21;student;single;basic.9y;no;no;no;cellular;nov;mon;59;2;999;0;nonexistent;-3.4;92.649;-30.1;0.722;5017.5;no
+34;technician;married;professional.course;no;yes;no;cellular;nov;mon;53;2;999;1;failure;-3.4;92.649;-30.1;0.722;5017.5;no
+60;housemaid;married;university.degree;no;yes;no;cellular;nov;mon;66;3;999;0;nonexistent;-3.4;92.649;-30.1;0.722;5017.5;no
+30;admin.;single;university.degree;no;no;no;cellular;nov;mon;106;1;999;0;nonexistent;-3.4;92.649;-30.1;0.722;5017.5;yes
+37;admin.;married;high.school;no;no;no;cellular;nov;mon;235;4;999;0;nonexistent;-3.4;92.649;-30.1;0.722;5017.5;no
+55;admin.;married;basic.9y;no;no;no;cellular;nov;mon;154;3;999;0;nonexistent;-3.4;92.649;-30.1;0.722;5017.5;no
+37;self-employed;married;professional.course;no;yes;yes;cellular;nov;mon;1024;1;5;1;success;-3.4;92.649;-30.1;0.722;5017.5;yes
+64;housemaid;married;basic.4y;no;yes;no;cellular;nov;mon;173;1;999;0;nonexistent;-3.4;92.649;-30.1;0.722;5017.5;no
+37;blue-collar;single;high.school;no;yes;no;cellular;nov;mon;128;1;999;0;nonexistent;-3.4;92.649;-30.1;0.722;5017.5;no
+37;admin.;married;high.school;no;yes;no;telephone;nov;mon;459;1;999;0;nonexistent;-3.4;92.649;-30.1;0.722;5017.5;no
+37;admin.;married;high.school;no;yes;yes;cellular;nov;mon;272;1;999;0;nonexistent;-3.4;92.649;-30.1;0.722;5017.5;no
+50;admin.;married;university.degree;no;yes;no;cellular;nov;mon;204;1;7;1;success;-3.4;92.649;-30.1;0.722;5017.5;no
+47;technician;divorced;high.school;no;yes;no;cellular;nov;mon;182;1;999;1;failure;-3.4;92.649;-30.1;0.722;5017.5;yes
+32;admin.;married;university.degree;no;yes;yes;cellular;nov;mon;144;1;999;0;nonexistent;-3.4;92.649;-30.1;0.722;5017.5;no
+32;admin.;single;university.degree;no;unknown;unknown;telephone;nov;mon;143;3;7;1;success;-3.4;92.649;-30.1;0.722;5017.5;no
+37;admin.;divorced;high.school;no;yes;yes;telephone;nov;mon;227;5;999;0;nonexistent;-3.4;92.649;-30.1;0.722;5017.5;no
+30;admin.;single;university.degree;no;yes;no;cellular;nov;mon;109;1;6;1;success;-3.4;92.649;-30.1;0.722;5017.5;no
+24;student;single;professional.course;no;no;no;cellular;nov;mon;180;2;999;1;failure;-3.4;92.649;-30.1;0.722;5017.5;no
+50;admin.;married;high.school;no;no;no;telephone;nov;mon;117;5;999;0;nonexistent;-3.4;92.649;-30.1;0.722;5017.5;no
+45;blue-collar;married;high.school;no;yes;no;cellular;nov;mon;162;2;999;0;nonexistent;-3.4;92.649;-30.1;0.722;5017.5;yes
+34;admin.;single;high.school;no;yes;no;cellular;nov;mon;725;2;8;2;failure;-3.4;92.649;-30.1;0.722;5017.5;no
+33;admin.;married;university.degree;no;yes;no;telephone;nov;mon;83;4;999;0;nonexistent;-3.4;92.649;-30.1;0.722;5017.5;no
+32;admin.;single;university.degree;no;no;no;cellular;nov;mon;85;2;999;0;nonexistent;-3.4;92.649;-30.1;0.722;5017.5;no
+34;technician;married;professional.course;no;yes;no;telephone;nov;mon;179;5;999;1;failure;-3.4;92.649;-30.1;0.722;5017.5;no
+52;management;married;basic.6y;no;no;no;cellular;nov;mon;209;2;999;1;failure;-3.4;92.649;-30.1;0.722;5017.5;yes
+37;admin.;married;high.school;no;no;yes;cellular;nov;mon;46;3;999;0;nonexistent;-3.4;92.649;-30.1;0.722;5017.5;no
+71;retired;married;professional.course;no;yes;no;cellular;nov;tue;102;1;999;0;nonexistent;-3.4;92.649;-30.1;0.72;5017.5;yes
+52;admin.;divorced;university.degree;no;yes;no;cellular;nov;tue;551;1;999;3;failure;-3.4;92.649;-30.1;0.72;5017.5;no
+56;admin.;divorced;high.school;no;no;no;cellular;nov;tue;786;1;999;0;nonexistent;-3.4;92.649;-30.1;0.72;5017.5;no
+67;self-employed;married;university.degree;no;yes;no;cellular;nov;tue;68;4;999;1;failure;-3.4;92.649;-30.1;0.72;5017.5;no
+40;admin.;divorced;university.degree;no;no;no;cellular;nov;tue;88;2;999;2;failure;-3.4;92.649;-30.1;0.72;5017.5;no
+56;management;married;university.degree;no;unknown;unknown;cellular;nov;tue;289;1;999;0;nonexistent;-3.4;92.649;-30.1;0.72;5017.5;yes
+32;admin.;single;high.school;no;no;no;cellular;nov;tue;1233;1;999;1;failure;-3.4;92.649;-30.1;0.72;5017.5;yes
+36;admin.;single;university.degree;no;no;yes;cellular;nov;tue;187;1;999;0;nonexistent;-3.4;92.649;-30.1;0.72;5017.5;yes
+79;retired;married;basic.4y;no;no;yes;cellular;nov;tue;149;1;999;0;nonexistent;-3.4;92.649;-30.1;0.72;5017.5;yes
+56;housemaid;divorced;professional.course;no;yes;no;cellular;nov;tue;566;1;7;2;failure;-3.4;92.649;-30.1;0.72;5017.5;yes
+27;unemployed;married;high.school;no;no;yes;cellular;nov;tue;222;3;999;1;failure;-3.4;92.649;-30.1;0.72;5017.5;no
+30;unemployed;single;basic.9y;no;yes;no;cellular;nov;tue;537;1;999;0;nonexistent;-3.4;92.649;-30.1;0.72;5017.5;yes
+27;blue-collar;single;basic.9y;no;no;no;cellular;nov;tue;217;1;999;2;failure;-3.4;92.649;-30.1;0.72;5017.5;yes
+47;admin.;single;university.degree;no;no;no;cellular;nov;tue;193;1;999;0;nonexistent;-3.4;92.649;-30.1;0.72;5017.5;no
+47;admin.;divorced;university.degree;no;no;no;cellular;nov;tue;181;4;6;1;success;-3.4;92.649;-30.1;0.72;5017.5;yes
+54;admin.;married;university.degree;no;yes;yes;cellular;nov;tue;215;1;999;0;nonexistent;-3.4;92.649;-30.1;0.72;5017.5;yes
+22;technician;single;professional.course;no;yes;no;cellular;nov;tue;358;1;999;0;nonexistent;-3.4;92.649;-30.1;0.72;5017.5;yes
+28;self-employed;married;professional.course;no;yes;no;cellular;nov;tue;179;1;999;0;nonexistent;-3.4;92.649;-30.1;0.72;5017.5;yes
+32;admin.;married;high.school;no;yes;no;cellular;nov;tue;322;1;999;0;nonexistent;-3.4;92.649;-30.1;0.72;5017.5;yes
+30;admin.;single;university.degree;no;yes;no;cellular;nov;tue;402;1;999;0;nonexistent;-3.4;92.649;-30.1;0.72;5017.5;no
+54;technician;married;basic.9y;no;no;no;cellular;nov;tue;284;2;999;1;failure;-3.4;92.649;-30.1;0.72;5017.5;yes
+71;retired;married;professional.course;no;yes;yes;telephone;nov;tue;383;1;999;0;nonexistent;-3.4;92.649;-30.1;0.72;5017.5;yes
+37;entrepreneur;divorced;high.school;no;yes;yes;cellular;nov;wed;258;2;999;1;failure;-3.4;92.649;-30.1;0.719;5017.5;no
+37;entrepreneur;divorced;high.school;no;no;no;cellular;nov;wed;90;2;999;2;failure;-3.4;92.649;-30.1;0.719;5017.5;no
+37;entrepreneur;divorced;high.school;no;no;no;cellular;nov;wed;116;4;999;1;failure;-3.4;92.649;-30.1;0.719;5017.5;no
+37;entrepreneur;divorced;high.school;no;no;no;cellular;nov;wed;298;2;999;0;nonexistent;-3.4;92.649;-30.1;0.719;5017.5;no
+58;management;married;basic.4y;no;yes;no;cellular;nov;wed;70;5;999;0;nonexistent;-3.4;92.649;-30.1;0.719;5017.5;no
+54;blue-collar;married;basic.9y;no;no;no;cellular;nov;wed;138;1;7;2;failure;-3.4;92.649;-30.1;0.719;5017.5;no
+54;blue-collar;married;basic.9y;no;yes;yes;cellular;nov;wed;101;1;999;0;nonexistent;-3.4;92.649;-30.1;0.719;5017.5;no
+29;admin.;married;high.school;no;yes;no;cellular;nov;wed;85;1;999;1;failure;-3.4;92.649;-30.1;0.719;5017.5;no
+28;admin.;married;high.school;no;yes;no;cellular;nov;wed;158;1;999;0;nonexistent;-3.4;92.649;-30.1;0.719;5017.5;no
+26;technician;single;professional.course;no;no;yes;cellular;nov;wed;358;1;9;2;failure;-3.4;92.649;-30.1;0.719;5017.5;yes
+29;management;married;university.degree;no;yes;no;cellular;nov;wed;199;1;9;1;success;-3.4;92.649;-30.1;0.719;5017.5;no
+26;admin.;married;high.school;no;no;yes;cellular;nov;wed;112;1;999;1;failure;-3.4;92.649;-30.1;0.719;5017.5;no
+56;retired;married;university.degree;no;yes;no;cellular;nov;wed;156;1;999;0;nonexistent;-3.4;92.649;-30.1;0.719;5017.5;no
+51;technician;married;professional.course;no;no;no;cellular;nov;wed;272;1;999;0;nonexistent;-3.4;92.649;-30.1;0.719;5017.5;no
+62;admin.;divorced;university.degree;no;yes;no;cellular;nov;wed;572;1;999;0;nonexistent;-3.4;92.649;-30.1;0.719;5017.5;no
+58;management;married;basic.4y;no;no;no;cellular;nov;wed;88;2;999;0;nonexistent;-3.4;92.649;-30.1;0.719;5017.5;no
+29;technician;single;professional.course;no;unknown;unknown;cellular;nov;wed;257;2;999;1;failure;-3.4;92.649;-30.1;0.719;5017.5;no
+32;blue-collar;married;basic.4y;no;no;no;cellular;nov;thu;96;3;999;1;failure;-3.4;92.649;-30.1;0.716;5017.5;no
+32;admin.;married;high.school;no;yes;no;telephone;nov;thu;143;3;999;0;nonexistent;-3.4;92.649;-30.1;0.716;5017.5;no
+73;retired;married;university.degree;no;no;yes;cellular;nov;thu;749;7;999;0;nonexistent;-3.4;92.649;-30.1;0.716;5017.5;yes
+32;blue-collar;married;basic.4y;no;yes;no;telephone;nov;thu;111;8;999;0;nonexistent;-3.4;92.649;-30.1;0.716;5017.5;no
+34;admin.;single;university.degree;no;no;no;cellular;nov;thu;509;2;999;0;nonexistent;-3.4;92.649;-30.1;0.716;5017.5;no
+69;retired;married;basic.6y;no;yes;no;cellular;nov;thu;355;3;999;0;nonexistent;-3.4;92.649;-30.1;0.716;5017.5;yes
+34;unemployed;single;university.degree;no;no;no;cellular;nov;fri;464;5;999;1;failure;-3.4;92.649;-30.1;0.716;5017.5;yes
+37;admin.;married;high.school;no;yes;no;telephone;nov;fri;136;1;999;0;nonexistent;-3.4;92.649;-30.1;0.716;5017.5;no
+54;admin.;married;high.school;no;yes;no;cellular;nov;fri;402;1;3;3;success;-3.4;92.649;-30.1;0.716;5017.5;yes
+34;technician;married;university.degree;no;yes;no;cellular;nov;fri;312;1;999;0;nonexistent;-3.4;92.649;-30.1;0.716;5017.5;no
+34;technician;married;basic.9y;no;yes;no;cellular;nov;fri;126;2;999;2;failure;-3.4;92.649;-30.1;0.716;5017.5;no
+54;admin.;married;university.degree;no;yes;no;cellular;nov;fri;455;2;999;0;nonexistent;-3.4;92.649;-30.1;0.716;5017.5;yes
+53;management;divorced;university.degree;no;no;yes;cellular;nov;fri;368;2;3;1;success;-3.4;92.649;-30.1;0.716;5017.5;yes
+56;technician;divorced;university.degree;no;no;no;cellular;nov;fri;178;2;3;1;success;-3.4;92.649;-30.1;0.716;5017.5;yes
+69;retired;married;high.school;no;no;no;cellular;nov;mon;178;1;999;0;nonexistent;-3.4;92.649;-30.1;0.715;5017.5;yes
+26;admin.;single;high.school;no;yes;no;cellular;nov;mon;262;1;3;1;success;-3.4;92.649;-30.1;0.715;5017.5;yes
+26;admin.;single;high.school;no;unknown;unknown;cellular;nov;mon;347;1;999;0;nonexistent;-3.4;92.649;-30.1;0.715;5017.5;yes
+27;student;single;university.degree;no;no;yes;cellular;nov;mon;118;1;999;0;nonexistent;-3.4;92.649;-30.1;0.715;5017.5;yes
+57;admin.;married;high.school;no;yes;no;cellular;nov;mon;169;1;3;3;success;-3.4;92.649;-30.1;0.715;5017.5;yes
+25;admin.;single;university.degree;no;no;yes;cellular;nov;mon;165;1;3;2;success;-3.4;92.649;-30.1;0.715;5017.5;yes
+24;unemployed;married;high.school;no;yes;no;cellular;nov;mon;98;1;999;1;failure;-3.4;92.649;-30.1;0.715;5017.5;yes
+29;housemaid;single;university.degree;no;no;yes;telephone;nov;mon;201;1;999;0;nonexistent;-3.4;92.649;-30.1;0.715;5017.5;yes
+22;student;single;professional.course;no;no;no;cellular;nov;mon;113;3;999;0;nonexistent;-3.4;92.649;-30.1;0.715;5017.5;yes
+81;unknown;divorced;unknown;unknown;yes;no;cellular;nov;mon;161;1;999;1;failure;-3.4;92.649;-30.1;0.715;5017.5;yes
+41;management;married;university.degree;no;no;no;cellular;nov;mon;696;2;7;3;failure;-3.4;92.649;-30.1;0.715;5017.5;yes
+26;admin.;single;high.school;no;no;no;cellular;nov;mon;371;2;999;2;failure;-3.4;92.649;-30.1;0.715;5017.5;no
+81;unknown;divorced;unknown;unknown;yes;no;cellular;nov;mon;263;1;999;1;failure;-3.4;92.649;-30.1;0.715;5017.5;yes
+30;blue-collar;single;unknown;no;yes;no;telephone;nov;mon;235;2;999;0;nonexistent;-3.4;92.649;-30.1;0.715;5017.5;no
+29;housemaid;single;university.degree;no;no;no;cellular;nov;mon;257;1;999;0;nonexistent;-3.4;92.649;-30.1;0.715;5017.5;no
+76;retired;single;basic.4y;no;no;no;cellular;nov;mon;347;4;6;1;success;-3.4;92.649;-30.1;0.715;5017.5;yes
+32;admin.;married;university.degree;no;no;no;cellular;nov;mon;178;2;999;1;failure;-3.4;92.649;-30.1;0.715;5017.5;no
+38;admin.;married;university.degree;no;no;no;cellular;nov;tue;182;2;7;1;success;-3.4;92.649;-30.1;0.715;5017.5;yes
+27;blue-collar;single;high.school;no;no;no;cellular;nov;tue;775;2;8;2;failure;-3.4;92.649;-30.1;0.715;5017.5;yes
+71;housemaid;married;basic.4y;no;yes;no;cellular;nov;tue;193;2;999;0;nonexistent;-3.4;92.649;-30.1;0.715;5017.5;yes
+28;admin.;married;high.school;no;no;no;cellular;nov;tue;406;2;999;0;nonexistent;-3.4;92.649;-30.1;0.715;5017.5;yes
+34;technician;married;professional.course;no;yes;no;cellular;nov;tue;336;4;999;0;nonexistent;-3.4;92.649;-30.1;0.715;5017.5;yes
+61;management;married;university.degree;no;yes;no;cellular;nov;tue;147;1;3;2;success;-3.4;92.649;-30.1;0.715;5017.5;yes
+61;management;married;university.degree;no;yes;no;cellular;nov;tue;195;1;7;1;success;-3.4;92.649;-30.1;0.715;5017.5;yes
+41;admin.;married;university.degree;no;no;no;telephone;nov;tue;234;2;3;1;success;-3.4;92.649;-30.1;0.715;5017.5;yes
+57;technician;married;professional.course;no;no;no;cellular;nov;tue;564;1;999;0;nonexistent;-3.4;92.649;-30.1;0.715;5017.5;no
+71;retired;married;basic.4y;no;no;no;cellular;nov;tue;71;2;999;1;failure;-3.4;92.649;-30.1;0.715;5017.5;no
+33;admin.;married;university.degree;no;yes;no;cellular;nov;tue;318;2;3;3;success;-3.4;92.649;-30.1;0.715;5017.5;yes
+38;admin.;married;university.degree;no;yes;no;cellular;nov;tue;64;1;3;3;success;-3.4;92.649;-30.1;0.715;5017.5;yes
+41;admin.;married;university.degree;no;yes;no;cellular;nov;tue;95;1;3;1;success;-3.4;92.649;-30.1;0.715;5017.5;yes
+52;admin.;divorced;university.degree;no;yes;no;cellular;nov;tue;89;1;3;2;success;-3.4;92.649;-30.1;0.715;5017.5;yes
+25;student;single;high.school;no;no;no;telephone;nov;tue;345;2;999;0;nonexistent;-3.4;92.649;-30.1;0.715;5017.5;no
+33;admin.;married;university.degree;no;yes;no;cellular;nov;tue;344;2;3;1;success;-3.4;92.649;-30.1;0.715;5017.5;yes
+30;admin.;single;university.degree;no;no;no;cellular;nov;tue;266;2;999;2;failure;-3.4;92.649;-30.1;0.715;5017.5;yes
+79;retired;married;basic.4y;no;no;yes;cellular;nov;tue;301;2;3;1;success;-3.4;92.649;-30.1;0.715;5017.5;yes
+28;admin.;married;high.school;no;yes;no;cellular;nov;tue;254;5;999;0;nonexistent;-3.4;92.649;-30.1;0.715;5017.5;yes
+54;technician;married;basic.9y;no;no;no;cellular;nov;tue;293;3;7;2;failure;-3.4;92.649;-30.1;0.715;5017.5;yes
+49;management;married;university.degree;no;no;yes;cellular;nov;tue;185;1;999;0;nonexistent;-3.4;92.649;-30.1;0.715;5017.5;no
+79;retired;married;basic.4y;no;yes;no;cellular;nov;tue;594;1;3;1;success;-3.4;92.649;-30.1;0.715;5017.5;yes
+21;student;single;high.school;no;no;no;cellular;nov;tue;280;1;7;2;failure;-3.4;92.649;-30.1;0.715;5017.5;no
+52;admin.;divorced;university.degree;no;no;no;cellular;nov;tue;213;1;999;0;nonexistent;-3.4;92.649;-30.1;0.715;5017.5;yes
+63;management;married;basic.4y;unknown;yes;no;cellular;nov;tue;131;4;999;2;failure;-3.4;92.649;-30.1;0.715;5017.5;yes
+52;admin.;divorced;university.degree;no;unknown;unknown;cellular;nov;tue;143;5;999;1;failure;-3.4;92.649;-30.1;0.715;5017.5;no
+45;management;married;university.degree;no;no;no;telephone;nov;tue;208;2;999;0;nonexistent;-3.4;92.649;-30.1;0.715;5017.5;no
+45;admin.;single;university.degree;no;unknown;unknown;cellular;nov;tue;133;3;999;1;failure;-3.4;92.649;-30.1;0.715;5017.5;no
+30;admin.;single;university.degree;no;yes;yes;cellular;nov;tue;98;2;999;0;nonexistent;-3.4;92.649;-30.1;0.715;5017.5;no
+37;services;married;high.school;no;no;no;cellular;nov;wed;516;2;999;1;failure;-3.4;92.649;-30.1;0.715;5017.5;no
+72;retired;married;professional.course;no;yes;no;telephone;nov;wed;93;2;999;0;nonexistent;-3.4;92.649;-30.1;0.715;5017.5;no
+37;services;married;high.school;no;no;no;cellular;nov;wed;459;2;999;2;failure;-3.4;92.649;-30.1;0.715;5017.5;yes
+45;admin.;married;university.degree;no;no;yes;cellular;nov;wed;158;1;999;1;failure;-3.4;92.649;-30.1;0.715;5017.5;no
+36;self-employed;divorced;basic.9y;no;no;no;cellular;nov;wed;133;1;999;2;failure;-3.4;92.649;-30.1;0.715;5017.5;no
+45;admin.;married;university.degree;no;no;yes;cellular;nov;wed;106;1;999;1;failure;-3.4;92.649;-30.1;0.715;5017.5;no
+72;retired;married;basic.4y;no;yes;no;cellular;nov;wed;406;1;999;1;failure;-3.4;92.649;-30.1;0.715;5017.5;yes
+20;student;single;high.school;no;yes;no;cellular;nov;wed;166;1;7;1;success;-3.4;92.649;-30.1;0.715;5017.5;yes
+25;technician;single;university.degree;no;no;yes;cellular;nov;wed;79;4;999;0;nonexistent;-3.4;92.649;-30.1;0.715;5017.5;no
+28;management;married;university.degree;no;no;no;cellular;nov;wed;69;3;999;0;nonexistent;-3.4;92.649;-30.1;0.715;5017.5;yes
+72;retired;divorced;basic.6y;no;yes;no;cellular;nov;wed;199;1;999;0;nonexistent;-3.4;92.649;-30.1;0.715;5017.5;yes
+45;technician;married;university.degree;no;yes;no;cellular;nov;wed;359;1;999;0;nonexistent;-3.4;92.649;-30.1;0.715;5017.5;no
+35;admin.;single;high.school;no;no;yes;cellular;nov;wed;98;2;7;2;failure;-3.4;92.649;-30.1;0.715;5017.5;no
+20;student;single;high.school;no;no;no;cellular;nov;wed;131;1;999;3;failure;-3.4;92.649;-30.1;0.715;5017.5;yes
+20;student;single;high.school;no;no;no;cellular;nov;wed;229;2;3;3;success;-3.4;92.649;-30.1;0.715;5017.5;yes
+20;student;single;high.school;no;no;no;cellular;nov;wed;187;2;999;0;nonexistent;-3.4;92.649;-30.1;0.715;5017.5;no
+36;management;married;university.degree;no;no;yes;cellular;nov;wed;166;3;3;3;success;-3.4;92.649;-30.1;0.715;5017.5;yes
+72;retired;divorced;basic.6y;no;yes;no;cellular;nov;wed;244;2;999;0;nonexistent;-3.4;92.649;-30.1;0.715;5017.5;yes
+37;services;married;high.school;no;no;yes;cellular;nov;wed;54;4;6;1;success;-3.4;92.649;-30.1;0.715;5017.5;no
+45;admin.;married;university.degree;no;unknown;unknown;cellular;nov;wed;135;2;999;0;nonexistent;-3.4;92.649;-30.1;0.715;5017.5;no
+29;admin.;single;university.degree;no;no;yes;cellular;nov;wed;158;1;3;1;success;-3.4;92.649;-30.1;0.715;5017.5;yes
+23;student;single;university.degree;no;yes;no;cellular;nov;wed;172;1;3;2;success;-3.4;92.649;-30.1;0.715;5017.5;yes
+33;admin.;married;university.degree;no;yes;no;telephone;nov;wed;241;1;3;1;success;-3.4;92.649;-30.1;0.715;5017.5;yes
+37;admin.;single;high.school;no;no;yes;cellular;nov;wed;248;1;999;0;nonexistent;-3.4;92.649;-30.1;0.715;5017.5;no
+53;housemaid;married;basic.4y;no;no;yes;telephone;nov;wed;513;1;3;1;success;-3.4;92.649;-30.1;0.715;5017.5;yes
+38;admin.;married;university.degree;no;no;no;telephone;nov;thu;71;1;13;1;success;-3.4;92.649;-30.1;0.714;5017.5;yes
+40;services;married;high.school;no;yes;no;cellular;nov;thu;90;3;3;2;success;-3.4;92.649;-30.1;0.714;5017.5;yes
+29;student;single;professional.course;no;no;no;cellular;nov;thu;227;3;3;2;success;-3.4;92.649;-30.1;0.714;5017.5;yes
+23;technician;single;professional.course;no;yes;no;cellular;nov;thu;116;5;9;2;failure;-3.4;92.649;-30.1;0.714;5017.5;no
+32;self-employed;married;university.degree;no;no;no;cellular;nov;thu;66;2;999;0;nonexistent;-3.4;92.649;-30.1;0.714;5017.5;no
+29;student;single;professional.course;no;yes;yes;cellular;nov;thu;123;1;7;1;success;-3.4;92.649;-30.1;0.714;5017.5;yes
+67;retired;married;basic.4y;no;yes;no;cellular;nov;thu;39;3;999;0;nonexistent;-3.4;92.649;-30.1;0.714;5017.5;no
+40;admin.;married;university.degree;no;no;no;cellular;nov;thu;96;1;999;0;nonexistent;-3.4;92.649;-30.1;0.714;5017.5;no
+65;retired;single;university.degree;no;no;no;cellular;nov;thu;253;1;999;2;failure;-3.4;92.649;-30.1;0.714;5017.5;yes
+43;management;married;high.school;no;no;no;cellular;nov;thu;226;1;999;0;nonexistent;-3.4;92.649;-30.1;0.714;5017.5;yes
+43;management;married;high.school;no;yes;no;cellular;nov;thu;177;1;999;1;failure;-3.4;92.649;-30.1;0.714;5017.5;no
+25;admin.;married;unknown;no;no;no;cellular;nov;thu;241;1;999;0;nonexistent;-3.4;92.649;-30.1;0.714;5017.5;yes
+25;admin.;married;high.school;no;yes;no;cellular;nov;thu;702;1;999;0;nonexistent;-3.4;92.649;-30.1;0.714;5017.5;no
+64;unemployed;married;basic.4y;no;yes;no;cellular;nov;thu;427;1;999;0;nonexistent;-3.4;92.649;-30.1;0.714;5017.5;no
+25;admin.;married;unknown;no;no;no;cellular;nov;thu;110;1;999;1;failure;-3.4;92.649;-30.1;0.714;5017.5;yes
+65;retired;single;university.degree;no;no;no;cellular;nov;thu;88;2;3;2;success;-3.4;92.649;-30.1;0.714;5017.5;yes
+29;admin.;single;university.degree;no;no;no;cellular;nov;thu;134;2;9;2;failure;-3.4;92.649;-30.1;0.714;5017.5;yes
+38;admin.;married;university.degree;no;no;no;cellular;nov;thu;126;1;7;4;failure;-3.4;92.649;-30.1;0.714;5017.5;yes
+67;retired;married;basic.4y;no;yes;no;cellular;nov;thu;99;1;999;0;nonexistent;-3.4;92.649;-30.1;0.714;5017.5;yes
+51;self-employed;single;basic.9y;no;yes;no;cellular;nov;thu;104;1;999;0;nonexistent;-3.4;92.649;-30.1;0.714;5017.5;yes
+49;unemployed;married;professional.course;no;yes;no;telephone;nov;thu;226;1;999;0;nonexistent;-3.4;92.649;-30.1;0.714;5017.5;yes
+34;admin.;single;university.degree;no;yes;no;cellular;nov;thu;89;1;3;2;success;-3.4;92.649;-30.1;0.714;5017.5;yes
+34;admin.;single;university.degree;no;no;no;cellular;nov;thu;169;1;7;2;success;-3.4;92.649;-30.1;0.714;5017.5;yes
+34;admin.;single;university.degree;no;no;no;cellular;nov;thu;135;1;6;1;success;-3.4;92.649;-30.1;0.714;5017.5;yes
+78;retired;divorced;basic.4y;no;yes;no;cellular;nov;thu;463;1;3;1;success;-3.4;92.649;-30.1;0.714;5017.5;no
+56;blue-collar;divorced;basic.4y;no;no;no;cellular;nov;thu;150;1;999;1;failure;-3.4;92.649;-30.1;0.714;5017.5;no
+56;blue-collar;divorced;basic.4y;no;no;no;cellular;nov;thu;134;1;999;0;nonexistent;-3.4;92.649;-30.1;0.714;5017.5;yes
+32;self-employed;married;university.degree;no;yes;no;cellular;nov;thu;247;1;6;3;failure;-3.4;92.649;-30.1;0.714;5017.5;yes
+52;blue-collar;single;basic.9y;no;no;no;cellular;nov;thu;771;2;999;0;nonexistent;-3.4;92.649;-30.1;0.714;5017.5;no
+62;housemaid;married;basic.4y;no;yes;no;cellular;nov;thu;443;1;999;0;nonexistent;-3.4;92.649;-30.1;0.714;5017.5;no
+29;student;single;professional.course;no;yes;no;telephone;nov;thu;124;2;999;0;nonexistent;-3.4;92.649;-30.1;0.714;5017.5;no
+52;blue-collar;single;basic.9y;no;yes;no;cellular;nov;thu;191;3;9;1;success;-3.4;92.649;-30.1;0.714;5017.5;no
+66;retired;married;basic.4y;no;yes;yes;telephone;nov;thu;1127;1;999;0;nonexistent;-3.4;92.649;-30.1;0.714;5017.5;yes
+28;admin.;single;university.degree;no;yes;no;cellular;nov;thu;189;2;999;0;nonexistent;-3.4;92.649;-30.1;0.714;5017.5;no
+56;management;divorced;unknown;no;yes;no;cellular;nov;thu;893;7;999;0;nonexistent;-3.4;92.649;-30.1;0.714;5017.5;yes
+35;technician;single;professional.course;no;yes;no;cellular;nov;thu;192;2;999;1;failure;-3.4;92.649;-30.1;0.714;5017.5;yes
+49;unemployed;married;professional.course;no;yes;yes;cellular;nov;thu;366;2;999;1;failure;-3.4;92.649;-30.1;0.714;5017.5;no
+32;self-employed;married;university.degree;no;no;no;cellular;nov;thu;707;2;3;2;success;-3.4;92.649;-30.1;0.714;5017.5;yes
+60;unemployed;married;basic.4y;no;no;no;cellular;nov;thu;627;2;6;1;success;-3.4;92.649;-30.1;0.714;5017.5;yes
+62;housemaid;married;university.degree;no;yes;no;cellular;nov;thu;237;1;3;3;success;-3.4;92.649;-30.1;0.714;5017.5;no
+38;admin.;married;university.degree;no;no;no;telephone;nov;thu;411;4;999;0;nonexistent;-3.4;92.649;-30.1;0.714;5017.5;yes
+29;admin.;single;high.school;no;yes;no;cellular;nov;fri;176;2;7;2;success;-3.4;92.649;-30.1;0.714;5017.5;yes
+25;admin.;single;university.degree;no;no;no;cellular;nov;fri;350;5;3;1;success;-3.4;92.649;-30.1;0.714;5017.5;no
+26;admin.;married;high.school;no;yes;no;cellular;nov;fri;338;1;7;1;success;-3.4;92.649;-30.1;0.714;5017.5;yes
+52;technician;married;professional.course;no;no;no;cellular;nov;fri;202;5;999;0;nonexistent;-3.4;92.649;-30.1;0.714;5017.5;no
+26;student;single;university.degree;no;no;no;cellular;nov;fri;181;1;7;1;success;-3.4;92.649;-30.1;0.714;5017.5;yes
+26;blue-collar;single;high.school;no;yes;no;telephone;nov;fri;208;2;3;1;success;-3.4;92.649;-30.1;0.714;5017.5;yes
+29;admin.;single;university.degree;no;no;no;cellular;nov;fri;122;1;3;2;success;-3.4;92.649;-30.1;0.714;5017.5;yes
+32;admin.;single;university.degree;no;yes;no;telephone;nov;fri;2184;2;999;1;failure;-3.4;92.649;-30.1;0.714;5017.5;yes
+32;admin.;single;university.degree;no;yes;no;telephone;nov;fri;135;1;999;0;nonexistent;-3.4;92.649;-30.1;0.714;5017.5;yes
+53;admin.;single;university.degree;no;yes;yes;telephone;nov;fri;212;3;999;1;failure;-3.4;92.649;-30.1;0.714;5017.5;yes
+80;retired;divorced;unknown;no;yes;yes;cellular;nov;fri;186;2;3;1;success;-3.4;92.649;-30.1;0.714;5017.5;yes
+31;technician;married;unknown;no;no;no;cellular;nov;fri;498;1;999;1;failure;-3.4;92.649;-30.1;0.714;5017.5;yes
+21;student;single;university.degree;no;yes;no;cellular;nov;fri;180;3;3;1;success;-3.4;92.649;-30.1;0.714;5017.5;no
+65;retired;married;university.degree;no;no;no;cellular;nov;fri;226;1;3;3;success;-3.4;92.649;-30.1;0.714;5017.5;yes
+43;technician;single;university.degree;no;no;yes;cellular;nov;fri;122;5;999;0;nonexistent;-3.4;92.649;-30.1;0.714;5017.5;no
+63;retired;married;unknown;no;no;no;telephone;nov;fri;137;1;999;0;nonexistent;-3.4;92.649;-30.1;0.714;5017.5;no
+31;admin.;single;high.school;no;no;no;cellular;nov;fri;122;4;999;3;failure;-3.4;92.649;-30.1;0.714;5017.5;no
+29;technician;married;university.degree;no;yes;no;cellular;nov;fri;210;1;3;1;success;-3.4;92.649;-30.1;0.714;5017.5;yes
+26;blue-collar;single;high.school;no;no;no;telephone;nov;fri;201;1;999;0;nonexistent;-3.4;92.649;-30.1;0.714;5017.5;no
+52;technician;married;professional.course;no;yes;no;cellular;nov;fri;495;1;3;1;success;-3.4;92.649;-30.1;0.714;5017.5;yes
+52;technician;married;professional.course;no;yes;no;cellular;nov;fri;632;1;999;1;failure;-3.4;92.649;-30.1;0.714;5017.5;no
+52;technician;married;professional.course;no;yes;no;cellular;nov;fri;259;1;999;1;failure;-3.4;92.649;-30.1;0.714;5017.5;yes
+27;admin.;single;university.degree;no;yes;no;cellular;nov;fri;264;1;999;0;nonexistent;-3.4;92.649;-30.1;0.714;5017.5;no
+39;management;single;university.degree;no;yes;no;cellular;nov;fri;239;2;3;2;success;-3.4;92.649;-30.1;0.714;5017.5;yes
+77;retired;married;unknown;no;yes;no;cellular;nov;fri;381;1;999;0;nonexistent;-3.4;92.649;-30.1;0.714;5017.5;yes
+77;retired;married;unknown;no;yes;no;cellular;nov;fri;193;1;3;1;success;-3.4;92.649;-30.1;0.714;5017.5;yes
+31;admin.;single;high.school;no;no;no;telephone;nov;fri;53;3;999;1;failure;-3.4;92.649;-30.1;0.714;5017.5;no
+31;services;married;high.school;no;no;no;telephone;nov;fri;271;2;3;2;success;-3.4;92.649;-30.1;0.714;5017.5;yes
+41;management;married;unknown;no;no;yes;cellular;nov;fri;129;2;3;2;success;-3.4;92.649;-30.1;0.714;5017.5;yes
+52;technician;married;professional.course;no;yes;no;telephone;nov;fri;332;2;3;1;success;-3.4;92.649;-30.1;0.714;5017.5;no
+55;blue-collar;married;basic.4y;no;no;no;cellular;nov;fri;227;2;999;0;nonexistent;-3.4;92.649;-30.1;0.714;5017.5;yes
+78;retired;divorced;basic.4y;no;yes;no;cellular;nov;fri;182;2;3;1;success;-3.4;92.649;-30.1;0.714;5017.5;yes
+18;student;single;high.school;no;no;no;cellular;nov;fri;256;2;7;2;failure;-3.4;92.649;-30.1;0.714;5017.5;yes
+40;technician;single;university.degree;no;yes;no;cellular;nov;mon;139;2;3;1;success;-3.4;92.649;-30.1;0.714;5017.5;no
+19;student;single;unknown;no;no;no;cellular;nov;mon;132;2;3;2;success;-3.4;92.649;-30.1;0.714;5017.5;no
+40;technician;single;university.degree;no;no;no;cellular;nov;mon;141;3;999;0;nonexistent;-3.4;92.649;-30.1;0.714;5017.5;no
+25;student;single;high.school;no;yes;no;cellular;nov;mon;61;3;999;0;nonexistent;-3.4;92.649;-30.1;0.714;5017.5;no
+40;technician;single;university.degree;no;yes;no;cellular;nov;mon;95;1;7;1;success;-3.4;92.649;-30.1;0.714;5017.5;no
+40;technician;single;university.degree;no;no;no;cellular;nov;mon;130;1;7;2;failure;-3.4;92.649;-30.1;0.714;5017.5;yes
+25;admin.;single;university.degree;no;no;yes;cellular;nov;mon;295;1;7;2;success;-3.4;92.649;-30.1;0.714;5017.5;yes
+61;retired;married;basic.4y;no;yes;no;cellular;nov;mon;301;1;9;3;failure;-3.4;92.649;-30.1;0.714;5017.5;yes
+39;admin.;married;high.school;no;no;no;cellular;nov;mon;1011;1;3;2;success;-3.4;92.649;-30.1;0.714;5017.5;no
+50;admin.;married;university.degree;no;yes;no;cellular;nov;mon;124;5;999;1;failure;-3.4;92.649;-30.1;0.714;5017.5;no
+64;retired;married;high.school;no;no;no;cellular;nov;mon;146;1;3;1;success;-3.4;92.649;-30.1;0.714;5017.5;yes
+67;retired;married;basic.4y;no;no;no;telephone;nov;mon;167;1;999;0;nonexistent;-3.4;92.649;-30.1;0.714;5017.5;yes
+50;admin.;married;university.degree;no;yes;no;cellular;nov;mon;183;1;3;1;success;-3.4;92.649;-30.1;0.714;5017.5;yes
+75;housemaid;divorced;basic.4y;no;no;no;telephone;nov;mon;135;8;3;1;success;-3.4;92.649;-30.1;0.714;5017.5;no
+50;admin.;married;university.degree;no;no;no;cellular;nov;mon;176;1;7;2;success;-3.4;92.649;-30.1;0.714;5017.5;no
+56;management;married;university.degree;no;yes;no;cellular;nov;mon;124;1;999;0;nonexistent;-3.4;92.649;-30.1;0.714;5017.5;no
+37;entrepreneur;married;university.degree;no;yes;no;cellular;nov;mon;163;1;999;1;failure;-3.4;92.649;-30.1;0.714;5017.5;no
+37;entrepreneur;married;university.degree;no;yes;no;cellular;nov;mon;84;1;999;1;failure;-3.4;92.649;-30.1;0.714;5017.5;no
+37;entrepreneur;married;university.degree;no;yes;no;cellular;nov;mon;843;1;999;0;nonexistent;-3.4;92.649;-30.1;0.714;5017.5;no
+35;self-employed;single;university.degree;no;yes;no;cellular;nov;mon;365;1;999;0;nonexistent;-3.4;92.649;-30.1;0.714;5017.5;no
+27;admin.;married;high.school;no;no;yes;cellular;nov;mon;62;7;999;0;nonexistent;-3.4;92.649;-30.1;0.714;5017.5;no
+25;admin.;single;university.degree;no;yes;no;telephone;nov;mon;107;2;999;0;nonexistent;-3.4;92.649;-30.1;0.714;5017.5;no
+30;blue-collar;single;high.school;no;unknown;unknown;cellular;nov;mon;235;5;999;0;nonexistent;-3.4;92.649;-30.1;0.714;5017.5;yes
+26;admin.;married;high.school;no;yes;no;cellular;nov;mon;432;5;999;0;nonexistent;-3.4;92.649;-30.1;0.714;5017.5;yes
+35;management;married;university.degree;no;yes;yes;cellular;nov;mon;244;2;999;1;failure;-3.4;92.649;-30.1;0.714;5017.5;no
+38;admin.;married;high.school;no;yes;no;cellular;nov;mon;136;1;999;1;failure;-3.4;92.649;-30.1;0.714;5017.5;no
+43;self-employed;married;high.school;no;no;no;cellular;nov;mon;137;3;999;1;failure;-3.4;92.649;-30.1;0.714;5017.5;no
+54;services;married;basic.9y;no;yes;yes;cellular;nov;mon;175;3;999;0;nonexistent;-3.4;92.649;-30.1;0.714;5017.5;no
+30;admin.;married;high.school;no;unknown;unknown;cellular;nov;mon;104;1;999;1;failure;-3.4;92.649;-30.1;0.714;5017.5;no
+30;blue-collar;single;high.school;no;no;no;cellular;nov;mon;250;1;999;0;nonexistent;-3.4;92.649;-30.1;0.714;5017.5;yes
+35;management;married;university.degree;no;no;no;telephone;nov;mon;986;1;7;3;failure;-3.4;92.649;-30.1;0.714;5017.5;no
+31;technician;married;university.degree;no;no;no;telephone;nov;mon;57;4;999;0;nonexistent;-3.4;92.649;-30.1;0.714;5017.5;no
+25;admin.;single;unknown;no;yes;no;telephone;nov;mon;643;4;999;0;nonexistent;-3.4;92.649;-30.1;0.714;5017.5;no
+66;retired;married;basic.4y;no;yes;no;cellular;nov;mon;175;1;7;1;success;-3.4;92.649;-30.1;0.714;5017.5;yes
+64;retired;married;high.school;no;yes;no;cellular;nov;mon;79;4;999;2;failure;-3.4;92.649;-30.1;0.714;5017.5;no
+34;technician;married;professional.course;no;yes;no;cellular;nov;mon;93;1;999;1;failure;-3.4;92.649;-30.1;0.714;5017.5;no
+30;blue-collar;single;high.school;no;no;no;cellular;nov;mon;94;1;999;2;failure;-3.4;92.649;-30.1;0.714;5017.5;no
+19;student;single;unknown;no;yes;no;cellular;nov;mon;380;1;999;1;failure;-3.4;92.649;-30.1;0.714;5017.5;yes
+25;admin.;single;unknown;no;yes;no;cellular;nov;mon;381;1;999;1;failure;-3.4;92.649;-30.1;0.714;5017.5;yes
+25;admin.;married;university.degree;no;yes;no;telephone;nov;mon;446;8;999;0;nonexistent;-3.4;92.649;-30.1;0.714;5017.5;no
+42;management;married;university.degree;no;yes;no;cellular;nov;mon;104;3;999;1;failure;-3.4;92.649;-30.1;0.714;5017.5;no
+48;technician;married;professional.course;no;yes;no;cellular;nov;mon;69;5;3;2;success;-3.4;92.649;-30.1;0.714;5017.5;no
+32;technician;married;university.degree;no;yes;no;cellular;nov;mon;77;1;999;0;nonexistent;-3.4;92.649;-30.1;0.714;5017.5;no
+72;retired;married;high.school;no;no;no;cellular;nov;mon;257;1;999;0;nonexistent;-3.4;92.649;-30.1;0.714;5017.5;yes
+27;admin.;married;high.school;no;no;no;cellular;nov;mon;116;1;4;2;failure;-3.4;92.649;-30.1;0.714;5017.5;no
+77;retired;divorced;basic.4y;no;yes;no;cellular;nov;mon;445;2;999;1;failure;-3.4;92.649;-30.1;0.714;5017.5;yes
+34;management;married;university.degree;no;no;no;cellular;nov;mon;75;1;999;0;nonexistent;-3.4;92.649;-30.1;0.714;5017.5;no
+72;retired;married;university.degree;no;no;no;cellular;nov;mon;111;1;999;0;nonexistent;-3.4;92.649;-30.1;0.714;5017.5;no
+40;technician;single;university.degree;no;no;no;cellular;nov;mon;105;2;3;1;success;-3.4;92.649;-30.1;0.714;5017.5;yes
+40;technician;single;university.degree;no;no;no;cellular;nov;mon;984;5;999;0;nonexistent;-3.4;92.649;-30.1;0.714;5017.5;yes
+50;blue-collar;married;basic.9y;no;yes;no;cellular;nov;mon;202;1;999;0;nonexistent;-3.4;92.649;-30.1;0.714;5017.5;no
+68;retired;married;high.school;no;no;no;cellular;nov;mon;1248;2;999;1;failure;-3.4;92.649;-30.1;0.714;5017.5;yes
+34;self-employed;single;university.degree;no;no;yes;telephone;nov;tue;85;1;999;0;nonexistent;-3.4;92.649;-30.1;0.715;5017.5;yes
+47;management;married;basic.9y;no;yes;no;cellular;nov;tue;709;2;999;0;nonexistent;-3.4;92.649;-30.1;0.715;5017.5;yes
+31;admin.;single;university.degree;no;yes;no;cellular;nov;tue;168;2;999;0;nonexistent;-3.4;92.649;-30.1;0.715;5017.5;no
+36;blue-collar;married;basic.9y;no;yes;no;cellular;nov;tue;320;1;999;2;failure;-3.4;92.649;-30.1;0.715;5017.5;no
+35;management;married;university.degree;no;yes;no;cellular;nov;tue;209;1;999;2;failure;-3.4;92.649;-30.1;0.715;5017.5;yes
+45;admin.;divorced;university.degree;no;yes;no;cellular;nov;tue;140;3;999;1;failure;-3.4;92.649;-30.1;0.715;5017.5;no
+63;retired;married;basic.4y;no;yes;no;cellular;nov;tue;408;3;999;0;nonexistent;-3.4;92.649;-30.1;0.715;5017.5;no
+82;retired;divorced;basic.4y;no;yes;no;cellular;nov;tue;134;2;3;1;success;-3.4;92.649;-30.1;0.715;5017.5;yes
+48;management;married;university.degree;no;yes;yes;cellular;nov;tue;747;2;999;0;nonexistent;-3.4;92.649;-30.1;0.715;5017.5;yes
+53;admin.;married;university.degree;no;yes;no;cellular;nov;tue;409;2;999;0;nonexistent;-3.4;92.649;-30.1;0.715;5017.5;yes
+43;admin.;married;university.degree;no;yes;no;telephone;nov;tue;135;1;999;0;nonexistent;-3.4;92.649;-30.1;0.715;5017.5;yes
+34;housemaid;single;basic.4y;no;yes;no;cellular;nov;tue;393;4;999;0;nonexistent;-3.4;92.649;-30.1;0.715;5017.5;yes
+43;admin.;married;university.degree;no;yes;no;cellular;nov;tue;255;1;999;0;nonexistent;-3.4;92.649;-30.1;0.715;5017.5;yes
+26;admin.;single;university.degree;no;yes;no;cellular;nov;tue;309;3;7;1;success;-3.4;92.649;-30.1;0.715;5017.5;yes
+66;retired;single;basic.4y;no;yes;no;cellular;nov;tue;525;3;999;0;nonexistent;-3.4;92.649;-30.1;0.715;5017.5;yes
+40;unemployed;divorced;basic.4y;no;no;no;cellular;nov;tue;108;1;999;0;nonexistent;-3.4;92.649;-30.1;0.716;5017.5;no
+83;retired;divorced;basic.4y;no;no;no;cellular;nov;tue;242;1;3;3;success;-3.4;92.649;-30.1;0.716;5017.5;yes
+32;management;married;university.degree;no;no;no;cellular;nov;tue;107;1;999;0;nonexistent;-3.4;92.649;-30.1;0.716;5017.5;no
+35;management;married;university.degree;no;no;no;cellular;nov;tue;56;1;3;2;success;-3.4;92.649;-30.1;0.716;5017.5;no
+35;management;married;university.degree;no;no;no;cellular;nov;tue;190;3;7;3;failure;-3.4;92.649;-30.1;0.716;5017.5;no
+34;admin.;divorced;high.school;no;no;no;cellular;nov;tue;492;2;6;3;success;-3.4;92.649;-30.1;0.716;5017.5;no
+30;admin.;single;university.degree;no;yes;no;cellular;nov;tue;187;2;999;0;nonexistent;-3.4;92.649;-30.1;0.716;5017.5;no
+65;retired;married;basic.4y;no;no;yes;cellular;nov;tue;141;2;999;0;nonexistent;-3.4;92.649;-30.1;0.716;5017.5;no
+31;admin.;single;university.degree;no;no;no;cellular;nov;tue;166;2;999;0;nonexistent;-3.4;92.649;-30.1;0.716;5017.5;no
+83;retired;divorced;basic.4y;no;yes;yes;cellular;nov;tue;112;1;999;0;nonexistent;-3.4;92.649;-30.1;0.716;5017.5;no
+55;management;married;university.degree;no;yes;no;cellular;nov;tue;283;1;999;0;nonexistent;-3.4;92.649;-30.1;0.716;5017.5;no
+27;management;single;professional.course;no;yes;no;cellular;nov;tue;325;1;3;1;success;-3.4;92.649;-30.1;0.716;5017.5;yes
+56;retired;married;university.degree;no;yes;no;cellular;nov;wed;968;2;3;3;success;-3.4;92.649;-30.1;0.716;5017.5;yes
+26;student;single;unknown;no;yes;no;cellular;nov;wed;92;2;999;0;nonexistent;-3.4;92.649;-30.1;0.716;5017.5;no
+24;student;single;unknown;no;yes;no;cellular;nov;wed;285;2;3;3;success;-3.4;92.649;-30.1;0.716;5017.5;yes
+57;retired;married;basic.4y;no;yes;no;cellular;nov;wed;295;1;3;2;success;-3.4;92.649;-30.1;0.716;5017.5;no
+53;unknown;married;basic.9y;no;no;yes;cellular;nov;wed;242;1;999;1;failure;-3.4;92.649;-30.1;0.716;5017.5;no
+24;admin.;single;university.degree;no;yes;no;cellular;nov;wed;84;1;9;3;failure;-3.4;92.649;-30.1;0.716;5017.5;no
+58;self-employed;married;university.degree;no;no;no;cellular;nov;wed;106;1;999;0;nonexistent;-3.4;92.649;-30.1;0.716;5017.5;no
+58;self-employed;married;university.degree;no;no;no;cellular;nov;wed;1092;1;999;0;nonexistent;-3.4;92.649;-30.1;0.716;5017.5;no
+32;admin.;single;high.school;no;no;no;cellular;nov;wed;421;1;999;0;nonexistent;-3.4;92.649;-30.1;0.716;5017.5;no
+94;retired;married;basic.9y;no;no;no;cellular;nov;wed;134;1;999;1;failure;-3.4;92.649;-30.1;0.716;5017.5;no
+22;student;single;unknown;no;no;no;cellular;nov;wed;87;1;999;0;nonexistent;-3.4;92.649;-30.1;0.716;5017.5;no
+31;technician;single;university.degree;no;no;no;cellular;nov;wed;372;1;999;0;nonexistent;-3.4;92.649;-30.1;0.716;5017.5;yes
+78;retired;married;professional.course;no;yes;no;cellular;nov;wed;103;1;999;0;nonexistent;-3.4;92.649;-30.1;0.716;5017.5;no
+21;student;single;professional.course;no;no;no;telephone;nov;wed;250;1;999;0;nonexistent;-3.4;92.649;-30.1;0.716;5017.5;no
+55;management;married;university.degree;no;yes;no;cellular;nov;wed;99;1;999;1;failure;-3.4;92.649;-30.1;0.716;5017.5;no
+57;admin.;married;university.degree;no;no;no;cellular;nov;wed;182;1;3;2;success;-3.4;92.649;-30.1;0.716;5017.5;yes
+61;retired;married;basic.4y;no;yes;no;cellular;nov;wed;234;1;999;0;nonexistent;-3.4;92.649;-30.1;0.716;5017.5;yes
+58;retired;married;basic.4y;no;yes;no;cellular;nov;wed;487;1;999;2;failure;-3.4;92.649;-30.1;0.716;5017.5;yes
+56;retired;married;university.degree;no;no;no;cellular;nov;wed;232;1;3;1;success;-3.4;92.649;-30.1;0.716;5017.5;yes
+48;management;divorced;university.degree;no;yes;no;cellular;nov;wed;208;1;3;1;success;-3.4;92.649;-30.1;0.716;5017.5;yes
+28;admin.;single;university.degree;no;yes;no;cellular;nov;wed;170;1;999;0;nonexistent;-3.4;92.649;-30.1;0.716;5017.5;no
+55;entrepreneur;married;university.degree;no;yes;no;cellular;nov;wed;87;1;999;0;nonexistent;-3.4;92.649;-30.1;0.716;5017.5;no
+56;housemaid;divorced;basic.4y;no;yes;no;cellular;nov;wed;414;1;999;1;failure;-3.4;92.649;-30.1;0.716;5017.5;yes
+28;technician;single;professional.course;no;yes;no;cellular;nov;wed;296;1;999;1;failure;-3.4;92.649;-30.1;0.716;5017.5;yes
+86;retired;divorced;basic.4y;no;yes;no;cellular;nov;wed;237;1;999;1;failure;-3.4;92.649;-30.1;0.716;5017.5;no
+27;technician;single;university.degree;no;no;yes;cellular;nov;wed;342;1;999;0;nonexistent;-3.4;92.649;-30.1;0.716;5017.5;yes
+28;technician;single;professional.course;no;yes;no;cellular;nov;wed;238;2;6;1;success;-3.4;92.649;-30.1;0.716;5017.5;yes
+25;technician;single;professional.course;no;yes;no;cellular;nov;wed;541;1;999;0;nonexistent;-3.4;92.649;-30.1;0.716;5017.5;yes
+65;admin.;divorced;university.degree;no;no;no;cellular;nov;fri;142;2;999;0;nonexistent;-3.4;92.649;-30.1;0.718;5017.5;no
+32;management;single;university.degree;no;yes;yes;cellular;nov;fri;92;2;999;1;failure;-3.4;92.649;-30.1;0.718;5017.5;no
+78;retired;married;professional.course;no;no;no;cellular;nov;fri;319;2;999;1;failure;-3.4;92.649;-30.1;0.718;5017.5;yes
+72;retired;married;basic.9y;unknown;yes;no;cellular;nov;fri;96;2;999;0;nonexistent;-3.4;92.649;-30.1;0.718;5017.5;no
+77;retired;divorced;basic.4y;no;no;no;cellular;nov;fri;90;2;999;0;nonexistent;-3.4;92.649;-30.1;0.718;5017.5;no
+67;retired;married;basic.4y;no;no;no;telephone;nov;fri;341;4;999;1;failure;-3.4;92.649;-30.1;0.718;5017.5;no
+73;retired;married;university.degree;no;no;no;cellular;nov;fri;160;1;999;0;nonexistent;-3.4;92.649;-30.1;0.718;5017.5;yes
+31;blue-collar;married;basic.6y;no;yes;no;cellular;nov;fri;65;3;999;0;nonexistent;-3.4;92.649;-30.1;0.718;5017.5;no
+38;admin.;married;university.degree;no;yes;no;cellular;nov;mon;110;3;6;1;success;-3.4;92.649;-30.1;0.719;5017.5;no
+44;admin.;divorced;high.school;no;yes;no;telephone;nov;mon;1628;2;6;1;success;-3.4;92.649;-30.1;0.719;5017.5;yes
+38;admin.;married;university.degree;no;no;yes;telephone;nov;mon;337;3;999;0;nonexistent;-3.4;92.649;-30.1;0.719;5017.5;no
+38;admin.;married;university.degree;no;yes;no;cellular;nov;mon;210;3;999;0;nonexistent;-3.4;92.649;-30.1;0.719;5017.5;no
+62;blue-collar;married;basic.4y;no;yes;no;cellular;nov;mon;152;1;6;1;success;-3.4;92.649;-30.1;0.719;5017.5;no
+81;housemaid;divorced;basic.4y;no;yes;no;cellular;nov;mon;151;6;999;0;nonexistent;-3.4;92.649;-30.1;0.719;5017.5;no
+62;blue-collar;married;basic.4y;no;no;no;cellular;nov;mon;123;1;999;1;failure;-3.4;92.649;-30.1;0.719;5017.5;no
+62;blue-collar;married;basic.4y;no;yes;yes;cellular;nov;mon;152;1;999;0;nonexistent;-3.4;92.649;-30.1;0.719;5017.5;no
+31;blue-collar;married;basic.6y;no;yes;no;cellular;nov;mon;107;1;999;2;failure;-3.4;92.649;-30.1;0.719;5017.5;no
+62;blue-collar;married;basic.4y;no;yes;yes;cellular;nov;mon;113;1;999;1;failure;-3.4;92.649;-30.1;0.719;5017.5;no
+60;admin.;married;unknown;unknown;yes;no;cellular;dec;wed;357;1;999;0;nonexistent;-3.0;92.713;-33.0;0.721;5023.5;yes
+38;technician;married;university.degree;no;yes;yes;cellular;dec;wed;310;1;999;0;nonexistent;-3.0;92.713;-33.0;0.721;5023.5;yes
+76;retired;married;university.degree;no;yes;no;cellular;dec;wed;258;1;999;0;nonexistent;-3.0;92.713;-33.0;0.721;5023.5;no
+54;unemployed;married;high.school;no;yes;no;cellular;dec;wed;346;1;999;0;nonexistent;-3.0;92.713;-33.0;0.721;5023.5;yes
+38;technician;married;university.degree;no;no;no;cellular;dec;wed;415;1;999;2;failure;-3.0;92.713;-33.0;0.721;5023.5;yes
+42;blue-collar;married;basic.9y;no;yes;no;cellular;dec;wed;187;2;999;0;nonexistent;-3.0;92.713;-33.0;0.721;5023.5;no
+30;technician;married;university.degree;no;yes;no;cellular;dec;thu;244;2;6;1;success;-3.0;92.713;-33.0;0.72;5023.5;yes
+55;technician;married;high.school;no;yes;no;cellular;dec;thu;284;1;999;1;failure;-3.0;92.713;-33.0;0.72;5023.5;yes
+58;unknown;married;basic.9y;no;yes;no;cellular;dec;thu;154;1;999;1;failure;-3.0;92.713;-33.0;0.72;5023.5;yes
+83;retired;married;high.school;no;no;no;cellular;dec;thu;155;1;4;3;success;-3.0;92.713;-33.0;0.72;5023.5;yes
+83;retired;married;high.school;no;yes;no;cellular;dec;thu;96;1;999;0;nonexistent;-3.0;92.713;-33.0;0.72;5023.5;no
+64;admin.;married;university.degree;no;no;yes;cellular;dec;thu;1804;3;999;0;nonexistent;-3.0;92.713;-33.0;0.72;5023.5;no
+60;retired;married;high.school;no;no;no;cellular;dec;thu;472;1;999;0;nonexistent;-3.0;92.713;-33.0;0.72;5023.5;yes
+64;management;divorced;university.degree;no;no;yes;cellular;dec;thu;421;1;999;1;failure;-3.0;92.713;-33.0;0.72;5023.5;no
+40;blue-collar;married;professional.course;no;no;no;telephone;dec;thu;237;1;999;0;nonexistent;-3.0;92.713;-33.0;0.72;5023.5;no
+53;admin.;married;university.degree;no;no;no;cellular;dec;thu;110;1;6;1;success;-3.0;92.713;-33.0;0.72;5023.5;no
+48;admin.;married;high.school;unknown;no;yes;cellular;dec;thu;274;1;8;1;success;-3.0;92.713;-33.0;0.72;5023.5;yes
+50;admin.;single;high.school;no;yes;no;telephone;dec;fri;705;2;999;0;nonexistent;-3.0;92.713;-33.0;0.718;5023.5;yes
+60;retired;married;university.degree;no;no;no;cellular;dec;fri;439;3;6;2;success;-3.0;92.713;-33.0;0.718;5023.5;yes
+23;student;single;university.degree;no;yes;no;cellular;dec;fri;127;2;6;2;success;-3.0;92.713;-33.0;0.718;5023.5;no
+48;management;married;university.degree;no;yes;no;cellular;dec;fri;377;5;999;1;failure;-3.0;92.713;-33.0;0.718;5023.5;no
+25;admin.;single;university.degree;no;no;no;cellular;dec;fri;78;2;999;0;nonexistent;-3.0;92.713;-33.0;0.718;5023.5;no
+60;retired;married;university.degree;no;yes;no;cellular;dec;fri;55;2;999;0;nonexistent;-3.0;92.713;-33.0;0.718;5023.5;no
+46;admin.;married;university.degree;no;unknown;unknown;cellular;dec;fri;696;10;999;0;nonexistent;-3.0;92.713;-33.0;0.718;5023.5;yes
+25;admin.;single;university.degree;no;no;no;cellular;dec;fri;1139;2;4;1;success;-3.0;92.713;-33.0;0.718;5023.5;no
+55;admin.;married;high.school;no;no;no;cellular;dec;fri;254;2;999;0;nonexistent;-3.0;92.713;-33.0;0.718;5023.5;no
+80;retired;divorced;basic.4y;no;no;yes;cellular;dec;fri;720;5;999;1;failure;-3.0;92.713;-33.0;0.718;5023.5;no
+48;admin.;married;university.degree;no;no;no;cellular;dec;mon;85;2;999;0;nonexistent;-3.0;92.713;-33.0;0.717;5023.5;no
+30;student;single;unknown;no;no;no;cellular;dec;mon;69;1;999;1;failure;-3.0;92.713;-33.0;0.717;5023.5;no
+50;technician;married;high.school;no;yes;no;cellular;dec;mon;229;1;999;1;failure;-3.0;92.713;-33.0;0.717;5023.5;yes
+49;housemaid;single;university.degree;no;no;yes;cellular;dec;mon;334;3;999;0;nonexistent;-3.0;92.713;-33.0;0.717;5023.5;no
+36;admin.;single;high.school;no;unknown;unknown;cellular;dec;mon;480;1;999;1;failure;-3.0;92.713;-33.0;0.717;5023.5;yes
+54;blue-collar;married;high.school;no;no;no;cellular;dec;mon;344;1;999;0;nonexistent;-3.0;92.713;-33.0;0.717;5023.5;yes
+36;technician;single;professional.course;no;no;no;cellular;dec;mon;371;1;999;0;nonexistent;-3.0;92.713;-33.0;0.717;5023.5;no
+54;technician;divorced;university.degree;no;unknown;unknown;cellular;dec;mon;164;1;999;0;nonexistent;-3.0;92.713;-33.0;0.717;5023.5;no
+43;admin.;married;high.school;no;no;yes;cellular;dec;mon;415;2;8;2;failure;-3.0;92.713;-33.0;0.717;5023.5;yes
+36;admin.;single;high.school;no;yes;no;telephone;dec;mon;358;6;999;0;nonexistent;-3.0;92.713;-33.0;0.717;5023.5;no
+47;admin.;married;university.degree;no;no;no;telephone;dec;mon;91;2;999;0;nonexistent;-3.0;92.713;-33.0;0.717;5023.5;no
+49;housemaid;single;university.degree;no;yes;no;cellular;dec;mon;583;2;6;1;success;-3.0;92.713;-33.0;0.717;5023.5;yes
+47;admin.;married;university.degree;no;yes;yes;cellular;dec;mon;67;5;999;0;nonexistent;-3.0;92.713;-33.0;0.717;5023.5;no
+48;admin.;married;university.degree;no;yes;no;cellular;dec;mon;347;4;6;2;success;-3.0;92.713;-33.0;0.717;5023.5;no
+50;technician;married;high.school;no;no;no;cellular;dec;mon;620;3;999;0;nonexistent;-3.0;92.713;-33.0;0.717;5023.5;yes
+38;technician;single;university.degree;no;yes;no;cellular;dec;mon;329;2;999;0;nonexistent;-3.0;92.713;-33.0;0.717;5023.5;yes
+73;retired;married;basic.4y;no;no;no;cellular;dec;mon;245;5;999;0;nonexistent;-3.0;92.713;-33.0;0.717;5023.5;no
+38;unemployed;single;high.school;no;yes;no;cellular;dec;mon;1002;3;10;1;success;-3.0;92.713;-33.0;0.717;5023.5;no
+54;admin.;divorced;university.degree;no;no;no;cellular;dec;wed;288;7;6;2;success;-3.0;92.713;-33.0;0.715;5023.5;yes
+42;services;married;university.degree;no;no;no;cellular;dec;wed;179;1;6;1;success;-3.0;92.713;-33.0;0.715;5023.5;yes
+29;student;single;high.school;no;no;no;cellular;dec;wed;390;1;999;0;nonexistent;-3.0;92.713;-33.0;0.715;5023.5;no
+64;retired;married;basic.4y;no;unknown;unknown;telephone;dec;wed;137;8;999;0;nonexistent;-3.0;92.713;-33.0;0.715;5023.5;no
+56;management;married;professional.course;no;no;no;cellular;dec;wed;124;1;999;0;nonexistent;-3.0;92.713;-33.0;0.715;5023.5;no
+30;student;single;unknown;no;no;no;cellular;dec;wed;343;1;4;2;success;-3.0;92.713;-33.0;0.715;5023.5;yes
+31;self-employed;single;university.degree;no;no;no;cellular;dec;wed;854;1;999;0;nonexistent;-3.0;92.713;-33.0;0.715;5023.5;yes
+32;admin.;married;high.school;no;yes;yes;cellular;dec;wed;479;2;999;0;nonexistent;-3.0;92.713;-33.0;0.715;5023.5;yes
+86;retired;married;professional.course;no;no;no;telephone;dec;wed;343;2;999;0;nonexistent;-3.0;92.713;-33.0;0.715;5023.5;yes
+41;self-employed;married;university.degree;no;unknown;unknown;telephone;dec;wed;595;1;999;0;nonexistent;-3.0;92.713;-33.0;0.715;5023.5;yes
+26;admin.;single;university.degree;no;yes;no;telephone;dec;wed;395;1;999;0;nonexistent;-3.0;92.713;-33.0;0.715;5023.5;yes
+65;management;married;unknown;no;no;no;cellular;dec;wed;456;2;9;1;success;-3.0;92.713;-33.0;0.715;5023.5;yes
+32;student;married;high.school;no;yes;no;telephone;dec;wed;87;5;999;0;nonexistent;-3.0;92.713;-33.0;0.715;5023.5;no
+32;student;married;high.school;no;yes;no;telephone;dec;wed;135;3;999;1;failure;-3.0;92.713;-33.0;0.715;5023.5;no
+70;retired;divorced;basic.9y;no;no;no;telephone;dec;wed;220;2;999;0;nonexistent;-3.0;92.713;-33.0;0.715;5023.5;no
+65;management;married;unknown;no;yes;no;telephone;dec;wed;207;3;999;1;failure;-3.0;92.713;-33.0;0.715;5023.5;yes
+37;management;married;unknown;no;no;no;cellular;dec;wed;149;3;999;0;nonexistent;-3.0;92.713;-33.0;0.715;5023.5;yes
+64;housemaid;married;basic.4y;no;yes;yes;cellular;dec;thu;336;5;999;0;nonexistent;-3.0;92.713;-33.0;0.714;5023.5;yes
+56;retired;married;basic.4y;no;no;no;cellular;dec;thu;429;1;999;0;nonexistent;-3.0;92.713;-33.0;0.714;5023.5;yes
+51;unemployed;divorced;high.school;no;no;no;cellular;dec;thu;112;2;999;0;nonexistent;-3.0;92.713;-33.0;0.714;5023.5;no
+55;admin.;married;professional.course;no;yes;no;cellular;dec;thu;798;1;9;2;success;-3.0;92.713;-33.0;0.714;5023.5;yes
+29;unemployed;married;basic.4y;no;no;no;telephone;dec;thu;805;1;999;0;nonexistent;-3.0;92.713;-33.0;0.714;5023.5;yes
+71;retired;married;unknown;no;yes;yes;cellular;dec;thu;182;1;999;1;failure;-3.0;92.713;-33.0;0.714;5023.5;no
+64;housemaid;married;basic.4y;no;no;no;cellular;dec;thu;422;1;6;2;success;-3.0;92.713;-33.0;0.714;5023.5;yes
+64;housemaid;married;basic.4y;no;no;no;telephone;dec;thu;208;1;999;0;nonexistent;-3.0;92.713;-33.0;0.714;5023.5;no
+64;housemaid;married;basic.4y;no;no;no;cellular;dec;thu;232;1;999;0;nonexistent;-3.0;92.713;-33.0;0.714;5023.5;yes
+64;housemaid;married;basic.4y;no;no;yes;cellular;dec;thu;501;1;6;1;success;-3.0;92.713;-33.0;0.714;5023.5;no
+56;retired;married;basic.4y;no;no;no;cellular;dec;thu;582;4;999;0;nonexistent;-3.0;92.713;-33.0;0.714;5023.5;yes
+62;housemaid;married;professional.course;no;yes;no;cellular;dec;fri;141;2;999;0;nonexistent;-3.0;92.713;-33.0;0.714;5023.5;yes
+81;retired;divorced;basic.4y;no;yes;no;cellular;dec;fri;166;3;999;0;nonexistent;-3.0;92.713;-33.0;0.714;5023.5;yes
+61;admin.;married;university.degree;no;no;no;cellular;dec;mon;263;1;999;1;failure;-3.0;92.713;-33.0;0.715;5023.5;no
+57;admin.;single;high.school;no;no;no;cellular;dec;mon;388;1;6;2;success;-3.0;92.713;-33.0;0.715;5023.5;no
+54;technician;divorced;professional.course;no;yes;no;cellular;dec;mon;352;1;6;1;success;-3.0;92.713;-33.0;0.715;5023.5;no
+18;student;single;basic.9y;no;yes;no;cellular;dec;mon;269;1;999;1;failure;-3.0;92.713;-33.0;0.715;5023.5;no
+48;technician;married;professional.course;no;yes;yes;cellular;dec;mon;122;3;999;0;nonexistent;-3.0;92.713;-33.0;0.715;5023.5;no
+74;retired;divorced;high.school;no;yes;yes;telephone;dec;mon;88;6;999;0;nonexistent;-3.0;92.713;-33.0;0.715;5023.5;no
+18;student;single;basic.9y;no;yes;no;cellular;dec;mon;446;2;999;0;nonexistent;-3.0;92.713;-33.0;0.715;5023.5;no
+63;technician;married;unknown;no;yes;no;cellular;dec;mon;510;2;999;1;failure;-3.0;92.713;-33.0;0.715;5023.5;yes
+85;retired;divorced;basic.4y;unknown;yes;no;cellular;dec;mon;321;3;6;1;success;-3.0;92.713;-33.0;0.715;5023.5;yes
+84;retired;married;high.school;no;no;no;cellular;dec;tue;351;1;999;0;nonexistent;-3.0;92.713;-33.0;0.715;5023.5;yes
+85;retired;divorced;basic.4y;unknown;yes;no;telephone;dec;tue;150;1;999;0;nonexistent;-3.0;92.713;-33.0;0.715;5023.5;no
+59;retired;married;professional.course;no;no;no;telephone;dec;tue;476;1;999;1;failure;-3.0;92.713;-33.0;0.715;5023.5;yes
+46;admin.;single;university.degree;no;yes;yes;cellular;dec;tue;324;2;999;0;nonexistent;-3.0;92.713;-33.0;0.715;5023.5;yes
+56;blue-collar;married;basic.4y;unknown;yes;no;cellular;dec;tue;280;3;6;1;success;-3.0;92.713;-33.0;0.715;5023.5;yes
+43;admin.;married;high.school;no;yes;no;cellular;dec;tue;72;4;6;1;success;-3.0;92.713;-33.0;0.715;5023.5;no
+55;services;married;basic.9y;no;yes;no;cellular;dec;wed;314;1;6;1;success;-3.0;92.713;-33.0;0.715;5023.5;yes
+70;retired;married;basic.4y;no;yes;no;cellular;dec;wed;325;1;999;2;failure;-3.0;92.713;-33.0;0.715;5023.5;no
+56;admin.;divorced;unknown;no;no;no;cellular;dec;wed;205;1;999;0;nonexistent;-3.0;92.713;-33.0;0.715;5023.5;no
+64;retired;married;high.school;no;yes;no;cellular;dec;wed;354;1;999;0;nonexistent;-3.0;92.713;-33.0;0.715;5023.5;yes
+70;retired;married;basic.4y;no;no;no;cellular;dec;wed;546;2;999;0;nonexistent;-3.0;92.713;-33.0;0.715;5023.5;yes
+47;housemaid;married;basic.9y;no;yes;no;cellular;dec;thu;155;1;999;1;failure;-3.0;92.713;-33.0;0.712;5023.5;no
+68;management;married;basic.9y;no;yes;no;cellular;dec;thu;97;1;999;2;failure;-3.0;92.713;-33.0;0.712;5023.5;no
+76;retired;married;university.degree;no;no;no;cellular;dec;thu;103;1;999;1;failure;-3.0;92.713;-33.0;0.712;5023.5;no
+68;technician;married;unknown;no;no;no;cellular;dec;thu;141;4;999;0;nonexistent;-3.0;92.713;-33.0;0.712;5023.5;no
+18;student;single;basic.9y;no;no;no;cellular;dec;thu;412;2;999;0;nonexistent;-3.0;92.713;-33.0;0.712;5023.5;yes
+76;retired;married;university.degree;no;yes;yes;cellular;dec;thu;330;2;4;2;success;-3.0;92.713;-33.0;0.712;5023.5;yes
+19;student;single;high.school;no;yes;no;cellular;dec;thu;110;2;999;3;failure;-3.0;92.713;-33.0;0.712;5023.5;no
+24;student;single;high.school;no;yes;no;cellular;dec;thu;726;3;999;0;nonexistent;-3.0;92.713;-33.0;0.712;5023.5;yes
+76;retired;married;university.degree;no;no;yes;cellular;dec;thu;324;3;4;2;success;-3.0;92.713;-33.0;0.712;5023.5;yes
+76;retired;married;university.degree;no;unknown;unknown;cellular;dec;thu;184;6;999;1;failure;-3.0;92.713;-33.0;0.712;5023.5;no
+38;unemployed;single;high.school;no;yes;no;cellular;dec;fri;170;4;6;1;success;-3.0;92.713;-33.0;0.71;5023.5;yes
+28;admin.;single;university.degree;no;yes;yes;cellular;dec;fri;454;6;999;1;failure;-3.0;92.713;-33.0;0.71;5023.5;no
+21;student;single;university.degree;no;yes;no;cellular;dec;fri;379;3;6;1;success;-3.0;92.713;-33.0;0.71;5023.5;yes
+52;technician;married;high.school;no;no;no;cellular;dec;fri;406;1;999;1;failure;-3.0;92.713;-33.0;0.71;5023.5;yes
+23;blue-collar;single;high.school;no;yes;no;cellular;dec;fri;248;6;999;0;nonexistent;-3.0;92.713;-33.0;0.71;5023.5;no
+30;self-employed;single;university.degree;no;yes;yes;cellular;dec;fri;127;2;6;1;success;-3.0;92.713;-33.0;0.71;5023.5;no
+55;entrepreneur;divorced;basic.9y;no;no;no;cellular;dec;fri;415;7;999;0;nonexistent;-3.0;92.713;-33.0;0.71;5023.5;yes
+36;admin.;married;university.degree;no;yes;no;telephone;dec;fri;52;4;999;0;nonexistent;-3.0;92.713;-33.0;0.71;5023.5;no
+42;admin.;married;university.degree;no;no;no;telephone;dec;fri;104;5;6;1;success;-3.0;92.713;-33.0;0.71;5023.5;no
+29;admin.;married;university.degree;no;yes;no;cellular;dec;mon;116;2;999;1;failure;-3.0;92.713;-33.0;0.709;5023.5;no
+26;student;single;university.degree;no;no;no;telephone;dec;mon;796;1;999;0;nonexistent;-3.0;92.713;-33.0;0.709;5023.5;no
+43;management;married;unknown;no;yes;no;telephone;dec;mon;2062;2;8;1;success;-3.0;92.713;-33.0;0.709;5023.5;yes
+29;admin.;married;university.degree;no;no;no;cellular;dec;mon;77;3;999;1;failure;-3.0;92.713;-33.0;0.709;5023.5;no
+29;technician;single;university.degree;no;yes;no;cellular;dec;mon;264;2;999;0;nonexistent;-3.0;92.713;-33.0;0.709;5023.5;yes
+28;unemployed;single;high.school;no;yes;no;cellular;dec;mon;94;3;6;3;success;-3.0;92.713;-33.0;0.709;5023.5;no
+31;admin.;married;professional.course;no;no;yes;cellular;dec;mon;367;2;999;1;failure;-3.0;92.713;-33.0;0.709;5023.5;yes
+51;technician;married;professional.course;no;no;yes;cellular;dec;mon;267;2;999;0;nonexistent;-3.0;92.713;-33.0;0.709;5023.5;yes
+23;student;single;basic.9y;no;yes;no;cellular;dec;tue;321;2;999;0;nonexistent;-3.0;92.713;-33.0;0.708;5023.5;yes
+27;student;single;high.school;no;yes;no;cellular;dec;tue;396;1;999;0;nonexistent;-3.0;92.713;-33.0;0.708;5023.5;no
+23;student;single;basic.9y;no;yes;no;cellular;dec;tue;256;2;999;0;nonexistent;-3.0;92.713;-33.0;0.708;5023.5;yes
+50;admin.;married;university.degree;no;yes;no;cellular;dec;tue;410;3;999;0;nonexistent;-3.0;92.713;-33.0;0.708;5023.5;yes
+27;technician;single;university.degree;no;yes;no;cellular;dec;tue;305;3;10;1;success;-3.0;92.713;-33.0;0.708;5023.5;yes
+23;student;single;basic.9y;no;yes;no;cellular;dec;tue;158;2;999;0;nonexistent;-3.0;92.713;-33.0;0.708;5023.5;no
+62;retired;married;university.degree;no;yes;no;cellular;dec;wed;282;1;6;1;success;-3.0;92.713;-33.0;0.706;5023.5;yes
+28;student;single;unknown;no;yes;no;cellular;dec;wed;102;2;999;0;nonexistent;-3.0;92.713;-33.0;0.706;5023.5;no
+57;admin.;married;unknown;no;yes;no;cellular;dec;wed;391;2;999;0;nonexistent;-3.0;92.713;-33.0;0.706;5023.5;yes
+41;admin.;married;university.degree;no;yes;no;cellular;dec;thu;422;2;999;0;nonexistent;-3.0;92.713;-33.0;0.707;5023.5;yes
+35;blue-collar;married;basic.9y;no;no;yes;cellular;dec;thu;520;3;999;2;failure;-3.0;92.713;-33.0;0.707;5023.5;no
+41;admin.;married;university.degree;no;no;no;cellular;dec;thu;213;1;999;0;nonexistent;-3.0;92.713;-33.0;0.707;5023.5;yes
+41;admin.;married;university.degree;no;yes;no;cellular;dec;thu;500;1;999;0;nonexistent;-3.0;92.713;-33.0;0.707;5023.5;yes
+76;retired;divorced;professional.course;no;yes;no;cellular;dec;thu;956;1;999;0;nonexistent;-3.0;92.713;-33.0;0.707;5023.5;no
+35;blue-collar;married;basic.9y;no;yes;no;cellular;dec;thu;105;1;4;3;success;-3.0;92.713;-33.0;0.707;5023.5;no
+45;admin.;married;university.degree;no;no;no;cellular;dec;thu;150;2;6;1;success;-3.0;92.713;-33.0;0.707;5023.5;yes
+35;unemployed;married;professional.course;no;yes;yes;cellular;dec;thu;62;3;999;1;failure;-3.0;92.713;-33.0;0.707;5023.5;no
+41;admin.;single;university.degree;no;yes;yes;telephone;dec;thu;273;1;999;1;failure;-3.0;92.713;-33.0;0.707;5023.5;no
+46;technician;married;professional.course;no;yes;no;telephone;dec;mon;679;1;999;0;nonexistent;-3.0;92.713;-33.0;0.706;5023.5;yes
+22;technician;single;professional.course;no;yes;no;cellular;dec;mon;1141;1;999;0;nonexistent;-3.0;92.713;-33.0;0.706;5023.5;yes
+63;retired;married;professional.course;no;no;no;cellular;dec;mon;83;4;999;0;nonexistent;-3.0;92.713;-33.0;0.706;5023.5;no
+59;self-employed;married;university.degree;no;no;no;cellular;dec;mon;193;1;999;1;failure;-3.0;92.713;-33.0;0.706;5023.5;no
+53;admin.;married;university.degree;no;yes;yes;cellular;dec;mon;433;1;999;0;nonexistent;-3.0;92.713;-33.0;0.706;5023.5;no
+37;admin.;married;university.degree;no;no;yes;cellular;dec;mon;206;2;6;1;success;-3.0;92.713;-33.0;0.706;5023.5;yes
+35;unemployed;married;professional.course;no;yes;no;cellular;dec;mon;315;1;6;1;success;-3.0;92.713;-33.0;0.706;5023.5;yes
+39;unemployed;single;university.degree;no;yes;no;cellular;dec;mon;387;1;6;2;success;-3.0;92.713;-33.0;0.706;5023.5;yes
+53;admin.;married;university.degree;no;yes;yes;telephone;dec;mon;824;1;6;2;success;-3.0;92.713;-33.0;0.706;5023.5;yes
+30;student;single;university.degree;no;yes;no;cellular;dec;mon;256;1;999;0;nonexistent;-3.0;92.713;-33.0;0.706;5023.5;no
+46;unknown;single;unknown;unknown;yes;no;cellular;dec;mon;1472;1;6;1;success;-3.0;92.713;-33.0;0.706;5023.5;no
+63;retired;married;professional.course;no;no;no;cellular;dec;mon;137;1;999;1;failure;-3.0;92.713;-33.0;0.706;5023.5;no
+32;self-employed;single;university.degree;no;yes;no;cellular;dec;mon;205;4;999;1;failure;-3.0;92.713;-33.0;0.706;5023.5;yes
+35;management;divorced;university.degree;no;no;no;cellular;dec;mon;473;2;999;1;failure;-3.0;92.713;-33.0;0.706;5023.5;yes
+40;self-employed;married;university.degree;no;no;yes;cellular;dec;mon;893;1;999;0;nonexistent;-3.0;92.713;-33.0;0.706;5023.5;yes
+34;admin.;married;university.degree;no;yes;no;cellular;dec;tue;195;2;999;0;nonexistent;-3.0;92.713;-33.0;0.707;5023.5;no
+29;management;married;university.degree;no;yes;no;telephone;dec;tue;207;4;999;0;nonexistent;-3.0;92.713;-33.0;0.707;5023.5;no
+73;retired;divorced;high.school;no;yes;no;cellular;dec;tue;284;1;999;0;nonexistent;-3.0;92.713;-33.0;0.707;5023.5;yes
+43;blue-collar;married;basic.9y;no;yes;no;cellular;dec;tue;689;2;999;0;nonexistent;-3.0;92.713;-33.0;0.707;5023.5;yes
+26;technician;single;university.degree;no;yes;no;cellular;dec;tue;296;1;5;1;success;-3.0;92.713;-33.0;0.707;5023.5;yes
+27;technician;single;university.degree;no;yes;no;cellular;dec;tue;1370;3;6;2;success;-3.0;92.713;-33.0;0.707;5023.5;yes
+32;admin.;single;university.degree;no;yes;no;cellular;dec;tue;449;2;999;0;nonexistent;-3.0;92.713;-33.0;0.707;5023.5;yes
+34;admin.;married;university.degree;no;no;yes;cellular;dec;tue;196;2;6;2;success;-3.0;92.713;-33.0;0.707;5023.5;yes
+32;admin.;single;university.degree;no;yes;no;cellular;dec;tue;215;2;999;0;nonexistent;-3.0;92.713;-33.0;0.707;5023.5;no
+27;technician;single;university.degree;no;yes;no;cellular;dec;tue;109;1;999;1;failure;-3.0;92.713;-33.0;0.707;5023.5;no
+35;admin.;married;university.degree;no;no;no;cellular;dec;tue;554;1;999;0;nonexistent;-3.0;92.713;-33.0;0.707;5023.5;no
+73;retired;divorced;high.school;no;no;yes;cellular;dec;tue;63;3;6;2;success;-3.0;92.713;-33.0;0.707;5023.5;yes
+51;blue-collar;married;professional.course;no;yes;no;cellular;dec;wed;241;3;999;0;nonexistent;-3.0;92.713;-33.0;0.7;5023.5;yes
+31;student;married;high.school;no;yes;no;cellular;dec;wed;158;3;999;0;nonexistent;-3.0;92.713;-33.0;0.7;5023.5;no
+39;admin.;married;high.school;no;yes;no;cellular;dec;wed;110;3;999;1;failure;-3.0;92.713;-33.0;0.7;5023.5;no
+59;management;married;university.degree;no;no;no;cellular;dec;thu;112;4;999;1;failure;-3.0;92.713;-33.0;0.7;5023.5;no
+59;management;married;university.degree;no;yes;no;cellular;dec;thu;646;3;6;1;success;-3.0;92.713;-33.0;0.7;5023.5;no
+39;admin.;single;university.degree;no;yes;no;telephone;mar;mon;229;1;999;1;failure;-1.8;93.369;-34.8;0.655;5008.7;yes
+60;technician;married;university.degree;no;yes;no;telephone;mar;mon;10;1;999;0;nonexistent;-1.8;93.369;-34.8;0.655;5008.7;no
+30;blue-collar;married;high.school;no;yes;no;telephone;mar;tue;904;1;999;0;nonexistent;-1.8;93.369;-34.8;0.655;5008.7;yes
+78;retired;divorced;professional.course;no;yes;no;cellular;mar;tue;591;1;999;1;failure;-1.8;93.369;-34.8;0.655;5008.7;yes
+66;retired;married;basic.4y;no;yes;no;cellular;mar;tue;229;1;6;1;success;-1.8;93.369;-34.8;0.655;5008.7;yes
+66;retired;married;professional.course;no;no;yes;cellular;mar;tue;525;1;21;2;failure;-1.8;93.369;-34.8;0.655;5008.7;yes
+31;admin.;divorced;professional.course;no;yes;no;cellular;mar;tue;107;1;999;0;nonexistent;-1.8;93.369;-34.8;0.655;5008.7;no
+30;blue-collar;married;high.school;no;no;no;cellular;mar;tue;658;1;999;0;nonexistent;-1.8;93.369;-34.8;0.655;5008.7;yes
+30;technician;married;professional.course;no;yes;no;cellular;mar;tue;368;1;999;0;nonexistent;-1.8;93.369;-34.8;0.655;5008.7;yes
+30;technician;married;professional.course;no;yes;yes;cellular;mar;tue;147;1;999;0;nonexistent;-1.8;93.369;-34.8;0.655;5008.7;no
+27;technician;married;professional.course;no;no;yes;telephone;mar;tue;18;1;999;0;nonexistent;-1.8;93.369;-34.8;0.655;5008.7;no
+30;technician;married;professional.course;no;yes;no;cellular;mar;tue;105;1;999;1;failure;-1.8;93.369;-34.8;0.655;5008.7;no
+31;admin.;married;university.degree;no;unknown;unknown;cellular;mar;tue;207;1;999;0;nonexistent;-1.8;93.369;-34.8;0.655;5008.7;yes
+66;retired;married;professional.course;no;no;no;cellular;mar;tue;328;1;999;0;nonexistent;-1.8;93.369;-34.8;0.655;5008.7;no
+66;retired;married;professional.course;no;no;no;cellular;mar;tue;177;1;999;1;failure;-1.8;93.369;-34.8;0.655;5008.7;yes
+53;technician;married;high.school;no;yes;no;cellular;mar;tue;539;2;999;0;nonexistent;-1.8;93.369;-34.8;0.655;5008.7;yes
+27;unknown;single;university.degree;no;no;no;cellular;mar;tue;133;1;999;0;nonexistent;-1.8;93.369;-34.8;0.655;5008.7;no
+19;student;single;basic.6y;no;yes;no;cellular;mar;tue;313;1;5;2;success;-1.8;93.369;-34.8;0.655;5008.7;yes
+31;admin.;divorced;professional.course;no;yes;no;cellular;mar;tue;292;2;999;1;failure;-1.8;93.369;-34.8;0.655;5008.7;yes
+25;blue-collar;single;basic.6y;no;no;no;cellular;mar;tue;228;4;999;0;nonexistent;-1.8;93.369;-34.8;0.655;5008.7;yes
+35;services;single;high.school;no;yes;no;telephone;mar;tue;187;3;999;0;nonexistent;-1.8;93.369;-34.8;0.655;5008.7;yes
+30;technician;married;professional.course;no;yes;no;cellular;mar;tue;263;2;6;2;success;-1.8;93.369;-34.8;0.655;5008.7;yes
+33;admin.;married;university.degree;no;yes;no;cellular;mar;wed;235;3;4;1;success;-1.8;93.369;-34.8;0.655;5008.7;yes
+21;student;single;basic.9y;no;no;no;cellular;mar;wed;363;1;6;1;success;-1.8;93.369;-34.8;0.655;5008.7;yes
+38;blue-collar;single;high.school;no;no;no;cellular;mar;wed;141;1;999;1;failure;-1.8;93.369;-34.8;0.655;5008.7;yes
+38;blue-collar;single;high.school;no;yes;no;telephone;mar;wed;557;1;999;0;nonexistent;-1.8;93.369;-34.8;0.655;5008.7;yes
+24;admin.;single;university.degree;no;yes;no;cellular;mar;wed;145;2;999;1;failure;-1.8;93.369;-34.8;0.655;5008.7;yes
+38;blue-collar;single;high.school;no;yes;no;cellular;mar;wed;355;1;13;2;failure;-1.8;93.369;-34.8;0.655;5008.7;yes
+51;management;married;university.degree;no;no;no;telephone;mar;wed;19;1;999;0;nonexistent;-1.8;93.369;-34.8;0.655;5008.7;no
+37;admin.;single;high.school;no;no;no;cellular;mar;wed;153;2;4;2;success;-1.8;93.369;-34.8;0.655;5008.7;yes
+21;student;single;basic.9y;no;yes;no;cellular;mar;wed;136;2;999;1;failure;-1.8;93.369;-34.8;0.655;5008.7;yes
+36;admin.;married;high.school;no;yes;no;cellular;mar;wed;114;6;999;0;nonexistent;-1.8;93.369;-34.8;0.655;5008.7;no
+54;technician;single;university.degree;no;yes;no;telephone;mar;wed;700;3;999;0;nonexistent;-1.8;93.369;-34.8;0.655;5008.7;no
+36;management;single;university.degree;no;no;no;telephone;mar;wed;834;1;999;0;nonexistent;-1.8;93.369;-34.8;0.655;5008.7;yes
+34;technician;single;university.degree;no;yes;yes;cellular;mar;thu;221;3;3;2;success;-1.8;93.369;-34.8;0.654;5008.7;yes
+37;admin.;single;university.degree;no;yes;no;cellular;mar;thu;194;2;999;1;failure;-1.8;93.369;-34.8;0.654;5008.7;no
+34;technician;single;university.degree;no;yes;no;cellular;mar;thu;180;2;999;0;nonexistent;-1.8;93.369;-34.8;0.654;5008.7;yes
+52;services;married;high.school;unknown;yes;no;cellular;mar;thu;177;2;11;3;failure;-1.8;93.369;-34.8;0.654;5008.7;yes
+34;admin.;married;professional.course;no;no;yes;telephone;mar;thu;364;2;999;1;failure;-1.8;93.369;-34.8;0.654;5008.7;no
+34;technician;single;university.degree;no;no;no;cellular;mar;thu;251;1;999;2;failure;-1.8;93.369;-34.8;0.654;5008.7;yes
+36;management;married;university.degree;no;no;no;cellular;mar;thu;148;1;999;2;failure;-1.8;93.369;-34.8;0.654;5008.7;yes
+53;admin.;divorced;university.degree;no;no;no;cellular;mar;thu;2486;1;999;0;nonexistent;-1.8;93.369;-34.8;0.654;5008.7;yes
+53;admin.;divorced;university.degree;no;yes;yes;cellular;mar;thu;431;1;999;1;failure;-1.8;93.369;-34.8;0.654;5008.7;no
+25;blue-collar;single;basic.9y;no;no;no;cellular;mar;thu;117;2;999;0;nonexistent;-1.8;93.369;-34.8;0.654;5008.7;no
+55;admin.;married;university.degree;no;yes;no;telephone;mar;thu;220;7;999;0;nonexistent;-1.8;93.369;-34.8;0.654;5008.7;no
+25;blue-collar;single;basic.9y;no;no;no;cellular;mar;thu;456;2;10;2;success;-1.8;93.369;-34.8;0.654;5008.7;yes
+66;retired;divorced;basic.4y;no;yes;no;cellular;mar;thu;141;4;999;2;failure;-1.8;93.369;-34.8;0.654;5008.7;no
+53;admin.;divorced;university.degree;no;yes;no;telephone;mar;thu;262;1;999;2;failure;-1.8;93.369;-34.8;0.654;5008.7;no
+34;admin.;married;professional.course;no;yes;no;cellular;mar;thu;562;3;999;1;failure;-1.8;93.369;-34.8;0.654;5008.7;yes
+25;student;single;university.degree;no;yes;no;telephone;mar;fri;252;3;999;1;failure;-1.8;93.369;-34.8;0.653;5008.7;no
+64;retired;married;university.degree;no;no;no;cellular;mar;fri;158;1;3;2;success;-1.8;93.369;-34.8;0.653;5008.7;no
+34;blue-collar;married;high.school;no;yes;no;cellular;mar;fri;115;1;999;0;nonexistent;-1.8;93.369;-34.8;0.653;5008.7;yes
+41;admin.;divorced;university.degree;no;yes;yes;cellular;mar;fri;418;1;999;0;nonexistent;-1.8;93.369;-34.8;0.653;5008.7;yes
+28;unemployed;married;high.school;no;no;no;telephone;mar;fri;341;4;6;1;success;-1.8;93.369;-34.8;0.653;5008.7;yes
+72;retired;married;professional.course;no;no;no;cellular;mar;fri;87;1;3;1;success;-1.8;93.369;-34.8;0.653;5008.7;yes
+33;entrepreneur;single;professional.course;no;yes;no;cellular;mar;fri;373;1;999;0;nonexistent;-1.8;93.369;-34.8;0.653;5008.7;yes
+85;retired;single;professional.course;no;no;no;cellular;mar;fri;116;7;7;2;success;-1.8;93.369;-34.8;0.653;5008.7;no
+38;technician;single;high.school;no;no;no;cellular;mar;fri;154;3;17;3;failure;-1.8;93.369;-34.8;0.653;5008.7;no
+31;technician;single;professional.course;no;no;no;cellular;mar;fri;172;2;999;0;nonexistent;-1.8;93.369;-34.8;0.653;5008.7;no
+34;technician;divorced;professional.course;no;no;no;telephone;mar;fri;257;1;999;1;failure;-1.8;93.369;-34.8;0.653;5008.7;yes
+74;retired;married;unknown;no;no;yes;cellular;mar;fri;607;2;999;0;nonexistent;-1.8;93.369;-34.8;0.653;5008.7;yes
+27;student;single;high.school;no;no;no;cellular;mar;fri;219;1;999;0;nonexistent;-1.8;93.369;-34.8;0.653;5008.7;yes
+22;student;single;basic.9y;no;no;no;cellular;mar;fri;84;1;999;1;failure;-1.8;93.369;-34.8;0.653;5008.7;no
+50;technician;married;university.degree;no;yes;no;cellular;mar;fri;809;1;999;0;nonexistent;-1.8;93.369;-34.8;0.653;5008.7;yes
+41;admin.;divorced;university.degree;no;no;no;cellular;mar;fri;319;1;999;0;nonexistent;-1.8;93.369;-34.8;0.653;5008.7;yes
+38;technician;single;high.school;no;yes;no;cellular;mar;fri;292;2;999;0;nonexistent;-1.8;93.369;-34.8;0.653;5008.7;yes
+41;admin.;divorced;university.degree;no;yes;no;cellular;mar;fri;498;2;6;3;success;-1.8;93.369;-34.8;0.653;5008.7;yes
+41;admin.;divorced;university.degree;no;yes;no;cellular;mar;fri;376;2;999;0;nonexistent;-1.8;93.369;-34.8;0.653;5008.7;yes
+43;self-employed;married;university.degree;no;yes;no;cellular;mar;mon;264;2;9;1;success;-1.8;93.369;-34.8;0.652;5008.7;yes
+59;management;married;basic.4y;no;yes;no;cellular;mar;mon;284;2;999;0;nonexistent;-1.8;93.369;-34.8;0.652;5008.7;no
+35;technician;single;professional.course;no;no;no;cellular;mar;mon;185;2;999;0;nonexistent;-1.8;93.369;-34.8;0.652;5008.7;no
+29;admin.;single;high.school;no;no;no;cellular;mar;mon;150;4;999;0;nonexistent;-1.8;93.369;-34.8;0.652;5008.7;no
+27;services;single;university.degree;no;yes;no;cellular;mar;mon;111;3;999;0;nonexistent;-1.8;93.369;-34.8;0.652;5008.7;no
+29;management;single;university.degree;no;yes;no;cellular;mar;mon;154;2;999;1;failure;-1.8;93.369;-34.8;0.652;5008.7;no
+73;retired;married;unknown;no;yes;no;telephone;mar;mon;659;1;999;0;nonexistent;-1.8;93.369;-34.8;0.652;5008.7;yes
+29;admin.;single;unknown;no;yes;no;cellular;mar;mon;132;1;999;0;nonexistent;-1.8;93.369;-34.8;0.652;5008.7;yes
+49;blue-collar;married;basic.9y;unknown;yes;no;cellular;mar;mon;277;4;999;1;failure;-1.8;93.369;-34.8;0.652;5008.7;yes
+49;blue-collar;married;basic.9y;unknown;no;no;cellular;mar;mon;157;3;7;2;success;-1.8;93.369;-34.8;0.652;5008.7;no
+27;services;single;university.degree;no;yes;no;cellular;mar;mon;104;1;6;1;success;-1.8;93.369;-34.8;0.652;5008.7;yes
+49;blue-collar;married;basic.9y;unknown;no;no;cellular;mar;mon;172;1;6;2;success;-1.8;93.369;-34.8;0.652;5008.7;yes
+59;blue-collar;married;basic.4y;no;yes;no;cellular;mar;mon;124;2;999;0;nonexistent;-1.8;93.369;-34.8;0.652;5008.7;yes
+33;self-employed;single;university.degree;no;yes;no;cellular;mar;mon;265;2;999;0;nonexistent;-1.8;93.369;-34.8;0.652;5008.7;yes
+36;admin.;single;university.degree;no;no;no;cellular;mar;mon;409;1;999;0;nonexistent;-1.8;93.369;-34.8;0.652;5008.7;yes
+49;blue-collar;married;basic.9y;unknown;no;no;cellular;mar;mon;301;1;3;1;success;-1.8;93.369;-34.8;0.652;5008.7;yes
+27;services;single;university.degree;no;no;no;cellular;mar;mon;139;6;999;1;failure;-1.8;93.369;-34.8;0.652;5008.7;no
+64;retired;married;university.degree;no;no;no;cellular;mar;tue;139;2;6;1;success;-1.8;93.369;-34.8;0.652;5008.7;yes
+34;admin.;single;university.degree;no;no;no;telephone;mar;tue;225;1;3;1;success;-1.8;93.369;-34.8;0.652;5008.7;yes
+42;blue-collar;married;basic.6y;no;yes;yes;cellular;mar;tue;185;1;7;3;failure;-1.8;93.369;-34.8;0.652;5008.7;yes
+34;admin.;single;high.school;no;no;no;cellular;mar;tue;469;1;6;2;success;-1.8;93.369;-34.8;0.652;5008.7;yes
+29;blue-collar;single;professional.course;no;yes;yes;cellular;mar;tue;176;1;999;0;nonexistent;-1.8;93.369;-34.8;0.652;5008.7;yes
+34;admin.;single;university.degree;no;yes;no;cellular;mar;tue;568;1;6;3;success;-1.8;93.369;-34.8;0.652;5008.7;yes
+34;admin.;single;university.degree;no;no;no;cellular;mar;tue;241;1;6;1;success;-1.8;93.369;-34.8;0.652;5008.7;yes
+34;admin.;single;university.degree;no;yes;yes;cellular;mar;tue;301;1;3;2;success;-1.8;93.369;-34.8;0.652;5008.7;yes
+34;admin.;single;university.degree;no;no;yes;cellular;mar;tue;236;1;999;0;nonexistent;-1.8;93.369;-34.8;0.652;5008.7;yes
+55;unemployed;divorced;university.degree;no;no;no;cellular;mar;tue;212;3;6;3;success;-1.8;93.369;-34.8;0.652;5008.7;yes
+34;admin.;single;university.degree;no;no;yes;cellular;mar;tue;305;1;11;1;success;-1.8;93.369;-34.8;0.652;5008.7;yes
+34;admin.;single;university.degree;no;no;yes;cellular;mar;tue;288;2;3;1;success;-1.8;93.369;-34.8;0.652;5008.7;yes
+64;retired;married;university.degree;no;no;no;cellular;mar;tue;700;2;5;1;success;-1.8;93.369;-34.8;0.652;5008.7;yes
+26;admin.;single;high.school;no;no;no;cellular;mar;tue;273;2;6;1;success;-1.8;93.369;-34.8;0.652;5008.7;yes
+34;admin.;single;university.degree;no;yes;no;cellular;mar;tue;265;2;999;0;nonexistent;-1.8;93.369;-34.8;0.652;5008.7;no
+34;admin.;single;university.degree;no;yes;yes;cellular;mar;tue;295;1;999;0;nonexistent;-1.8;93.369;-34.8;0.652;5008.7;yes
+38;blue-collar;single;high.school;no;no;no;telephone;mar;tue;450;3;6;2;success;-1.8;93.369;-34.8;0.652;5008.7;yes
+29;blue-collar;single;professional.course;no;no;yes;cellular;mar;tue;207;2;999;1;failure;-1.8;93.369;-34.8;0.652;5008.7;yes
+25;unemployed;married;high.school;no;yes;no;cellular;mar;wed;436;2;6;1;success;-1.8;93.369;-34.8;0.651;5008.7;yes
+43;self-employed;married;university.degree;no;yes;no;cellular;mar;wed;239;1;999;0;nonexistent;-1.8;93.369;-34.8;0.651;5008.7;yes
+35;technician;married;university.degree;no;yes;yes;cellular;mar;wed;138;1;999;1;failure;-1.8;93.369;-34.8;0.651;5008.7;no
+28;self-employed;single;university.degree;no;yes;yes;cellular;mar;wed;217;1;999;1;failure;-1.8;93.369;-34.8;0.651;5008.7;no
+28;self-employed;single;university.degree;no;yes;no;telephone;mar;wed;152;1;999;1;failure;-1.8;93.369;-34.8;0.651;5008.7;no
+31;technician;married;university.degree;no;no;no;cellular;mar;wed;625;4;999;0;nonexistent;-1.8;93.369;-34.8;0.651;5008.7;no
+55;admin.;married;high.school;no;yes;no;cellular;mar;wed;106;2;999;1;failure;-1.8;93.369;-34.8;0.651;5008.7;yes
+28;admin.;single;university.degree;no;yes;no;cellular;mar;thu;257;4;999;2;failure;-1.8;93.369;-34.8;0.65;5008.7;yes
+33;admin.;married;university.degree;no;no;yes;telephone;mar;thu;78;2;999;1;failure;-1.8;93.369;-34.8;0.65;5008.7;no
+27;technician;single;university.degree;no;yes;no;cellular;mar;thu;129;4;999;1;failure;-1.8;93.369;-34.8;0.65;5008.7;no
+39;admin.;divorced;university.degree;no;yes;no;cellular;mar;thu;93;1;13;1;success;-1.8;93.369;-34.8;0.65;5008.7;no
+46;admin.;married;university.degree;no;no;no;telephone;mar;thu;184;1;3;1;success;-1.8;93.369;-34.8;0.65;5008.7;no
+46;admin.;married;university.degree;no;yes;no;cellular;mar;thu;335;1;999;0;nonexistent;-1.8;93.369;-34.8;0.65;5008.7;yes
+38;services;married;high.school;no;yes;no;cellular;mar;thu;257;1;999;0;nonexistent;-1.8;93.369;-34.8;0.65;5008.7;yes
+53;admin.;divorced;university.degree;no;yes;no;cellular;mar;thu;228;1;999;1;failure;-1.8;93.369;-34.8;0.65;5008.7;no
+35;technician;married;professional.course;no;no;no;telephone;mar;thu;282;2;6;1;success;-1.8;93.369;-34.8;0.65;5008.7;no
+33;admin.;married;university.degree;no;yes;no;cellular;mar;thu;117;1;3;1;success;-1.8;93.369;-34.8;0.65;5008.7;no
+31;admin.;single;university.degree;no;no;no;cellular;mar;thu;275;2;999;0;nonexistent;-1.8;93.369;-34.8;0.65;5008.7;no
+31;self-employed;married;professional.course;no;yes;no;cellular;mar;thu;171;4;999;3;failure;-1.8;93.369;-34.8;0.65;5008.7;yes
+28;services;single;professional.course;no;yes;no;cellular;mar;fri;169;3;999;1;failure;-1.8;93.369;-34.8;0.649;5008.7;no
+61;self-employed;divorced;university.degree;no;no;no;cellular;mar;fri;102;2;999;1;failure;-1.8;93.369;-34.8;0.649;5008.7;no
+33;admin.;married;university.degree;no;no;no;cellular;mar;fri;121;2;999;1;failure;-1.8;93.369;-34.8;0.649;5008.7;no
+23;student;single;high.school;no;no;no;telephone;mar;fri;290;1;3;1;success;-1.8;93.369;-34.8;0.649;5008.7;yes
+38;housemaid;single;high.school;no;yes;no;cellular;mar;fri;422;1;10;1;success;-1.8;93.369;-34.8;0.649;5008.7;yes
+33;admin.;married;university.degree;no;no;no;cellular;mar;fri;119;2;999;3;failure;-1.8;93.369;-34.8;0.649;5008.7;no
+26;student;single;high.school;no;no;no;cellular;mar;fri;215;1;6;3;success;-1.8;93.369;-34.8;0.649;5008.7;yes
+27;services;single;university.degree;no;no;no;cellular;mar;fri;212;1;999;0;nonexistent;-1.8;93.369;-34.8;0.649;5008.7;yes
+27;services;single;university.degree;no;yes;no;cellular;mar;fri;229;3;999;1;failure;-1.8;93.369;-34.8;0.649;5008.7;yes
+80;retired;married;basic.4y;no;no;no;cellular;mar;fri;213;3;6;4;success;-1.8;93.369;-34.8;0.649;5008.7;yes
+62;technician;married;unknown;no;no;no;cellular;mar;mon;104;2;3;2;success;-1.8;93.369;-34.8;0.646;5008.7;yes
+58;retired;married;university.degree;no;yes;no;cellular;mar;mon;144;2;999;1;failure;-1.8;93.369;-34.8;0.646;5008.7;no
+73;retired;married;basic.4y;no;yes;no;cellular;mar;mon;209;2;999;1;failure;-1.8;93.369;-34.8;0.646;5008.7;no
+53;technician;married;professional.course;no;no;no;cellular;mar;mon;261;4;999;0;nonexistent;-1.8;93.369;-34.8;0.646;5008.7;no
+30;management;married;university.degree;no;yes;no;cellular;mar;mon;106;3;999;0;nonexistent;-1.8;93.369;-34.8;0.646;5008.7;no
+29;admin.;single;high.school;no;yes;yes;cellular;mar;mon;257;1;999;0;nonexistent;-1.8;93.369;-34.8;0.646;5008.7;yes
+62;technician;married;unknown;no;yes;no;cellular;mar;mon;192;1;6;1;success;-1.8;93.369;-34.8;0.646;5008.7;yes
+48;unemployed;married;university.degree;no;no;yes;cellular;mar;mon;151;1;999;1;failure;-1.8;93.369;-34.8;0.646;5008.7;no
+53;technician;married;professional.course;no;yes;no;telephone;mar;mon;247;5;999;2;failure;-1.8;93.369;-34.8;0.646;5008.7;no
+53;technician;married;professional.course;no;yes;yes;cellular;mar;mon;109;1;999;1;failure;-1.8;93.369;-34.8;0.646;5008.7;no
+33;admin.;single;university.degree;no;no;no;cellular;mar;mon;427;1;6;2;success;-1.8;93.369;-34.8;0.646;5008.7;yes
+58;admin.;married;university.degree;no;yes;no;cellular;mar;mon;549;5;999;2;failure;-1.8;93.369;-34.8;0.646;5008.7;no
+62;technician;married;unknown;no;no;no;cellular;mar;mon;435;3;6;1;success;-1.8;93.369;-34.8;0.646;5008.7;no
+82;retired;married;professional.course;no;yes;no;telephone;mar;mon;506;2;999;0;nonexistent;-1.8;93.369;-34.8;0.646;5008.7;yes
+29;admin.;single;university.degree;no;no;no;cellular;mar;mon;287;2;999;0;nonexistent;-1.8;93.369;-34.8;0.646;5008.7;no
+31;admin.;married;professional.course;no;no;no;cellular;mar;mon;161;2;999;0;nonexistent;-1.8;93.369;-34.8;0.646;5008.7;yes
+62;technician;married;unknown;no;no;no;cellular;mar;mon;105;2;999;0;nonexistent;-1.8;93.369;-34.8;0.646;5008.7;no
+30;self-employed;married;university.degree;no;yes;no;telephone;mar;mon;577;7;999;0;nonexistent;-1.8;93.369;-34.8;0.646;5008.7;yes
+30;unemployed;single;professional.course;no;yes;no;cellular;mar;mon;341;1;999;0;nonexistent;-1.8;93.369;-34.8;0.646;5008.7;no
+34;technician;married;professional.course;no;no;no;telephone;mar;mon;300;6;6;1;success;-1.8;93.369;-34.8;0.646;5008.7;yes
+48;unemployed;married;university.degree;no;yes;no;cellular;mar;mon;195;2;999;0;nonexistent;-1.8;93.369;-34.8;0.646;5008.7;no
+29;admin.;single;university.degree;no;yes;no;cellular;mar;mon;361;1;3;3;success;-1.8;93.369;-34.8;0.646;5008.7;yes
+34;technician;married;professional.course;no;yes;no;telephone;mar;mon;129;1;6;1;success;-1.8;93.369;-34.8;0.646;5008.7;no
+65;retired;married;basic.4y;no;yes;no;cellular;mar;tue;189;1;999;0;nonexistent;-1.8;93.369;-34.8;0.646;5008.7;no
+31;unemployed;single;university.degree;no;yes;no;cellular;mar;tue;180;1;10;1;success;-1.8;93.369;-34.8;0.646;5008.7;yes
+47;self-employed;divorced;university.degree;no;no;no;cellular;mar;tue;261;1;999;0;nonexistent;-1.8;93.369;-34.8;0.646;5008.7;yes
+48;unemployed;married;university.degree;no;yes;no;cellular;mar;tue;279;1;999;2;failure;-1.8;93.369;-34.8;0.646;5008.7;yes
+33;technician;single;professional.course;no;yes;no;cellular;mar;tue;459;1;999;0;nonexistent;-1.8;93.369;-34.8;0.646;5008.7;yes
+52;admin.;married;university.degree;no;yes;no;telephone;mar;tue;294;1;999;1;failure;-1.8;93.369;-34.8;0.646;5008.7;no
+46;unemployed;single;university.degree;no;no;no;cellular;mar;tue;263;1;10;2;success;-1.8;93.369;-34.8;0.646;5008.7;yes
+31;admin.;single;university.degree;no;yes;no;telephone;mar;tue;295;1;3;2;success;-1.8;93.369;-34.8;0.646;5008.7;yes
+33;technician;single;professional.course;no;yes;no;telephone;mar;tue;244;2;999;0;nonexistent;-1.8;93.369;-34.8;0.646;5008.7;no
+27;services;single;high.school;no;yes;yes;cellular;mar;tue;384;1;9;2;failure;-1.8;93.369;-34.8;0.646;5008.7;no
+52;admin.;married;university.degree;no;no;no;cellular;mar;tue;231;1;6;2;success;-1.8;93.369;-34.8;0.646;5008.7;yes
+66;retired;married;high.school;no;no;no;cellular;mar;tue;618;1;999;0;nonexistent;-1.8;93.369;-34.8;0.646;5008.7;no
+30;technician;single;university.degree;no;unknown;unknown;cellular;mar;tue;272;3;999;0;nonexistent;-1.8;93.369;-34.8;0.646;5008.7;no
+66;retired;married;high.school;no;unknown;unknown;cellular;mar;tue;881;3;999;1;failure;-1.8;93.369;-34.8;0.646;5008.7;yes
+23;student;single;high.school;no;no;no;cellular;mar;wed;128;1;999;0;nonexistent;-1.8;93.369;-34.8;0.644;5008.7;yes
+33;self-employed;married;university.degree;no;yes;no;cellular;mar;wed;184;1;11;1;success;-1.8;93.369;-34.8;0.644;5008.7;no
+37;technician;married;professional.course;no;yes;yes;cellular;mar;wed;395;1;9;1;success;-1.8;93.369;-34.8;0.644;5008.7;no
+56;retired;married;basic.4y;no;no;no;cellular;mar;wed;181;2;9;2;failure;-1.8;93.369;-34.8;0.644;5008.7;no
+59;admin.;married;university.degree;no;yes;no;telephone;mar;wed;133;7;999;0;nonexistent;-1.8;93.369;-34.8;0.644;5008.7;no
+52;technician;married;basic.9y;no;no;no;cellular;mar;wed;272;3;999;0;nonexistent;-1.8;93.369;-34.8;0.644;5008.7;yes
+53;blue-collar;single;basic.9y;no;unknown;unknown;cellular;mar;thu;362;1;9;2;success;-1.8;93.369;-34.8;0.643;5008.7;yes
+53;technician;married;unknown;no;no;no;cellular;mar;thu;93;1;999;1;failure;-1.8;93.369;-34.8;0.643;5008.7;no
+26;admin.;married;unknown;no;no;no;cellular;mar;thu;359;1;999;1;failure;-1.8;93.369;-34.8;0.643;5008.7;no
+28;admin.;single;university.degree;no;yes;no;cellular;mar;thu;370;1;9;1;success;-1.8;93.369;-34.8;0.643;5008.7;no
+28;admin.;single;university.degree;no;no;no;cellular;mar;thu;237;1;999;0;nonexistent;-1.8;93.369;-34.8;0.643;5008.7;yes
+28;admin.;single;university.degree;no;no;no;cellular;mar;thu;125;1;999;0;nonexistent;-1.8;93.369;-34.8;0.643;5008.7;no
+47;services;single;unknown;no;unknown;unknown;cellular;mar;thu;394;2;999;0;nonexistent;-1.8;93.369;-34.8;0.643;5008.7;no
+38;admin.;single;university.degree;no;yes;no;cellular;mar;thu;420;1;999;0;nonexistent;-1.8;93.369;-34.8;0.643;5008.7;yes
+43;admin.;married;high.school;no;yes;no;cellular;mar;thu;265;1;999;0;nonexistent;-1.8;93.369;-34.8;0.643;5008.7;yes
+34;admin.;single;university.degree;no;yes;no;cellular;mar;thu;910;2;6;3;success;-1.8;93.369;-34.8;0.643;5008.7;yes
+29;technician;single;professional.course;no;yes;yes;cellular;mar;thu;467;2;13;1;success;-1.8;93.369;-34.8;0.643;5008.7;yes
+24;technician;single;professional.course;no;yes;no;telephone;mar;thu;165;3;999;0;nonexistent;-1.8;93.369;-34.8;0.643;5008.7;no
+50;management;married;university.degree;no;yes;no;cellular;mar;thu;245;2;999;0;nonexistent;-1.8;93.369;-34.8;0.643;5008.7;no
+39;admin.;divorced;professional.course;no;no;no;cellular;mar;thu;593;4;999;1;failure;-1.8;93.369;-34.8;0.643;5008.7;yes
+75;retired;married;basic.9y;no;no;no;cellular;mar;mon;293;2;999;1;failure;-1.8;93.369;-34.8;0.639;5008.7;yes
+59;unemployed;married;basic.9y;no;yes;no;cellular;mar;mon;254;2;999;0;nonexistent;-1.8;93.369;-34.8;0.639;5008.7;yes
+27;admin.;single;unknown;no;yes;no;cellular;mar;mon;247;3;6;2;success;-1.8;93.369;-34.8;0.639;5008.7;yes
+30;technician;unknown;university.degree;no;no;no;cellular;mar;mon;977;2;11;2;success;-1.8;93.369;-34.8;0.639;5008.7;yes
+30;technician;unknown;university.degree;no;no;no;cellular;mar;mon;173;2;6;2;success;-1.8;93.369;-34.8;0.639;5008.7;yes
+29;admin.;single;university.degree;no;yes;no;cellular;mar;mon;215;1;999;0;nonexistent;-1.8;93.369;-34.8;0.639;5008.7;yes
+38;student;single;unknown;no;no;yes;cellular;mar;mon;248;1;3;4;success;-1.8;93.369;-34.8;0.639;5008.7;yes
+38;student;single;unknown;no;yes;no;cellular;mar;mon;344;1;11;1;success;-1.8;93.369;-34.8;0.639;5008.7;no
+38;student;single;unknown;no;no;no;cellular;mar;mon;516;6;999;0;nonexistent;-1.8;93.369;-34.8;0.639;5008.7;no
+39;technician;divorced;high.school;no;no;no;cellular;mar;mon;222;1;12;2;success;-1.8;93.369;-34.8;0.639;5008.7;yes
+39;technician;divorced;high.school;no;no;no;cellular;mar;mon;174;1;3;1;success;-1.8;93.369;-34.8;0.639;5008.7;yes
+36;blue-collar;divorced;high.school;no;no;no;cellular;mar;mon;96;2;999;1;failure;-1.8;93.369;-34.8;0.639;5008.7;no
+70;retired;married;unknown;no;no;no;telephone;mar;mon;174;2;7;2;success;-1.8;93.369;-34.8;0.639;5008.7;no
+75;retired;married;basic.9y;no;no;no;cellular;mar;mon;153;2;999;0;nonexistent;-1.8;93.369;-34.8;0.639;5008.7;no
+27;admin.;single;unknown;no;no;no;cellular;mar;mon;291;1;999;3;failure;-1.8;93.369;-34.8;0.639;5008.7;yes
+30;student;single;unknown;no;no;yes;telephone;mar;tue;255;1;3;2;success;-1.8;93.369;-34.8;0.637;5008.7;yes
+37;blue-collar;married;basic.9y;no;yes;no;cellular;mar;tue;158;1;999;1;failure;-1.8;93.369;-34.8;0.637;5008.7;no
+30;student;single;unknown;no;yes;no;cellular;mar;tue;136;1;9;1;success;-1.8;93.369;-34.8;0.637;5008.7;yes
+27;admin.;single;university.degree;no;no;no;cellular;mar;tue;273;1;999;0;nonexistent;-1.8;93.369;-34.8;0.637;5008.7;yes
+27;admin.;single;unknown;no;no;no;cellular;mar;tue;128;1;3;1;success;-1.8;93.369;-34.8;0.637;5008.7;yes
+27;admin.;single;university.degree;no;no;no;cellular;mar;tue;191;2;999;0;nonexistent;-1.8;93.369;-34.8;0.637;5008.7;yes
+30;student;single;unknown;no;no;no;cellular;mar;thu;101;1;14;1;success;-1.8;93.369;-34.8;0.635;5008.7;yes
+30;student;single;unknown;no;yes;no;cellular;mar;thu;292;1;999;0;nonexistent;-1.8;93.369;-34.8;0.635;5008.7;yes
+80;retired;married;basic.4y;no;yes;no;cellular;mar;thu;156;1;999;0;nonexistent;-1.8;93.369;-34.8;0.635;5008.7;yes
+28;blue-collar;single;high.school;no;no;no;cellular;mar;thu;247;1;999;0;nonexistent;-1.8;93.369;-34.8;0.635;5008.7;no
+41;technician;divorced;university.degree;no;no;no;cellular;mar;thu;187;1;6;1;success;-1.8;93.369;-34.8;0.635;5008.7;yes
+33;admin.;single;unknown;no;no;no;cellular;mar;thu;196;3;999;1;failure;-1.8;93.369;-34.8;0.635;5008.7;no
+28;admin.;single;university.degree;no;no;no;cellular;mar;thu;189;1;999;0;nonexistent;-1.8;93.369;-34.8;0.635;5008.7;no
+36;admin.;single;unknown;no;yes;no;cellular;mar;thu;231;1;999;0;nonexistent;-1.8;93.369;-34.8;0.635;5008.7;no
+78;retired;married;unknown;no;no;no;cellular;mar;thu;272;1;6;2;success;-1.8;93.369;-34.8;0.635;5008.7;yes
+66;housemaid;divorced;basic.4y;no;yes;no;cellular;mar;thu;201;1;3;2;success;-1.8;93.369;-34.8;0.635;5008.7;yes
+34;blue-collar;single;unknown;no;no;no;cellular;mar;fri;98;2;999;0;nonexistent;-1.8;93.369;-34.8;0.636;5008.7;no
+57;blue-collar;married;basic.9y;no;no;no;cellular;mar;fri;94;2;999;0;nonexistent;-1.8;93.369;-34.8;0.636;5008.7;no
+65;housemaid;divorced;basic.4y;unknown;no;no;cellular;mar;fri;288;3;999;0;nonexistent;-1.8;93.369;-34.8;0.636;5008.7;yes
+33;services;single;high.school;no;yes;no;cellular;mar;fri;128;2;6;1;success;-1.8;93.369;-34.8;0.636;5008.7;no
+59;services;single;high.school;no;yes;no;cellular;mar;fri;169;2;999;0;nonexistent;-1.8;93.369;-34.8;0.636;5008.7;no
+34;blue-collar;single;unknown;no;yes;no;cellular;mar;fri;360;1;999;1;failure;-1.8;93.369;-34.8;0.636;5008.7;yes
+26;admin.;single;high.school;no;yes;no;cellular;mar;fri;454;1;999;0;nonexistent;-1.8;93.369;-34.8;0.636;5008.7;no
+27;self-employed;single;university.degree;no;no;no;cellular;mar;fri;281;1;999;0;nonexistent;-1.8;93.369;-34.8;0.636;5008.7;yes
+26;admin.;single;university.degree;no;no;no;cellular;mar;fri;81;1;7;4;failure;-1.8;93.369;-34.8;0.636;5008.7;no
+34;admin.;divorced;high.school;no;no;no;cellular;mar;fri;156;1;999;0;nonexistent;-1.8;93.369;-34.8;0.636;5008.7;no
+78;retired;married;basic.4y;no;yes;no;telephone;mar;fri;139;1;999;0;nonexistent;-1.8;93.369;-34.8;0.636;5008.7;no
+28;admin.;single;university.degree;no;no;no;cellular;mar;fri;157;2;999;1;failure;-1.8;93.369;-34.8;0.636;5008.7;no
+51;admin.;married;university.degree;no;yes;yes;cellular;mar;fri;201;3;999;1;failure;-1.8;93.369;-34.8;0.636;5008.7;no
+57;blue-collar;married;basic.9y;no;no;no;cellular;mar;fri;698;1;999;0;nonexistent;-1.8;93.369;-34.8;0.636;5008.7;no
+58;services;married;high.school;no;no;no;cellular;mar;mon;92;2;3;1;success;-1.8;93.369;-34.8;0.635;5008.7;yes
+58;services;married;high.school;no;no;no;cellular;mar;mon;198;2;999;2;failure;-1.8;93.369;-34.8;0.635;5008.7;no
+58;services;married;high.school;no;yes;no;cellular;mar;mon;88;3;999;2;failure;-1.8;93.369;-34.8;0.635;5008.7;no
+58;services;married;high.school;no;yes;no;cellular;mar;mon;164;5;999;1;failure;-1.8;93.369;-34.8;0.635;5008.7;no
+58;services;married;high.school;no;no;no;cellular;mar;mon;135;1;999;2;failure;-1.8;93.369;-34.8;0.635;5008.7;no
+36;admin.;single;university.degree;no;yes;no;cellular;mar;mon;231;2;999;4;failure;-1.8;93.369;-34.8;0.635;5008.7;no
+57;management;married;university.degree;no;no;no;cellular;mar;mon;341;2;999;0;nonexistent;-1.8;93.369;-34.8;0.635;5008.7;yes
+62;blue-collar;married;unknown;no;no;no;cellular;mar;mon;515;2;999;2;failure;-1.8;93.369;-34.8;0.635;5008.7;no
+58;services;married;high.school;no;yes;no;cellular;mar;mon;317;4;999;0;nonexistent;-1.8;93.369;-34.8;0.635;5008.7;no
+20;services;single;unknown;no;no;no;cellular;mar;mon;150;3;3;3;success;-1.8;93.369;-34.8;0.635;5008.7;no
+58;services;married;high.school;no;yes;no;telephone;mar;mon;113;4;999;0;nonexistent;-1.8;93.369;-34.8;0.635;5008.7;no
+35;blue-collar;married;basic.4y;no;no;no;telephone;mar;mon;433;3;999;1;failure;-1.8;93.369;-34.8;0.635;5008.7;yes
+49;technician;divorced;professional.course;no;yes;no;cellular;mar;tue;361;2;999;1;failure;-1.8;93.369;-34.8;0.635;5008.7;no
+86;retired;married;basic.4y;unknown;yes;no;cellular;mar;tue;186;2;999;2;failure;-1.8;93.369;-34.8;0.635;5008.7;no
+68;retired;divorced;basic.4y;no;yes;no;cellular;mar;tue;277;2;11;1;success;-1.8;93.369;-34.8;0.635;5008.7;yes
+59;admin.;divorced;university.degree;no;yes;no;cellular;mar;tue;236;1;999;0;nonexistent;-1.8;93.369;-34.8;0.635;5008.7;yes
+27;admin.;single;university.degree;no;yes;no;cellular;mar;tue;359;1;999;1;failure;-1.8;93.369;-34.8;0.635;5008.7;yes
+47;self-employed;married;professional.course;no;yes;no;telephone;mar;tue;110;1;999;0;nonexistent;-1.8;93.369;-34.8;0.635;5008.7;yes
+34;management;married;university.degree;no;unknown;unknown;cellular;mar;tue;57;4;999;0;nonexistent;-1.8;93.369;-34.8;0.635;5008.7;no
+27;admin.;single;university.degree;no;yes;no;cellular;mar;tue;371;1;999;2;failure;-1.8;93.369;-34.8;0.635;5008.7;no
+27;admin.;single;university.degree;no;no;no;cellular;mar;tue;238;4;999;0;nonexistent;-1.8;93.369;-34.8;0.635;5008.7;yes
+49;technician;divorced;professional.course;no;yes;no;cellular;mar;tue;236;4;3;1;success;-1.8;93.369;-34.8;0.635;5008.7;yes
+64;retired;married;basic.4y;no;yes;no;cellular;mar;wed;262;2;999;0;nonexistent;-1.8;93.369;-34.8;0.634;5008.7;yes
+56;unemployed;divorced;basic.4y;no;no;no;cellular;mar;wed;577;1;999;0;nonexistent;-1.8;93.369;-34.8;0.634;5008.7;yes
+56;unemployed;divorced;basic.4y;no;yes;no;cellular;mar;wed;170;1;999;1;failure;-1.8;93.369;-34.8;0.634;5008.7;yes
+56;admin.;single;university.degree;no;no;no;cellular;mar;wed;193;1;5;1;success;-1.8;93.369;-34.8;0.634;5008.7;yes
+56;admin.;single;university.degree;no;yes;no;cellular;mar;wed;175;1;999;1;failure;-1.8;93.369;-34.8;0.634;5008.7;yes
+56;admin.;single;university.degree;no;yes;no;cellular;mar;wed;382;1;999;1;failure;-1.8;93.369;-34.8;0.634;5008.7;no
+27;admin.;single;university.degree;no;yes;no;cellular;mar;wed;210;1;6;2;success;-1.8;93.369;-34.8;0.634;5008.7;yes
+32;management;married;university.degree;no;yes;no;telephone;mar;wed;30;1;999;0;nonexistent;-1.8;93.369;-34.8;0.634;5008.7;no
+60;housemaid;married;basic.4y;no;yes;yes;cellular;apr;thu;149;1;12;1;success;-1.8;93.749;-34.6;0.635;5008.7;yes
+56;admin.;single;university.degree;no;no;yes;cellular;apr;thu;158;1;999;1;failure;-1.8;93.749;-34.6;0.635;5008.7;no
+33;admin.;single;university.degree;no;yes;no;cellular;apr;thu;280;1;7;2;success;-1.8;93.749;-34.6;0.635;5008.7;yes
+27;student;single;unknown;no;yes;no;telephone;apr;thu;390;1;4;1;success;-1.8;93.749;-34.6;0.635;5008.7;yes
+41;admin.;divorced;high.school;no;no;no;telephone;apr;thu;558;2;999;0;nonexistent;-1.8;93.749;-34.6;0.635;5008.7;yes
+27;student;single;unknown;no;yes;no;cellular;apr;thu;176;1;999;1;failure;-1.8;93.749;-34.6;0.635;5008.7;no
+35;admin.;divorced;high.school;no;yes;no;telephone;apr;thu;216;3;999;1;failure;-1.8;93.749;-34.6;0.635;5008.7;yes
+27;student;single;unknown;no;no;no;cellular;apr;thu;263;1;999;0;nonexistent;-1.8;93.749;-34.6;0.635;5008.7;no
+84;retired;divorced;basic.4y;no;no;no;cellular;apr;thu;220;2;999;2;failure;-1.8;93.749;-34.6;0.635;5008.7;no
+32;admin.;single;university.degree;no;yes;no;cellular;apr;thu;358;2;999;0;nonexistent;-1.8;93.749;-34.6;0.635;5008.7;yes
+35;admin.;divorced;high.school;no;yes;yes;telephone;apr;thu;111;1;999;0;nonexistent;-1.8;93.749;-34.6;0.635;5008.7;yes
+33;admin.;single;university.degree;no;yes;no;cellular;apr;tue;179;3;999;0;nonexistent;-1.8;93.749;-34.6;0.638;5008.7;yes
+27;technician;single;professional.course;no;no;no;cellular;apr;tue;127;3;999;1;failure;-1.8;93.749;-34.6;0.638;5008.7;no
+46;technician;married;professional.course;no;no;yes;cellular;apr;tue;189;1;5;2;success;-1.8;93.749;-34.6;0.638;5008.7;yes
+27;admin.;single;university.degree;no;no;no;cellular;apr;tue;317;1;12;1;success;-1.8;93.749;-34.6;0.638;5008.7;yes
+61;admin.;married;high.school;no;yes;no;cellular;apr;tue;196;1;999;1;failure;-1.8;93.749;-34.6;0.638;5008.7;yes
+76;retired;married;basic.4y;no;no;no;cellular;apr;tue;122;4;999;1;failure;-1.8;93.749;-34.6;0.638;5008.7;no
+82;housemaid;divorced;basic.4y;no;unknown;unknown;cellular;apr;tue;139;6;999;0;nonexistent;-1.8;93.749;-34.6;0.638;5008.7;yes
+58;retired;married;basic.4y;no;no;no;cellular;apr;wed;1307;1;999;0;nonexistent;-1.8;93.749;-34.6;0.639;5008.7;yes
+39;technician;married;professional.course;no;no;no;cellular;apr;thu;208;3;999;1;failure;-1.8;93.749;-34.6;0.64;5008.7;no
+53;management;divorced;university.degree;no;yes;no;cellular;apr;thu;222;2;999;0;nonexistent;-1.8;93.749;-34.6;0.64;5008.7;yes
+75;retired;married;unknown;no;yes;no;cellular;apr;thu;237;2;999;0;nonexistent;-1.8;93.749;-34.6;0.64;5008.7;no
+53;management;divorced;university.degree;no;yes;yes;cellular;apr;thu;126;6;999;0;nonexistent;-1.8;93.749;-34.6;0.64;5008.7;no
+53;management;divorced;university.degree;no;no;no;cellular;apr;thu;198;2;999;0;nonexistent;-1.8;93.749;-34.6;0.64;5008.7;no
+58;housemaid;single;professional.course;no;no;yes;cellular;apr;thu;335;1;999;0;nonexistent;-1.8;93.749;-34.6;0.64;5008.7;yes
+26;unemployed;single;university.degree;no;yes;no;cellular;apr;thu;618;1;999;0;nonexistent;-1.8;93.749;-34.6;0.64;5008.7;yes
+71;retired;married;professional.course;no;no;no;cellular;apr;thu;559;1;999;0;nonexistent;-1.8;93.749;-34.6;0.64;5008.7;yes
+53;technician;married;university.degree;no;unknown;unknown;cellular;apr;thu;758;2;999;2;failure;-1.8;93.749;-34.6;0.64;5008.7;yes
+71;retired;married;professional.course;no;yes;no;cellular;apr;thu;236;2;999;0;nonexistent;-1.8;93.749;-34.6;0.64;5008.7;no
+37;technician;married;professional.course;no;yes;no;telephone;apr;mon;481;1;999;0;nonexistent;-1.8;93.749;-34.6;0.642;5008.7;yes
+54;admin.;married;high.school;no;yes;no;cellular;apr;mon;158;2;999;0;nonexistent;-1.8;93.749;-34.6;0.642;5008.7;yes
+37;management;single;university.degree;no;no;no;cellular;apr;mon;161;1;999;1;failure;-1.8;93.749;-34.6;0.642;5008.7;no
+35;admin.;married;university.degree;no;yes;no;cellular;apr;mon;337;1;999;2;failure;-1.8;93.749;-34.6;0.642;5008.7;no
+33;admin.;single;university.degree;no;yes;no;cellular;apr;mon;169;1;999;0;nonexistent;-1.8;93.749;-34.6;0.642;5008.7;no
+58;housemaid;single;professional.course;no;yes;no;cellular;apr;mon;284;1;6;1;success;-1.8;93.749;-34.6;0.642;5008.7;no
+62;entrepreneur;married;basic.9y;no;yes;no;cellular;apr;mon;366;2;10;1;success;-1.8;93.749;-34.6;0.642;5008.7;no
+58;housemaid;single;professional.course;no;no;no;cellular;apr;mon;158;2;6;2;success;-1.8;93.749;-34.6;0.642;5008.7;no
+33;admin.;single;university.degree;no;no;no;cellular;apr;mon;339;1;999;2;failure;-1.8;93.749;-34.6;0.642;5008.7;no
+48;admin.;married;professional.course;no;yes;no;cellular;apr;mon;333;1;7;1;success;-1.8;93.749;-34.6;0.642;5008.7;yes
+49;admin.;married;high.school;unknown;no;no;cellular;apr;mon;119;1;6;1;success;-1.8;93.749;-34.6;0.642;5008.7;no
+42;housemaid;divorced;basic.4y;no;yes;no;telephone;apr;mon;271;1;999;1;failure;-1.8;93.749;-34.6;0.642;5008.7;no
+33;admin.;single;university.degree;no;yes;no;cellular;apr;mon;143;1;999;0;nonexistent;-1.8;93.749;-34.6;0.642;5008.7;no
+58;housemaid;single;professional.course;no;no;no;cellular;apr;mon;147;1;6;1;success;-1.8;93.749;-34.6;0.642;5008.7;no
+56;technician;married;high.school;no;no;no;cellular;apr;mon;119;2;999;0;nonexistent;-1.8;93.749;-34.6;0.642;5008.7;no
+59;blue-collar;married;basic.4y;no;no;no;cellular;apr;mon;1397;3;999;1;failure;-1.8;93.749;-34.6;0.642;5008.7;yes
+33;admin.;single;university.degree;no;yes;no;cellular;apr;mon;143;2;999;1;failure;-1.8;93.749;-34.6;0.642;5008.7;no
+35;admin.;married;university.degree;no;yes;no;cellular;apr;mon;176;1;999;0;nonexistent;-1.8;93.749;-34.6;0.642;5008.7;yes
+63;technician;married;high.school;no;no;no;cellular;apr;mon;176;3;999;0;nonexistent;-1.8;93.749;-34.6;0.642;5008.7;yes
+33;management;single;university.degree;no;no;no;cellular;apr;tue;113;3;999;1;failure;-1.8;93.749;-34.6;0.644;5008.7;no
+26;admin.;single;university.degree;no;yes;yes;cellular;apr;tue;295;4;6;2;success;-1.8;93.749;-34.6;0.644;5008.7;yes
+80;housemaid;married;basic.4y;no;yes;yes;cellular;apr;tue;232;1;12;1;success;-1.8;93.749;-34.6;0.644;5008.7;yes
+49;admin.;married;university.degree;no;yes;yes;cellular;apr;tue;218;2;999;3;failure;-1.8;93.749;-34.6;0.644;5008.7;yes
+20;student;single;basic.4y;no;yes;yes;cellular;apr;tue;240;1;999;1;failure;-1.8;93.749;-34.6;0.644;5008.7;yes
+20;student;single;basic.4y;no;yes;yes;cellular;apr;tue;278;4;6;1;success;-1.8;93.749;-34.6;0.644;5008.7;yes
+53;entrepreneur;married;basic.4y;no;yes;yes;cellular;apr;tue;398;2;999;0;nonexistent;-1.8;93.749;-34.6;0.644;5008.7;yes
+36;admin.;single;basic.9y;no;yes;yes;telephone;apr;wed;173;1;999;0;nonexistent;-1.8;93.749;-34.6;0.644;5008.7;yes
+48;admin.;married;university.degree;no;yes;no;cellular;apr;thu;220;2;999;1;failure;-1.8;93.749;-34.6;0.644;5008.7;no
+48;admin.;married;university.degree;no;no;no;telephone;apr;thu;185;1;6;2;success;-1.8;93.749;-34.6;0.644;5008.7;yes
+74;retired;married;university.degree;no;no;no;cellular;apr;thu;200;1;999;0;nonexistent;-1.8;93.749;-34.6;0.644;5008.7;yes
+48;admin.;married;university.degree;no;yes;yes;cellular;apr;thu;200;1;6;2;success;-1.8;93.749;-34.6;0.644;5008.7;yes
+48;admin.;married;university.degree;no;yes;no;cellular;apr;thu;141;1;999;0;nonexistent;-1.8;93.749;-34.6;0.644;5008.7;yes
+35;admin.;married;university.degree;no;yes;no;cellular;apr;thu;330;1;10;1;success;-1.8;93.749;-34.6;0.644;5008.7;yes
+37;admin.;married;university.degree;no;yes;yes;cellular;apr;thu;214;1;999;0;nonexistent;-1.8;93.749;-34.6;0.644;5008.7;yes
+46;services;single;basic.4y;no;no;no;cellular;apr;thu;191;3;6;1;success;-1.8;93.749;-34.6;0.644;5008.7;no
+58;admin.;married;professional.course;no;yes;no;cellular;apr;thu;98;4;999;2;failure;-1.8;93.749;-34.6;0.644;5008.7;no
+22;services;single;high.school;no;no;no;cellular;apr;thu;699;2;999;1;failure;-1.8;93.749;-34.6;0.644;5008.7;no
+35;services;married;professional.course;no;yes;no;cellular;apr;thu;218;2;6;1;success;-1.8;93.749;-34.6;0.644;5008.7;yes
+68;retired;married;basic.4y;no;yes;no;cellular;apr;fri;177;1;999;0;nonexistent;-1.8;93.749;-34.6;0.644;5008.7;no
+41;admin.;married;university.degree;no;yes;no;cellular;apr;fri;961;6;999;0;nonexistent;-1.8;93.749;-34.6;0.644;5008.7;yes
+68;retired;married;university.degree;no;yes;no;cellular;apr;fri;330;3;999;0;nonexistent;-1.8;93.749;-34.6;0.644;5008.7;yes
+55;technician;married;professional.course;no;yes;no;cellular;apr;fri;148;2;999;1;failure;-1.8;93.749;-34.6;0.644;5008.7;no
+50;technician;single;university.degree;no;yes;no;telephone;apr;fri;634;1;999;0;nonexistent;-1.8;93.749;-34.6;0.644;5008.7;yes
+82;retired;divorced;basic.4y;no;yes;yes;cellular;apr;mon;125;2;999;0;nonexistent;-1.8;93.749;-34.6;0.643;5008.7;yes
+25;self-employed;single;unknown;no;no;no;cellular;apr;mon;131;2;999;1;failure;-1.8;93.749;-34.6;0.643;5008.7;no
+29;admin.;single;university.degree;no;yes;no;cellular;apr;mon;237;4;999;0;nonexistent;-1.8;93.749;-34.6;0.643;5008.7;no
+25;self-employed;single;unknown;no;no;no;cellular;apr;mon;232;3;999;1;failure;-1.8;93.749;-34.6;0.643;5008.7;no
+54;admin.;married;high.school;no;no;no;cellular;apr;mon;220;1;12;1;success;-1.8;93.749;-34.6;0.643;5008.7;no
+82;retired;divorced;basic.4y;no;no;no;cellular;apr;mon;529;1;6;2;success;-1.8;93.749;-34.6;0.643;5008.7;yes
+74;retired;divorced;basic.4y;no;yes;no;cellular;apr;mon;142;2;999;0;nonexistent;-1.8;93.749;-34.6;0.643;5008.7;yes
+74;retired;divorced;basic.4y;no;no;yes;cellular;apr;mon;184;2;14;2;failure;-1.8;93.749;-34.6;0.643;5008.7;no
+74;retired;married;basic.4y;no;no;no;telephone;apr;mon;1143;5;999;0;nonexistent;-1.8;93.749;-34.6;0.643;5008.7;yes
+85;housemaid;married;basic.4y;unknown;no;no;cellular;apr;tue;175;6;6;1;success;-1.8;93.749;-34.6;0.642;5008.7;yes
+85;housemaid;married;basic.4y;unknown;yes;no;cellular;apr;tue;167;1;6;2;success;-1.8;93.749;-34.6;0.642;5008.7;yes
+85;housemaid;married;basic.4y;unknown;no;no;cellular;apr;tue;166;1;999;0;nonexistent;-1.8;93.749;-34.6;0.642;5008.7;no
+75;retired;divorced;high.school;no;no;no;telephone;apr;tue;162;1;6;2;success;-1.8;93.749;-34.6;0.642;5008.7;yes
+85;housemaid;married;basic.4y;unknown;yes;no;cellular;apr;tue;462;1;999;1;failure;-1.8;93.749;-34.6;0.642;5008.7;yes
+70;retired;married;basic.4y;no;yes;no;telephone;apr;tue;268;2;999;1;failure;-1.8;93.749;-34.6;0.642;5008.7;no
+45;management;married;unknown;no;yes;no;cellular;apr;tue;379;3;7;1;success;-1.8;93.749;-34.6;0.642;5008.7;yes
+61;retired;married;high.school;no;yes;no;cellular;apr;tue;930;4;999;0;nonexistent;-1.8;93.749;-34.6;0.642;5008.7;no
+49;admin.;divorced;high.school;no;no;no;cellular;apr;wed;381;2;999;0;nonexistent;-1.8;93.749;-34.6;0.642;5008.7;no
+66;retired;divorced;basic.4y;no;yes;no;cellular;apr;wed;476;1;999;0;nonexistent;-1.8;93.749;-34.6;0.642;5008.7;yes
+57;housemaid;married;basic.4y;no;yes;no;telephone;apr;wed;595;3;999;1;failure;-1.8;93.749;-34.6;0.642;5008.7;yes
+80;retired;divorced;basic.4y;no;yes;no;cellular;apr;wed;354;1;999;0;nonexistent;-1.8;93.749;-34.6;0.642;5008.7;no
+80;retired;divorced;basic.4y;no;yes;no;telephone;apr;wed;403;1;999;0;nonexistent;-1.8;93.749;-34.6;0.642;5008.7;yes
+80;retired;divorced;basic.4y;no;yes;no;telephone;apr;wed;623;2;999;0;nonexistent;-1.8;93.749;-34.6;0.642;5008.7;yes
+80;retired;divorced;basic.4y;no;yes;yes;cellular;apr;wed;654;2;999;0;nonexistent;-1.8;93.749;-34.6;0.642;5008.7;yes
+57;housemaid;married;basic.4y;no;no;no;cellular;apr;wed;224;2;6;1;success;-1.8;93.749;-34.6;0.642;5008.7;yes
+58;unemployed;married;basic.9y;no;yes;no;cellular;apr;thu;229;1;6;1;success;-1.8;93.749;-34.6;0.644;5008.7;yes
+53;housemaid;married;university.degree;no;yes;no;cellular;apr;thu;494;1;6;1;success;-1.8;93.749;-34.6;0.644;5008.7;yes
+80;retired;divorced;basic.4y;no;yes;no;cellular;apr;thu;234;1;999;0;nonexistent;-1.8;93.749;-34.6;0.644;5008.7;no
+57;retired;married;high.school;no;yes;no;cellular;apr;thu;407;2;999;0;nonexistent;-1.8;93.749;-34.6;0.644;5008.7;yes
+77;retired;married;high.school;no;yes;no;cellular;apr;thu;165;7;999;0;nonexistent;-1.8;93.749;-34.6;0.644;5008.7;yes
+59;retired;divorced;high.school;no;yes;no;cellular;apr;thu;247;2;999;1;failure;-1.8;93.749;-34.6;0.644;5008.7;no
+44;admin.;married;high.school;no;yes;no;cellular;apr;thu;292;4;999;0;nonexistent;-1.8;93.749;-34.6;0.644;5008.7;no
+80;retired;divorced;basic.4y;no;yes;yes;cellular;apr;thu;554;1;10;2;success;-1.8;93.749;-34.6;0.644;5008.7;yes
+32;admin.;single;university.degree;no;yes;yes;cellular;apr;fri;109;5;6;1;success;-1.8;93.749;-34.6;0.645;5008.7;no
+43;admin.;divorced;university.degree;no;no;no;telephone;apr;fri;263;4;999;0;nonexistent;-1.8;93.749;-34.6;0.645;5008.7;yes
+41;admin.;married;university.degree;no;yes;no;cellular;apr;fri;342;1;999;0;nonexistent;-1.8;93.749;-34.6;0.645;5008.7;yes
+63;housemaid;married;basic.9y;no;yes;no;cellular;apr;fri;164;1;999;0;nonexistent;-1.8;93.749;-34.6;0.645;5008.7;no
+47;admin.;married;high.school;no;yes;no;cellular;apr;fri;296;1;999;1;failure;-1.8;93.749;-34.6;0.645;5008.7;yes
+73;retired;single;professional.course;no;no;no;cellular;apr;fri;291;1;6;3;success;-1.8;93.749;-34.6;0.645;5008.7;yes
+26;student;single;high.school;no;yes;yes;cellular;apr;fri;888;1;6;2;success;-1.8;93.749;-34.6;0.645;5008.7;yes
+25;admin.;single;university.degree;no;no;yes;cellular;apr;fri;207;1;999;0;nonexistent;-1.8;93.749;-34.6;0.645;5008.7;no
+62;technician;married;unknown;no;yes;no;cellular;apr;fri;215;2;999;1;failure;-1.8;93.749;-34.6;0.645;5008.7;no
+71;retired;married;basic.4y;no;no;no;telephone;apr;mon;92;8;999;0;nonexistent;-1.8;93.749;-34.6;0.645;5008.7;no
+29;admin.;single;university.degree;no;yes;no;cellular;apr;mon;378;3;12;1;success;-1.8;93.749;-34.6;0.645;5008.7;no
+46;admin.;married;high.school;no;no;no;cellular;apr;mon;194;3;999;0;nonexistent;-1.8;93.749;-34.6;0.645;5008.7;yes
+38;management;divorced;university.degree;no;yes;no;cellular;apr;mon;182;2;6;1;success;-1.8;93.749;-34.6;0.645;5008.7;yes
+29;technician;married;university.degree;no;yes;no;cellular;apr;mon;116;2;999;0;nonexistent;-1.8;93.749;-34.6;0.645;5008.7;no
+32;technician;married;professional.course;no;no;no;cellular;apr;mon;688;2;999;0;nonexistent;-1.8;93.749;-34.6;0.645;5008.7;yes
+46;admin.;married;high.school;no;yes;yes;cellular;apr;mon;128;2;6;2;success;-1.8;93.749;-34.6;0.645;5008.7;no
+29;technician;married;university.degree;no;yes;no;cellular;apr;mon;192;1;999;1;failure;-1.8;93.749;-34.6;0.645;5008.7;yes
+30;student;single;high.school;no;yes;yes;cellular;apr;mon;102;3;10;1;success;-1.8;93.749;-34.6;0.645;5008.7;no
+20;student;single;high.school;no;no;no;cellular;apr;mon;1472;1;999;3;failure;-1.8;93.749;-34.6;0.645;5008.7;yes
+46;admin.;married;high.school;no;yes;no;cellular;apr;mon;166;5;999;4;failure;-1.8;93.749;-34.6;0.645;5008.7;no
+24;blue-collar;single;high.school;no;no;no;cellular;apr;mon;234;10;999;0;nonexistent;-1.8;93.749;-34.6;0.645;5008.7;no
+71;retired;married;basic.4y;no;no;no;cellular;apr;mon;328;2;4;1;success;-1.8;93.749;-34.6;0.645;5008.7;yes
+24;blue-collar;single;high.school;no;no;no;cellular;apr;mon;125;2;999;1;failure;-1.8;93.749;-34.6;0.645;5008.7;no
+71;retired;married;basic.4y;no;no;no;cellular;apr;mon;117;3;999;0;nonexistent;-1.8;93.749;-34.6;0.645;5008.7;no
+29;technician;married;university.degree;no;no;no;cellular;apr;mon;135;3;999;1;failure;-1.8;93.749;-34.6;0.645;5008.7;no
+24;blue-collar;single;high.school;no;yes;no;cellular;apr;mon;135;1;999;1;failure;-1.8;93.749;-34.6;0.645;5008.7;no
+27;student;single;university.degree;no;yes;yes;cellular;apr;tue;147;2;999;1;failure;-1.8;93.749;-34.6;0.646;5008.7;no
+39;management;married;university.degree;no;no;no;telephone;apr;tue;325;1;999;2;failure;-1.8;93.749;-34.6;0.646;5008.7;yes
+24;student;single;basic.9y;no;yes;no;cellular;apr;tue;345;1;999;0;nonexistent;-1.8;93.749;-34.6;0.646;5008.7;no
+24;student;single;basic.9y;no;yes;no;cellular;apr;tue;252;1;999;1;failure;-1.8;93.749;-34.6;0.646;5008.7;no
+27;admin.;single;university.degree;no;yes;no;cellular;apr;tue;605;1;999;0;nonexistent;-1.8;93.749;-34.6;0.646;5008.7;no
+37;admin.;married;high.school;no;no;no;telephone;apr;tue;426;2;999;0;nonexistent;-1.8;93.749;-34.6;0.646;5008.7;yes
+30;admin.;single;university.degree;no;yes;no;cellular;apr;tue;321;1;999;0;nonexistent;-1.8;93.749;-34.6;0.646;5008.7;yes
+20;student;single;unknown;no;yes;no;cellular;apr;tue;81;3;999;0;nonexistent;-1.8;93.749;-34.6;0.646;5008.7;no
+44;management;married;unknown;no;no;no;telephone;apr;tue;473;2;999;1;failure;-1.8;93.749;-34.6;0.646;5008.7;yes
+29;services;single;high.school;no;no;no;telephone;apr;tue;370;1;999;0;nonexistent;-1.8;93.749;-34.6;0.646;5008.7;yes
+48;technician;single;professional.course;no;yes;no;cellular;apr;tue;159;3;999;0;nonexistent;-1.8;93.749;-34.6;0.646;5008.7;yes
+20;student;single;unknown;no;yes;no;cellular;apr;tue;99;1;999;0;nonexistent;-1.8;93.749;-34.6;0.646;5008.7;no
+52;admin.;married;unknown;no;yes;no;cellular;apr;wed;184;2;10;1;success;-1.8;93.749;-34.6;0.654;5008.7;yes
+52;admin.;married;unknown;no;yes;no;telephone;apr;wed;403;1;6;1;success;-1.8;93.749;-34.6;0.654;5008.7;yes
+28;admin.;single;unknown;no;yes;no;cellular;apr;wed;545;2;6;4;success;-1.8;93.749;-34.6;0.654;5008.7;yes
+33;admin.;married;university.degree;no;yes;no;cellular;apr;wed;623;1;6;1;success;-1.8;93.749;-34.6;0.654;5008.7;yes
+52;admin.;married;unknown;no;no;no;cellular;apr;wed;387;2;999;0;nonexistent;-1.8;93.749;-34.6;0.654;5008.7;yes
+50;admin.;married;basic.9y;no;yes;no;cellular;apr;thu;717;3;999;0;nonexistent;-1.8;93.749;-34.6;0.659;5008.7;yes
+33;admin.;married;university.degree;no;no;no;cellular;apr;thu;157;6;999;0;nonexistent;-1.8;93.749;-34.6;0.659;5008.7;no
+29;services;single;unknown;no;yes;no;cellular;apr;thu;226;2;999;0;nonexistent;-1.8;93.749;-34.6;0.659;5008.7;yes
+38;admin.;single;high.school;no;yes;no;cellular;apr;thu;882;1;6;1;success;-1.8;93.749;-34.6;0.659;5008.7;yes
+61;retired;married;basic.9y;no;no;no;cellular;apr;thu;165;2;999;0;nonexistent;-1.8;93.749;-34.6;0.659;5008.7;no
+31;self-employed;single;university.degree;no;no;no;cellular;apr;thu;210;1;999;0;nonexistent;-1.8;93.749;-34.6;0.659;5008.7;yes
+36;admin.;married;unknown;no;no;no;cellular;apr;thu;91;1;999;0;nonexistent;-1.8;93.749;-34.6;0.659;5008.7;no
+37;technician;married;professional.course;no;no;no;cellular;apr;thu;277;1;18;1;success;-1.8;93.749;-34.6;0.659;5008.7;yes
+26;admin.;single;university.degree;no;yes;no;cellular;apr;thu;115;2;999;1;failure;-1.8;93.749;-34.6;0.659;5008.7;no
+35;admin.;single;university.degree;no;yes;no;cellular;apr;thu;388;2;999;0;nonexistent;-1.8;93.749;-34.6;0.659;5008.7;yes
+29;services;single;unknown;no;yes;no;cellular;apr;thu;1241;5;999;0;nonexistent;-1.8;93.749;-34.6;0.659;5008.7;yes
+36;unemployed;married;professional.course;no;yes;no;cellular;apr;thu;835;7;999;0;nonexistent;-1.8;93.749;-34.6;0.659;5008.7;no
+52;admin.;married;university.degree;no;no;yes;telephone;apr;thu;395;3;999;0;nonexistent;-1.8;93.749;-34.6;0.659;5008.7;yes
+33;admin.;single;university.degree;no;yes;no;cellular;apr;thu;305;3;999;0;nonexistent;-1.8;93.749;-34.6;0.659;5008.7;yes
+38;admin.;single;high.school;no;yes;yes;cellular;apr;thu;449;1;13;1;success;-1.8;93.749;-34.6;0.659;5008.7;yes
+34;technician;married;professional.course;no;yes;no;cellular;apr;fri;211;2;6;2;success;-1.8;93.749;-34.6;0.663;5008.7;no
+36;blue-collar;married;unknown;no;no;no;cellular;apr;fri;315;1;6;1;success;-1.8;93.749;-34.6;0.663;5008.7;yes
+30;management;married;university.degree;no;yes;no;cellular;apr;fri;242;4;999;1;failure;-1.8;93.749;-34.6;0.663;5008.7;no
+20;student;single;unknown;no;no;no;cellular;apr;fri;342;2;999;0;nonexistent;-1.8;93.749;-34.6;0.663;5008.7;no
+35;admin.;married;university.degree;no;no;yes;cellular;apr;fri;262;3;999;1;failure;-1.8;93.749;-34.6;0.663;5008.7;yes
+36;blue-collar;married;unknown;no;yes;no;cellular;apr;fri;572;2;999;0;nonexistent;-1.8;93.749;-34.6;0.663;5008.7;no
+28;technician;single;university.degree;no;no;yes;cellular;apr;fri;97;1;999;1;failure;-1.8;93.749;-34.6;0.663;5008.7;no
+28;technician;single;university.degree;no;yes;no;cellular;apr;fri;148;1;999;0;nonexistent;-1.8;93.749;-34.6;0.663;5008.7;no
+31;student;single;university.degree;no;yes;yes;cellular;apr;fri;183;1;6;2;success;-1.8;93.749;-34.6;0.663;5008.7;yes
+21;student;single;high.school;no;yes;no;cellular;apr;fri;551;1;999;0;nonexistent;-1.8;93.749;-34.6;0.663;5008.7;yes
+20;student;single;unknown;no;yes;yes;cellular;apr;fri;180;2;999;0;nonexistent;-1.8;93.749;-34.6;0.663;5008.7;no
+37;admin.;married;university.degree;no;no;no;cellular;may;tue;106;1;999;2;failure;-1.8;93.876;-40.0;0.668;5008.7;no
+39;admin.;married;high.school;no;yes;no;cellular;may;tue;552;1;3;2;success;-1.8;93.876;-40.0;0.668;5008.7;yes
+52;admin.;married;university.degree;no;no;no;cellular;may;tue;131;1;3;2;success;-1.8;93.876;-40.0;0.668;5008.7;no
+29;admin.;single;university.degree;no;no;no;cellular;may;tue;85;1;999;2;failure;-1.8;93.876;-40.0;0.668;5008.7;no
+30;admin.;single;university.degree;no;no;no;cellular;may;tue;113;1;6;1;success;-1.8;93.876;-40.0;0.668;5008.7;no
+30;blue-collar;single;professional.course;no;no;no;cellular;may;tue;165;1;999;1;failure;-1.8;93.876;-40.0;0.668;5008.7;no
+48;blue-collar;married;basic.9y;no;yes;no;cellular;may;tue;268;1;3;3;success;-1.8;93.876;-40.0;0.668;5008.7;yes
+18;student;single;unknown;no;yes;no;telephone;may;tue;421;1;3;1;success;-1.8;93.876;-40.0;0.668;5008.7;yes
+18;student;single;unknown;no;yes;no;cellular;may;tue;489;1;6;1;success;-1.8;93.876;-40.0;0.668;5008.7;yes
+79;retired;married;basic.9y;no;no;no;cellular;may;tue;104;1;999;2;failure;-1.8;93.876;-40.0;0.668;5008.7;no
+79;retired;married;basic.9y;no;no;no;cellular;may;tue;126;1;999;0;nonexistent;-1.8;93.876;-40.0;0.668;5008.7;no
+43;technician;single;professional.course;no;no;no;cellular;may;tue;164;2;3;2;success;-1.8;93.876;-40.0;0.668;5008.7;yes
+52;admin.;married;university.degree;no;yes;no;cellular;may;tue;556;2;999;0;nonexistent;-1.8;93.876;-40.0;0.668;5008.7;yes
+24;student;single;high.school;no;yes;no;cellular;may;tue;153;2;6;2;success;-1.8;93.876;-40.0;0.668;5008.7;yes
+52;technician;married;university.degree;no;no;yes;telephone;may;tue;209;1;2;2;success;-1.8;93.876;-40.0;0.668;5008.7;yes
+19;student;single;basic.9y;no;yes;no;cellular;may;tue;203;1;999;3;failure;-1.8;93.876;-40.0;0.668;5008.7;no
+29;student;single;high.school;no;no;no;cellular;may;tue;104;1;7;1;success;-1.8;93.876;-40.0;0.668;5008.7;no
+51;services;married;high.school;no;no;no;cellular;may;tue;1267;1;999;1;failure;-1.8;93.876;-40.0;0.668;5008.7;yes
+32;student;single;unknown;no;yes;no;cellular;may;wed;188;2;999;0;nonexistent;-1.8;93.876;-40.0;0.672;5008.7;yes
+37;housemaid;married;university.degree;no;yes;no;cellular;may;wed;100;1;999;0;nonexistent;-1.8;93.876;-40.0;0.672;5008.7;no
+24;student;single;high.school;no;no;no;cellular;may;wed;389;1;7;2;success;-1.8;93.876;-40.0;0.672;5008.7;yes
+24;student;single;high.school;no;yes;no;cellular;may;wed;329;1;1;2;success;-1.8;93.876;-40.0;0.672;5008.7;no
+24;student;single;high.school;no;yes;no;cellular;may;wed;173;1;999;3;failure;-1.8;93.876;-40.0;0.672;5008.7;no
+24;student;single;high.school;no;yes;no;cellular;may;wed;258;1;3;5;success;-1.8;93.876;-40.0;0.672;5008.7;yes
+52;admin.;married;university.degree;no;yes;no;cellular;may;wed;338;1;999;0;nonexistent;-1.8;93.876;-40.0;0.672;5008.7;yes
+18;student;single;unknown;no;no;no;telephone;may;wed;110;1;999;2;failure;-1.8;93.876;-40.0;0.672;5008.7;no
+29;admin.;single;university.degree;no;no;no;cellular;may;wed;720;1;6;2;failure;-1.8;93.876;-40.0;0.672;5008.7;no
+29;admin.;single;university.degree;no;yes;no;cellular;may;wed;232;1;999;1;failure;-1.8;93.876;-40.0;0.672;5008.7;yes
+44;blue-collar;single;basic.6y;no;no;no;telephone;may;wed;174;1;999;0;nonexistent;-1.8;93.876;-40.0;0.672;5008.7;no
+27;student;married;high.school;no;yes;no;telephone;may;wed;54;1;999;0;nonexistent;-1.8;93.876;-40.0;0.672;5008.7;no
+20;student;single;unknown;no;yes;no;telephone;may;wed;510;4;999;0;nonexistent;-1.8;93.876;-40.0;0.672;5008.7;yes
+48;admin.;single;university.degree;no;yes;no;cellular;may;wed;121;4;999;1;failure;-1.8;93.876;-40.0;0.672;5008.7;no
+46;management;married;basic.9y;no;yes;no;telephone;may;wed;16;1;999;0;nonexistent;-1.8;93.876;-40.0;0.672;5008.7;no
+72;retired;married;basic.4y;no;yes;no;cellular;may;wed;443;4;999;0;nonexistent;-1.8;93.876;-40.0;0.672;5008.7;yes
+36;technician;married;professional.course;no;yes;no;cellular;may;thu;109;1;999;1;failure;-1.8;93.876;-40.0;0.677;5008.7;no
+37;technician;married;university.degree;no;yes;no;cellular;may;thu;246;1;2;4;success;-1.8;93.876;-40.0;0.677;5008.7;yes
+33;services;married;high.school;no;no;no;cellular;may;thu;192;1;999;1;failure;-1.8;93.876;-40.0;0.677;5008.7;yes
+52;admin.;married;university.degree;no;yes;yes;cellular;may;thu;250;1;3;5;success;-1.8;93.876;-40.0;0.677;5008.7;yes
+52;admin.;married;university.degree;no;no;no;cellular;may;thu;195;1;999;0;nonexistent;-1.8;93.876;-40.0;0.677;5008.7;yes
+52;admin.;married;university.degree;no;no;no;cellular;may;thu;613;1;3;2;success;-1.8;93.876;-40.0;0.677;5008.7;yes
+52;admin.;married;university.degree;no;yes;no;cellular;may;thu;227;2;999;0;nonexistent;-1.8;93.876;-40.0;0.677;5008.7;no
+19;student;single;basic.4y;no;yes;no;cellular;may;thu;220;1;999;1;failure;-1.8;93.876;-40.0;0.677;5008.7;no
+18;student;single;unknown;no;yes;no;cellular;may;thu;183;1;7;2;success;-1.8;93.876;-40.0;0.677;5008.7;no
+52;technician;married;university.degree;no;no;no;cellular;may;thu;211;1;3;4;success;-1.8;93.876;-40.0;0.677;5008.7;yes
+62;retired;married;professional.course;no;no;no;telephone;may;thu;111;1;999;0;nonexistent;-1.8;93.876;-40.0;0.677;5008.7;no
+31;student;single;unknown;no;no;no;cellular;may;thu;243;2;999;1;failure;-1.8;93.876;-40.0;0.677;5008.7;yes
+78;retired;divorced;basic.4y;no;yes;no;cellular;may;fri;218;2;7;2;success;-1.8;93.876;-40.0;0.682;5008.7;no
+37;management;married;high.school;no;no;no;cellular;may;fri;292;3;999;0;nonexistent;-1.8;93.876;-40.0;0.682;5008.7;yes
+44;technician;married;university.degree;no;yes;no;cellular;may;fri;662;2;2;1;success;-1.8;93.876;-40.0;0.682;5008.7;yes
+30;student;single;high.school;no;no;no;telephone;may;fri;300;3;999;0;nonexistent;-1.8;93.876;-40.0;0.682;5008.7;yes
+44;technician;married;university.degree;no;no;yes;telephone;may;fri;201;2;999;1;failure;-1.8;93.876;-40.0;0.682;5008.7;no
+30;student;single;high.school;no;no;no;cellular;may;fri;226;2;3;2;success;-1.8;93.876;-40.0;0.682;5008.7;yes
+60;retired;married;professional.course;no;yes;no;cellular;may;fri;110;2;999;0;nonexistent;-1.8;93.876;-40.0;0.682;5008.7;no
+44;technician;married;university.degree;no;no;no;cellular;may;fri;113;1;999;1;failure;-1.8;93.876;-40.0;0.682;5008.7;no
+42;retired;single;basic.4y;unknown;yes;yes;cellular;may;fri;116;3;999;0;nonexistent;-1.8;93.876;-40.0;0.682;5008.7;no
+44;admin.;single;university.degree;no;yes;no;cellular;may;fri;211;4;3;1;success;-1.8;93.876;-40.0;0.682;5008.7;yes
+33;blue-collar;married;basic.6y;no;no;no;telephone;may;mon;165;1;999;0;nonexistent;-1.8;93.876;-40.0;0.682;5008.7;no
+82;retired;married;high.school;unknown;yes;no;cellular;may;mon;135;3;999;0;nonexistent;-1.8;93.876;-40.0;0.682;5008.7;no
+22;student;single;unknown;no;yes;no;cellular;may;mon;171;2;3;2;success;-1.8;93.876;-40.0;0.682;5008.7;yes
+38;entrepreneur;married;professional.course;no;no;no;cellular;may;mon;269;5;3;2;success;-1.8;93.876;-40.0;0.682;5008.7;no
+41;admin.;married;university.degree;no;no;no;telephone;may;mon;128;2;999;0;nonexistent;-1.8;93.876;-40.0;0.682;5008.7;no
+38;entrepreneur;married;professional.course;no;yes;no;cellular;may;mon;583;6;2;4;success;-1.8;93.876;-40.0;0.682;5008.7;yes
+46;admin.;single;high.school;no;yes;no;cellular;may;mon;522;6;999;0;nonexistent;-1.8;93.876;-40.0;0.682;5008.7;no
+56;technician;married;professional.course;no;yes;no;telephone;may;mon;483;5;999;0;nonexistent;-1.8;93.876;-40.0;0.682;5008.7;yes
+24;student;single;high.school;no;yes;no;cellular;may;tue;113;2;999;2;failure;-1.8;93.876;-40.0;0.682;5008.7;no
+34;technician;married;unknown;no;yes;no;telephone;may;tue;97;3;999;0;nonexistent;-1.8;93.876;-40.0;0.682;5008.7;no
+54;technician;married;university.degree;no;yes;no;telephone;may;tue;172;5;999;1;failure;-1.8;93.876;-40.0;0.682;5008.7;no
+50;admin.;married;university.degree;no;unknown;unknown;cellular;may;wed;801;1;999;1;failure;-1.8;93.876;-40.0;0.682;5008.7;no
+59;admin.;divorced;basic.4y;no;yes;no;cellular;may;wed;193;1;999;0;nonexistent;-1.8;93.876;-40.0;0.682;5008.7;yes
+58;admin.;married;high.school;no;yes;no;cellular;may;wed;309;1;6;1;success;-1.8;93.876;-40.0;0.682;5008.7;yes
+50;admin.;married;university.degree;no;yes;no;cellular;may;wed;176;2;3;3;success;-1.8;93.876;-40.0;0.682;5008.7;yes
+77;retired;married;university.degree;no;yes;no;cellular;may;wed;152;1;6;4;success;-1.8;93.876;-40.0;0.682;5008.7;yes
+66;blue-collar;married;unknown;no;yes;no;cellular;may;wed;171;2;6;2;success;-1.8;93.876;-40.0;0.682;5008.7;yes
+50;admin.;married;high.school;no;yes;no;cellular;may;wed;333;1;999;2;failure;-1.8;93.876;-40.0;0.682;5008.7;no
+61;management;married;university.degree;no;no;no;cellular;may;wed;228;2;999;1;failure;-1.8;93.876;-40.0;0.682;5008.7;yes
+48;unemployed;married;professional.course;no;no;no;cellular;may;wed;317;1;6;3;success;-1.8;93.876;-40.0;0.682;5008.7;yes
+48;unemployed;married;professional.course;no;yes;no;cellular;may;wed;236;1;6;2;success;-1.8;93.876;-40.0;0.682;5008.7;yes
+50;admin.;married;high.school;no;no;no;cellular;may;wed;208;2;3;5;success;-1.8;93.876;-40.0;0.682;5008.7;no
+40;technician;married;professional.course;no;yes;no;cellular;may;wed;248;1;3;4;success;-1.8;93.876;-40.0;0.682;5008.7;yes
+30;admin.;single;high.school;no;yes;no;cellular;may;wed;144;1;999;1;failure;-1.8;93.876;-40.0;0.682;5008.7;no
+60;admin.;married;unknown;no;yes;no;cellular;may;wed;762;1;6;2;success;-1.8;93.876;-40.0;0.682;5008.7;yes
+48;unemployed;married;professional.course;no;no;no;telephone;may;wed;360;1;6;1;success;-1.8;93.876;-40.0;0.682;5008.7;yes
+77;retired;married;university.degree;no;yes;no;telephone;may;wed;372;1;3;4;success;-1.8;93.876;-40.0;0.682;5008.7;yes
+30;admin.;single;high.school;no;no;no;cellular;may;wed;177;1;13;1;success;-1.8;93.876;-40.0;0.682;5008.7;no
+47;management;married;university.degree;no;yes;no;telephone;may;wed;267;2;3;3;success;-1.8;93.876;-40.0;0.682;5008.7;no
+34;management;single;university.degree;no;yes;no;telephone;may;thu;18;1;999;0;nonexistent;-1.8;93.876;-40.0;0.683;5008.7;no
+45;blue-collar;married;professional.course;no;yes;no;telephone;may;thu;414;1;6;2;success;-1.8;93.876;-40.0;0.683;5008.7;yes
+92;retired;married;unknown;no;yes;no;cellular;may;thu;271;1;6;2;success;-1.8;93.876;-40.0;0.683;5008.7;no
+58;management;married;university.degree;no;no;no;cellular;may;thu;289;1;3;4;success;-1.8;93.876;-40.0;0.683;5008.7;yes
+31;admin.;married;university.degree;no;yes;no;cellular;may;thu;400;1;3;1;success;-1.8;93.876;-40.0;0.683;5008.7;yes
+41;unemployed;married;basic.9y;no;yes;no;cellular;may;thu;306;1;6;4;success;-1.8;93.876;-40.0;0.683;5008.7;yes
+28;admin.;single;high.school;no;yes;no;cellular;may;thu;263;1;6;1;success;-1.8;93.876;-40.0;0.683;5008.7;yes
+29;admin.;single;university.degree;no;no;no;cellular;may;thu;216;1;3;3;success;-1.8;93.876;-40.0;0.683;5008.7;yes
+39;services;married;high.school;no;yes;no;cellular;may;thu;328;2;6;3;success;-1.8;93.876;-40.0;0.683;5008.7;yes
+70;retired;married;basic.4y;no;yes;no;cellular;may;thu;331;1;3;2;success;-1.8;93.876;-40.0;0.683;5008.7;yes
+40;admin.;single;basic.9y;no;yes;no;cellular;may;thu;356;1;2;3;success;-1.8;93.876;-40.0;0.683;5008.7;yes
+40;admin.;single;basic.9y;no;yes;no;cellular;may;thu;234;1;3;3;success;-1.8;93.876;-40.0;0.683;5008.7;yes
+28;admin.;single;high.school;no;yes;no;cellular;may;thu;457;2;999;1;failure;-1.8;93.876;-40.0;0.683;5008.7;no
+60;management;married;unknown;no;yes;no;cellular;may;thu;336;3;3;5;success;-1.8;93.876;-40.0;0.683;5008.7;yes
+29;admin.;married;university.degree;no;yes;yes;cellular;may;fri;567;3;13;2;failure;-1.8;93.876;-40.0;0.684;5008.7;yes
+52;management;married;university.degree;no;no;no;cellular;may;fri;404;2;9;1;success;-1.8;93.876;-40.0;0.684;5008.7;yes
+52;management;married;university.degree;no;no;no;cellular;may;fri;698;5;999;1;failure;-1.8;93.876;-40.0;0.684;5008.7;no
+30;admin.;single;high.school;no;yes;no;cellular;may;fri;532;5;999;0;nonexistent;-1.8;93.876;-40.0;0.684;5008.7;yes
+47;technician;divorced;professional.course;no;no;yes;telephone;may;fri;7;1;999;0;nonexistent;-1.8;93.876;-40.0;0.684;5008.7;no
+32;admin.;married;university.degree;no;no;no;telephone;may;fri;389;4;999;1;failure;-1.8;93.876;-40.0;0.684;5008.7;no
+41;admin.;married;university.degree;no;yes;no;telephone;may;fri;338;3;999;1;failure;-1.8;93.876;-40.0;0.684;5008.7;no
+68;retired;married;basic.4y;no;yes;yes;cellular;may;fri;220;1;6;1;success;-1.8;93.876;-40.0;0.684;5008.7;yes
+33;technician;married;professional.course;no;yes;no;cellular;may;fri;700;4;3;4;success;-1.8;93.876;-40.0;0.684;5008.7;yes
+76;retired;married;basic.4y;no;yes;no;cellular;may;fri;1205;2;6;2;success;-1.8;93.876;-40.0;0.684;5008.7;yes
+65;admin.;married;university.degree;no;yes;no;cellular;may;fri;407;3;999;1;failure;-1.8;93.876;-40.0;0.684;5008.7;yes
+77;retired;married;unknown;no;yes;yes;cellular;may;fri;318;3;999;0;nonexistent;-1.8;93.876;-40.0;0.684;5008.7;no
+33;technician;married;professional.course;no;yes;yes;cellular;may;fri;62;2;999;0;nonexistent;-1.8;93.876;-40.0;0.684;5008.7;no
+52;management;married;university.degree;no;yes;no;cellular;may;fri;787;3;3;3;success;-1.8;93.876;-40.0;0.684;5008.7;yes
+33;admin.;single;university.degree;no;yes;no;cellular;may;fri;396;5;999;0;nonexistent;-1.8;93.876;-40.0;0.684;5008.7;yes
+71;admin.;married;basic.4y;no;yes;yes;cellular;may;fri;466;4;3;2;success;-1.8;93.876;-40.0;0.684;5008.7;yes
+29;student;single;university.degree;no;yes;no;cellular;may;mon;556;1;999;1;failure;-1.8;93.876;-40.0;0.685;5008.7;yes
+63;retired;married;professional.course;no;yes;no;cellular;may;mon;492;1;999;0;nonexistent;-1.8;93.876;-40.0;0.685;5008.7;no
+33;admin.;married;university.degree;no;yes;no;cellular;may;mon;740;1;3;2;success;-1.8;93.876;-40.0;0.685;5008.7;yes
+33;admin.;married;university.degree;no;yes;yes;cellular;may;mon;312;2;999;0;nonexistent;-1.8;93.876;-40.0;0.685;5008.7;no
+54;admin.;married;professional.course;no;no;no;telephone;may;mon;564;5;999;0;nonexistent;-1.8;93.876;-40.0;0.685;5008.7;no
+60;blue-collar;married;basic.4y;no;yes;no;cellular;may;mon;272;2;6;2;success;-1.8;93.876;-40.0;0.685;5008.7;yes
+33;admin.;married;university.degree;no;no;no;cellular;may;mon;157;2;15;3;failure;-1.8;93.876;-40.0;0.685;5008.7;no
+63;retired;married;professional.course;no;yes;yes;cellular;may;mon;444;2;14;1;success;-1.8;93.876;-40.0;0.685;5008.7;yes
+33;technician;married;university.degree;no;yes;no;cellular;may;mon;508;1;999;0;nonexistent;-1.8;93.876;-40.0;0.685;5008.7;yes
+74;retired;divorced;university.degree;no;yes;no;cellular;may;tue;387;1;999;0;nonexistent;-1.8;93.876;-40.0;0.688;5008.7;yes
+47;services;divorced;university.degree;no;yes;yes;cellular;may;tue;336;1;15;3;failure;-1.8;93.876;-40.0;0.688;5008.7;yes
+50;unemployed;married;high.school;no;no;no;telephone;may;tue;353;3;999;0;nonexistent;-1.8;93.876;-40.0;0.688;5008.7;yes
+29;admin.;married;high.school;no;no;no;telephone;may;wed;30;1;999;0;nonexistent;-1.8;93.876;-40.0;0.69;5008.7;no
+48;self-employed;divorced;university.degree;no;no;no;cellular;may;wed;661;3;999;0;nonexistent;-1.8;93.876;-40.0;0.69;5008.7;yes
+28;student;single;high.school;no;no;yes;cellular;may;wed;472;1;3;5;success;-1.8;93.876;-40.0;0.69;5008.7;yes
+68;retired;married;professional.course;no;unknown;unknown;cellular;may;thu;237;7;999;2;failure;-1.8;93.876;-40.0;0.692;5008.7;no
+68;retired;married;professional.course;no;no;yes;cellular;may;thu;420;1;999;1;failure;-1.8;93.876;-40.0;0.692;5008.7;yes
+45;unknown;married;university.degree;no;yes;no;cellular;may;thu;254;1;999;1;failure;-1.8;93.876;-40.0;0.692;5008.7;no
+45;management;married;basic.9y;no;yes;no;cellular;may;thu;165;1;999;3;failure;-1.8;93.876;-40.0;0.692;5008.7;no
+46;admin.;married;university.degree;no;no;no;cellular;may;thu;154;1;999;0;nonexistent;-1.8;93.876;-40.0;0.692;5008.7;yes
+31;admin.;married;professional.course;no;yes;yes;cellular;may;thu;291;2;999;0;nonexistent;-1.8;93.876;-40.0;0.692;5008.7;yes
+58;management;married;university.degree;no;yes;no;cellular;may;thu;342;2;999;0;nonexistent;-1.8;93.876;-40.0;0.692;5008.7;yes
+31;unemployed;single;high.school;no;no;no;cellular;may;thu;339;2;999;0;nonexistent;-1.8;93.876;-40.0;0.692;5008.7;no
+34;admin.;married;high.school;no;yes;no;cellular;may;thu;321;4;999;3;failure;-1.8;93.876;-40.0;0.692;5008.7;no
+46;admin.;married;university.degree;no;no;no;telephone;may;thu;351;3;999;0;nonexistent;-1.8;93.876;-40.0;0.692;5008.7;yes
+28;student;single;university.degree;no;unknown;unknown;cellular;may;fri;226;3;3;2;success;-1.8;93.876;-40.0;0.695;5008.7;yes
+31;services;single;basic.9y;no;yes;no;cellular;may;fri;214;4;999;0;nonexistent;-1.8;93.876;-40.0;0.695;5008.7;yes
+31;services;single;basic.9y;no;unknown;unknown;cellular;may;fri;429;1;999;3;failure;-1.8;93.876;-40.0;0.695;5008.7;no
+61;blue-collar;married;basic.6y;no;yes;yes;cellular;may;fri;403;1;3;2;success;-1.8;93.876;-40.0;0.695;5008.7;yes
+41;management;married;unknown;no;yes;no;cellular;may;fri;588;1;18;2;failure;-1.8;93.876;-40.0;0.695;5008.7;yes
+34;admin.;married;university.degree;no;no;no;cellular;may;fri;145;1;999;2;failure;-1.8;93.876;-40.0;0.695;5008.7;no
+34;admin.;married;university.degree;no;yes;no;cellular;may;fri;407;3;8;3;failure;-1.8;93.876;-40.0;0.695;5008.7;yes
+29;services;single;high.school;no;yes;no;cellular;may;fri;122;1;999;2;failure;-1.8;93.876;-40.0;0.695;5008.7;no
+45;self-employed;married;high.school;no;no;no;cellular;may;fri;374;1;999;1;failure;-1.8;93.876;-40.0;0.695;5008.7;yes
+28;student;single;university.degree;no;unknown;unknown;cellular;may;fri;1027;2;999;0;nonexistent;-1.8;93.876;-40.0;0.695;5008.7;yes
+24;unemployed;single;high.school;no;no;yes;cellular;may;mon;375;2;999;0;nonexistent;-1.8;93.876;-40.0;0.697;5008.7;yes
+80;retired;married;basic.4y;no;no;no;cellular;may;mon;382;1;3;3;success;-1.8;93.876;-40.0;0.697;5008.7;yes
+51;management;married;university.degree;no;yes;no;cellular;may;mon;131;2;999;4;failure;-1.8;93.876;-40.0;0.697;5008.7;no
+36;technician;divorced;professional.course;no;yes;no;cellular;may;mon;341;7;999;0;nonexistent;-1.8;93.876;-40.0;0.697;5008.7;no
+79;retired;married;basic.9y;no;yes;yes;cellular;may;mon;260;1;999;1;failure;-1.8;93.876;-40.0;0.697;5008.7;no
+24;unemployed;single;high.school;no;yes;no;cellular;may;mon;699;1;13;2;failure;-1.8;93.876;-40.0;0.697;5008.7;yes
+76;retired;divorced;basic.4y;no;yes;no;cellular;may;mon;168;1;999;1;failure;-1.8;93.876;-40.0;0.697;5008.7;yes
+45;technician;single;university.degree;no;no;no;cellular;may;tue;146;2;999;1;failure;-1.8;93.876;-40.0;0.697;5008.7;yes
+20;student;single;unknown;no;no;no;cellular;may;tue;530;2;3;5;success;-1.8;93.876;-40.0;0.697;5008.7;yes
+20;student;single;unknown;no;no;no;cellular;may;tue;202;2;12;1;success;-1.8;93.876;-40.0;0.697;5008.7;yes
+36;admin.;married;university.degree;no;no;no;cellular;may;tue;641;4;999;0;nonexistent;-1.8;93.876;-40.0;0.697;5008.7;yes
+36;admin.;married;university.degree;no;yes;no;cellular;may;tue;196;1;999;0;nonexistent;-1.8;93.876;-40.0;0.697;5008.7;yes
+77;retired;divorced;basic.4y;no;no;no;cellular;may;tue;393;1;999;0;nonexistent;-1.8;93.876;-40.0;0.697;5008.7;yes
+22;student;single;high.school;no;yes;no;cellular;may;tue;272;1;999;0;nonexistent;-1.8;93.876;-40.0;0.697;5008.7;yes
+46;blue-collar;married;professional.course;no;yes;no;cellular;may;wed;410;1;999;0;nonexistent;-1.8;93.876;-40.0;0.697;5008.7;yes
+69;retired;married;high.school;no;no;no;cellular;may;wed;289;1;10;1;success;-1.8;93.876;-40.0;0.697;5008.7;yes
+92;retired;divorced;unknown;unknown;no;no;cellular;may;wed;405;3;999;1;failure;-1.8;93.876;-40.0;0.697;5008.7;yes
+64;housemaid;married;unknown;no;yes;no;telephone;may;wed;671;3;999;0;nonexistent;-1.8;93.876;-40.0;0.697;5008.7;yes
+31;technician;divorced;university.degree;no;no;no;cellular;may;wed;175;3;7;3;success;-1.8;93.876;-40.0;0.697;5008.7;yes
+84;retired;married;basic.9y;no;yes;no;cellular;may;wed;267;1;999;1;failure;-1.8;93.876;-40.0;0.697;5008.7;no
+28;admin.;single;university.degree;no;no;no;cellular;may;wed;135;2;3;2;success;-1.8;93.876;-40.0;0.697;5008.7;yes
+28;admin.;married;high.school;no;no;yes;cellular;may;wed;530;2;999;0;nonexistent;-1.8;93.876;-40.0;0.697;5008.7;yes
+70;retired;divorced;high.school;no;yes;no;telephone;may;wed;283;2;4;2;success;-1.8;93.876;-40.0;0.697;5008.7;yes
+29;services;single;high.school;no;yes;no;telephone;may;thu;93;1;999;0;nonexistent;-1.8;93.876;-40.0;0.699;5008.7;yes
+60;retired;married;high.school;no;no;no;cellular;may;thu;181;3;6;1;success;-1.8;93.876;-40.0;0.699;5008.7;yes
+49;technician;married;university.degree;no;no;no;cellular;may;thu;188;1;999;1;failure;-1.8;93.876;-40.0;0.699;5008.7;no
+49;technician;married;university.degree;no;yes;no;cellular;may;thu;820;1;999;0;nonexistent;-1.8;93.876;-40.0;0.699;5008.7;yes
+36;admin.;married;university.degree;no;yes;yes;cellular;may;thu;1178;1;6;2;success;-1.8;93.876;-40.0;0.699;5008.7;yes
+37;student;divorced;university.degree;no;yes;no;cellular;may;thu;489;1;999;1;failure;-1.8;93.876;-40.0;0.699;5008.7;yes
+40;blue-collar;divorced;basic.9y;no;yes;no;telephone;may;thu;57;1;999;0;nonexistent;-1.8;93.876;-40.0;0.699;5008.7;no
+43;blue-collar;single;high.school;no;no;yes;telephone;may;thu;137;1;999;0;nonexistent;-1.8;93.876;-40.0;0.699;5008.7;no
+43;technician;married;professional.course;no;no;no;cellular;may;thu;460;1;999;1;failure;-1.8;93.876;-40.0;0.699;5008.7;yes
+34;technician;married;professional.course;no;yes;no;telephone;may;thu;24;1;999;0;nonexistent;-1.8;93.876;-40.0;0.699;5008.7;no
+54;admin.;divorced;basic.9y;no;yes;no;telephone;may;thu;74;1;999;0;nonexistent;-1.8;93.876;-40.0;0.699;5008.7;no
+79;retired;married;high.school;no;yes;no;cellular;may;thu;196;2;999;0;nonexistent;-1.8;93.876;-40.0;0.699;5008.7;no
+38;admin.;single;basic.9y;no;no;no;cellular;may;thu;275;2;999;0;nonexistent;-1.8;93.876;-40.0;0.699;5008.7;yes
+37;student;divorced;university.degree;no;yes;yes;cellular;may;thu;417;2;999;0;nonexistent;-1.8;93.876;-40.0;0.699;5008.7;yes
+61;admin.;married;unknown;no;no;no;cellular;may;thu;173;3;9;2;success;-1.8;93.876;-40.0;0.699;5008.7;yes
+22;student;single;high.school;unknown;yes;yes;telephone;may;thu;214;2;1;1;success;-1.8;93.876;-40.0;0.699;5008.7;yes
+35;unemployed;married;high.school;no;yes;no;telephone;may;fri;43;1;999;2;failure;-1.8;93.876;-40.0;0.699;5008.7;no
+33;admin.;married;university.degree;no;yes;no;cellular;may;fri;101;2;999;3;failure;-1.8;93.876;-40.0;0.699;5008.7;no
+23;unemployed;married;high.school;no;no;no;telephone;may;fri;35;1;999;0;nonexistent;-1.8;93.876;-40.0;0.699;5008.7;no
+32;services;single;university.degree;no;no;yes;cellular;may;fri;473;3;999;0;nonexistent;-1.8;93.876;-40.0;0.699;5008.7;yes
+25;technician;single;high.school;no;yes;no;cellular;may;fri;581;3;999;2;failure;-1.8;93.876;-40.0;0.699;5008.7;no
+74;retired;married;professional.course;no;no;no;cellular;may;fri;309;4;999;3;failure;-1.8;93.876;-40.0;0.699;5008.7;no
+29;technician;married;professional.course;no;no;no;cellular;may;fri;538;2;999;2;failure;-1.8;93.876;-40.0;0.699;5008.7;yes
+30;admin.;single;university.degree;no;unknown;unknown;cellular;may;fri;466;3;999;0;nonexistent;-1.8;93.876;-40.0;0.699;5008.7;yes
+26;unemployed;married;basic.4y;no;no;no;telephone;may;fri;29;1;999;0;nonexistent;-1.8;93.876;-40.0;0.699;5008.7;no
+72;retired;single;university.degree;no;yes;yes;cellular;may;fri;589;3;999;0;nonexistent;-1.8;93.876;-40.0;0.699;5008.7;no
+33;admin.;married;university.degree;no;yes;no;cellular;may;fri;663;3;999;0;nonexistent;-1.8;93.876;-40.0;0.699;5008.7;yes
+72;retired;single;university.degree;no;no;no;cellular;may;fri;114;3;999;0;nonexistent;-1.8;93.876;-40.0;0.699;5008.7;no
+30;admin.;married;university.degree;no;no;yes;cellular;may;mon;85;2;9;2;success;-1.8;93.876;-40.0;0.701;5008.7;no
+49;technician;married;professional.course;no;yes;no;cellular;may;mon;113;1;999;0;nonexistent;-1.8;93.876;-40.0;0.701;5008.7;no
+31;unknown;single;high.school;no;yes;yes;telephone;may;mon;664;1;2;1;success;-1.8;93.876;-40.0;0.701;5008.7;no
+56;unemployed;married;basic.9y;no;no;no;cellular;may;mon;540;1;999;1;failure;-1.8;93.876;-40.0;0.701;5008.7;yes
+29;technician;single;high.school;no;no;no;cellular;may;mon;158;1;13;3;failure;-1.8;93.876;-40.0;0.701;5008.7;no
+27;student;single;basic.9y;no;yes;yes;cellular;may;mon;775;1;999;0;nonexistent;-1.8;93.876;-40.0;0.701;5008.7;yes
+47;admin.;single;university.degree;no;yes;yes;cellular;may;mon;178;1;999;0;nonexistent;-1.8;93.876;-40.0;0.701;5008.7;no
+31;unknown;single;high.school;no;no;no;cellular;may;mon;392;1;999;0;nonexistent;-1.8;93.876;-40.0;0.701;5008.7;yes
+31;unknown;single;high.school;no;no;no;cellular;may;mon;140;5;6;2;success;-1.8;93.876;-40.0;0.701;5008.7;no
+49;technician;single;university.degree;no;no;no;telephone;may;mon;8;1;999;0;nonexistent;-1.8;93.876;-40.0;0.701;5008.7;no
+42;management;single;high.school;no;yes;no;telephone;may;mon;113;1;999;0;nonexistent;-1.8;93.876;-40.0;0.701;5008.7;no
+47;admin.;single;university.degree;no;yes;no;cellular;jun;tue;119;1;999;4;failure;-1.7;94.055;-39.8;0.702;4991.6;no
+37;admin.;single;university.degree;no;yes;yes;cellular;jun;tue;209;3;999;0;nonexistent;-1.7;94.055;-39.8;0.702;4991.6;no
+29;admin.;married;university.degree;no;yes;no;cellular;jun;tue;201;1;999;0;nonexistent;-1.7;94.055;-39.8;0.702;4991.6;yes
+29;blue-collar;single;basic.9y;no;no;no;telephone;jun;tue;1563;1;6;2;success;-1.7;94.055;-39.8;0.702;4991.6;no
+25;services;single;unknown;no;yes;no;cellular;jun;tue;318;1;999;0;nonexistent;-1.7;94.055;-39.8;0.702;4991.6;yes
+25;services;single;unknown;no;yes;no;cellular;jun;tue;516;1;13;2;failure;-1.7;94.055;-39.8;0.702;4991.6;yes
+76;housemaid;married;basic.4y;no;yes;no;cellular;jun;tue;326;1;999;1;failure;-1.7;94.055;-39.8;0.702;4991.6;yes
+25;services;single;unknown;no;yes;no;cellular;jun;tue;154;2;3;3;success;-1.7;94.055;-39.8;0.702;4991.6;yes
+25;services;single;unknown;no;yes;no;cellular;jun;tue;383;2;999;2;failure;-1.7;94.055;-39.8;0.702;4991.6;no
+39;admin.;married;high.school;no;yes;no;cellular;jun;tue;165;2;999;1;failure;-1.7;94.055;-39.8;0.702;4991.6;no
+28;services;married;high.school;no;yes;yes;telephone;jun;tue;12;1;999;0;nonexistent;-1.7;94.055;-39.8;0.702;4991.6;no
+29;admin.;married;university.degree;no;no;yes;cellular;jun;tue;347;3;5;1;success;-1.7;94.055;-39.8;0.702;4991.6;yes
+23;technician;single;professional.course;unknown;yes;yes;cellular;jun;tue;421;1;4;3;success;-1.7;94.055;-39.8;0.702;4991.6;no
+59;retired;divorced;professional.course;no;no;no;telephone;jun;tue;8;1;999;1;failure;-1.7;94.055;-39.8;0.702;4991.6;no
+30;technician;single;professional.course;no;no;no;telephone;jun;tue;8;1;999;0;nonexistent;-1.7;94.055;-39.8;0.702;4991.6;no
+76;housemaid;married;basic.4y;no;no;no;cellular;jun;tue;296;5;999;0;nonexistent;-1.7;94.055;-39.8;0.702;4991.6;yes
+51;technician;married;university.degree;no;yes;no;cellular;jun;tue;303;1;10;1;success;-1.7;94.055;-39.8;0.702;4991.6;yes
+39;technician;married;university.degree;no;no;yes;cellular;jun;tue;434;2;999;1;failure;-1.7;94.055;-39.8;0.702;4991.6;yes
+20;technician;single;professional.course;no;yes;no;telephone;jun;tue;52;1;999;1;failure;-1.7;94.055;-39.8;0.702;4991.6;no
+40;blue-collar;married;basic.6y;no;yes;no;telephone;jun;tue;5;1;999;0;nonexistent;-1.7;94.055;-39.8;0.702;4991.6;no
+52;admin.;divorced;university.degree;no;yes;no;telephone;jun;tue;36;1;999;0;nonexistent;-1.7;94.055;-39.8;0.702;4991.6;no
+34;blue-collar;married;basic.9y;no;no;no;telephone;jun;tue;7;1;999;0;nonexistent;-1.7;94.055;-39.8;0.702;4991.6;no
+22;admin.;single;university.degree;no;no;no;cellular;jun;wed;407;1;3;1;success;-1.7;94.055;-39.8;0.704;4991.6;yes
+48;admin.;divorced;high.school;no;no;no;cellular;jun;wed;657;1;6;1;success;-1.7;94.055;-39.8;0.704;4991.6;yes
+29;technician;single;professional.course;no;yes;no;cellular;jun;wed;226;2;6;1;success;-1.7;94.055;-39.8;0.704;4991.6;yes
+29;admin.;single;university.degree;no;yes;no;cellular;jun;wed;147;1;999;2;failure;-1.7;94.055;-39.8;0.704;4991.6;no
+34;admin.;married;high.school;no;yes;no;cellular;jun;wed;238;1;6;2;success;-1.7;94.055;-39.8;0.704;4991.6;yes
+34;admin.;married;high.school;no;yes;no;cellular;jun;wed;161;1;5;1;success;-1.7;94.055;-39.8;0.704;4991.6;no
+32;unemployed;single;professional.course;no;yes;yes;cellular;jun;wed;310;1;999;0;nonexistent;-1.7;94.055;-39.8;0.704;4991.6;yes
+31;services;married;high.school;no;no;yes;telephone;jun;fri;35;1;999;0;nonexistent;-1.7;94.055;-39.8;0.707;4991.6;no
+52;self-employed;married;university.degree;no;yes;no;telephone;jun;fri;32;1;999;0;nonexistent;-1.7;94.055;-39.8;0.707;4991.6;no
+38;blue-collar;married;basic.6y;no;no;yes;cellular;jun;fri;148;2;3;2;success;-1.7;94.055;-39.8;0.707;4991.6;no
+38;blue-collar;married;basic.6y;no;no;no;cellular;jun;fri;346;2;5;3;success;-1.7;94.055;-39.8;0.707;4991.6;no
+38;blue-collar;married;basic.6y;no;yes;no;cellular;jun;fri;106;1;999;2;failure;-1.7;94.055;-39.8;0.707;4991.6;no
+29;services;single;high.school;no;no;yes;telephone;jun;mon;6;1;999;0;nonexistent;-1.7;94.055;-39.8;0.711;4991.6;no
+28;admin.;married;high.school;no;no;yes;telephone;jun;mon;13;1;999;0;nonexistent;-1.7;94.055;-39.8;0.711;4991.6;no
+47;admin.;divorced;high.school;no;yes;no;telephone;jun;mon;302;1;999;0;nonexistent;-1.7;94.055;-39.8;0.711;4991.6;yes
+48;admin.;married;high.school;no;yes;no;telephone;jun;mon;54;1;999;0;nonexistent;-1.7;94.055;-39.8;0.711;4991.6;no
+32;blue-collar;single;basic.9y;no;yes;no;telephone;jun;tue;29;1;999;0;nonexistent;-1.7;94.055;-39.8;0.713;4991.6;no
+35;technician;single;professional.course;no;no;no;telephone;jun;tue;149;1;999;0;nonexistent;-1.7;94.055;-39.8;0.713;4991.6;no
+35;technician;single;professional.course;no;yes;no;cellular;jun;tue;187;1;6;2;success;-1.7;94.055;-39.8;0.713;4991.6;yes
+47;blue-collar;married;basic.9y;no;unknown;unknown;cellular;jun;tue;380;1;999;0;nonexistent;-1.7;94.055;-39.8;0.713;4991.6;yes
+47;blue-collar;married;basic.9y;no;no;no;cellular;jun;tue;544;1;999;0;nonexistent;-1.7;94.055;-39.8;0.713;4991.6;no
+21;student;single;high.school;no;yes;no;telephone;jun;tue;30;1;14;2;success;-1.7;94.055;-39.8;0.713;4991.6;no
+29;unemployed;single;university.degree;no;yes;no;telephone;jun;tue;198;1;999;0;nonexistent;-1.7;94.055;-39.8;0.713;4991.6;no
+26;entrepreneur;single;high.school;no;no;no;telephone;jun;tue;49;1;999;0;nonexistent;-1.7;94.055;-39.8;0.713;4991.6;no
+37;unemployed;married;high.school;no;yes;no;telephone;jun;tue;29;1;999;0;nonexistent;-1.7;94.055;-39.8;0.713;4991.6;no
+34;technician;married;high.school;no;yes;no;cellular;jun;wed;190;1;3;4;success;-1.7;94.055;-39.8;0.715;4991.6;yes
+29;admin.;single;university.degree;no;yes;no;cellular;jun;wed;200;1;6;3;success;-1.7;94.055;-39.8;0.715;4991.6;yes
+34;admin.;married;university.degree;no;no;no;cellular;jun;wed;150;1;3;2;success;-1.7;94.055;-39.8;0.715;4991.6;yes
+33;admin.;single;university.degree;no;no;no;cellular;jun;wed;206;1;3;1;success;-1.7;94.055;-39.8;0.715;4991.6;yes
+44;technician;married;university.degree;no;yes;no;telephone;jun;wed;712;1;6;3;failure;-1.7;94.055;-39.8;0.715;4991.6;yes
+38;technician;single;high.school;no;no;no;telephone;jun;wed;118;1;999;0;nonexistent;-1.7;94.055;-39.8;0.715;4991.6;no
+29;admin.;single;university.degree;no;yes;no;telephone;jun;wed;294;2;3;1;success;-1.7;94.055;-39.8;0.715;4991.6;no
+44;technician;married;university.degree;no;no;no;cellular;jun;wed;874;2;999;1;failure;-1.7;94.055;-39.8;0.715;4991.6;yes
+28;services;married;high.school;no;no;yes;cellular;jun;wed;479;2;6;2;success;-1.7;94.055;-39.8;0.715;4991.6;yes
+27;blue-collar;single;university.degree;no;no;no;cellular;jun;wed;722;2;999;0;nonexistent;-1.7;94.055;-39.8;0.715;4991.6;no
+29;admin.;single;university.degree;no;no;no;cellular;jun;wed;192;2;3;4;success;-1.7;94.055;-39.8;0.715;4991.6;yes
+27;admin.;married;high.school;no;yes;no;telephone;jun;wed;46;1;999;0;nonexistent;-1.7;94.055;-39.8;0.715;4991.6;no
+28;admin.;single;university.degree;no;no;no;telephone;jun;fri;138;1;999;0;nonexistent;-1.7;94.055;-39.8;0.719;4991.6;no
+37;admin.;married;university.degree;no;yes;no;cellular;jun;fri;135;1;999;2;failure;-1.7;94.055;-39.8;0.719;4991.6;no
+37;admin.;married;university.degree;no;unknown;unknown;cellular;jun;fri;602;1;10;1;success;-1.7;94.055;-39.8;0.719;4991.6;yes
+35;admin.;single;university.degree;no;no;yes;cellular;jun;mon;141;2;4;3;success;-1.7;94.055;-39.8;0.72;4991.6;no
+50;management;married;university.degree;no;no;no;telephone;jun;mon;278;5;6;1;success;-1.7;94.055;-39.8;0.72;4991.6;yes
+36;management;divorced;university.degree;no;yes;no;cellular;jun;mon;422;1;3;4;success;-1.7;94.055;-39.8;0.72;4991.6;yes
+23;student;single;high.school;no;yes;no;telephone;jun;mon;434;1;9;1;success;-1.7;94.055;-39.8;0.72;4991.6;yes
+39;technician;married;university.degree;no;yes;no;cellular;jun;mon;187;1;3;5;success;-1.7;94.055;-39.8;0.72;4991.6;yes
+89;retired;divorced;basic.4y;no;no;no;cellular;jun;mon;245;1;999;0;nonexistent;-1.7;94.055;-39.8;0.72;4991.6;yes
+30;self-employed;married;university.degree;no;yes;no;cellular;jun;mon;661;1;999;0;nonexistent;-1.7;94.055;-39.8;0.72;4991.6;yes
+21;student;single;high.school;no;yes;no;cellular;jun;mon;270;1;999;0;nonexistent;-1.7;94.055;-39.8;0.72;4991.6;yes
+39;management;married;university.degree;no;no;no;cellular;jun;mon;168;1;999;1;failure;-1.7;94.055;-39.8;0.72;4991.6;no
+30;self-employed;married;university.degree;no;no;no;cellular;jun;mon;212;4;999;0;nonexistent;-1.7;94.055;-39.8;0.72;4991.6;yes
+36;self-employed;single;university.degree;no;no;yes;cellular;jun;mon;458;1;4;4;success;-1.7;94.055;-39.8;0.72;4991.6;yes
+39;technician;married;university.degree;no;yes;no;cellular;jun;mon;713;2;999;0;nonexistent;-1.7;94.055;-39.8;0.72;4991.6;yes
+59;unemployed;married;basic.4y;no;yes;no;cellular;jun;mon;614;1;6;2;success;-1.7;94.055;-39.8;0.72;4991.6;yes
+35;technician;single;university.degree;no;no;no;cellular;jun;mon;516;1;999;0;nonexistent;-1.7;94.055;-39.8;0.72;4991.6;no
+35;admin.;single;university.degree;no;yes;no;cellular;jun;mon;293;1;14;1;success;-1.7;94.055;-39.8;0.72;4991.6;yes
+22;student;single;high.school;no;no;yes;cellular;jun;mon;563;1;12;2;failure;-1.7;94.055;-39.8;0.72;4991.6;yes
+28;services;single;university.degree;no;no;no;telephone;jun;mon;215;1;999;0;nonexistent;-1.7;94.055;-39.8;0.72;4991.6;no
+37;admin.;married;university.degree;no;yes;no;telephone;jun;mon;30;1;999;0;nonexistent;-1.7;94.055;-39.8;0.72;4991.6;no
+44;services;single;high.school;no;no;no;telephone;jun;mon;20;1;999;0;nonexistent;-1.7;94.055;-39.8;0.72;4991.6;no
+33;services;married;high.school;no;no;no;cellular;jun;mon;472;1;999;1;failure;-1.7;94.055;-39.8;0.72;4991.6;no
+27;admin.;married;university.degree;no;yes;no;cellular;jun;mon;262;3;999;0;nonexistent;-1.7;94.055;-39.8;0.72;4991.6;no
+29;self-employed;single;university.degree;no;yes;no;cellular;jun;mon;167;2;999;1;failure;-1.7;94.055;-39.8;0.72;4991.6;yes
+25;student;single;high.school;no;no;no;cellular;jun;mon;485;2;999;0;nonexistent;-1.7;94.055;-39.8;0.72;4991.6;yes
+27;student;single;university.degree;no;no;yes;cellular;jun;mon;237;2;3;4;success;-1.7;94.055;-39.8;0.72;4991.6;no
+31;technician;married;professional.course;no;yes;no;cellular;jun;tue;619;2;3;1;success;-1.7;94.055;-39.8;0.723;4991.6;yes
+29;admin.;married;high.school;no;yes;no;cellular;jun;tue;379;2;13;1;success;-1.7;94.055;-39.8;0.723;4991.6;yes
+56;management;married;basic.6y;no;yes;no;cellular;jun;tue;910;1;7;2;success;-1.7;94.055;-39.8;0.723;4991.6;yes
+60;housemaid;married;basic.4y;no;yes;no;cellular;jun;tue;700;3;999;1;failure;-1.7;94.055;-39.8;0.723;4991.6;yes
+29;admin.;married;high.school;no;unknown;unknown;cellular;jun;tue;238;6;3;3;success;-1.7;94.055;-39.8;0.723;4991.6;no
+31;technician;married;professional.course;no;yes;no;cellular;jun;tue;243;5;9;2;success;-1.7;94.055;-39.8;0.723;4991.6;yes
+31;technician;married;professional.course;no;yes;no;cellular;jun;tue;250;4;3;2;success;-1.7;94.055;-39.8;0.723;4991.6;no
+37;unemployed;married;university.degree;no;yes;no;telephone;jun;tue;126;3;2;2;success;-1.7;94.055;-39.8;0.723;4991.6;no
+35;management;divorced;university.degree;no;yes;yes;cellular;jun;tue;270;2;12;2;success;-1.7;94.055;-39.8;0.723;4991.6;no
+31;technician;married;professional.course;no;yes;no;telephone;jun;tue;208;1;999;0;nonexistent;-1.7;94.055;-39.8;0.723;4991.6;yes
+29;admin.;married;high.school;no;yes;no;cellular;jun;wed;292;1;999;1;failure;-1.7;94.055;-39.8;0.727;4991.6;yes
+39;entrepreneur;single;university.degree;no;yes;no;telephone;jun;wed;58;1;999;0;nonexistent;-1.7;94.055;-39.8;0.727;4991.6;no
+33;blue-collar;married;basic.9y;no;yes;no;telephone;jun;wed;15;1;999;2;failure;-1.7;94.055;-39.8;0.727;4991.6;no
+29;admin.;married;high.school;no;yes;no;cellular;jun;wed;605;3;999;0;nonexistent;-1.7;94.055;-39.8;0.727;4991.6;yes
+24;student;single;high.school;no;no;no;cellular;jun;wed;288;6;6;1;success;-1.7;94.055;-39.8;0.727;4991.6;yes
+28;management;single;university.degree;no;yes;no;cellular;jun;thu;339;3;6;2;success;-1.7;94.055;-39.8;0.729;4991.6;yes
+36;services;married;high.school;no;no;no;cellular;jun;thu;101;3;999;0;nonexistent;-1.7;94.055;-39.8;0.729;4991.6;no
+28;management;single;university.degree;no;yes;no;cellular;jun;thu;383;1;22;1;success;-1.7;94.055;-39.8;0.729;4991.6;yes
+29;technician;divorced;professional.course;no;yes;yes;telephone;jun;thu;247;1;999;0;nonexistent;-1.7;94.055;-39.8;0.729;4991.6;no
+43;blue-collar;married;professional.course;no;yes;yes;cellular;jun;thu;1720;1;999;0;nonexistent;-1.7;94.055;-39.8;0.729;4991.6;yes
+38;blue-collar;single;high.school;no;yes;yes;telephone;jun;thu;21;1;999;0;nonexistent;-1.7;94.055;-39.8;0.729;4991.6;no
+24;student;single;high.school;no;yes;yes;cellular;jun;thu;344;1;999;0;nonexistent;-1.7;94.055;-39.8;0.729;4991.6;no
+24;student;single;high.school;no;yes;no;cellular;jun;thu;530;1;999;0;nonexistent;-1.7;94.055;-39.8;0.729;4991.6;no
+28;management;single;university.degree;no;yes;no;cellular;jun;thu;169;1;999;0;nonexistent;-1.7;94.055;-39.8;0.729;4991.6;yes
+78;retired;divorced;unknown;no;no;no;cellular;jun;thu;282;4;999;0;nonexistent;-1.7;94.055;-39.8;0.729;4991.6;yes
+24;student;single;high.school;no;no;yes;cellular;jun;thu;176;2;12;2;failure;-1.7;94.055;-39.8;0.729;4991.6;yes
+78;retired;divorced;unknown;no;no;no;cellular;jun;thu;544;1;999;0;nonexistent;-1.7;94.055;-39.8;0.729;4991.6;yes
+65;unknown;married;unknown;no;yes;no;cellular;jun;thu;301;2;4;2;success;-1.7;94.055;-39.8;0.729;4991.6;yes
+26;admin.;single;university.degree;no;no;yes;cellular;jun;fri;91;2;6;1;success;-1.7;94.055;-39.8;0.732;4991.6;no
+33;admin.;married;university.degree;no;no;no;telephone;jun;fri;80;1;999;0;nonexistent;-1.7;94.055;-39.8;0.732;4991.6;no
+70;blue-collar;married;basic.4y;no;no;yes;cellular;jun;fri;252;1;3;1;success;-1.7;94.055;-39.8;0.732;4991.6;yes
+62;retired;divorced;high.school;no;yes;no;cellular;jun;fri;201;4;999;0;nonexistent;-1.7;94.055;-39.8;0.732;4991.6;no
+41;entrepreneur;married;university.degree;no;yes;no;telephone;jun;fri;23;1;999;0;nonexistent;-1.7;94.055;-39.8;0.732;4991.6;no
+30;admin.;married;high.school;no;yes;no;cellular;jun;fri;215;1;12;1;success;-1.7;94.055;-39.8;0.732;4991.6;yes
+34;admin.;single;university.degree;no;yes;no;telephone;jun;mon;100;1;999;0;nonexistent;-1.7;94.055;-39.8;0.733;4991.6;no
+27;technician;single;professional.course;no;no;no;cellular;jun;tue;130;2;3;3;success;-1.7;94.055;-39.8;0.737;4991.6;no
+27;technician;single;professional.course;no;no;no;cellular;jun;tue;136;2;999;0;nonexistent;-1.7;94.055;-39.8;0.737;4991.6;no
+18;student;single;basic.4y;no;yes;no;cellular;jun;tue;154;1;999;0;nonexistent;-1.7;94.055;-39.8;0.737;4991.6;no
+24;student;single;high.school;no;no;no;cellular;jun;tue;292;1;999;1;failure;-1.7;94.055;-39.8;0.737;4991.6;no
+36;management;married;university.degree;no;no;no;cellular;jun;tue;867;1;3;2;success;-1.7;94.055;-39.8;0.737;4991.6;yes
+36;management;married;university.degree;no;no;no;cellular;jun;tue;522;1;6;2;success;-1.7;94.055;-39.8;0.737;4991.6;yes
+32;admin.;single;university.degree;no;no;no;cellular;jun;tue;856;1;12;2;success;-1.7;94.055;-39.8;0.737;4991.6;yes
+45;admin.;divorced;university.degree;no;no;yes;cellular;jun;wed;79;1;3;2;success;-1.7;94.055;-39.8;0.739;4991.6;no
+27;admin.;single;high.school;no;yes;no;telephone;jun;wed;193;1;999;1;failure;-1.7;94.055;-39.8;0.739;4991.6;no
+36;admin.;single;university.degree;no;yes;no;cellular;jun;wed;883;1;999;1;failure;-1.7;94.055;-39.8;0.739;4991.6;no
+36;admin.;single;university.degree;no;no;no;cellular;jun;wed;706;1;7;1;success;-1.7;94.055;-39.8;0.739;4991.6;yes
+36;blue-collar;single;high.school;no;yes;yes;cellular;jun;wed;342;2;3;1;success;-1.7;94.055;-39.8;0.739;4991.6;yes
+35;technician;divorced;professional.course;no;no;no;cellular;jun;wed;66;1;13;2;failure;-1.7;94.055;-39.8;0.739;4991.6;no
+36;admin.;single;university.degree;no;yes;yes;cellular;jun;wed;1407;1;999;0;nonexistent;-1.7;94.055;-39.8;0.739;4991.6;yes
+36;blue-collar;single;high.school;no;no;no;cellular;jun;wed;339;1;6;1;success;-1.7;94.055;-39.8;0.739;4991.6;yes
+35;technician;divorced;professional.course;no;yes;yes;cellular;jun;wed;181;1;999;0;nonexistent;-1.7;94.055;-39.8;0.739;4991.6;no
+37;admin.;married;high.school;no;no;no;cellular;jun;wed;671;3;999;0;nonexistent;-1.7;94.055;-39.8;0.739;4991.6;yes
+40;blue-collar;married;basic.9y;no;yes;no;cellular;jun;wed;133;3;3;2;success;-1.7;94.055;-39.8;0.739;4991.6;no
+24;student;single;high.school;no;no;no;cellular;jun;wed;112;2;14;2;success;-1.7;94.055;-39.8;0.739;4991.6;no
+33;management;single;university.degree;no;yes;no;cellular;jun;wed;442;2;999;3;failure;-1.7;94.055;-39.8;0.739;4991.6;no
+22;student;single;high.school;no;yes;no;telephone;jun;wed;355;1;999;2;failure;-1.7;94.055;-39.8;0.739;4991.6;no
+59;technician;married;professional.course;no;no;no;cellular;jun;thu;1207;4;999;1;failure;-1.7;94.055;-39.8;0.742;4991.6;yes
+74;retired;divorced;basic.4y;no;no;no;telephone;jun;thu;369;1;999;1;failure;-1.7;94.055;-39.8;0.742;4991.6;no
+30;admin.;single;university.degree;no;yes;no;telephone;jun;thu;316;1;999;0;nonexistent;-1.7;94.055;-39.8;0.742;4991.6;no
+44;self-employed;divorced;professional.course;no;yes;no;cellular;jun;thu;310;1;999;0;nonexistent;-1.7;94.055;-39.8;0.742;4991.6;yes
+43;management;married;university.degree;no;no;no;cellular;jun;thu;185;1;999;0;nonexistent;-1.7;94.055;-39.8;0.742;4991.6;no
+44;self-employed;divorced;professional.course;no;yes;yes;cellular;jun;thu;134;1;999;1;failure;-1.7;94.055;-39.8;0.742;4991.6;no
+31;unemployed;single;high.school;no;yes;no;cellular;jun;thu;167;3;999;0;nonexistent;-1.7;94.055;-39.8;0.742;4991.6;no
+37;unemployed;single;university.degree;no;yes;no;cellular;jun;thu;122;2;6;1;success;-1.7;94.055;-39.8;0.742;4991.6;no
+30;admin.;single;university.degree;no;no;no;cellular;jun;thu;124;1;999;0;nonexistent;-1.7;94.055;-39.8;0.742;4991.6;no
+38;technician;single;university.degree;no;yes;yes;cellular;jun;thu;288;1;999;0;nonexistent;-1.7;94.055;-39.8;0.742;4991.6;no
+68;retired;married;basic.4y;no;yes;no;cellular;jun;thu;220;2;999;1;failure;-1.7;94.055;-39.8;0.742;4991.6;no
+25;services;single;basic.9y;no;no;no;telephone;jun;thu;180;1;999;0;nonexistent;-1.7;94.055;-39.8;0.742;4991.6;no
+33;management;single;high.school;no;no;no;telephone;jun;thu;15;1;999;0;nonexistent;-1.7;94.055;-39.8;0.742;4991.6;no
+33;admin.;married;high.school;no;no;no;telephone;jun;thu;11;1;999;0;nonexistent;-1.7;94.055;-39.8;0.742;4991.6;no
+26;unemployed;single;high.school;no;yes;no;telephone;jun;thu;22;1;999;0;nonexistent;-1.7;94.055;-39.8;0.742;4991.6;no
+39;admin.;married;university.degree;no;yes;no;telephone;jun;thu;52;1;999;1;failure;-1.7;94.055;-39.8;0.742;4991.6;no
+47;technician;divorced;professional.course;no;yes;no;telephone;jun;thu;9;1;999;0;nonexistent;-1.7;94.055;-39.8;0.742;4991.6;no
+69;retired;divorced;professional.course;no;no;no;cellular;jun;fri;213;6;12;2;failure;-1.7;94.055;-39.8;0.748;4991.6;yes
+37;technician;single;university.degree;no;yes;no;cellular;jun;fri;300;1;999;2;failure;-1.7;94.055;-39.8;0.748;4991.6;yes
+23;student;single;basic.6y;no;no;no;cellular;jun;fri;276;1;14;1;success;-1.7;94.055;-39.8;0.748;4991.6;yes
+30;technician;married;university.degree;no;no;yes;cellular;jun;fri;131;1;999;1;failure;-1.7;94.055;-39.8;0.748;4991.6;no
+30;technician;married;university.degree;no;no;no;cellular;jun;fri;171;1;7;1;success;-1.7;94.055;-39.8;0.748;4991.6;no
+36;admin.;married;university.degree;no;yes;yes;cellular;jun;fri;427;1;4;4;success;-1.7;94.055;-39.8;0.748;4991.6;no
+53;housemaid;married;high.school;no;yes;no;cellular;jun;fri;195;6;999;0;nonexistent;-1.7;94.055;-39.8;0.748;4991.6;no
+36;unemployed;married;professional.course;no;yes;no;telephone;jun;fri;12;1;999;0;nonexistent;-1.7;94.055;-39.8;0.748;4991.6;no
+83;retired;divorced;basic.4y;no;no;yes;cellular;jun;fri;472;2;999;0;nonexistent;-1.7;94.055;-39.8;0.748;4991.6;yes
+37;unemployed;single;university.degree;no;no;no;cellular;jun;fri;249;2;999;0;nonexistent;-1.7;94.055;-39.8;0.748;4991.6;no
+69;retired;divorced;professional.course;no;yes;no;telephone;jun;fri;359;5;999;0;nonexistent;-1.7;94.055;-39.8;0.748;4991.6;no
+27;admin.;single;university.degree;no;yes;no;cellular;jun;fri;266;2;999;1;failure;-1.7;94.055;-39.8;0.748;4991.6;yes
+53;management;divorced;university.degree;no;yes;no;cellular;jun;mon;348;6;999;2;failure;-1.7;94.055;-39.8;0.754;4991.6;no
+33;services;married;high.school;no;yes;yes;telephone;jun;mon;54;1;999;0;nonexistent;-1.7;94.055;-39.8;0.754;4991.6;no
+37;unemployed;married;university.degree;unknown;yes;no;cellular;jun;mon;614;3;3;2;success;-1.7;94.055;-39.8;0.754;4991.6;yes
+51;admin.;married;university.degree;no;no;no;cellular;jun;mon;297;4;999;0;nonexistent;-1.7;94.055;-39.8;0.754;4991.6;yes
+51;admin.;married;university.degree;no;yes;no;cellular;jun;mon;281;3;10;3;success;-1.7;94.055;-39.8;0.754;4991.6;yes
+32;technician;married;university.degree;no;no;no;cellular;jun;mon;132;3;999;1;failure;-1.7;94.055;-39.8;0.754;4991.6;no
+53;management;divorced;university.degree;no;no;no;cellular;jun;mon;345;1;999;0;nonexistent;-1.7;94.055;-39.8;0.754;4991.6;yes
+51;blue-collar;married;basic.4y;no;no;yes;cellular;jun;mon;325;1;3;1;success;-1.7;94.055;-39.8;0.754;4991.6;yes
+34;admin.;single;university.degree;no;yes;no;cellular;jun;mon;452;1;999;0;nonexistent;-1.7;94.055;-39.8;0.754;4991.6;yes
+32;blue-collar;single;high.school;no;no;no;cellular;jun;mon;247;1;2;2;success;-1.7;94.055;-39.8;0.754;4991.6;yes
+32;blue-collar;single;high.school;no;no;no;cellular;jun;mon;197;1;999;1;failure;-1.7;94.055;-39.8;0.754;4991.6;no
+37;self-employed;married;university.degree;no;no;no;telephone;jun;mon;363;1;999;0;nonexistent;-1.7;94.055;-39.8;0.754;4991.6;yes
+37;unemployed;married;university.degree;unknown;no;no;telephone;jun;mon;198;1;999;0;nonexistent;-1.7;94.055;-39.8;0.754;4991.6;yes
+62;blue-collar;married;high.school;no;yes;no;cellular;jun;mon;563;4;4;3;success;-1.7;94.055;-39.8;0.754;4991.6;yes
+35;management;married;university.degree;no;yes;no;cellular;jun;mon;150;3;999;0;nonexistent;-1.7;94.055;-39.8;0.754;4991.6;no
+37;self-employed;married;university.degree;no;no;no;cellular;jun;mon;181;2;999;0;nonexistent;-1.7;94.055;-39.8;0.754;4991.6;no
+68;retired;married;basic.4y;unknown;yes;no;cellular;jun;mon;383;3;999;0;nonexistent;-1.7;94.055;-39.8;0.754;4991.6;no
+37;self-employed;married;university.degree;no;no;no;telephone;jun;mon;133;4;999;0;nonexistent;-1.7;94.055;-39.8;0.754;4991.6;no
+38;technician;single;university.degree;no;yes;no;cellular;jun;mon;737;6;999;0;nonexistent;-1.7;94.055;-39.8;0.754;4991.6;yes
+36;management;married;university.degree;no;no;no;cellular;jun;tue;265;1;999;1;failure;-1.7;94.055;-39.8;0.761;4991.6;yes
+81;retired;divorced;high.school;no;no;no;cellular;jun;tue;279;1;999;4;failure;-1.7;94.055;-39.8;0.761;4991.6;no
+34;unemployed;single;university.degree;no;no;no;cellular;jun;tue;401;1;999;0;nonexistent;-1.7;94.055;-39.8;0.761;4991.6;yes
+50;blue-collar;married;basic.4y;no;no;no;cellular;jun;tue;135;4;999;1;failure;-1.7;94.055;-39.8;0.761;4991.6;no
+76;retired;married;professional.course;unknown;yes;no;cellular;jun;tue;352;1;3;1;success;-1.7;94.055;-39.8;0.761;4991.6;yes
+76;retired;married;professional.course;unknown;yes;no;cellular;jun;tue;295;1;9;2;success;-1.7;94.055;-39.8;0.761;4991.6;yes
+56;retired;married;high.school;no;no;no;cellular;jun;tue;383;1;3;1;success;-1.7;94.055;-39.8;0.761;4991.6;yes
+64;retired;married;professional.course;no;no;no;cellular;jun;tue;222;1;999;3;failure;-1.7;94.055;-39.8;0.761;4991.6;yes
+27;unemployed;single;basic.4y;no;no;no;cellular;jun;tue;238;1;999;2;failure;-1.7;94.055;-39.8;0.761;4991.6;no
+27;admin.;single;high.school;no;no;no;cellular;jun;tue;586;2;999;0;nonexistent;-1.7;94.055;-39.8;0.761;4991.6;yes
+23;student;single;basic.9y;no;yes;no;cellular;jun;tue;189;1;6;3;success;-1.7;94.055;-39.8;0.761;4991.6;no
+35;admin.;married;university.degree;no;yes;no;cellular;jun;tue;385;1;5;1;success;-1.7;94.055;-39.8;0.761;4991.6;no
+25;student;single;high.school;no;yes;yes;cellular;jun;tue;660;2;6;3;success;-1.7;94.055;-39.8;0.761;4991.6;yes
+38;entrepreneur;married;basic.6y;no;no;no;cellular;jun;tue;271;1;2;3;success;-1.7;94.055;-39.8;0.761;4991.6;yes
+38;entrepreneur;married;basic.6y;no;yes;no;cellular;jun;tue;189;1;999;0;nonexistent;-1.7;94.055;-39.8;0.761;4991.6;no
+27;admin.;single;high.school;no;no;no;cellular;jun;tue;421;2;999;0;nonexistent;-1.7;94.055;-39.8;0.761;4991.6;yes
+32;management;single;university.degree;no;no;no;cellular;jun;tue;264;4;999;0;nonexistent;-1.7;94.055;-39.8;0.761;4991.6;no
+30;technician;single;professional.course;no;yes;no;telephone;jun;tue;12;1;999;0;nonexistent;-1.7;94.055;-39.8;0.761;4991.6;no
+33;admin.;married;university.degree;no;no;no;telephone;jun;tue;286;2;999;0;nonexistent;-1.7;94.055;-39.8;0.761;4991.6;no
+34;unemployed;single;university.degree;no;yes;no;cellular;jun;tue;167;2;999;0;nonexistent;-1.7;94.055;-39.8;0.761;4991.6;yes
+32;blue-collar;married;basic.4y;no;yes;no;telephone;jun;tue;13;1;999;1;failure;-1.7;94.055;-39.8;0.761;4991.6;no
+26;technician;single;professional.course;no;no;no;telephone;jun;tue;8;1;999;0;nonexistent;-1.7;94.055;-39.8;0.761;4991.6;no
+26;admin.;married;high.school;no;no;no;cellular;jun;wed;598;4;12;3;failure;-1.7;94.055;-39.8;0.767;4991.6;yes
+27;unknown;single;university.degree;no;yes;no;cellular;jun;wed;665;4;3;2;success;-1.7;94.055;-39.8;0.767;4991.6;yes
+52;admin.;married;university.degree;no;yes;no;cellular;jun;wed;255;2;999;0;nonexistent;-1.7;94.055;-39.8;0.767;4991.6;no
+26;admin.;married;high.school;no;no;no;cellular;jun;wed;428;1;999;0;nonexistent;-1.7;94.055;-39.8;0.767;4991.6;no
+30;technician;single;university.degree;no;yes;no;telephone;jun;wed;263;1;999;2;failure;-1.7;94.055;-39.8;0.767;4991.6;yes
+27;unknown;single;university.degree;no;yes;no;cellular;jun;wed;121;3;999;0;nonexistent;-1.7;94.055;-39.8;0.767;4991.6;no
+33;services;married;high.school;no;yes;no;cellular;jun;wed;274;2;12;2;success;-1.7;94.055;-39.8;0.767;4991.6;yes
+56;retired;married;basic.4y;no;yes;no;cellular;jun;wed;337;2;3;2;success;-1.7;94.055;-39.8;0.767;4991.6;yes
+29;technician;single;high.school;no;yes;no;telephone;jun;wed;6;1;999;0;nonexistent;-1.7;94.055;-39.8;0.767;4991.6;no
+86;retired;single;basic.9y;unknown;no;no;telephone;jun;wed;955;1;999;0;nonexistent;-1.7;94.055;-39.8;0.767;4991.6;yes
+21;student;single;high.school;no;yes;yes;cellular;jun;wed;286;2;999;0;nonexistent;-1.7;94.055;-39.8;0.767;4991.6;yes
+29;admin.;single;high.school;no;no;no;cellular;jun;wed;108;5;999;0;nonexistent;-1.7;94.055;-39.8;0.767;4991.6;no
+26;admin.;married;high.school;no;yes;yes;cellular;jun;wed;275;2;999;1;failure;-1.7;94.055;-39.8;0.767;4991.6;yes
+66;retired;married;basic.4y;no;no;yes;cellular;jun;wed;319;2;999;0;nonexistent;-1.7;94.055;-39.8;0.767;4991.6;yes
+31;technician;single;university.degree;no;yes;no;telephone;jun;wed;119;1;999;0;nonexistent;-1.7;94.055;-39.8;0.767;4991.6;no
+52;admin.;married;university.degree;no;yes;yes;cellular;jun;wed;241;4;999;3;failure;-1.7;94.055;-39.8;0.767;4991.6;no
+26;admin.;married;high.school;no;no;no;cellular;jun;wed;301;5;999;0;nonexistent;-1.7;94.055;-39.8;0.767;4991.6;yes
+37;admin.;single;high.school;no;yes;yes;cellular;jul;thu;114;4;999;2;failure;-1.7;94.215;-40.3;0.782;4991.6;no
+37;admin.;single;high.school;no;no;no;telephone;jul;thu;494;4;999;3;failure;-1.7;94.215;-40.3;0.782;4991.6;no
+35;management;married;university.degree;no;yes;yes;telephone;jul;thu;165;1;999;1;failure;-1.7;94.215;-40.3;0.782;4991.6;no
+34;admin.;married;high.school;no;yes;no;telephone;jul;thu;12;1;999;1;failure;-1.7;94.215;-40.3;0.782;4991.6;no
+29;admin.;single;high.school;no;no;no;telephone;jul;thu;28;1;999;0;nonexistent;-1.7;94.215;-40.3;0.782;4991.6;no
+60;management;married;university.degree;no;yes;yes;cellular;jul;thu;395;1;4;2;success;-1.7;94.215;-40.3;0.782;4991.6;yes
+37;admin.;single;high.school;no;no;no;cellular;jul;thu;609;2;7;3;success;-1.7;94.215;-40.3;0.782;4991.6;yes
+27;admin.;single;high.school;no;no;no;cellular;jul;thu;113;2;999;2;failure;-1.7;94.215;-40.3;0.782;4991.6;no
+38;admin.;married;high.school;no;no;no;cellular;jul;thu;561;2;10;2;success;-1.7;94.215;-40.3;0.782;4991.6;yes
+33;blue-collar;married;university.degree;no;no;no;telephone;jul;thu;12;1;999;0;nonexistent;-1.7;94.215;-40.3;0.782;4991.6;no
+38;unemployed;divorced;high.school;no;no;no;telephone;jul;thu;10;1;999;0;nonexistent;-1.7;94.215;-40.3;0.782;4991.6;no
+39;blue-collar;married;basic.6y;no;yes;no;telephone;jul;fri;25;1;14;1;success;-1.7;94.215;-40.3;0.79;4991.6;no
+27;services;single;high.school;no;no;no;cellular;jul;fri;423;3;999;0;nonexistent;-1.7;94.215;-40.3;0.79;4991.6;yes
+37;admin.;single;university.degree;no;yes;no;cellular;jul;fri;96;2;4;3;success;-1.7;94.215;-40.3;0.79;4991.6;no
+33;admin.;married;university.degree;no;yes;yes;cellular;jul;fri;217;3;999;0;nonexistent;-1.7;94.215;-40.3;0.79;4991.6;yes
+37;admin.;single;university.degree;no;yes;no;cellular;jul;fri;844;2;6;3;success;-1.7;94.215;-40.3;0.79;4991.6;no
+55;admin.;married;university.degree;no;yes;no;cellular;jul;fri;687;1;999;2;failure;-1.7;94.215;-40.3;0.79;4991.6;yes
+35;admin.;single;university.degree;no;no;no;cellular;jul;fri;391;5;4;1;success;-1.7;94.215;-40.3;0.79;4991.6;yes
+27;services;single;high.school;no;unknown;unknown;cellular;jul;fri;179;1;999;1;failure;-1.7;94.215;-40.3;0.79;4991.6;yes
+25;blue-collar;single;basic.9y;no;no;yes;cellular;jul;fri;667;1;999;0;nonexistent;-1.7;94.215;-40.3;0.79;4991.6;yes
+55;admin.;married;university.degree;no;yes;yes;cellular;jul;fri;129;2;999;1;failure;-1.7;94.215;-40.3;0.79;4991.6;no
+48;admin.;single;university.degree;no;yes;no;cellular;jul;fri;194;2;3;1;success;-1.7;94.215;-40.3;0.79;4991.6;yes
+52;admin.;single;high.school;no;no;no;telephone;jul;mon;9;1;999;1;failure;-1.7;94.215;-40.3;0.793;4991.6;no
+41;admin.;divorced;university.degree;no;no;no;cellular;jul;mon;101;3;999;0;nonexistent;-1.7;94.215;-40.3;0.793;4991.6;no
+34;technician;single;university.degree;no;yes;no;cellular;jul;mon;251;3;999;0;nonexistent;-1.7;94.215;-40.3;0.793;4991.6;yes
+25;admin.;married;high.school;no;yes;no;telephone;jul;mon;29;1;999;0;nonexistent;-1.7;94.215;-40.3;0.793;4991.6;no
+32;technician;married;university.degree;no;yes;yes;telephone;jul;mon;17;1;999;0;nonexistent;-1.7;94.215;-40.3;0.793;4991.6;no
+41;admin.;divorced;university.degree;no;no;no;cellular;jul;mon;128;2;999;0;nonexistent;-1.7;94.215;-40.3;0.793;4991.6;yes
+33;admin.;single;university.degree;no;yes;no;cellular;jul;mon;175;4;999;0;nonexistent;-1.7;94.215;-40.3;0.793;4991.6;no
+41;admin.;divorced;university.degree;no;yes;no;cellular;jul;mon;140;1;14;2;success;-1.7;94.215;-40.3;0.793;4991.6;yes
+33;admin.;single;university.degree;no;yes;no;cellular;jul;mon;182;1;999;0;nonexistent;-1.7;94.215;-40.3;0.793;4991.6;no
+30;admin.;single;university.degree;no;yes;no;cellular;jul;tue;255;2;3;1;success;-1.7;94.215;-40.3;0.797;4991.6;no
+21;student;single;basic.9y;no;yes;no;cellular;jul;tue;209;2;999;0;nonexistent;-1.7;94.215;-40.3;0.797;4991.6;yes
+46;admin.;married;high.school;no;yes;no;cellular;jul;tue;267;1;999;0;nonexistent;-1.7;94.215;-40.3;0.797;4991.6;yes
+46;admin.;married;high.school;no;yes;no;cellular;jul;tue;335;3;999;2;failure;-1.7;94.215;-40.3;0.797;4991.6;yes
+30;admin.;single;university.degree;no;no;no;cellular;jul;tue;212;1;3;2;success;-1.7;94.215;-40.3;0.797;4991.6;no
+83;housemaid;divorced;basic.4y;no;yes;yes;cellular;jul;tue;257;1;999;3;failure;-1.7;94.215;-40.3;0.797;4991.6;no
+29;admin.;single;high.school;no;no;no;cellular;jul;tue;319;1;999;0;nonexistent;-1.7;94.215;-40.3;0.797;4991.6;yes
+35;admin.;single;university.degree;no;no;no;telephone;jul;tue;42;1;999;0;nonexistent;-1.7;94.215;-40.3;0.797;4991.6;no
+46;admin.;married;high.school;no;yes;yes;cellular;jul;tue;396;1;13;2;success;-1.7;94.215;-40.3;0.797;4991.6;yes
+43;self-employed;married;university.degree;no;no;no;cellular;jul;tue;386;3;999;1;failure;-1.7;94.215;-40.3;0.797;4991.6;yes
+83;housemaid;divorced;basic.4y;no;yes;no;cellular;jul;tue;667;2;3;1;success;-1.7;94.215;-40.3;0.797;4991.6;yes
+21;student;single;basic.9y;no;yes;yes;telephone;jul;tue;295;1;999;0;nonexistent;-1.7;94.215;-40.3;0.797;4991.6;no
+35;entrepreneur;single;university.degree;no;yes;no;cellular;jul;wed;156;1;999;2;failure;-1.7;94.215;-40.3;0.802;4991.6;no
+55;admin.;married;high.school;no;no;no;telephone;jul;wed;229;1;9;1;success;-1.7;94.215;-40.3;0.802;4991.6;yes
+33;admin.;married;high.school;no;yes;yes;telephone;jul;wed;398;2;999;1;failure;-1.7;94.215;-40.3;0.802;4991.6;yes
+35;admin.;married;high.school;no;yes;no;cellular;jul;wed;273;2;15;1;success;-1.7;94.215;-40.3;0.802;4991.6;yes
+36;services;married;high.school;no;no;no;telephone;jul;wed;276;2;999;0;nonexistent;-1.7;94.215;-40.3;0.802;4991.6;yes
+34;admin.;single;high.school;no;no;no;cellular;jul;wed;346;1;999;1;failure;-1.7;94.215;-40.3;0.802;4991.6;yes
+57;unknown;married;basic.4y;no;yes;no;cellular;jul;wed;183;3;999;0;nonexistent;-1.7;94.215;-40.3;0.802;4991.6;no
+58;admin.;married;high.school;no;yes;no;cellular;jul;thu;214;4;999;2;failure;-1.7;94.215;-40.3;0.81;4991.6;no
+75;retired;married;university.degree;no;yes;no;cellular;jul;thu;229;1;999;2;failure;-1.7;94.215;-40.3;0.81;4991.6;yes
+29;admin.;single;high.school;no;yes;no;cellular;jul;thu;480;1;6;1;success;-1.7;94.215;-40.3;0.81;4991.6;yes
+37;admin.;married;high.school;no;unknown;unknown;cellular;jul;thu;294;1;999;1;failure;-1.7;94.215;-40.3;0.81;4991.6;yes
+21;student;single;unknown;no;yes;yes;cellular;jul;thu;173;11;9;2;failure;-1.7;94.215;-40.3;0.81;4991.6;no
+25;services;single;high.school;no;no;yes;telephone;jul;thu;411;2;8;4;success;-1.7;94.215;-40.3;0.81;4991.6;yes
+21;student;single;unknown;no;no;no;telephone;jul;thu;250;1;12;1;success;-1.7;94.215;-40.3;0.81;4991.6;yes
+21;student;single;unknown;no;no;no;cellular;jul;thu;184;1;999;0;nonexistent;-1.7;94.215;-40.3;0.81;4991.6;no
+21;student;single;unknown;no;yes;no;cellular;jul;thu;968;1;13;2;failure;-1.7;94.215;-40.3;0.81;4991.6;yes
+32;admin.;single;university.degree;no;no;no;telephone;jul;thu;14;1;999;0;nonexistent;-1.7;94.215;-40.3;0.81;4991.6;no
+39;technician;married;professional.course;no;yes;no;cellular;jul;thu;202;1;999;1;failure;-1.7;94.215;-40.3;0.81;4991.6;no
+58;admin.;married;high.school;no;yes;yes;cellular;jul;thu;414;2;999;0;nonexistent;-1.7;94.215;-40.3;0.81;4991.6;yes
+25;admin.;single;high.school;no;no;no;cellular;jul;thu;449;2;999;0;nonexistent;-1.7;94.215;-40.3;0.81;4991.6;yes
+37;admin.;married;high.school;no;yes;no;cellular;jul;thu;230;2;999;0;nonexistent;-1.7;94.215;-40.3;0.81;4991.6;no
+34;self-employed;single;university.degree;no;no;no;cellular;jul;thu;967;3;999;0;nonexistent;-1.7;94.215;-40.3;0.81;4991.6;yes
+21;student;single;unknown;no;no;no;telephone;jul;thu;220;7;999;1;failure;-1.7;94.215;-40.3;0.81;4991.6;no
+25;services;single;high.school;no;yes;no;telephone;jul;thu;312;2;999;2;failure;-1.7;94.215;-40.3;0.81;4991.6;no
+73;retired;divorced;professional.course;unknown;yes;no;cellular;jul;thu;131;2;999;0;nonexistent;-1.7;94.215;-40.3;0.81;4991.6;no
+34;admin.;married;university.degree;no;yes;no;cellular;jul;thu;344;1;999;2;failure;-1.7;94.215;-40.3;0.81;4991.6;yes
+72;retired;married;basic.4y;no;no;yes;cellular;jul;fri;483;4;8;1;success;-1.7;94.215;-40.3;0.822;4991.6;yes
+26;unemployed;married;high.school;no;yes;no;cellular;jul;fri;474;7;999;0;nonexistent;-1.7;94.215;-40.3;0.822;4991.6;yes
+72;retired;married;basic.4y;no;yes;no;cellular;jul;fri;119;9;999;1;failure;-1.7;94.215;-40.3;0.822;4991.6;no
+72;retired;married;basic.4y;no;yes;no;cellular;jul;fri;582;2;999;1;failure;-1.7;94.215;-40.3;0.822;4991.6;no
+32;admin.;single;university.degree;no;yes;no;cellular;jul;fri;1185;1;999;0;nonexistent;-1.7;94.215;-40.3;0.822;4991.6;no
+46;admin.;married;university.degree;no;yes;no;cellular;jul;fri;341;3;999;0;nonexistent;-1.7;94.215;-40.3;0.822;4991.6;yes
+32;entrepreneur;married;university.degree;no;no;yes;cellular;jul;fri;116;1;999;0;nonexistent;-1.7;94.215;-40.3;0.822;4991.6;no
+79;retired;married;basic.4y;no;no;yes;cellular;jul;fri;464;1;999;1;failure;-1.7;94.215;-40.3;0.822;4991.6;yes
+33;blue-collar;single;professional.course;no;no;yes;telephone;jul;fri;15;1;999;0;nonexistent;-1.7;94.215;-40.3;0.822;4991.6;no
+33;unemployed;married;university.degree;no;yes;no;telephone;jul;fri;25;1;999;0;nonexistent;-1.7;94.215;-40.3;0.822;4991.6;no
+26;unemployed;single;high.school;no;yes;no;telephone;jul;fri;23;1;999;0;nonexistent;-1.7;94.215;-40.3;0.822;4991.6;no
+33;blue-collar;married;basic.9y;no;no;yes;telephone;jul;mon;9;1;999;0;nonexistent;-1.7;94.215;-40.3;0.827;4991.6;no
+59;retired;divorced;basic.4y;no;no;no;cellular;jul;mon;410;2;999;0;nonexistent;-1.7;94.215;-40.3;0.827;4991.6;no
+39;admin.;divorced;university.degree;no;yes;yes;cellular;jul;mon;398;10;999;1;failure;-1.7;94.215;-40.3;0.827;4991.6;yes
+36;technician;single;university.degree;no;yes;yes;cellular;jul;mon;305;4;3;1;success;-1.7;94.215;-40.3;0.827;4991.6;no
+59;retired;divorced;basic.4y;no;no;yes;cellular;jul;mon;210;3;999;2;failure;-1.7;94.215;-40.3;0.827;4991.6;yes
+39;admin.;divorced;university.degree;no;no;yes;cellular;jul;mon;375;3;999;0;nonexistent;-1.7;94.215;-40.3;0.827;4991.6;yes
+28;blue-collar;single;high.school;no;no;yes;cellular;jul;mon;101;2;999;2;failure;-1.7;94.215;-40.3;0.827;4991.6;no
+62;technician;married;unknown;no;no;yes;cellular;jul;mon;123;2;6;1;success;-1.7;94.215;-40.3;0.827;4991.6;no
+35;technician;single;professional.course;no;no;no;cellular;jul;mon;562;4;999;0;nonexistent;-1.7;94.215;-40.3;0.827;4991.6;yes
+62;technician;married;unknown;no;unknown;unknown;cellular;jul;mon;220;3;999;1;failure;-1.7;94.215;-40.3;0.827;4991.6;yes
+62;technician;married;unknown;no;no;no;cellular;jul;mon;167;1;999;0;nonexistent;-1.7;94.215;-40.3;0.827;4991.6;no
+62;technician;married;unknown;no;yes;no;cellular;jul;mon;273;1;16;1;success;-1.7;94.215;-40.3;0.827;4991.6;no
+27;admin.;single;university.degree;unknown;no;yes;cellular;jul;mon;537;1;999;0;nonexistent;-1.7;94.215;-40.3;0.827;4991.6;yes
+28;student;single;high.school;no;yes;yes;cellular;jul;mon;154;1;999;2;failure;-1.7;94.215;-40.3;0.827;4991.6;no
+24;admin.;single;high.school;no;no;no;cellular;jul;mon;452;1;14;1;success;-1.7;94.215;-40.3;0.827;4991.6;yes
+19;student;single;basic.9y;no;no;yes;telephone;jul;mon;567;1;6;2;success;-1.7;94.215;-40.3;0.827;4991.6;yes
+59;retired;divorced;basic.4y;no;yes;yes;cellular;jul;mon;796;1;6;1;success;-1.7;94.215;-40.3;0.827;4991.6;yes
+28;blue-collar;single;high.school;no;no;no;cellular;jul;mon;194;3;999;0;nonexistent;-1.7;94.215;-40.3;0.827;4991.6;no
+19;student;single;basic.9y;no;yes;no;cellular;jul;mon;236;2;999;0;nonexistent;-1.7;94.215;-40.3;0.827;4991.6;no
+62;technician;married;unknown;no;no;no;cellular;jul;mon;262;2;999;2;failure;-1.7;94.215;-40.3;0.827;4991.6;yes
+62;technician;married;unknown;no;yes;no;cellular;jul;mon;248;1;999;2;failure;-1.7;94.215;-40.3;0.827;4991.6;yes
+33;admin.;single;university.degree;no;yes;no;cellular;jul;mon;289;1;999;1;failure;-1.7;94.215;-40.3;0.827;4991.6;no
+27;admin.;single;university.degree;unknown;no;no;cellular;jul;mon;200;6;999;0;nonexistent;-1.7;94.215;-40.3;0.827;4991.6;no
+28;student;single;high.school;no;yes;no;cellular;jul;mon;250;2;6;1;success;-1.7;94.215;-40.3;0.827;4991.6;yes
+29;admin.;married;university.degree;no;yes;yes;cellular;jul;tue;256;2;6;1;success;-1.7;94.215;-40.3;0.835;4991.6;no
+73;retired;married;basic.4y;no;yes;no;cellular;jul;tue;305;1;999;0;nonexistent;-1.7;94.215;-40.3;0.835;4991.6;yes
+29;admin.;single;high.school;no;no;no;cellular;jul;tue;195;2;3;3;success;-1.7;94.215;-40.3;0.835;4991.6;yes
+22;services;single;professional.course;no;no;no;cellular;jul;tue;363;1;999;1;failure;-1.7;94.215;-40.3;0.835;4991.6;yes
+83;retired;married;university.degree;no;yes;no;cellular;jul;tue;178;1;6;2;success;-1.7;94.215;-40.3;0.835;4991.6;yes
+32;services;married;basic.6y;no;yes;yes;telephone;jul;tue;35;1;999;0;nonexistent;-1.7;94.215;-40.3;0.835;4991.6;no
+83;retired;married;university.degree;no;no;no;telephone;jul;tue;617;1;12;1;success;-1.7;94.215;-40.3;0.835;4991.6;yes
+66;retired;married;high.school;no;no;no;cellular;jul;tue;475;1;999;0;nonexistent;-1.7;94.215;-40.3;0.835;4991.6;yes
+66;retired;married;high.school;no;yes;no;cellular;jul;tue;317;1;999;0;nonexistent;-1.7;94.215;-40.3;0.835;4991.6;yes
+29;admin.;married;university.degree;no;yes;no;cellular;jul;tue;88;1;999;2;failure;-1.7;94.215;-40.3;0.835;4991.6;no
+29;admin.;married;university.degree;no;unknown;unknown;cellular;jul;tue;311;1;3;1;success;-1.7;94.215;-40.3;0.835;4991.6;yes
+24;student;single;high.school;no;yes;yes;cellular;jul;tue;316;3;999;1;failure;-1.7;94.215;-40.3;0.835;4991.6;no
+31;unemployed;single;university.degree;no;yes;no;cellular;jul;tue;309;1;6;3;success;-1.7;94.215;-40.3;0.835;4991.6;yes
+35;technician;single;professional.course;no;yes;no;cellular;jul;tue;337;1;6;1;success;-1.7;94.215;-40.3;0.835;4991.6;yes
+35;technician;single;professional.course;no;yes;no;cellular;jul;tue;360;1;11;2;success;-1.7;94.215;-40.3;0.835;4991.6;yes
+22;services;single;professional.course;no;no;no;cellular;jul;tue;256;3;999;1;failure;-1.7;94.215;-40.3;0.835;4991.6;yes
+73;retired;married;basic.4y;no;yes;yes;telephone;jul;tue;538;2;999;0;nonexistent;-1.7;94.215;-40.3;0.835;4991.6;no
+29;blue-collar;single;basic.6y;no;yes;no;telephone;jul;tue;151;1;999;0;nonexistent;-1.7;94.215;-40.3;0.835;4991.6;no
+35;technician;single;professional.course;no;yes;no;cellular;jul;tue;577;6;6;1;success;-1.7;94.215;-40.3;0.835;4991.6;yes
+29;admin.;single;high.school;no;yes;no;cellular;jul;tue;272;3;6;1;success;-1.7;94.215;-40.3;0.835;4991.6;yes
+32;technician;divorced;professional.course;no;yes;no;telephone;jul;wed;18;1;999;0;nonexistent;-1.7;94.215;-40.3;0.84;4991.6;no
+53;blue-collar;single;basic.9y;no;no;no;telephone;jul;wed;413;1;6;2;success;-1.7;94.215;-40.3;0.84;4991.6;yes
+30;student;single;professional.course;no;yes;no;cellular;jul;wed;334;4;999;2;failure;-1.7;94.215;-40.3;0.84;4991.6;yes
+31;admin.;single;high.school;no;yes;no;cellular;jul;wed;91;1;999;1;failure;-1.7;94.215;-40.3;0.84;4991.6;no
+29;technician;single;basic.9y;no;yes;no;cellular;jul;wed;603;1;999;0;nonexistent;-1.7;94.215;-40.3;0.84;4991.6;yes
+53;blue-collar;single;basic.9y;no;yes;no;cellular;jul;wed;355;1;999;0;nonexistent;-1.7;94.215;-40.3;0.84;4991.6;yes
+45;management;married;university.degree;no;yes;no;cellular;jul;wed;817;2;999;0;nonexistent;-1.7;94.215;-40.3;0.84;4991.6;yes
+29;technician;single;professional.course;no;yes;no;cellular;jul;wed;133;3;999;0;nonexistent;-1.7;94.215;-40.3;0.84;4991.6;no
+29;technician;single;basic.9y;no;yes;no;telephone;jul;wed;247;1;6;1;success;-1.7;94.215;-40.3;0.84;4991.6;yes
+78;retired;married;unknown;no;yes;no;cellular;jul;wed;203;1;999;1;failure;-1.7;94.215;-40.3;0.84;4991.6;no
+29;admin.;single;university.degree;no;yes;no;cellular;jul;wed;276;1;999;0;nonexistent;-1.7;94.215;-40.3;0.84;4991.6;yes
+34;services;married;basic.9y;no;no;no;cellular;jul;wed;604;1;999;0;nonexistent;-1.7;94.215;-40.3;0.84;4991.6;yes
+53;blue-collar;single;basic.9y;no;yes;no;telephone;jul;wed;897;2;999;0;nonexistent;-1.7;94.215;-40.3;0.84;4991.6;yes
+35;admin.;married;university.degree;no;yes;no;cellular;jul;wed;287;2;999;1;failure;-1.7;94.215;-40.3;0.84;4991.6;yes
+34;services;married;basic.9y;no;yes;yes;cellular;jul;wed;86;3;999;1;failure;-1.7;94.215;-40.3;0.84;4991.6;no
+30;student;single;professional.course;no;yes;no;telephone;jul;wed;343;9;999;0;nonexistent;-1.7;94.215;-40.3;0.84;4991.6;no
+78;retired;married;unknown;no;yes;no;cellular;jul;wed;87;3;999;0;nonexistent;-1.7;94.215;-40.3;0.84;4991.6;yes
+44;blue-collar;divorced;basic.4y;no;no;no;telephone;jul;wed;71;1;999;0;nonexistent;-1.7;94.215;-40.3;0.84;4991.6;no
+23;blue-collar;single;basic.9y;no;yes;no;cellular;jul;thu;268;5;999;1;failure;-1.7;94.215;-40.3;0.846;4991.6;yes
+27;blue-collar;single;high.school;no;yes;no;cellular;jul;thu;185;5;999;2;failure;-1.7;94.215;-40.3;0.846;4991.6;no
+52;technician;married;basic.6y;no;yes;no;cellular;jul;thu;219;1;3;1;success;-1.7;94.215;-40.3;0.846;4991.6;yes
+50;management;married;university.degree;no;yes;no;cellular;jul;thu;367;1;999;0;nonexistent;-1.7;94.215;-40.3;0.846;4991.6;yes
+37;services;married;high.school;no;no;no;cellular;jul;thu;346;1;6;2;success;-1.7;94.215;-40.3;0.846;4991.6;yes
+28;services;single;high.school;no;yes;no;cellular;jul;thu;957;1;6;1;success;-1.7;94.215;-40.3;0.846;4991.6;yes
+32;services;single;unknown;no;no;yes;cellular;jul;thu;415;2;999;0;nonexistent;-1.7;94.215;-40.3;0.846;4991.6;yes
+30;admin.;single;university.degree;no;no;no;cellular;jul;thu;252;1;6;2;success;-1.7;94.215;-40.3;0.846;4991.6;yes
+28;self-employed;single;university.degree;no;no;no;cellular;jul;thu;178;1;999;2;failure;-1.7;94.215;-40.3;0.846;4991.6;no
+32;admin.;single;university.degree;no;yes;no;cellular;jul;thu;250;2;6;1;success;-1.7;94.215;-40.3;0.846;4991.6;no
+20;student;single;basic.9y;no;yes;no;cellular;jul;thu;361;3;6;3;success;-1.7;94.215;-40.3;0.846;4991.6;yes
+80;retired;married;basic.4y;no;no;no;telephone;jul;thu;552;2;999;0;nonexistent;-1.7;94.215;-40.3;0.846;4991.6;yes
+70;retired;divorced;basic.4y;no;no;no;cellular;jul;thu;390;2;6;2;success;-1.7;94.215;-40.3;0.846;4991.6;yes
+35;admin.;married;university.degree;no;no;no;cellular;jul;thu;951;2;6;1;success;-1.7;94.215;-40.3;0.846;4991.6;yes
+23;blue-collar;single;basic.9y;no;no;no;cellular;jul;thu;250;4;999;1;failure;-1.7;94.215;-40.3;0.846;4991.6;yes
+32;admin.;single;university.degree;no;yes;no;cellular;jul;thu;210;2;15;1;success;-1.7;94.215;-40.3;0.846;4991.6;no
+28;self-employed;single;university.degree;no;yes;no;cellular;jul;thu;198;2;999;0;nonexistent;-1.7;94.215;-40.3;0.846;4991.6;yes
+47;admin.;single;basic.9y;no;yes;yes;cellular;jul;thu;392;2;6;1;success;-1.7;94.215;-40.3;0.846;4991.6;yes
+38;technician;married;professional.course;no;no;no;cellular;jul;thu;561;2;999;0;nonexistent;-1.7;94.215;-40.3;0.846;4991.6;no
+54;retired;single;basic.4y;no;yes;no;cellular;jul;thu;392;4;999;0;nonexistent;-1.7;94.215;-40.3;0.846;4991.6;no
+63;retired;married;basic.4y;no;yes;no;cellular;jul;thu;261;1;6;1;success;-1.7;94.215;-40.3;0.846;4991.6;no
+31;admin.;single;university.degree;no;yes;no;cellular;jul;fri;815;2;13;2;success;-1.7;94.215;-40.3;0.861;4991.6;yes
+26;technician;single;university.degree;no;no;no;cellular;jul;fri;129;2;6;1;success;-1.7;94.215;-40.3;0.861;4991.6;no
+32;admin.;single;university.degree;no;no;no;cellular;jul;fri;184;1;9;3;failure;-1.7;94.215;-40.3;0.861;4991.6;no
+44;admin.;married;unknown;no;no;no;cellular;jul;fri;745;1;999;1;failure;-1.7;94.215;-40.3;0.861;4991.6;yes
+31;admin.;married;high.school;no;no;no;cellular;jul;fri;136;8;999;0;nonexistent;-1.7;94.215;-40.3;0.861;4991.6;no
+60;admin.;married;university.degree;no;no;no;cellular;jul;fri;316;1;6;2;success;-1.7;94.215;-40.3;0.861;4991.6;yes
+51;admin.;married;university.degree;no;no;yes;cellular;jul;fri;486;1;999;0;nonexistent;-1.7;94.215;-40.3;0.861;4991.6;yes
+31;admin.;married;high.school;no;yes;yes;cellular;jul;fri;44;4;999;0;nonexistent;-1.7;94.215;-40.3;0.861;4991.6;no
+43;technician;divorced;unknown;no;no;no;cellular;jul;fri;377;1;999;1;failure;-1.7;94.215;-40.3;0.861;4991.6;no
+31;admin.;married;university.degree;no;no;no;cellular;jul;fri;106;1;999;0;nonexistent;-1.7;94.215;-40.3;0.861;4991.6;no
+27;admin.;single;high.school;no;yes;no;telephone;jul;fri;7;1;999;0;nonexistent;-1.7;94.215;-40.3;0.861;4991.6;no
+29;admin.;single;high.school;no;yes;no;cellular;jul;fri;268;2;6;1;success;-1.7;94.215;-40.3;0.861;4991.6;yes
+26;technician;single;university.degree;no;yes;no;cellular;jul;fri;806;3;6;2;success;-1.7;94.215;-40.3;0.861;4991.6;yes
+32;management;single;university.degree;no;no;no;cellular;jul;fri;237;2;999;1;failure;-1.7;94.215;-40.3;0.861;4991.6;no
+51;admin.;married;university.degree;no;no;yes;cellular;jul;fri;73;4;999;0;nonexistent;-1.7;94.215;-40.3;0.861;4991.6;no
+44;admin.;single;high.school;no;no;yes;telephone;jul;fri;12;1;999;0;nonexistent;-1.7;94.215;-40.3;0.861;4991.6;no
+59;technician;married;professional.course;no;yes;no;cellular;jul;fri;457;2;15;1;success;-1.7;94.215;-40.3;0.861;4991.6;yes
+21;housemaid;single;high.school;no;no;no;cellular;jul;fri;222;2;999;0;nonexistent;-1.7;94.215;-40.3;0.861;4991.6;no
+54;admin.;married;university.degree;no;no;yes;cellular;jul;fri;84;5;999;2;failure;-1.7;94.215;-40.3;0.861;4991.6;no
+22;admin.;single;university.degree;no;yes;no;telephone;jul;mon;484;1;999;2;failure;-1.7;94.215;-40.3;0.87;4991.6;yes
+56;technician;married;professional.course;no;yes;no;cellular;jul;mon;207;2;13;1;success;-1.7;94.215;-40.3;0.87;4991.6;yes
+49;technician;divorced;professional.course;no;yes;no;cellular;jul;mon;253;3;15;1;success;-1.7;94.215;-40.3;0.87;4991.6;yes
+78;retired;married;basic.4y;no;no;no;cellular;jul;mon;1148;1;999;0;nonexistent;-1.7;94.215;-40.3;0.87;4991.6;yes
+72;retired;married;basic.4y;no;yes;no;cellular;jul;mon;128;2;999;1;failure;-1.7;94.215;-40.3;0.87;4991.6;no
+72;retired;married;basic.4y;no;yes;no;cellular;jul;mon;268;1;999;0;nonexistent;-1.7;94.215;-40.3;0.87;4991.6;yes
+78;retired;married;basic.4y;no;yes;no;cellular;jul;mon;173;2;999;1;failure;-1.7;94.215;-40.3;0.87;4991.6;yes
+56;technician;married;professional.course;no;no;no;cellular;jul;mon;230;2;999;1;failure;-1.7;94.215;-40.3;0.87;4991.6;yes
+56;unemployed;divorced;basic.4y;no;yes;no;cellular;jul;mon;187;6;999;0;nonexistent;-1.7;94.215;-40.3;0.87;4991.6;yes
+66;retired;married;basic.4y;no;yes;no;cellular;jul;mon;568;7;999;0;nonexistent;-1.7;94.215;-40.3;0.87;4991.6;yes
+78;retired;married;basic.4y;no;yes;no;cellular;jul;mon;212;1;13;2;success;-1.7;94.215;-40.3;0.87;4991.6;yes
+29;admin.;married;university.degree;no;yes;no;cellular;jul;mon;173;3;999;0;nonexistent;-1.7;94.215;-40.3;0.87;4991.6;yes
+30;technician;married;university.degree;no;yes;yes;cellular;jul;mon;204;4;999;0;nonexistent;-1.7;94.215;-40.3;0.87;4991.6;yes
+28;technician;single;university.degree;no;no;no;cellular;jul;tue;146;3;6;2;success;-1.7;94.215;-40.3;0.876;4991.6;no
+28;services;single;high.school;no;yes;no;cellular;jul;tue;192;1;999;0;nonexistent;-1.7;94.215;-40.3;0.876;4991.6;no
+66;housemaid;married;basic.4y;no;no;yes;cellular;jul;tue;296;1;999;1;failure;-1.7;94.215;-40.3;0.876;4991.6;no
+29;technician;single;professional.course;no;no;yes;cellular;jul;tue;178;2;15;2;failure;-1.7;94.215;-40.3;0.876;4991.6;yes
+54;unknown;married;basic.9y;no;yes;no;cellular;jul;tue;174;2;13;2;success;-1.7;94.215;-40.3;0.876;4991.6;no
+28;technician;single;university.degree;no;yes;no;cellular;jul;tue;175;5;999;0;nonexistent;-1.7;94.215;-40.3;0.876;4991.6;no
+23;student;single;unknown;no;no;no;cellular;jul;tue;165;2;16;1;success;-1.7;94.215;-40.3;0.876;4991.6;yes
+35;blue-collar;married;high.school;no;yes;no;telephone;jul;tue;7;1;999;0;nonexistent;-1.7;94.215;-40.3;0.876;4991.6;no
+62;retired;married;high.school;no;no;no;cellular;jul;tue;355;2;999;0;nonexistent;-1.7;94.215;-40.3;0.876;4991.6;yes
+23;unemployed;single;high.school;no;no;no;telephone;jul;tue;7;1;999;0;nonexistent;-1.7;94.215;-40.3;0.876;4991.6;no
+38;admin.;married;high.school;no;no;no;telephone;jul;tue;5;1;999;1;failure;-1.7;94.215;-40.3;0.876;4991.6;no
+48;technician;married;professional.course;no;no;no;cellular;jul;tue;288;1;999;1;failure;-1.7;94.215;-40.3;0.876;4991.6;no
+66;housemaid;married;basic.4y;no;no;no;telephone;jul;tue;1008;2;999;0;nonexistent;-1.7;94.215;-40.3;0.876;4991.6;yes
+23;admin.;single;university.degree;no;yes;no;cellular;jul;wed;104;1;999;2;failure;-1.7;94.215;-40.3;0.881;4991.6;no
+82;housemaid;divorced;basic.4y;no;no;no;cellular;jul;wed;316;1;999;0;nonexistent;-1.7;94.215;-40.3;0.881;4991.6;yes
+72;retired;married;basic.6y;no;no;no;cellular;jul;wed;338;1;999;0;nonexistent;-1.7;94.215;-40.3;0.881;4991.6;no
+72;retired;married;basic.6y;no;yes;no;cellular;jul;wed;143;1;999;0;nonexistent;-1.7;94.215;-40.3;0.881;4991.6;yes
+37;unemployed;single;university.degree;no;yes;yes;cellular;jul;wed;314;1;5;2;success;-1.7;94.215;-40.3;0.881;4991.6;yes
+21;student;single;basic.9y;no;no;no;telephone;jul;thu;5;1;999;0;nonexistent;-1.7;94.215;-40.3;0.884;4991.6;no
+24;technician;single;professional.course;no;yes;no;cellular;jul;thu;355;2;3;1;success;-1.7;94.215;-40.3;0.884;4991.6;yes
+71;retired;married;professional.course;no;yes;no;cellular;jul;thu;115;3;999;0;nonexistent;-1.7;94.215;-40.3;0.884;4991.6;no
+52;admin.;married;university.degree;no;yes;yes;cellular;jul;thu;942;1;999;0;nonexistent;-1.7;94.215;-40.3;0.884;4991.6;yes
+24;services;single;high.school;no;yes;no;cellular;jul;thu;355;1;11;2;success;-1.7;94.215;-40.3;0.884;4991.6;yes
+43;technician;married;professional.course;no;yes;no;cellular;jul;thu;1193;1;999;0;nonexistent;-1.7;94.215;-40.3;0.884;4991.6;yes
+64;admin.;married;high.school;no;no;no;cellular;jul;thu;368;1;999;0;nonexistent;-1.7;94.215;-40.3;0.884;4991.6;yes
+45;management;married;university.degree;no;yes;no;cellular;jul;thu;138;2;6;2;success;-1.7;94.215;-40.3;0.884;4991.6;yes
+40;management;married;university.degree;no;yes;no;cellular;jul;thu;321;4;999;0;nonexistent;-1.7;94.215;-40.3;0.884;4991.6;yes
+30;admin.;single;university.degree;no;yes;no;cellular;jul;thu;248;1;999;0;nonexistent;-1.7;94.215;-40.3;0.884;4991.6;yes
+34;technician;single;basic.9y;no;no;no;telephone;jul;thu;23;1;999;1;failure;-1.7;94.215;-40.3;0.884;4991.6;no
+29;self-employed;single;university.degree;no;no;no;telephone;jul;thu;24;1;999;0;nonexistent;-1.7;94.215;-40.3;0.884;4991.6;no
+60;admin.;married;basic.9y;no;no;no;cellular;jul;thu;174;2;25;2;failure;-1.7;94.215;-40.3;0.884;4991.6;yes
+24;services;single;high.school;no;yes;no;cellular;jul;thu;860;2;9;2;failure;-1.7;94.215;-40.3;0.884;4991.6;yes
+56;services;married;high.school;no;yes;no;cellular;jul;thu;427;2;999;1;failure;-1.7;94.215;-40.3;0.884;4991.6;no
+45;management;married;university.degree;no;no;yes;telephone;jul;thu;171;2;999;1;failure;-1.7;94.215;-40.3;0.884;4991.6;no
+31;student;single;university.degree;no;no;no;cellular;jul;fri;608;3;6;2;success;-1.7;94.215;-40.3;0.885;4991.6;yes
+59;management;married;basic.4y;no;yes;no;cellular;jul;fri;351;3;999;0;nonexistent;-1.7;94.215;-40.3;0.885;4991.6;yes
+42;unknown;single;university.degree;no;no;no;cellular;jul;fri;366;6;999;0;nonexistent;-1.7;94.215;-40.3;0.885;4991.6;yes
+31;student;single;university.degree;no;yes;yes;cellular;jul;fri;350;2;999;0;nonexistent;-1.7;94.215;-40.3;0.885;4991.6;yes
+32;technician;single;university.degree;no;no;no;cellular;jul;fri;125;1;3;2;success;-1.7;94.215;-40.3;0.885;4991.6;no
+24;technician;married;professional.course;no;no;no;cellular;jul;fri;192;4;26;1;success;-1.7;94.215;-40.3;0.885;4991.6;yes
+42;unknown;single;university.degree;no;yes;no;cellular;jul;fri;513;1;999;2;failure;-1.7;94.215;-40.3;0.885;4991.6;yes
+26;admin.;single;high.school;no;yes;no;cellular;jul;fri;251;1;999;1;failure;-1.7;94.215;-40.3;0.885;4991.6;yes
+26;admin.;single;university.degree;no;no;no;cellular;jul;fri;196;1;9;3;failure;-1.7;94.215;-40.3;0.885;4991.6;yes
+63;admin.;married;university.degree;no;yes;no;cellular;jul;fri;396;2;999;0;nonexistent;-1.7;94.215;-40.3;0.885;4991.6;yes
+29;admin.;single;university.degree;no;yes;no;cellular;jul;mon;110;2;999;1;failure;-1.7;94.215;-40.3;0.889;4991.6;no
+35;blue-collar;married;basic.9y;no;yes;no;cellular;jul;mon;275;1;6;2;success;-1.7;94.215;-40.3;0.889;4991.6;yes
+51;technician;married;high.school;no;no;no;cellular;jul;mon;284;1;6;3;success;-1.7;94.215;-40.3;0.889;4991.6;yes
+65;management;married;university.degree;no;yes;no;cellular;jul;mon;183;1;999;2;failure;-1.7;94.215;-40.3;0.889;4991.6;yes
+29;admin.;married;university.degree;no;no;no;telephone;jul;mon;7;1;999;0;nonexistent;-1.7;94.215;-40.3;0.889;4991.6;no
+31;admin.;married;university.degree;no;no;no;telephone;jul;mon;7;1;999;0;nonexistent;-1.7;94.215;-40.3;0.889;4991.6;no
+52;technician;single;professional.course;no;no;no;telephone;jul;mon;84;1;999;0;nonexistent;-1.7;94.215;-40.3;0.889;4991.6;no
+34;admin.;single;university.degree;no;yes;yes;telephone;jul;mon;4;1;999;0;nonexistent;-1.7;94.215;-40.3;0.889;4991.6;no
+27;blue-collar;single;basic.6y;no;no;no;telephone;jul;mon;9;1;999;0;nonexistent;-1.7;94.215;-40.3;0.889;4991.6;no
+35;admin.;married;university.degree;no;no;no;cellular;jul;mon;768;2;3;4;success;-1.7;94.215;-40.3;0.889;4991.6;no
+68;retired;married;university.degree;no;yes;no;cellular;jul;mon;546;2;999;1;failure;-1.7;94.215;-40.3;0.889;4991.6;yes
+68;retired;married;university.degree;no;no;no;cellular;jul;mon;414;2;12;1;success;-1.7;94.215;-40.3;0.889;4991.6;yes
+61;admin.;married;unknown;no;yes;yes;cellular;jul;mon;109;3;999;1;failure;-1.7;94.215;-40.3;0.889;4991.6;no
+24;technician;single;professional.course;no;yes;no;cellular;jul;mon;607;3;13;1;success;-1.7;94.215;-40.3;0.889;4991.6;yes
+84;retired;divorced;basic.4y;no;yes;yes;cellular;jul;tue;666;1;3;2;success;-1.7;94.215;-40.3;0.893;4991.6;yes
+32;admin.;single;university.degree;no;no;no;cellular;jul;tue;527;1;999;0;nonexistent;-1.7;94.215;-40.3;0.893;4991.6;yes
+32;admin.;single;university.degree;no;yes;no;cellular;jul;tue;206;1;999;1;failure;-1.7;94.215;-40.3;0.893;4991.6;no
+23;student;single;unknown;no;no;no;cellular;jul;tue;267;1;999;2;failure;-1.7;94.215;-40.3;0.893;4991.6;yes
+52;admin.;married;professional.course;no;no;no;cellular;jul;tue;606;1;999;0;nonexistent;-1.7;94.215;-40.3;0.893;4991.6;yes
+23;technician;single;professional.course;no;yes;no;telephone;jul;tue;9;1;999;0;nonexistent;-1.7;94.215;-40.3;0.893;4991.6;no
+33;admin.;single;university.degree;no;no;no;telephone;jul;tue;5;1;999;0;nonexistent;-1.7;94.215;-40.3;0.893;4991.6;no
+28;technician;single;professional.course;no;no;yes;telephone;jul;tue;5;1;999;0;nonexistent;-1.7;94.215;-40.3;0.893;4991.6;no
+52;admin.;married;professional.course;no;yes;yes;cellular;jul;tue;139;2;6;1;success;-1.7;94.215;-40.3;0.893;4991.6;no
+28;technician;single;professional.course;no;yes;no;cellular;jul;tue;167;2;6;1;success;-1.7;94.215;-40.3;0.893;4991.6;no
+52;admin.;married;professional.course;no;yes;yes;cellular;jul;tue;287;2;6;1;success;-1.7;94.215;-40.3;0.893;4991.6;yes
+77;retired;married;basic.4y;no;unknown;unknown;cellular;jul;tue;218;2;3;1;success;-1.7;94.215;-40.3;0.893;4991.6;yes
+26;student;single;high.school;no;no;no;cellular;jul;tue;235;1;999;1;failure;-1.7;94.215;-40.3;0.893;4991.6;no
+48;housemaid;married;professional.course;no;yes;no;cellular;jul;wed;496;2;6;2;success;-1.7;94.215;-40.3;0.896;4991.6;yes
+68;retired;divorced;high.school;no;yes;yes;cellular;jul;wed;340;1;3;1;success;-1.7;94.215;-40.3;0.896;4991.6;yes
+74;retired;divorced;basic.4y;no;yes;yes;cellular;jul;wed;106;2;999;0;nonexistent;-1.7;94.215;-40.3;0.896;4991.6;no
+24;student;single;professional.course;no;no;no;cellular;jul;wed;429;2;6;3;success;-1.7;94.215;-40.3;0.896;4991.6;yes
+25;self-employed;single;unknown;no;unknown;unknown;cellular;jul;wed;844;5;999;2;failure;-1.7;94.215;-40.3;0.896;4991.6;yes
+57;blue-collar;married;basic.4y;no;no;yes;cellular;jul;wed;471;2;999;0;nonexistent;-1.7;94.215;-40.3;0.896;4991.6;yes
+24;student;single;professional.course;no;yes;no;cellular;jul;wed;817;2;999;0;nonexistent;-1.7;94.215;-40.3;0.896;4991.6;yes
+66;retired;divorced;high.school;no;no;no;cellular;jul;wed;211;1;999;1;failure;-1.7;94.215;-40.3;0.896;4991.6;no
+51;retired;divorced;high.school;no;no;no;cellular;jul;wed;115;3;999;0;nonexistent;-1.7;94.215;-40.3;0.896;4991.6;yes
+50;housemaid;married;basic.4y;no;no;yes;cellular;jul;wed;462;1;4;1;success;-1.7;94.215;-40.3;0.896;4991.6;yes
+47;admin.;married;university.degree;no;yes;yes;cellular;jul;wed;129;3;999;2;failure;-1.7;94.215;-40.3;0.896;4991.6;no
+48;housemaid;married;professional.course;no;no;no;cellular;jul;wed;388;3;6;1;success;-1.7;94.215;-40.3;0.896;4991.6;yes
+26;technician;single;professional.course;no;no;no;cellular;jul;thu;588;3;999;2;failure;-1.7;94.215;-40.3;0.899;4991.6;yes
+60;retired;married;professional.course;no;yes;yes;cellular;jul;thu;95;4;6;2;success;-1.7;94.215;-40.3;0.899;4991.6;no
+76;unknown;married;unknown;no;no;no;telephone;jul;thu;301;3;999;0;nonexistent;-1.7;94.215;-40.3;0.899;4991.6;yes
+23;admin.;single;high.school;no;no;no;telephone;jul;thu;331;1;999;0;nonexistent;-1.7;94.215;-40.3;0.899;4991.6;no
+80;retired;divorced;basic.4y;no;no;yes;cellular;jul;thu;169;2;6;2;success;-1.7;94.215;-40.3;0.899;4991.6;yes
+34;admin.;divorced;university.degree;no;yes;no;telephone;jul;thu;332;3;999;1;failure;-1.7;94.215;-40.3;0.899;4991.6;yes
+50;housemaid;married;basic.6y;no;no;no;cellular;jul;thu;349;3;6;2;success;-1.7;94.215;-40.3;0.899;4991.6;yes
+50;entrepreneur;divorced;university.degree;no;yes;no;cellular;jul;thu;386;1;6;3;success;-1.7;94.215;-40.3;0.899;4991.6;yes
+31;technician;single;university.degree;no;no;no;cellular;jul;thu;200;4;999;1;failure;-1.7;94.215;-40.3;0.899;4991.6;yes
+51;admin.;married;university.degree;no;no;no;cellular;jul;thu;396;4;999;1;failure;-1.7;94.215;-40.3;0.899;4991.6;yes
+65;management;married;high.school;no;yes;no;cellular;jul;thu;117;1;999;2;failure;-1.7;94.215;-40.3;0.899;4991.6;no
+31;technician;single;university.degree;no;yes;no;telephone;jul;thu;426;1;6;2;success;-1.7;94.215;-40.3;0.899;4991.6;yes
+48;blue-collar;married;professional.course;no;no;no;telephone;jul;thu;268;1;999;0;nonexistent;-1.7;94.215;-40.3;0.899;4991.6;yes
+71;retired;married;basic.4y;no;yes;no;cellular;jul;thu;519;2;9;3;failure;-1.7;94.215;-40.3;0.899;4991.6;yes
+31;technician;single;university.degree;no;no;no;telephone;jul;thu;270;1;5;1;success;-1.7;94.215;-40.3;0.899;4991.6;yes
+34;admin.;married;university.degree;no;yes;no;cellular;jul;thu;417;1;6;3;success;-1.7;94.215;-40.3;0.899;4991.6;yes
+53;admin.;married;high.school;no;yes;no;cellular;jul;thu;99;6;999;0;nonexistent;-1.7;94.215;-40.3;0.899;4991.6;no
+39;unemployed;single;high.school;no;yes;no;cellular;jul;fri;90;2;999;0;nonexistent;-1.7;94.215;-40.3;0.896;4991.6;no
+27;services;single;high.school;no;no;no;cellular;jul;fri;700;5;6;2;success;-1.7;94.215;-40.3;0.896;4991.6;yes
+32;management;single;university.degree;no;no;no;cellular;jul;fri;221;4;16;1;success;-1.7;94.215;-40.3;0.896;4991.6;no
+23;admin.;single;university.degree;no;no;yes;cellular;jul;fri;76;2;999;1;failure;-1.7;94.215;-40.3;0.896;4991.6;no
+41;admin.;married;university.degree;no;yes;no;cellular;jul;fri;269;7;6;3;success;-1.7;94.215;-40.3;0.896;4991.6;no
+37;management;married;university.degree;no;yes;no;cellular;jul;fri;292;1;6;1;success;-1.7;94.215;-40.3;0.896;4991.6;yes
+35;admin.;married;university.degree;no;yes;no;telephone;jul;fri;304;1;999;2;failure;-1.7;94.215;-40.3;0.896;4991.6;yes
+56;retired;divorced;high.school;no;yes;no;telephone;jul;fri;9;1;999;0;nonexistent;-1.7;94.215;-40.3;0.896;4991.6;no
+71;retired;married;basic.9y;no;yes;yes;cellular;jul;fri;230;6;999;0;nonexistent;-1.7;94.215;-40.3;0.896;4991.6;yes
+40;management;married;university.degree;no;no;no;telephone;jul;fri;367;2;3;2;success;-1.7;94.215;-40.3;0.896;4991.6;yes
+39;unemployed;single;high.school;no;yes;no;cellular;jul;fri;240;3;999;0;nonexistent;-1.7;94.215;-40.3;0.896;4991.6;no
+37;admin.;married;university.degree;no;yes;no;cellular;jul;fri;1005;5;4;2;success;-1.7;94.215;-40.3;0.896;4991.6;yes
+34;self-employed;married;university.degree;no;unknown;unknown;cellular;jul;fri;156;3;999;2;failure;-1.7;94.215;-40.3;0.896;4991.6;no
+40;management;married;university.degree;no;yes;no;cellular;jul;fri;955;1;9;1;success;-1.7;94.215;-40.3;0.896;4991.6;yes
+63;retired;married;basic.4y;no;no;no;cellular;jul;fri;273;1;999;0;nonexistent;-1.7;94.215;-40.3;0.896;4991.6;no
+55;services;divorced;high.school;no;yes;no;cellular;jul;fri;160;3;999;0;nonexistent;-1.7;94.215;-40.3;0.896;4991.6;no
+46;admin.;married;high.school;no;no;no;cellular;aug;mon;428;2;999;3;failure;-1.7;94.027;-38.3;0.898;4991.6;no
+33;services;single;high.school;no;yes;no;cellular;aug;mon;132;2;999;1;failure;-1.7;94.027;-38.3;0.898;4991.6;no
+25;student;single;high.school;no;no;no;cellular;aug;mon;159;2;10;4;failure;-1.7;94.027;-38.3;0.898;4991.6;no
+33;admin.;single;university.degree;no;no;yes;cellular;aug;mon;87;3;999;0;nonexistent;-1.7;94.027;-38.3;0.898;4991.6;no
+31;student;single;unknown;no;no;no;cellular;aug;mon;397;2;999;1;failure;-1.7;94.027;-38.3;0.898;4991.6;no
+42;admin.;single;university.degree;no;no;no;cellular;aug;mon;1013;3;999;0;nonexistent;-1.7;94.027;-38.3;0.898;4991.6;no
+67;retired;married;basic.4y;no;no;no;cellular;aug;mon;300;3;999;0;nonexistent;-1.7;94.027;-38.3;0.898;4991.6;no
+31;technician;single;unknown;no;no;no;cellular;aug;mon;155;2;999;0;nonexistent;-1.7;94.027;-38.3;0.898;4991.6;no
+53;services;married;basic.9y;no;yes;no;cellular;aug;mon;196;2;999;0;nonexistent;-1.7;94.027;-38.3;0.898;4991.6;yes
+31;student;single;unknown;no;yes;no;cellular;aug;mon;868;3;18;3;failure;-1.7;94.027;-38.3;0.898;4991.6;yes
+36;admin.;single;professional.course;no;yes;no;telephone;aug;mon;25;1;999;0;nonexistent;-1.7;94.027;-38.3;0.898;4991.6;no
+81;retired;married;basic.4y;no;yes;no;cellular;aug;mon;90;4;999;0;nonexistent;-1.7;94.027;-38.3;0.898;4991.6;no
+25;student;single;high.school;no;yes;no;cellular;aug;mon;100;8;4;1;success;-1.7;94.027;-38.3;0.898;4991.6;no
+42;admin.;single;university.degree;no;yes;no;cellular;aug;mon;245;2;999;0;nonexistent;-1.7;94.027;-38.3;0.898;4991.6;no
+31;self-employed;single;university.degree;no;no;no;cellular;aug;mon;209;1;999;2;failure;-1.7;94.027;-38.3;0.898;4991.6;no
+62;retired;married;basic.4y;no;no;no;cellular;aug;mon;317;1;9;2;failure;-1.7;94.027;-38.3;0.898;4991.6;yes
+67;retired;married;basic.4y;no;no;no;cellular;aug;mon;341;2;13;1;success;-1.7;94.027;-38.3;0.898;4991.6;yes
+33;services;single;high.school;no;yes;no;cellular;aug;mon;486;1;999;2;failure;-1.7;94.027;-38.3;0.898;4991.6;no
+38;technician;single;university.degree;no;no;no;cellular;aug;mon;135;7;999;0;nonexistent;-1.7;94.027;-38.3;0.898;4991.6;no
+31;technician;single;unknown;no;no;no;cellular;aug;mon;308;1;999;2;failure;-1.7;94.027;-38.3;0.898;4991.6;no
+33;admin.;single;university.degree;no;yes;yes;telephone;aug;mon;109;1;999;2;failure;-1.7;94.027;-38.3;0.898;4991.6;no
+53;services;married;basic.9y;no;yes;no;telephone;aug;mon;141;2;999;1;failure;-1.7;94.027;-38.3;0.898;4991.6;no
+31;technician;single;unknown;no;yes;no;cellular;aug;mon;428;2;9;3;success;-1.7;94.027;-38.3;0.898;4991.6;yes
+28;admin.;married;university.degree;no;yes;no;cellular;aug;mon;226;3;999;1;failure;-1.7;94.027;-38.3;0.898;4991.6;no
+77;retired;divorced;professional.course;no;no;no;cellular;aug;mon;258;1;999;0;nonexistent;-1.7;94.027;-38.3;0.898;4991.6;no
+27;admin.;single;university.degree;no;no;no;cellular;aug;tue;249;1;999;0;nonexistent;-1.7;94.027;-38.3;0.899;4991.6;yes
+31;student;single;university.degree;no;no;no;cellular;aug;tue;224;1;9;2;failure;-1.7;94.027;-38.3;0.899;4991.6;no
+64;retired;married;professional.course;no;no;no;cellular;aug;tue;482;1;999;0;nonexistent;-1.7;94.027;-38.3;0.899;4991.6;yes
+37;technician;single;university.degree;no;yes;no;cellular;aug;tue;481;2;999;4;failure;-1.7;94.027;-38.3;0.899;4991.6;yes
+28;admin.;single;university.degree;no;yes;yes;cellular;aug;tue;187;2;6;2;success;-1.7;94.027;-38.3;0.899;4991.6;yes
+28;unemployed;single;basic.9y;no;no;yes;cellular;aug;tue;261;1;999;1;failure;-1.7;94.027;-38.3;0.899;4991.6;yes
+31;student;single;university.degree;no;no;no;cellular;aug;tue;279;4;6;2;success;-1.7;94.027;-38.3;0.899;4991.6;yes
+47;services;divorced;unknown;no;yes;no;cellular;aug;tue;113;2;999;1;failure;-1.7;94.027;-38.3;0.899;4991.6;yes
+21;student;single;high.school;no;yes;no;cellular;aug;tue;326;2;999;1;failure;-1.7;94.027;-38.3;0.899;4991.6;no
+31;admin.;single;university.degree;no;no;no;cellular;aug;tue;172;3;999;0;nonexistent;-1.7;94.027;-38.3;0.899;4991.6;no
+40;admin.;married;high.school;no;no;yes;cellular;aug;tue;654;2;999;0;nonexistent;-1.7;94.027;-38.3;0.899;4991.6;yes
+75;retired;married;unknown;no;no;no;telephone;aug;tue;676;2;999;4;failure;-1.7;94.027;-38.3;0.899;4991.6;yes
+30;student;single;high.school;no;no;no;cellular;aug;tue;592;3;999;1;failure;-1.7;94.027;-38.3;0.899;4991.6;yes
+21;student;single;high.school;no;yes;no;cellular;aug;tue;263;3;9;2;success;-1.7;94.027;-38.3;0.899;4991.6;yes
+58;blue-collar;married;basic.4y;no;yes;no;cellular;aug;wed;771;1;3;1;success;-1.7;94.027;-38.3;0.9;4991.6;yes
+48;admin.;married;university.degree;no;yes;yes;cellular;aug;wed;288;1;0;3;success;-1.7;94.027;-38.3;0.9;4991.6;yes
+28;student;single;unknown;unknown;yes;no;cellular;aug;wed;453;1;999;1;failure;-1.7;94.027;-38.3;0.9;4991.6;no
+35;technician;married;university.degree;no;yes;no;cellular;aug;wed;182;1;6;3;failure;-1.7;94.027;-38.3;0.9;4991.6;yes
+35;technician;married;university.degree;no;yes;no;cellular;aug;wed;560;1;999;0;nonexistent;-1.7;94.027;-38.3;0.9;4991.6;yes
+27;student;single;university.degree;no;yes;no;cellular;aug;wed;651;1;0;3;success;-1.7;94.027;-38.3;0.9;4991.6;yes
+28;student;single;basic.9y;no;yes;no;cellular;aug;wed;178;1;0;1;success;-1.7;94.027;-38.3;0.9;4991.6;yes
+61;retired;married;university.degree;no;no;no;telephone;aug;wed;250;2;7;1;success;-1.7;94.027;-38.3;0.9;4991.6;yes
+47;admin.;married;university.degree;no;unknown;unknown;cellular;aug;wed;288;1;10;2;failure;-1.7;94.027;-38.3;0.9;4991.6;yes
+27;student;single;university.degree;no;no;no;cellular;aug;wed;180;1;3;3;success;-1.7;94.027;-38.3;0.9;4991.6;yes
+30;admin.;single;university.degree;no;no;no;telephone;aug;wed;156;1;999;1;failure;-1.7;94.027;-38.3;0.9;4991.6;no
+59;unknown;married;unknown;no;no;no;cellular;aug;wed;198;1;6;1;success;-1.7;94.027;-38.3;0.9;4991.6;yes
+28;student;single;basic.9y;no;no;yes;cellular;aug;wed;139;1;6;3;failure;-1.7;94.027;-38.3;0.9;4991.6;yes
+28;student;single;basic.9y;no;no;no;telephone;aug;wed;199;2;6;2;success;-1.7;94.027;-38.3;0.9;4991.6;no
+18;student;single;unknown;no;yes;no;cellular;aug;wed;253;2;6;1;success;-1.7;94.027;-38.3;0.9;4991.6;yes
+52;admin.;married;university.degree;no;yes;no;cellular;aug;wed;261;1;999;0;nonexistent;-1.7;94.027;-38.3;0.9;4991.6;no
+48;blue-collar;married;basic.9y;no;no;no;cellular;aug;wed;296;1;16;3;failure;-1.7;94.027;-38.3;0.9;4991.6;yes
+27;student;single;university.degree;no;yes;no;telephone;aug;wed;153;1;0;5;success;-1.7;94.027;-38.3;0.9;4991.6;no
+34;admin.;married;university.degree;no;yes;no;cellular;aug;wed;250;1;10;2;failure;-1.7;94.027;-38.3;0.9;4991.6;yes
+27;student;single;basic.9y;no;yes;no;cellular;aug;wed;111;1;999;0;nonexistent;-1.7;94.027;-38.3;0.9;4991.6;no
+18;student;single;unknown;no;yes;no;cellular;aug;wed;561;1;17;2;failure;-1.7;94.027;-38.3;0.9;4991.6;yes
+48;admin.;single;university.degree;no;yes;no;cellular;aug;wed;118;1;0;2;success;-1.7;94.027;-38.3;0.9;4991.6;yes
+47;admin.;married;university.degree;no;no;no;cellular;aug;wed;470;1;4;2;success;-1.7;94.027;-38.3;0.9;4991.6;yes
+30;admin.;single;university.degree;no;yes;no;cellular;aug;wed;191;1;0;2;success;-1.7;94.027;-38.3;0.9;4991.6;yes
+18;student;single;unknown;no;yes;yes;telephone;aug;wed;297;1;999;0;nonexistent;-1.7;94.027;-38.3;0.9;4991.6;no
+44;services;divorced;basic.6y;no;yes;no;cellular;aug;wed;153;3;0;1;success;-1.7;94.027;-38.3;0.9;4991.6;yes
+30;blue-collar;single;professional.course;no;no;no;cellular;aug;wed;293;1;9;1;success;-1.7;94.027;-38.3;0.9;4991.6;yes
+46;admin.;single;high.school;no;no;no;cellular;aug;thu;510;2;17;1;success;-1.7;94.027;-38.3;0.904;4991.6;no
+41;admin.;divorced;high.school;no;yes;yes;cellular;aug;thu;231;2;0;2;success;-1.7;94.027;-38.3;0.904;4991.6;yes
+46;admin.;single;high.school;no;no;no;cellular;aug;thu;329;2;9;4;failure;-1.7;94.027;-38.3;0.904;4991.6;no
+26;unemployed;single;university.degree;no;yes;no;cellular;aug;thu;508;3;6;2;success;-1.7;94.027;-38.3;0.904;4991.6;yes
+46;technician;married;professional.course;no;no;no;cellular;aug;thu;382;1;999;1;failure;-1.7;94.027;-38.3;0.904;4991.6;no
+26;unemployed;single;university.degree;no;yes;no;cellular;aug;thu;203;1;3;3;success;-1.7;94.027;-38.3;0.904;4991.6;yes
+48;admin.;divorced;university.degree;no;no;no;cellular;aug;thu;544;1;999;0;nonexistent;-1.7;94.027;-38.3;0.904;4991.6;yes
+71;blue-collar;divorced;basic.4y;unknown;no;no;cellular;aug;thu;224;1;999;0;nonexistent;-1.7;94.027;-38.3;0.904;4991.6;no
+41;admin.;divorced;high.school;no;unknown;unknown;cellular;aug;thu;272;1;999;0;nonexistent;-1.7;94.027;-38.3;0.904;4991.6;yes
+48;admin.;divorced;university.degree;no;no;no;cellular;aug;thu;172;3;3;6;success;-1.7;94.027;-38.3;0.904;4991.6;yes
+44;admin.;single;university.degree;no;no;no;cellular;aug;thu;492;1;999;2;failure;-1.7;94.027;-38.3;0.904;4991.6;no
+27;technician;single;university.degree;no;yes;no;cellular;aug;thu;250;3;999;5;failure;-1.7;94.027;-38.3;0.904;4991.6;no
+47;admin.;married;high.school;no;no;no;cellular;aug;thu;374;2;16;1;success;-1.7;94.027;-38.3;0.904;4991.6;yes
+31;student;single;unknown;no;yes;no;cellular;aug;thu;306;2;999;0;nonexistent;-1.7;94.027;-38.3;0.904;4991.6;yes
+77;retired;married;basic.4y;no;no;no;cellular;aug;thu;318;1;9;4;failure;-1.7;94.027;-38.3;0.904;4991.6;yes
+31;student;single;unknown;no;yes;no;cellular;aug;thu;375;2;999;0;nonexistent;-1.7;94.027;-38.3;0.904;4991.6;yes
+41;entrepreneur;married;university.degree;no;yes;no;cellular;aug;thu;324;1;999;0;nonexistent;-1.7;94.027;-38.3;0.904;4991.6;yes
+30;student;single;high.school;no;no;no;cellular;aug;thu;200;1;999;1;failure;-1.7;94.027;-38.3;0.904;4991.6;no
+41;entrepreneur;married;university.degree;no;yes;no;cellular;aug;thu;736;1;999;0;nonexistent;-1.7;94.027;-38.3;0.904;4991.6;yes
+71;retired;married;university.degree;no;yes;no;cellular;aug;thu;134;1;999;0;nonexistent;-1.7;94.027;-38.3;0.904;4991.6;no
+37;management;married;high.school;no;yes;no;cellular;aug;thu;633;1;999;0;nonexistent;-1.7;94.027;-38.3;0.904;4991.6;yes
+46;technician;married;professional.course;no;yes;no;cellular;aug;thu;245;2;999;4;failure;-1.7;94.027;-38.3;0.904;4991.6;yes
+63;retired;married;basic.4y;no;no;no;cellular;aug;thu;163;1;999;0;nonexistent;-1.7;94.027;-38.3;0.904;4991.6;no
+41;admin.;divorced;high.school;no;yes;yes;cellular;aug;thu;98;3;999;0;nonexistent;-1.7;94.027;-38.3;0.904;4991.6;no
+25;admin.;single;university.degree;no;no;no;cellular;aug;thu;215;1;999;0;nonexistent;-1.7;94.027;-38.3;0.904;4991.6;yes
+45;admin.;married;university.degree;no;no;no;cellular;aug;thu;323;1;999;0;nonexistent;-1.7;94.027;-38.3;0.904;4991.6;yes
+60;housemaid;married;basic.4y;no;no;no;cellular;aug;fri;270;4;6;4;failure;-1.7;94.027;-38.3;0.905;4991.6;no
+59;retired;married;professional.course;no;yes;no;cellular;aug;fri;303;2;3;2;success;-1.7;94.027;-38.3;0.905;4991.6;yes
+72;housemaid;married;basic.6y;unknown;yes;no;cellular;aug;fri;137;1;999;0;nonexistent;-1.7;94.027;-38.3;0.905;4991.6;no
+32;entrepreneur;single;professional.course;no;yes;no;telephone;aug;fri;47;1;999;0;nonexistent;-1.7;94.027;-38.3;0.905;4991.6;no
+41;admin.;divorced;high.school;no;yes;no;cellular;aug;fri;258;2;6;3;success;-1.7;94.027;-38.3;0.905;4991.6;yes
+27;admin.;single;university.degree;no;no;no;cellular;aug;fri;562;2;3;3;success;-1.7;94.027;-38.3;0.905;4991.6;yes
+59;retired;married;professional.course;no;no;no;cellular;aug;fri;218;3;3;1;success;-1.7;94.027;-38.3;0.905;4991.6;yes
+41;admin.;divorced;high.school;no;yes;no;cellular;aug;fri;178;1;6;2;success;-1.7;94.027;-38.3;0.905;4991.6;yes
+41;admin.;divorced;high.school;no;yes;no;cellular;aug;fri;174;1;4;3;failure;-1.7;94.027;-38.3;0.905;4991.6;yes
+77;management;married;unknown;no;yes;no;cellular;aug;fri;160;1;3;6;success;-1.7;94.027;-38.3;0.905;4991.6;yes
+41;technician;divorced;university.degree;no;yes;no;cellular;aug;fri;252;1;999;1;failure;-1.7;94.027;-38.3;0.905;4991.6;no
+41;technician;divorced;university.degree;no;yes;no;cellular;aug;fri;366;2;6;3;success;-1.7;94.027;-38.3;0.905;4991.6;yes
+27;admin.;single;university.degree;no;yes;no;cellular;aug;fri;177;2;999;0;nonexistent;-1.7;94.027;-38.3;0.905;4991.6;yes
+24;admin.;single;university.degree;no;yes;yes;cellular;aug;fri;101;5;6;2;success;-1.7;94.027;-38.3;0.905;4991.6;no
+24;admin.;single;university.degree;no;no;no;cellular;aug;fri;744;1;999;2;failure;-1.7;94.027;-38.3;0.905;4991.6;yes
+64;retired;married;basic.4y;no;unknown;unknown;telephone;aug;fri;245;3;999;0;nonexistent;-1.7;94.027;-38.3;0.905;4991.6;yes
+64;unknown;married;unknown;no;yes;no;telephone;aug;fri;239;4;999;0;nonexistent;-1.7;94.027;-38.3;0.905;4991.6;yes
+30;technician;single;professional.course;no;no;no;telephone;aug;mon;6;1;999;0;nonexistent;-1.7;94.027;-38.3;0.904;4991.6;no
+30;self-employed;single;university.degree;no;unknown;unknown;cellular;aug;mon;148;2;999;0;nonexistent;-1.7;94.027;-38.3;0.904;4991.6;no
+26;services;single;high.school;no;no;no;telephone;aug;mon;6;1;999;3;failure;-1.7;94.027;-38.3;0.904;4991.6;no
+30;self-employed;single;university.degree;no;no;no;cellular;aug;mon;370;2;999;1;failure;-1.7;94.027;-38.3;0.904;4991.6;no
+26;admin.;single;university.degree;no;no;no;telephone;aug;mon;440;5;999;2;failure;-1.7;94.027;-38.3;0.904;4991.6;no
+47;management;married;university.degree;no;yes;no;cellular;aug;mon;145;3;3;2;success;-1.7;94.027;-38.3;0.904;4991.6;no
+35;unemployed;married;high.school;no;yes;no;cellular;aug;mon;362;1;6;1;success;-1.7;94.027;-38.3;0.904;4991.6;yes
+47;management;married;university.degree;no;yes;no;cellular;aug;mon;182;2;999;6;failure;-1.7;94.027;-38.3;0.904;4991.6;no
+73;retired;divorced;basic.4y;unknown;yes;no;telephone;aug;mon;195;1;999;0;nonexistent;-1.7;94.027;-38.3;0.904;4991.6;no
+56;blue-collar;divorced;basic.4y;no;yes;no;telephone;aug;mon;361;1;12;4;failure;-1.7;94.027;-38.3;0.904;4991.6;no
+29;services;single;university.degree;no;no;no;cellular;aug;mon;265;1;6;1;success;-1.7;94.027;-38.3;0.904;4991.6;yes
+58;technician;married;basic.9y;no;yes;no;cellular;aug;mon;324;1;999;0;nonexistent;-1.7;94.027;-38.3;0.904;4991.6;yes
+26;admin.;single;university.degree;no;no;no;telephone;aug;mon;1087;1;3;1;success;-1.7;94.027;-38.3;0.904;4991.6;yes
+26;admin.;single;university.degree;no;no;no;cellular;aug;mon;242;1;6;5;success;-1.7;94.027;-38.3;0.904;4991.6;yes
+53;management;married;university.degree;no;yes;no;telephone;aug;tue;97;1;999;0;nonexistent;-1.7;94.027;-38.3;0.904;4991.6;yes
+55;housemaid;single;university.degree;no;yes;no;telephone;aug;tue;11;1;999;0;nonexistent;-1.7;94.027;-38.3;0.904;4991.6;no
+73;retired;divorced;basic.4y;unknown;yes;no;cellular;aug;tue;273;2;999;1;failure;-1.7;94.027;-38.3;0.904;4991.6;no
+55;admin.;divorced;high.school;no;no;no;cellular;aug;tue;245;1;999;0;nonexistent;-1.7;94.027;-38.3;0.904;4991.6;yes
+25;unemployed;single;high.school;no;no;no;cellular;aug;tue;188;1;3;3;success;-1.7;94.027;-38.3;0.904;4991.6;no
+58;management;married;university.degree;no;no;no;cellular;aug;tue;412;1;999;0;nonexistent;-1.7;94.027;-38.3;0.904;4991.6;yes
+34;blue-collar;married;basic.9y;no;no;yes;cellular;aug;tue;447;1;999;1;failure;-1.7;94.027;-38.3;0.904;4991.6;yes
+92;retired;married;unknown;no;no;yes;cellular;aug;tue;1064;1;3;1;success;-1.7;94.027;-38.3;0.904;4991.6;yes
+19;student;single;unknown;no;no;no;cellular;aug;tue;192;1;999;1;failure;-1.7;94.027;-38.3;0.904;4991.6;no
+50;admin.;single;university.degree;no;no;no;cellular;aug;tue;372;1;6;2;success;-1.7;94.027;-38.3;0.904;4991.6;yes
+22;technician;single;professional.course;no;yes;no;cellular;aug;tue;122;1;999;0;nonexistent;-1.7;94.027;-38.3;0.904;4991.6;no
+65;retired;married;professional.course;no;yes;no;cellular;aug;tue;261;1;6;3;success;-1.7;94.027;-38.3;0.904;4991.6;yes
+34;admin.;single;high.school;no;yes;no;cellular;aug;tue;168;2;999;0;nonexistent;-1.7;94.027;-38.3;0.904;4991.6;no
+37;management;married;university.degree;no;yes;yes;telephone;aug;tue;365;2;6;1;success;-1.7;94.027;-38.3;0.904;4991.6;no
+31;admin.;married;university.degree;no;no;no;cellular;aug;tue;164;1;999;0;nonexistent;-1.7;94.027;-38.3;0.904;4991.6;yes
+70;retired;married;basic.4y;no;yes;no;cellular;aug;tue;356;3;6;1;success;-1.7;94.027;-38.3;0.904;4991.6;yes
+25;technician;single;university.degree;no;yes;no;telephone;aug;tue;6;1;999;0;nonexistent;-1.7;94.027;-38.3;0.904;4991.6;no
+31;admin.;married;university.degree;no;no;no;cellular;aug;tue;317;2;999;1;failure;-1.7;94.027;-38.3;0.904;4991.6;yes
+55;admin.;divorced;high.school;no;yes;no;cellular;aug;tue;244;2;6;3;success;-1.7;94.027;-38.3;0.904;4991.6;yes
+65;retired;married;professional.course;no;yes;no;cellular;aug;tue;170;2;999;0;nonexistent;-1.7;94.027;-38.3;0.904;4991.6;no
+43;technician;married;high.school;no;yes;no;cellular;aug;wed;1363;1;999;0;nonexistent;-1.7;94.027;-38.3;0.903;4991.6;yes
+31;services;single;high.school;no;yes;no;telephone;aug;wed;61;1;999;0;nonexistent;-1.7;94.027;-38.3;0.903;4991.6;no
+61;admin.;married;university.degree;no;yes;yes;telephone;aug;wed;425;1;6;2;success;-1.7;94.027;-38.3;0.903;4991.6;yes
+26;student;single;high.school;no;yes;no;cellular;aug;wed;233;1;14;1;success;-1.7;94.027;-38.3;0.903;4991.6;yes
+51;blue-collar;married;basic.9y;no;yes;no;cellular;aug;wed;237;1;6;4;success;-1.7;94.027;-38.3;0.903;4991.6;yes
+77;retired;married;unknown;no;no;no;cellular;aug;wed;144;8;999;2;failure;-1.7;94.027;-38.3;0.903;4991.6;no
+92;retired;married;unknown;no;no;yes;cellular;aug;wed;370;1;3;4;success;-1.7;94.027;-38.3;0.903;4991.6;yes
+75;retired;married;basic.4y;no;no;no;cellular;aug;wed;248;2;6;3;success;-1.7;94.027;-38.3;0.903;4991.6;yes
+59;admin.;married;university.degree;no;yes;no;cellular;aug;wed;443;3;999;0;nonexistent;-1.7;94.027;-38.3;0.903;4991.6;no
+35;admin.;married;university.degree;no;yes;no;cellular;aug;wed;765;2;6;3;success;-1.7;94.027;-38.3;0.903;4991.6;yes
+66;admin.;divorced;university.degree;no;yes;no;cellular;aug;wed;222;3;6;2;success;-1.7;94.027;-38.3;0.903;4991.6;yes
+35;admin.;married;university.degree;no;yes;yes;cellular;aug;thu;176;1;999;2;failure;-1.7;94.027;-38.3;0.899;4991.6;no
+41;admin.;married;university.degree;no;yes;no;telephone;aug;thu;345;1;9;3;failure;-1.7;94.027;-38.3;0.899;4991.6;yes
+42;technician;married;professional.course;no;no;no;cellular;aug;thu;295;1;6;2;success;-1.7;94.027;-38.3;0.899;4991.6;yes
+71;admin.;married;basic.4y;no;yes;no;cellular;aug;thu;192;1;999;2;failure;-1.7;94.027;-38.3;0.899;4991.6;no
+67;housemaid;divorced;professional.course;no;no;no;cellular;aug;thu;350;1;6;2;success;-1.7;94.027;-38.3;0.899;4991.6;yes
+60;blue-collar;married;basic.4y;no;yes;no;cellular;aug;thu;176;1;999;1;failure;-1.7;94.027;-38.3;0.899;4991.6;no
+52;management;married;university.degree;no;yes;no;cellular;aug;thu;175;3;1;3;success;-1.7;94.027;-38.3;0.899;4991.6;yes
+70;technician;married;unknown;no;no;no;cellular;aug;thu;411;1;999;0;nonexistent;-1.7;94.027;-38.3;0.899;4991.6;yes
+33;admin.;married;university.degree;no;no;no;cellular;aug;thu;361;1;999;0;nonexistent;-1.7;94.027;-38.3;0.899;4991.6;yes
+51;technician;married;professional.course;no;yes;no;cellular;aug;thu;1226;3;999;0;nonexistent;-1.7;94.027;-38.3;0.899;4991.6;yes
+76;retired;married;university.degree;no;yes;no;cellular;aug;thu;504;2;6;3;success;-1.7;94.027;-38.3;0.899;4991.6;yes
+27;admin.;married;university.degree;no;no;no;cellular;aug;thu;312;3;6;1;success;-1.7;94.027;-38.3;0.899;4991.6;yes
+60;blue-collar;married;basic.4y;no;yes;no;cellular;aug;thu;187;2;999;0;nonexistent;-1.7;94.027;-38.3;0.899;4991.6;no
+33;admin.;married;university.degree;no;yes;no;cellular;aug;thu;265;1;3;3;success;-1.7;94.027;-38.3;0.899;4991.6;yes
+76;retired;married;university.degree;no;no;no;cellular;aug;thu;126;1;999;1;failure;-1.7;94.027;-38.3;0.899;4991.6;no
+30;admin.;single;high.school;no;no;no;telephone;aug;thu;18;1;22;1;success;-1.7;94.027;-38.3;0.899;4991.6;no
+33;management;married;university.degree;no;no;no;telephone;aug;thu;201;1;6;2;success;-1.7;94.027;-38.3;0.899;4991.6;yes
+52;management;married;university.degree;no;unknown;unknown;cellular;aug;thu;157;2;999;0;nonexistent;-1.7;94.027;-38.3;0.899;4991.6;no
+42;blue-collar;married;basic.9y;no;yes;no;cellular;aug;fri;261;1;6;1;success;-1.7;94.027;-38.3;0.898;4991.6;yes
+25;student;single;high.school;no;yes;yes;telephone;aug;fri;461;1;999;0;nonexistent;-1.7;94.027;-38.3;0.898;4991.6;yes
+48;self-employed;divorced;university.degree;no;no;no;cellular;aug;fri;222;4;999;0;nonexistent;-1.7;94.027;-38.3;0.898;4991.6;yes
+38;entrepreneur;married;university.degree;no;yes;no;cellular;aug;fri;633;1;16;1;success;-1.7;94.027;-38.3;0.898;4991.6;yes
+39;services;single;high.school;no;yes;no;cellular;aug;fri;308;6;999;0;nonexistent;-1.7;94.027;-38.3;0.898;4991.6;yes
+40;management;divorced;university.degree;no;no;no;cellular;aug;fri;183;1;999;0;nonexistent;-1.7;94.027;-38.3;0.898;4991.6;no
+36;services;single;university.degree;no;no;no;cellular;aug;fri;394;6;999;0;nonexistent;-1.7;94.027;-38.3;0.898;4991.6;yes
+30;admin.;single;university.degree;no;no;no;cellular;aug;fri;177;6;6;3;success;-1.7;94.027;-38.3;0.898;4991.6;yes
+32;admin.;married;university.degree;no;no;no;telephone;aug;fri;75;1;999;0;nonexistent;-1.7;94.027;-38.3;0.898;4991.6;no
+48;self-employed;divorced;university.degree;no;no;no;cellular;aug;fri;166;1;999;1;failure;-1.7;94.027;-38.3;0.898;4991.6;no
+28;admin.;married;university.degree;no;no;no;cellular;aug;fri;161;4;999;0;nonexistent;-1.7;94.027;-38.3;0.898;4991.6;no
+39;blue-collar;single;basic.4y;no;yes;yes;telephone;aug;fri;9;1;999;0;nonexistent;-1.7;94.027;-38.3;0.898;4991.6;no
+42;technician;married;university.degree;no;no;no;cellular;aug;fri;211;3;6;2;success;-1.7;94.027;-38.3;0.898;4991.6;yes
+35;management;married;university.degree;no;no;no;telephone;aug;fri;12;1;999;0;nonexistent;-1.7;94.027;-38.3;0.898;4991.6;no
+31;admin.;married;professional.course;no;no;no;cellular;aug;mon;318;2;999;0;nonexistent;-1.7;94.027;-38.3;0.896;4991.6;yes
+60;retired;married;basic.4y;no;no;no;cellular;aug;mon;143;2;15;2;failure;-1.7;94.027;-38.3;0.896;4991.6;no
+34;technician;single;basic.9y;no;yes;no;cellular;aug;mon;140;3;999;0;nonexistent;-1.7;94.027;-38.3;0.896;4991.6;no
+31;admin.;single;university.degree;no;yes;no;cellular;aug;mon;239;3;999;0;nonexistent;-1.7;94.027;-38.3;0.896;4991.6;yes
+34;technician;single;basic.9y;no;no;no;cellular;aug;mon;205;3;6;3;success;-1.7;94.027;-38.3;0.896;4991.6;yes
+45;technician;married;university.degree;no;no;no;cellular;aug;mon;111;2;999;1;failure;-1.7;94.027;-38.3;0.896;4991.6;no
+34;technician;single;basic.9y;no;no;no;cellular;aug;mon;200;2;999;0;nonexistent;-1.7;94.027;-38.3;0.896;4991.6;no
+44;retired;single;high.school;no;no;no;cellular;aug;mon;2035;4;999;0;nonexistent;-1.7;94.027;-38.3;0.896;4991.6;yes
+33;student;married;professional.course;no;yes;no;cellular;aug;mon;265;3;3;4;success;-1.7;94.027;-38.3;0.896;4991.6;yes
+45;admin.;divorced;basic.9y;no;yes;yes;telephone;aug;tue;8;1;999;0;nonexistent;-1.7;94.027;-38.3;0.895;4991.6;no
+34;entrepreneur;married;professional.course;no;no;no;telephone;aug;tue;6;1;999;0;nonexistent;-1.7;94.027;-38.3;0.895;4991.6;no
+58;self-employed;married;university.degree;no;no;no;cellular;aug;tue;326;4;6;3;success;-1.7;94.027;-38.3;0.895;4991.6;yes
+26;student;single;high.school;no;no;no;cellular;aug;wed;95;3;999;3;failure;-1.7;94.027;-38.3;0.894;4991.6;no
+54;management;married;high.school;no;no;no;cellular;aug;wed;171;3;999;1;failure;-1.7;94.027;-38.3;0.894;4991.6;no
+36;admin.;married;university.degree;no;no;no;cellular;aug;wed;212;7;6;1;success;-1.7;94.027;-38.3;0.894;4991.6;no
+40;admin.;married;high.school;no;yes;no;telephone;aug;thu;173;6;999;1;failure;-1.7;94.027;-38.3;0.891;4991.6;no
+39;admin.;single;university.degree;no;yes;yes;telephone;aug;fri;45;1;999;0;nonexistent;-1.7;94.027;-38.3;0.89;4991.6;no
+33;admin.;divorced;high.school;no;no;no;telephone;aug;fri;107;1;999;0;nonexistent;-1.7;94.027;-38.3;0.89;4991.6;no
+34;admin.;single;high.school;no;unknown;unknown;telephone;aug;fri;22;1;999;0;nonexistent;-1.7;94.027;-38.3;0.89;4991.6;no
+29;services;single;university.degree;no;yes;no;telephone;aug;fri;6;1;999;0;nonexistent;-1.7;94.027;-38.3;0.89;4991.6;no
+49;admin.;married;university.degree;no;yes;no;telephone;aug;fri;4;1;999;0;nonexistent;-1.7;94.027;-38.3;0.89;4991.6;no
+45;self-employed;divorced;professional.course;no;yes;no;telephone;aug;mon;5;1;999;1;failure;-1.7;94.027;-38.3;0.891;4991.6;no
+30;admin.;single;professional.course;no;no;no;telephone;aug;mon;10;1;999;0;nonexistent;-1.7;94.027;-38.3;0.891;4991.6;no
+72;retired;divorced;university.degree;no;no;no;cellular;aug;mon;220;16;999;1;failure;-1.7;94.027;-38.3;0.891;4991.6;no
+26;blue-collar;married;professional.course;no;unknown;unknown;telephone;aug;tue;11;1;999;0;nonexistent;-1.7;94.027;-38.3;0.889;4991.6;no
+33;unemployed;single;basic.9y;no;yes;no;telephone;aug;tue;5;1;999;0;nonexistent;-1.7;94.027;-38.3;0.889;4991.6;no
+22;student;single;basic.9y;no;no;no;telephone;aug;tue;26;1;999;0;nonexistent;-1.7;94.027;-38.3;0.889;4991.6;no
+28;student;single;university.degree;no;yes;no;telephone;aug;wed;6;1;999;0;nonexistent;-1.7;94.027;-38.3;0.89;4991.6;no
+30;technician;married;professional.course;no;no;no;telephone;aug;wed;5;1;0;4;success;-1.7;94.027;-38.3;0.89;4991.6;no
+35;entrepreneur;married;basic.9y;no;yes;no;telephone;aug;wed;17;1;999;0;nonexistent;-1.7;94.027;-38.3;0.89;4991.6;no
+58;blue-collar;married;high.school;no;yes;no;telephone;aug;fri;4;1;999;0;nonexistent;-1.7;94.027;-38.3;0.888;4991.6;no
+27;admin.;single;high.school;no;no;no;telephone;aug;fri;3785;1;999;0;nonexistent;-1.7;94.027;-38.3;0.888;4991.6;no
+49;management;divorced;university.degree;no;yes;no;telephone;aug;mon;26;1;999;0;nonexistent;-1.7;94.027;-38.3;0.888;4991.6;no
+21;services;single;unknown;no;yes;no;telephone;aug;mon;28;1;999;0;nonexistent;-1.7;94.027;-38.3;0.888;4991.6;no
+27;admin.;married;high.school;no;yes;no;telephone;aug;mon;36;1;999;0;nonexistent;-1.7;94.027;-38.3;0.888;4991.6;no
+30;admin.;single;university.degree;no;yes;no;cellular;aug;tue;193;1;999;0;nonexistent;-1.7;94.027;-38.3;0.886;4991.6;no
+30;admin.;single;university.degree;no;no;no;cellular;aug;tue;343;1;999;0;nonexistent;-1.7;94.027;-38.3;0.886;4991.6;yes
+19;student;single;high.school;no;unknown;unknown;cellular;aug;tue;1120;1;999;0;nonexistent;-1.7;94.027;-38.3;0.886;4991.6;yes
+33;blue-collar;married;professional.course;no;yes;no;cellular;aug;tue;253;4;999;0;nonexistent;-1.7;94.027;-38.3;0.886;4991.6;yes
+31;admin.;single;high.school;no;no;no;cellular;aug;tue;241;1;999;1;failure;-1.7;94.027;-38.3;0.886;4991.6;no
+76;retired;divorced;basic.4y;no;no;no;cellular;aug;tue;185;1;999;1;failure;-1.7;94.027;-38.3;0.886;4991.6;yes
+60;retired;married;high.school;no;yes;no;cellular;aug;tue;443;2;999;2;failure;-1.7;94.027;-38.3;0.886;4991.6;yes
+56;retired;married;university.degree;no;no;no;cellular;aug;tue;634;3;999;1;failure;-1.7;94.027;-38.3;0.886;4991.6;yes
+58;retired;divorced;basic.4y;no;no;no;telephone;aug;tue;34;1;999;0;nonexistent;-1.7;94.027;-38.3;0.886;4991.6;no
+34;blue-collar;married;basic.9y;no;yes;no;cellular;aug;tue;298;2;999;0;nonexistent;-1.7;94.027;-38.3;0.886;4991.6;no
+44;admin.;single;high.school;no;yes;no;telephone;aug;tue;27;1;999;0;nonexistent;-1.7;94.027;-38.3;0.886;4991.6;no
+27;admin.;married;university.degree;no;yes;no;cellular;aug;tue;415;5;12;1;success;-1.7;94.027;-38.3;0.886;4991.6;yes
+64;retired;married;professional.course;no;yes;no;cellular;sep;wed;222;2;999;0;nonexistent;-1.1;94.199;-37.5;0.886;4963.6;yes
+72;retired;married;professional.course;no;no;no;cellular;sep;wed;1;1;999;1;failure;-1.1;94.199;-37.5;0.886;4963.6;no
+34;admin.;married;university.degree;no;yes;no;cellular;sep;wed;161;1;18;2;failure;-1.1;94.199;-37.5;0.886;4963.6;no
+69;retired;married;high.school;no;yes;yes;cellular;sep;wed;840;1;6;2;success;-1.1;94.199;-37.5;0.886;4963.6;yes
+33;technician;married;professional.course;no;yes;no;cellular;sep;wed;269;1;999;0;nonexistent;-1.1;94.199;-37.5;0.886;4963.6;yes
+37;admin.;married;university.degree;no;yes;no;cellular;sep;wed;729;1;999;1;failure;-1.1;94.199;-37.5;0.886;4963.6;yes
+24;student;single;unknown;no;yes;no;cellular;sep;wed;300;1;5;1;success;-1.1;94.199;-37.5;0.886;4963.6;yes
+24;student;single;unknown;no;yes;no;cellular;sep;wed;222;1;17;4;failure;-1.1;94.199;-37.5;0.886;4963.6;no
+60;admin.;divorced;professional.course;no;yes;no;cellular;sep;wed;481;1;999;1;failure;-1.1;94.199;-37.5;0.886;4963.6;yes
+71;retired;married;high.school;no;no;no;cellular;sep;wed;222;1;999;0;nonexistent;-1.1;94.199;-37.5;0.886;4963.6;no
+59;admin.;married;university.degree;no;no;yes;cellular;sep;wed;193;1;3;1;success;-1.1;94.199;-37.5;0.886;4963.6;yes
+45;blue-collar;single;high.school;no;yes;yes;cellular;sep;wed;327;1;999;0;nonexistent;-1.1;94.199;-37.5;0.886;4963.6;yes
+24;student;single;unknown;no;yes;no;cellular;sep;wed;191;2;999;3;failure;-1.1;94.199;-37.5;0.886;4963.6;no
+24;student;single;unknown;no;yes;yes;telephone;sep;wed;663;1;10;1;success;-1.1;94.199;-37.5;0.886;4963.6;no
+37;admin.;married;university.degree;no;no;no;cellular;sep;wed;265;2;6;2;success;-1.1;94.199;-37.5;0.886;4963.6;yes
+70;retired;divorced;professional.course;no;yes;no;telephone;sep;wed;380;4;999;0;nonexistent;-1.1;94.199;-37.5;0.886;4963.6;no
+34;admin.;married;university.degree;no;yes;no;cellular;sep;wed;691;2;999;0;nonexistent;-1.1;94.199;-37.5;0.886;4963.6;no
+29;self-employed;single;university.degree;no;yes;yes;cellular;sep;wed;95;2;999;0;nonexistent;-1.1;94.199;-37.5;0.886;4963.6;no
+24;student;single;unknown;no;yes;no;cellular;sep;wed;367;1;999;2;failure;-1.1;94.199;-37.5;0.886;4963.6;no
+37;admin.;married;university.degree;no;no;no;telephone;sep;wed;150;1;999;0;nonexistent;-1.1;94.199;-37.5;0.886;4963.6;no
+22;student;single;high.school;no;no;no;cellular;sep;wed;369;3;5;1;success;-1.1;94.199;-37.5;0.886;4963.6;yes
+45;management;married;university.degree;no;no;no;cellular;sep;wed;293;2;3;2;success;-1.1;94.199;-37.5;0.886;4963.6;yes
+81;retired;divorced;basic.4y;no;no;no;cellular;sep;wed;532;2;7;1;success;-1.1;94.199;-37.5;0.886;4963.6;yes
+33;technician;single;professional.course;no;no;no;cellular;sep;wed;425;1;999;0;nonexistent;-1.1;94.199;-37.5;0.886;4963.6;no
+71;retired;married;high.school;no;yes;no;telephone;sep;wed;232;1;999;2;failure;-1.1;94.199;-37.5;0.886;4963.6;no
+30;management;married;university.degree;no;yes;no;telephone;sep;wed;20;1;999;0;nonexistent;-1.1;94.199;-37.5;0.886;4963.6;no
+35;services;married;university.degree;no;yes;no;telephone;sep;thu;8;1;999;0;nonexistent;-1.1;94.199;-37.5;0.884;4963.6;no
+58;retired;married;basic.4y;no;yes;no;telephone;sep;thu;7;1;999;0;nonexistent;-1.1;94.199;-37.5;0.884;4963.6;no
+44;blue-collar;married;basic.6y;no;yes;no;telephone;sep;thu;10;1;999;0;nonexistent;-1.1;94.199;-37.5;0.884;4963.6;no
+26;admin.;single;university.degree;no;yes;no;telephone;sep;thu;4;1;999;0;nonexistent;-1.1;94.199;-37.5;0.884;4963.6;no
+47;management;married;university.degree;no;yes;no;cellular;sep;thu;281;2;999;1;failure;-1.1;94.199;-37.5;0.884;4963.6;no
+55;management;divorced;university.degree;no;yes;no;cellular;sep;thu;1440;1;999;1;failure;-1.1;94.199;-37.5;0.884;4963.6;yes
+39;management;married;university.degree;no;yes;no;cellular;sep;thu;291;3;999;0;nonexistent;-1.1;94.199;-37.5;0.884;4963.6;yes
+60;retired;married;university.degree;no;no;no;cellular;sep;thu;529;2;6;1;success;-1.1;94.199;-37.5;0.884;4963.6;yes
+32;services;single;university.degree;no;no;no;cellular;sep;thu;128;3;999;2;failure;-1.1;94.199;-37.5;0.884;4963.6;no
+38;technician;married;university.degree;no;yes;no;telephone;sep;thu;173;1;999;3;failure;-1.1;94.199;-37.5;0.884;4963.6;no
+47;management;married;university.degree;no;no;no;cellular;sep;thu;362;1;17;2;success;-1.1;94.199;-37.5;0.884;4963.6;yes
+57;admin.;married;basic.9y;no;no;no;cellular;sep;thu;114;2;999;1;failure;-1.1;94.199;-37.5;0.884;4963.6;no
+51;technician;married;university.degree;no;yes;no;cellular;sep;thu;97;6;6;4;failure;-1.1;94.199;-37.5;0.884;4963.6;no
+78;retired;divorced;high.school;no;no;no;cellular;sep;thu;238;1;999;2;failure;-1.1;94.199;-37.5;0.884;4963.6;no
+32;admin.;single;university.degree;no;no;no;cellular;sep;thu;154;1;999;0;nonexistent;-1.1;94.199;-37.5;0.884;4963.6;no
+60;retired;married;university.degree;no;no;no;cellular;sep;thu;799;2;999;0;nonexistent;-1.1;94.199;-37.5;0.884;4963.6;yes
+32;services;single;university.degree;no;yes;no;cellular;sep;thu;404;1;6;3;success;-1.1;94.199;-37.5;0.884;4963.6;yes
+32;admin.;single;university.degree;no;yes;no;cellular;sep;thu;150;2;10;3;success;-1.1;94.199;-37.5;0.884;4963.6;yes
+39;management;married;university.degree;no;yes;yes;cellular;sep;thu;206;7;999;1;failure;-1.1;94.199;-37.5;0.884;4963.6;no
+43;unemployed;married;basic.9y;no;no;no;cellular;sep;fri;270;2;9;1;success;-1.1;94.199;-37.5;0.883;4963.6;yes
+67;retired;married;professional.course;no;no;no;cellular;sep;fri;116;2;999;0;nonexistent;-1.1;94.199;-37.5;0.883;4963.6;no
+49;admin.;married;university.degree;no;no;no;cellular;sep;fri;110;6;999;3;failure;-1.1;94.199;-37.5;0.883;4963.6;no
+57;management;married;university.degree;no;no;no;cellular;sep;fri;277;2;6;2;success;-1.1;94.199;-37.5;0.883;4963.6;yes
+59;services;married;professional.course;no;yes;no;cellular;sep;fri;251;3;2;4;success;-1.1;94.199;-37.5;0.883;4963.6;no
+51;unemployed;married;high.school;no;yes;yes;cellular;sep;fri;240;3;999;0;nonexistent;-1.1;94.199;-37.5;0.883;4963.6;no
+31;admin.;single;high.school;no;no;no;cellular;sep;fri;252;2;3;2;success;-1.1;94.199;-37.5;0.883;4963.6;yes
+34;technician;married;professional.course;no;yes;yes;cellular;sep;fri;120;1;6;3;success;-1.1;94.199;-37.5;0.883;4963.6;no
+30;technician;single;professional.course;no;yes;no;cellular;sep;fri;789;2;999;0;nonexistent;-1.1;94.199;-37.5;0.883;4963.6;no
+34;technician;married;professional.course;no;unknown;unknown;cellular;sep;fri;126;1;6;4;success;-1.1;94.199;-37.5;0.883;4963.6;no
+51;unemployed;married;high.school;no;unknown;unknown;telephone;sep;fri;228;1;999;2;failure;-1.1;94.199;-37.5;0.883;4963.6;no
+46;admin.;married;basic.9y;no;unknown;unknown;cellular;sep;fri;490;3;999;4;failure;-1.1;94.199;-37.5;0.883;4963.6;no
+30;admin.;single;high.school;no;no;no;cellular;sep;fri;219;3;6;1;success;-1.1;94.199;-37.5;0.883;4963.6;yes
+75;retired;married;basic.9y;no;no;no;telephone;sep;fri;543;9;999;1;failure;-1.1;94.199;-37.5;0.883;4963.6;no
+51;technician;married;professional.course;no;yes;no;cellular;sep;mon;841;2;999;2;failure;-1.1;94.199;-37.5;0.882;4963.6;yes
+28;admin.;single;university.degree;no;yes;no;cellular;sep;mon;387;2;6;3;success;-1.1;94.199;-37.5;0.882;4963.6;no
+25;student;single;university.degree;no;yes;yes;telephone;sep;mon;131;1;999;0;nonexistent;-1.1;94.199;-37.5;0.882;4963.6;no
+34;unemployed;married;university.degree;no;no;no;cellular;sep;mon;109;3;999;1;failure;-1.1;94.199;-37.5;0.882;4963.6;no
+22;admin.;single;university.degree;no;yes;no;cellular;sep;mon;194;2;999;3;failure;-1.1;94.199;-37.5;0.882;4963.6;yes
+33;admin.;married;university.degree;no;no;no;cellular;sep;mon;369;3;999;0;nonexistent;-1.1;94.199;-37.5;0.882;4963.6;yes
+20;blue-collar;single;basic.4y;no;no;no;telephone;sep;mon;36;1;999;0;nonexistent;-1.1;94.199;-37.5;0.882;4963.6;no
+43;entrepreneur;married;university.degree;no;no;no;cellular;sep;mon;255;1;3;1;success;-1.1;94.199;-37.5;0.882;4963.6;yes
+58;entrepreneur;married;high.school;no;no;no;cellular;sep;mon;145;1;999;2;failure;-1.1;94.199;-37.5;0.882;4963.6;no
+88;retired;married;basic.4y;no;no;no;cellular;sep;mon;127;2;999;0;nonexistent;-1.1;94.199;-37.5;0.882;4963.6;no
+58;entrepreneur;married;high.school;no;yes;no;cellular;sep;mon;198;1;999;1;failure;-1.1;94.199;-37.5;0.882;4963.6;no
+34;services;divorced;high.school;no;yes;no;telephone;sep;mon;11;1;999;1;failure;-1.1;94.199;-37.5;0.882;4963.6;no
+76;retired;married;basic.4y;no;yes;no;cellular;sep;mon;136;1;999;2;failure;-1.1;94.199;-37.5;0.882;4963.6;no
+34;unemployed;married;university.degree;no;yes;no;telephone;sep;mon;113;5;999;0;nonexistent;-1.1;94.199;-37.5;0.882;4963.6;no
+35;admin.;married;high.school;no;no;no;cellular;sep;mon;415;1;999;2;failure;-1.1;94.199;-37.5;0.882;4963.6;yes
+32;admin.;married;high.school;no;unknown;unknown;cellular;sep;mon;908;1;6;4;success;-1.1;94.199;-37.5;0.882;4963.6;yes
+34;admin.;married;university.degree;no;no;yes;cellular;sep;mon;250;3;999;0;nonexistent;-1.1;94.199;-37.5;0.882;4963.6;yes
+27;services;single;high.school;no;no;yes;telephone;sep;mon;35;1;999;0;nonexistent;-1.1;94.199;-37.5;0.882;4963.6;no
+34;admin.;married;university.degree;no;yes;no;cellular;sep;mon;125;2;999;0;nonexistent;-1.1;94.199;-37.5;0.882;4963.6;no
+88;retired;married;basic.4y;no;yes;no;cellular;sep;mon;213;7;999;0;nonexistent;-1.1;94.199;-37.5;0.882;4963.6;no
+30;services;single;university.degree;no;yes;no;telephone;sep;mon;8;1;999;0;nonexistent;-1.1;94.199;-37.5;0.882;4963.6;no
+47;technician;married;basic.6y;no;no;no;cellular;sep;mon;164;2;6;3;success;-1.1;94.199;-37.5;0.882;4963.6;no
+24;blue-collar;single;high.school;no;yes;no;cellular;sep;mon;202;1;999;3;failure;-1.1;94.199;-37.5;0.882;4963.6;no
+39;blue-collar;married;basic.9y;no;yes;no;cellular;sep;mon;791;3;999;0;nonexistent;-1.1;94.199;-37.5;0.882;4963.6;no
+88;retired;married;basic.4y;no;no;no;cellular;sep;mon;272;1;999;0;nonexistent;-1.1;94.199;-37.5;0.882;4963.6;no
+66;retired;married;unknown;no;no;no;cellular;sep;tue;667;1;999;1;failure;-1.1;94.199;-37.5;0.881;4963.6;no
+85;retired;married;basic.4y;no;no;no;cellular;sep;tue;728;1;3;2;success;-1.1;94.199;-37.5;0.881;4963.6;yes
+89;retired;divorced;basic.4y;no;yes;no;cellular;sep;tue;314;1;999;0;nonexistent;-1.1;94.199;-37.5;0.881;4963.6;yes
+48;services;married;high.school;no;no;no;telephone;sep;tue;11;1;999;0;nonexistent;-1.1;94.199;-37.5;0.881;4963.6;no
+36;admin.;married;university.degree;no;yes;no;cellular;sep;tue;127;1;999;2;failure;-1.1;94.199;-37.5;0.881;4963.6;no
+66;retired;married;unknown;no;yes;no;cellular;sep;tue;1394;2;6;1;success;-1.1;94.199;-37.5;0.881;4963.6;yes
+26;admin.;single;university.degree;no;yes;no;cellular;sep;tue;386;3;6;3;success;-1.1;94.199;-37.5;0.881;4963.6;yes
+36;management;divorced;university.degree;no;no;no;cellular;sep;tue;190;3;6;1;success;-1.1;94.199;-37.5;0.881;4963.6;yes
+36;management;divorced;university.degree;no;yes;no;cellular;sep;tue;337;1;6;1;success;-1.1;94.199;-37.5;0.881;4963.6;yes
+35;self-employed;single;university.degree;no;yes;yes;cellular;sep;tue;179;1;999;1;failure;-1.1;94.199;-37.5;0.881;4963.6;no
+26;admin.;single;university.degree;no;yes;no;cellular;sep;tue;355;1;999;1;failure;-1.1;94.199;-37.5;0.881;4963.6;no
+26;admin.;single;university.degree;no;yes;no;cellular;sep;tue;201;1;999;0;nonexistent;-1.1;94.199;-37.5;0.881;4963.6;yes
+39;entrepreneur;married;university.degree;no;yes;no;cellular;sep;tue;120;3;999;0;nonexistent;-1.1;94.199;-37.5;0.881;4963.6;no
+66;retired;married;unknown;no;no;no;cellular;sep;tue;332;5;999;0;nonexistent;-1.1;94.199;-37.5;0.881;4963.6;no
+86;retired;married;basic.4y;no;yes;no;cellular;sep;tue;288;3;999;0;nonexistent;-1.1;94.199;-37.5;0.881;4963.6;yes
+42;admin.;single;high.school;no;no;no;cellular;sep;wed;638;1;14;1;success;-1.1;94.199;-37.5;0.88;4963.6;yes
+44;management;married;university.degree;no;no;no;cellular;sep;wed;210;1;3;3;success;-1.1;94.199;-37.5;0.88;4963.6;yes
+45;unemployed;married;high.school;no;no;no;cellular;sep;wed;213;4;6;2;success;-1.1;94.199;-37.5;0.88;4963.6;no
+38;management;married;university.degree;no;no;no;cellular;sep;wed;149;2;999;1;failure;-1.1;94.199;-37.5;0.88;4963.6;no
+67;unknown;divorced;unknown;unknown;yes;no;cellular;sep;wed;220;2;6;2;success;-1.1;94.199;-37.5;0.88;4963.6;yes
+44;management;married;university.degree;no;no;yes;cellular;sep;wed;127;1;999;2;failure;-1.1;94.199;-37.5;0.88;4963.6;no
+30;management;married;university.degree;no;unknown;unknown;cellular;sep;wed;210;1;999;1;failure;-1.1;94.199;-37.5;0.88;4963.6;no
+46;services;married;university.degree;no;yes;no;cellular;sep;wed;630;1;999;0;nonexistent;-1.1;94.199;-37.5;0.88;4963.6;yes
+32;blue-collar;married;basic.4y;no;no;no;cellular;sep;wed;830;2;999;0;nonexistent;-1.1;94.199;-37.5;0.88;4963.6;yes
+31;student;single;unknown;no;unknown;unknown;cellular;sep;wed;708;2;6;2;success;-1.1;94.199;-37.5;0.88;4963.6;yes
+27;student;divorced;unknown;no;no;no;telephone;sep;wed;9;1;999;0;nonexistent;-1.1;94.199;-37.5;0.88;4963.6;no
+28;management;single;university.degree;no;yes;no;cellular;sep;wed;358;3;6;1;success;-1.1;94.199;-37.5;0.88;4963.6;yes
+32;blue-collar;married;basic.4y;no;no;no;telephone;sep;wed;606;3;3;4;success;-1.1;94.199;-37.5;0.88;4963.6;yes
+45;unemployed;married;high.school;no;no;no;cellular;sep;wed;1081;2;999;0;nonexistent;-1.1;94.199;-37.5;0.88;4963.6;yes
+26;admin.;single;university.degree;no;yes;no;telephone;sep;wed;9;1;999;0;nonexistent;-1.1;94.199;-37.5;0.88;4963.6;no
+80;retired;divorced;basic.4y;no;yes;no;telephone;sep;thu;378;4;999;0;nonexistent;-1.1;94.199;-37.5;0.879;4963.6;no
+38;technician;single;professional.course;no;yes;no;cellular;sep;thu;284;3;22;1;success;-1.1;94.199;-37.5;0.879;4963.6;yes
+83;retired;divorced;basic.4y;no;yes;no;cellular;sep;thu;405;3;999;0;nonexistent;-1.1;94.199;-37.5;0.879;4963.6;no
+29;admin.;single;high.school;no;yes;no;cellular;sep;thu;216;1;6;2;success;-1.1;94.199;-37.5;0.879;4963.6;yes
+60;admin.;married;professional.course;no;yes;yes;cellular;sep;thu;261;1;6;1;success;-1.1;94.199;-37.5;0.879;4963.6;yes
+45;unemployed;married;professional.course;unknown;no;no;telephone;sep;thu;1405;1;6;2;failure;-1.1;94.199;-37.5;0.879;4963.6;yes
+45;unemployed;married;professional.course;unknown;no;no;cellular;sep;thu;679;1;999;0;nonexistent;-1.1;94.199;-37.5;0.879;4963.6;yes
+27;technician;single;university.degree;no;yes;no;cellular;sep;thu;404;1;6;1;success;-1.1;94.199;-37.5;0.879;4963.6;yes
+27;technician;single;university.degree;no;yes;no;cellular;sep;thu;530;1;3;1;success;-1.1;94.199;-37.5;0.879;4963.6;yes
+38;technician;single;professional.course;no;no;no;cellular;sep;thu;430;4;999;0;nonexistent;-1.1;94.199;-37.5;0.879;4963.6;yes
+33;admin.;married;high.school;no;yes;no;cellular;sep;thu;202;1;999;0;nonexistent;-1.1;94.199;-37.5;0.879;4963.6;yes
+58;technician;married;professional.course;no;yes;no;cellular;sep;thu;156;1;999;0;nonexistent;-1.1;94.199;-37.5;0.879;4963.6;no
+37;admin.;single;university.degree;no;no;no;cellular;sep;thu;209;1;3;4;success;-1.1;94.199;-37.5;0.879;4963.6;yes
+33;admin.;single;university.degree;no;yes;no;cellular;sep;thu;761;1;999;0;nonexistent;-1.1;94.199;-37.5;0.879;4963.6;no
+65;technician;married;professional.course;no;no;no;cellular;sep;thu;263;1;999;0;nonexistent;-1.1;94.199;-37.5;0.879;4963.6;no
+26;technician;single;basic.9y;no;yes;no;cellular;sep;thu;305;1;999;1;failure;-1.1;94.199;-37.5;0.879;4963.6;yes
+34;admin.;single;high.school;no;no;no;cellular;sep;thu;204;1;12;1;success;-1.1;94.199;-37.5;0.879;4963.6;yes
+27;admin.;single;university.degree;no;no;no;cellular;sep;thu;167;3;3;1;success;-1.1;94.199;-37.5;0.879;4963.6;yes
+38;technician;single;professional.course;no;yes;no;cellular;sep;thu;386;2;6;1;success;-1.1;94.199;-37.5;0.879;4963.6;yes
+83;retired;divorced;basic.4y;no;no;no;cellular;sep;thu;268;1;9;3;success;-1.1;94.199;-37.5;0.879;4963.6;yes
+38;services;single;high.school;no;yes;no;telephone;sep;thu;1;1;9;3;success;-1.1;94.199;-37.5;0.879;4963.6;no
+24;technician;single;professional.course;no;yes;no;cellular;sep;fri;1042;5;999;3;failure;-1.1;94.199;-37.5;0.878;4963.6;yes
+29;admin.;single;university.degree;no;no;no;cellular;sep;fri;110;4;6;1;success;-1.1;94.199;-37.5;0.878;4963.6;no
+64;retired;divorced;basic.4y;no;yes;yes;telephone;sep;fri;211;2;6;2;success;-1.1;94.199;-37.5;0.878;4963.6;yes
+29;technician;single;professional.course;no;unknown;unknown;cellular;sep;fri;255;1;3;2;success;-1.1;94.199;-37.5;0.878;4963.6;yes
+38;services;single;high.school;no;no;no;cellular;sep;fri;256;2;999;0;nonexistent;-1.1;94.199;-37.5;0.878;4963.6;yes
+28;services;single;high.school;no;yes;yes;telephone;sep;fri;5;1;999;0;nonexistent;-1.1;94.199;-37.5;0.878;4963.6;no
+31;student;single;unknown;no;yes;no;telephone;sep;mon;69;1;999;0;nonexistent;-1.1;94.199;-37.5;0.879;4963.6;no
+32;technician;married;university.degree;no;no;no;cellular;sep;mon;175;2;999;0;nonexistent;-1.1;94.199;-37.5;0.879;4963.6;no
+27;management;single;university.degree;no;no;no;cellular;sep;mon;303;2;999;0;nonexistent;-1.1;94.199;-37.5;0.879;4963.6;no
+69;retired;married;basic.4y;no;no;no;cellular;sep;mon;258;3;6;1;success;-1.1;94.199;-37.5;0.879;4963.6;no
+29;technician;single;professional.course;no;yes;no;cellular;sep;mon;157;7;3;5;success;-1.1;94.199;-37.5;0.879;4963.6;no
+23;student;single;basic.9y;no;yes;yes;cellular;sep;mon;218;3;6;2;success;-1.1;94.199;-37.5;0.879;4963.6;yes
+23;student;single;basic.9y;no;yes;no;cellular;sep;mon;502;1;999;1;failure;-1.1;94.199;-37.5;0.879;4963.6;no
+29;technician;single;professional.course;no;no;no;cellular;sep;mon;273;3;999;2;failure;-1.1;94.199;-37.5;0.879;4963.6;yes
+82;retired;married;university.degree;unknown;no;no;cellular;sep;mon;81;3;3;4;success;-1.1;94.199;-37.5;0.879;4963.6;no
+71;retired;married;high.school;no;no;no;cellular;sep;mon;363;1;999;0;nonexistent;-1.1;94.199;-37.5;0.879;4963.6;yes
+33;services;married;professional.course;no;no;no;telephone;sep;mon;5;1;999;1;failure;-1.1;94.199;-37.5;0.879;4963.6;no
+31;blue-collar;single;basic.9y;no;yes;no;telephone;sep;mon;5;1;999;0;nonexistent;-1.1;94.199;-37.5;0.879;4963.6;no
+31;services;single;high.school;no;no;no;telephone;sep;mon;10;1;999;0;nonexistent;-1.1;94.199;-37.5;0.879;4963.6;no
+27;admin.;single;university.degree;no;yes;no;telephone;sep;mon;13;1;999;0;nonexistent;-1.1;94.199;-37.5;0.879;4963.6;no
+50;housemaid;divorced;basic.4y;no;no;no;telephone;sep;tue;57;1;999;0;nonexistent;-1.1;94.199;-37.5;0.877;4963.6;no
+57;admin.;divorced;high.school;no;no;no;cellular;sep;tue;473;1;3;5;success;-1.1;94.199;-37.5;0.877;4963.6;yes
+30;technician;single;professional.course;no;no;no;cellular;sep;tue;275;1;999;5;failure;-1.1;94.199;-37.5;0.877;4963.6;no
+21;student;single;unknown;no;no;no;telephone;sep;tue;9;1;999;0;nonexistent;-1.1;94.199;-37.5;0.877;4963.6;no
+25;management;single;university.degree;no;no;no;telephone;sep;tue;5;1;999;0;nonexistent;-1.1;94.199;-37.5;0.877;4963.6;no
+30;technician;single;professional.course;no;no;no;cellular;sep;tue;706;1;6;1;success;-1.1;94.199;-37.5;0.877;4963.6;no
+84;retired;divorced;unknown;unknown;no;no;cellular;sep;tue;333;1;3;2;success;-1.1;94.199;-37.5;0.877;4963.6;yes
+39;management;married;university.degree;no;yes;yes;cellular;sep;tue;358;2;999;0;nonexistent;-1.1;94.199;-37.5;0.877;4963.6;yes
+82;housemaid;married;basic.4y;no;no;no;telephone;sep;tue;279;3;3;2;success;-1.1;94.199;-37.5;0.877;4963.6;yes
+30;technician;single;professional.course;no;no;no;cellular;sep;tue;221;2;999;1;failure;-1.1;94.199;-37.5;0.877;4963.6;yes
+86;retired;married;unknown;unknown;yes;yes;cellular;sep;tue;211;1;7;4;success;-1.1;94.199;-37.5;0.877;4963.6;yes
+32;unemployed;married;high.school;no;no;no;telephone;sep;tue;6;1;999;1;failure;-1.1;94.199;-37.5;0.877;4963.6;no
+34;admin.;married;professional.course;no;yes;yes;cellular;sep;tue;409;1;999;1;failure;-1.1;94.199;-37.5;0.877;4963.6;yes
+34;admin.;married;professional.course;no;no;no;cellular;sep;tue;230;1;3;3;success;-1.1;94.199;-37.5;0.877;4963.6;yes
+31;admin.;single;university.degree;no;yes;yes;cellular;sep;tue;194;1;999;0;nonexistent;-1.1;94.199;-37.5;0.877;4963.6;yes
+53;management;divorced;university.degree;no;no;no;cellular;sep;tue;404;2;3;2;success;-1.1;94.199;-37.5;0.877;4963.6;yes
+61;management;married;professional.course;no;no;no;cellular;sep;tue;380;1;999;0;nonexistent;-1.1;94.199;-37.5;0.877;4963.6;no
+30;technician;single;professional.course;no;unknown;unknown;telephone;sep;tue;808;1;12;2;failure;-1.1;94.199;-37.5;0.877;4963.6;yes
+32;student;single;high.school;no;no;no;cellular;sep;tue;407;2;3;1;success;-1.1;94.199;-37.5;0.877;4963.6;no
+86;retired;married;unknown;unknown;yes;no;cellular;sep;tue;340;1;999;0;nonexistent;-1.1;94.199;-37.5;0.877;4963.6;yes
+24;student;single;high.school;no;yes;yes;cellular;sep;wed;251;2;6;2;success;-1.1;94.199;-37.5;0.876;4963.6;yes
+52;admin.;married;professional.course;no;no;yes;cellular;sep;wed;506;3;999;0;nonexistent;-1.1;94.199;-37.5;0.876;4963.6;yes
+60;retired;married;high.school;no;no;no;cellular;sep;wed;1640;1;999;0;nonexistent;-1.1;94.199;-37.5;0.876;4963.6;yes
+19;student;single;basic.4y;no;yes;no;cellular;sep;wed;396;2;6;3;success;-1.1;94.199;-37.5;0.876;4963.6;yes
+36;management;married;university.degree;no;unknown;unknown;cellular;sep;wed;331;1;6;4;failure;-1.1;94.199;-37.5;0.876;4963.6;yes
+33;technician;married;university.degree;no;yes;no;telephone;sep;wed;161;1;999;1;failure;-1.1;94.199;-37.5;0.876;4963.6;no
+23;student;single;professional.course;no;yes;no;cellular;sep;wed;316;1;8;2;success;-1.1;94.199;-37.5;0.876;4963.6;yes
+60;retired;married;high.school;no;no;no;cellular;sep;wed;200;1;6;1;success;-1.1;94.199;-37.5;0.876;4963.6;yes
+52;admin.;married;professional.course;no;no;no;cellular;sep;wed;953;2;999;0;nonexistent;-1.1;94.199;-37.5;0.876;4963.6;yes
+45;admin.;divorced;university.degree;no;no;yes;telephone;sep;wed;173;1;999;0;nonexistent;-1.1;94.199;-37.5;0.876;4963.6;no
+39;entrepreneur;married;professional.course;no;no;no;telephone;sep;wed;511;3;6;1;success;-1.1;94.199;-37.5;0.876;4963.6;yes
+33;technician;married;university.degree;no;yes;no;cellular;sep;wed;110;1;999;1;failure;-1.1;94.199;-37.5;0.876;4963.6;no
+33;technician;married;university.degree;no;no;no;cellular;sep;wed;216;1;999;0;nonexistent;-1.1;94.199;-37.5;0.876;4963.6;yes
+23;student;single;professional.course;no;no;no;cellular;sep;wed;213;2;15;1;success;-1.1;94.199;-37.5;0.876;4963.6;yes
+34;admin.;married;high.school;no;no;yes;cellular;sep;wed;214;2;999;0;nonexistent;-1.1;94.199;-37.5;0.876;4963.6;no
+35;admin.;married;university.degree;no;yes;no;telephone;sep;wed;7;1;999;0;nonexistent;-1.1;94.199;-37.5;0.876;4963.6;no
+19;student;single;basic.6y;no;yes;no;cellular;sep;thu;161;2;6;4;success;-1.1;94.199;-37.5;0.879;4963.6;yes
+29;technician;single;professional.course;no;no;yes;telephone;sep;thu;251;2;18;1;success;-1.1;94.199;-37.5;0.879;4963.6;no
+37;admin.;married;university.degree;no;no;yes;cellular;sep;thu;173;1;999;0;nonexistent;-1.1;94.199;-37.5;0.879;4963.6;yes
+36;unemployed;single;high.school;no;yes;no;cellular;sep;thu;225;1;3;1;success;-1.1;94.199;-37.5;0.879;4963.6;yes
+82;retired;divorced;basic.4y;no;yes;no;cellular;sep;thu;143;2;999;1;failure;-1.1;94.199;-37.5;0.879;4963.6;yes
+25;student;single;high.school;no;yes;no;cellular;sep;thu;574;3;999;0;nonexistent;-1.1;94.199;-37.5;0.879;4963.6;yes
+41;admin.;married;unknown;no;yes;no;cellular;sep;thu;228;1;999;1;failure;-1.1;94.199;-37.5;0.879;4963.6;no
+31;admin.;married;university.degree;no;yes;no;cellular;sep;thu;193;1;999;0;nonexistent;-1.1;94.199;-37.5;0.879;4963.6;yes
+33;technician;single;university.degree;no;yes;no;cellular;sep;thu;463;1;999;0;nonexistent;-1.1;94.199;-37.5;0.879;4963.6;yes
+23;admin.;single;university.degree;no;no;no;cellular;sep;thu;270;3;999;1;failure;-1.1;94.199;-37.5;0.879;4963.6;yes
+24;admin.;single;university.degree;no;no;no;cellular;sep;thu;303;1;999;1;failure;-1.1;94.199;-37.5;0.879;4963.6;yes
+56;admin.;married;basic.9y;no;yes;yes;cellular;sep;thu;319;1;999;0;nonexistent;-1.1;94.199;-37.5;0.879;4963.6;yes
+77;retired;married;basic.4y;no;yes;no;cellular;sep;thu;190;1;999;0;nonexistent;-1.1;94.199;-37.5;0.879;4963.6;yes
+33;admin.;married;university.degree;no;yes;no;cellular;sep;thu;234;1;999;0;nonexistent;-1.1;94.199;-37.5;0.879;4963.6;no
+33;technician;married;unknown;no;yes;yes;cellular;sep;thu;414;1;9;3;failure;-1.1;94.199;-37.5;0.879;4963.6;yes
+19;student;single;basic.6y;no;yes;yes;cellular;sep;thu;452;5;13;1;success;-1.1;94.199;-37.5;0.879;4963.6;yes
+38;admin.;married;university.degree;no;no;no;cellular;sep;thu;79;2;999;0;nonexistent;-1.1;94.199;-37.5;0.879;4963.6;no
+29;admin.;married;high.school;no;yes;no;cellular;sep;thu;147;3;999;0;nonexistent;-1.1;94.199;-37.5;0.879;4963.6;no
+23;student;single;basic.9y;no;yes;no;cellular;sep;thu;954;1;999;0;nonexistent;-1.1;94.199;-37.5;0.879;4963.6;yes
+30;technician;single;university.degree;no;no;no;cellular;sep;thu;327;2;999;0;nonexistent;-1.1;94.199;-37.5;0.879;4963.6;yes
+36;technician;married;university.degree;no;unknown;unknown;cellular;sep;thu;1334;2;999;0;nonexistent;-1.1;94.199;-37.5;0.879;4963.6;yes
+34;technician;single;university.degree;no;no;no;cellular;sep;fri;152;2;999;0;nonexistent;-1.1;94.199;-37.5;0.879;4963.6;no
+34;technician;single;university.degree;no;yes;no;cellular;sep;fri;294;4;10;3;success;-1.1;94.199;-37.5;0.879;4963.6;yes
+34;technician;single;university.degree;no;no;no;cellular;sep;fri;285;3;999;1;failure;-1.1;94.199;-37.5;0.879;4963.6;yes
+26;technician;single;university.degree;no;no;no;cellular;sep;fri;374;1;999;0;nonexistent;-1.1;94.199;-37.5;0.879;4963.6;yes
+41;management;divorced;university.degree;no;no;no;cellular;sep;fri;164;5;3;3;success;-1.1;94.199;-37.5;0.879;4963.6;yes
+36;technician;married;university.degree;no;yes;no;cellular;sep;fri;328;1;999;1;failure;-1.1;94.199;-37.5;0.879;4963.6;yes
+26;technician;single;university.degree;no;yes;no;cellular;sep;fri;284;3;999;1;failure;-1.1;94.199;-37.5;0.879;4963.6;yes
+34;technician;single;university.degree;no;no;no;cellular;sep;fri;155;4;999;1;failure;-1.1;94.199;-37.5;0.879;4963.6;no
+34;technician;single;university.degree;no;no;yes;telephone;sep;fri;231;1;999;0;nonexistent;-1.1;94.199;-37.5;0.879;4963.6;yes
+31;services;single;high.school;no;yes;no;cellular;sep;fri;336;2;6;1;success;-1.1;94.199;-37.5;0.879;4963.6;yes
+25;student;single;high.school;no;no;no;telephone;sep;mon;185;1;999;0;nonexistent;-1.1;94.199;-37.5;0.876;4963.6;yes
+48;housemaid;married;basic.4y;no;yes;no;telephone;sep;mon;9;1;999;0;nonexistent;-1.1;94.199;-37.5;0.876;4963.6;no
+55;unemployed;married;basic.4y;no;yes;no;telephone;sep;tue;6;1;999;0;nonexistent;-1.1;94.199;-37.5;0.879;4963.6;no
+50;management;married;university.degree;no;no;no;telephone;sep;tue;84;1;999;0;nonexistent;-1.1;94.199;-37.5;0.879;4963.6;no
+38;blue-collar;single;high.school;no;yes;no;cellular;sep;wed;263;1;6;3;success;-1.1;94.199;-37.5;0.879;4963.6;yes
+41;unemployed;married;high.school;no;yes;yes;cellular;sep;wed;175;1;6;1;success;-1.1;94.199;-37.5;0.879;4963.6;yes
+33;admin.;married;university.degree;no;no;no;cellular;sep;wed;208;2;999;0;nonexistent;-1.1;94.199;-37.5;0.879;4963.6;yes
+33;admin.;married;university.degree;no;no;yes;cellular;sep;wed;397;1;999;2;failure;-1.1;94.199;-37.5;0.879;4963.6;yes
+33;technician;married;professional.course;no;no;no;cellular;sep;wed;569;1;999;0;nonexistent;-1.1;94.199;-37.5;0.879;4963.6;yes
+32;technician;married;basic.9y;no;yes;no;cellular;sep;wed;155;1;6;1;success;-1.1;94.199;-37.5;0.879;4963.6;yes
+32;technician;married;basic.9y;no;no;no;cellular;sep;wed;183;1;6;5;success;-1.1;94.199;-37.5;0.879;4963.6;yes
+41;unemployed;married;high.school;no;no;no;cellular;sep;wed;182;1;6;3;success;-1.1;94.199;-37.5;0.879;4963.6;yes
+33;admin.;married;university.degree;no;yes;yes;telephone;sep;wed;396;2;999;0;nonexistent;-1.1;94.199;-37.5;0.879;4963.6;yes
+50;management;married;university.degree;no;no;no;cellular;sep;thu;718;4;999;3;failure;-1.1;94.199;-37.5;0.878;4963.6;no
+28;blue-collar;single;university.degree;no;yes;no;cellular;sep;thu;62;2;999;1;failure;-1.1;94.199;-37.5;0.878;4963.6;no
+37;admin.;married;high.school;no;yes;no;cellular;sep;thu;155;1;999;1;failure;-1.1;94.199;-37.5;0.878;4963.6;no
+26;self-employed;single;university.degree;no;yes;no;cellular;sep;thu;318;1;6;4;success;-1.1;94.199;-37.5;0.878;4963.6;no
+28;blue-collar;single;university.degree;no;unknown;unknown;cellular;sep;thu;744;1;999;0;nonexistent;-1.1;94.199;-37.5;0.878;4963.6;yes
+31;technician;married;university.degree;no;no;no;cellular;sep;thu;261;1;999;0;nonexistent;-1.1;94.199;-37.5;0.878;4963.6;no
+29;admin.;single;university.degree;no;yes;no;cellular;sep;thu;180;2;8;2;success;-1.1;94.199;-37.5;0.878;4963.6;no
+26;self-employed;single;university.degree;no;yes;no;cellular;sep;thu;333;1;999;0;nonexistent;-1.1;94.199;-37.5;0.878;4963.6;no
+22;services;single;professional.course;no;yes;no;cellular;sep;thu;84;1;999;2;failure;-1.1;94.199;-37.5;0.878;4963.6;no
+58;admin.;married;high.school;no;no;no;cellular;sep;thu;337;1;6;1;success;-1.1;94.199;-37.5;0.878;4963.6;yes
+42;admin.;single;high.school;no;no;no;cellular;sep;thu;209;1;999;0;nonexistent;-1.1;94.199;-37.5;0.878;4963.6;yes
+23;student;single;high.school;no;no;yes;cellular;sep;thu;409;2;3;2;success;-1.1;94.199;-37.5;0.878;4963.6;yes
+21;student;single;unknown;no;no;no;cellular;sep;thu;145;1;999;1;failure;-1.1;94.199;-37.5;0.878;4963.6;no
+53;technician;married;university.degree;no;no;no;cellular;sep;thu;156;2;999;0;nonexistent;-1.1;94.199;-37.5;0.878;4963.6;yes
+30;housemaid;single;university.degree;no;no;no;cellular;sep;thu;103;2;999;0;nonexistent;-1.1;94.199;-37.5;0.878;4963.6;no
+31;technician;married;university.degree;no;no;no;cellular;sep;thu;244;1;3;1;success;-1.1;94.199;-37.5;0.878;4963.6;yes
+35;technician;married;professional.course;no;yes;no;cellular;sep;thu;317;1;999;2;failure;-1.1;94.199;-37.5;0.878;4963.6;no
+33;admin.;married;university.degree;no;yes;no;cellular;sep;thu;272;2;999;0;nonexistent;-1.1;94.199;-37.5;0.878;4963.6;yes
+35;technician;married;professional.course;no;yes;no;cellular;sep;thu;447;1;999;2;failure;-1.1;94.199;-37.5;0.878;4963.6;no
+54;admin.;divorced;university.degree;no;yes;no;cellular;sep;thu;112;1;999;2;failure;-1.1;94.199;-37.5;0.878;4963.6;no
+35;technician;married;professional.course;no;yes;no;cellular;sep;thu;390;2;999;0;nonexistent;-1.1;94.199;-37.5;0.878;4963.6;no
+33;admin.;married;university.degree;no;yes;no;telephone;sep;thu;217;2;999;0;nonexistent;-1.1;94.199;-37.5;0.878;4963.6;no
+30;services;single;high.school;no;yes;no;cellular;sep;thu;405;1;999;3;failure;-1.1;94.199;-37.5;0.878;4963.6;no
+21;student;single;unknown;no;no;no;cellular;sep;thu;150;1;999;0;nonexistent;-1.1;94.199;-37.5;0.878;4963.6;no
+32;technician;married;high.school;no;no;no;cellular;sep;thu;245;1;999;0;nonexistent;-1.1;94.199;-37.5;0.878;4963.6;no
+58;admin.;married;university.degree;no;no;no;cellular;sep;thu;272;4;6;1;success;-1.1;94.199;-37.5;0.878;4963.6;yes
+29;admin.;single;high.school;no;no;no;cellular;sep;thu;134;1;999;0;nonexistent;-1.1;94.199;-37.5;0.878;4963.6;no
+28;management;single;university.degree;no;no;no;cellular;sep;fri;133;4;999;1;failure;-1.1;94.199;-37.5;0.879;4963.6;no
+30;technician;single;university.degree;no;yes;no;cellular;sep;fri;173;2;15;4;failure;-1.1;94.199;-37.5;0.879;4963.6;yes
+36;admin.;divorced;university.degree;no;yes;yes;cellular;sep;fri;157;3;999;0;nonexistent;-1.1;94.199;-37.5;0.879;4963.6;no
+23;student;single;university.degree;no;yes;no;cellular;sep;fri;349;2;999;4;failure;-1.1;94.199;-37.5;0.879;4963.6;no
+31;admin.;married;university.degree;no;yes;no;cellular;sep;fri;232;2;13;1;success;-1.1;94.199;-37.5;0.879;4963.6;yes
+33;unemployed;single;unknown;no;yes;no;cellular;sep;fri;224;2;999;1;failure;-1.1;94.199;-37.5;0.879;4963.6;yes
+33;technician;single;professional.course;no;yes;no;cellular;sep;fri;246;9;999;2;failure;-1.1;94.199;-37.5;0.879;4963.6;no
+26;technician;single;professional.course;no;yes;no;cellular;sep;fri;249;1;3;3;success;-1.1;94.199;-37.5;0.879;4963.6;yes
+33;technician;single;professional.course;no;yes;no;cellular;sep;fri;395;1;999;0;nonexistent;-1.1;94.199;-37.5;0.879;4963.6;yes
+25;student;single;unknown;no;no;no;cellular;sep;fri;732;1;999;0;nonexistent;-1.1;94.199;-37.5;0.879;4963.6;yes
+60;retired;married;professional.course;no;no;no;telephone;sep;fri;618;1;999;1;failure;-1.1;94.199;-37.5;0.879;4963.6;no
+51;admin.;divorced;high.school;no;yes;no;telephone;sep;fri;19;1;999;0;nonexistent;-1.1;94.199;-37.5;0.879;4963.6;no
+27;admin.;single;high.school;no;no;no;telephone;sep;mon;6;1;999;0;nonexistent;-1.1;94.199;-37.5;0.879;4963.6;no
+31;admin.;single;high.school;no;no;no;cellular;sep;mon;262;5;6;3;success;-1.1;94.199;-37.5;0.879;4963.6;yes
+34;technician;married;professional.course;no;yes;no;telephone;sep;mon;157;5;999;0;nonexistent;-1.1;94.199;-37.5;0.879;4963.6;no
+48;services;married;basic.6y;no;no;no;cellular;sep;mon;188;2;999;0;nonexistent;-1.1;94.199;-37.5;0.879;4963.6;yes
+32;admin.;married;high.school;no;no;no;cellular;sep;mon;169;2;999;0;nonexistent;-1.1;94.199;-37.5;0.879;4963.6;no
+30;student;single;professional.course;no;unknown;unknown;cellular;sep;mon;132;4;6;3;success;-1.1;94.199;-37.5;0.879;4963.6;no
+32;admin.;single;university.degree;no;yes;no;cellular;sep;mon;290;4;999;0;nonexistent;-1.1;94.199;-37.5;0.879;4963.6;no
+32;admin.;married;high.school;no;yes;no;cellular;sep;mon;156;2;999;1;failure;-1.1;94.199;-37.5;0.879;4963.6;no
+30;student;single;professional.course;no;yes;no;telephone;sep;mon;379;3;999;0;nonexistent;-1.1;94.199;-37.5;0.879;4963.6;no
+30;student;single;professional.course;no;yes;no;cellular;sep;mon;1616;4;19;1;success;-1.1;94.199;-37.5;0.879;4963.6;no
+30;student;single;professional.course;no;no;no;cellular;sep;mon;162;2;9;2;failure;-1.1;94.199;-37.5;0.879;4963.6;no
+32;admin.;married;high.school;no;yes;no;cellular;sep;mon;1298;1;999;0;nonexistent;-1.1;94.199;-37.5;0.879;4963.6;yes
+48;unemployed;married;professional.course;no;yes;no;cellular;sep;mon;315;2;999;0;nonexistent;-1.1;94.199;-37.5;0.879;4963.6;yes
+32;admin.;single;university.degree;no;yes;no;cellular;sep;mon;990;4;999;0;nonexistent;-1.1;94.199;-37.5;0.879;4963.6;no
+32;admin.;single;university.degree;no;yes;no;telephone;sep;tue;6;1;999;0;nonexistent;-1.1;94.199;-37.5;0.88;4963.6;no
+30;student;single;professional.course;no;no;no;cellular;sep;tue;104;1;999;2;failure;-1.1;94.199;-37.5;0.88;4963.6;no
+30;student;single;professional.course;no;no;no;telephone;sep;tue;237;2;999;0;nonexistent;-1.1;94.199;-37.5;0.88;4963.6;no
+30;student;single;professional.course;no;yes;no;cellular;sep;tue;282;2;6;1;success;-1.1;94.199;-37.5;0.88;4963.6;yes
+29;admin.;single;university.degree;no;no;no;cellular;sep;tue;600;2;3;3;success;-1.1;94.199;-37.5;0.88;4963.6;yes
+22;student;single;high.school;no;no;no;telephone;sep;wed;13;1;999;0;nonexistent;-1.1;94.199;-37.5;0.886;4963.6;no
+40;admin.;divorced;high.school;no;yes;yes;telephone;sep;wed;21;1;999;1;failure;-1.1;94.199;-37.5;0.886;4963.6;no
+35;admin.;married;university.degree;no;no;yes;cellular;sep;wed;242;2;999;1;failure;-1.1;94.199;-37.5;0.886;4963.6;no
+35;admin.;married;university.degree;no;yes;no;cellular;sep;wed;110;2;18;2;failure;-1.1;94.199;-37.5;0.886;4963.6;no
+30;student;single;high.school;no;yes;no;cellular;sep;wed;201;2;999;0;nonexistent;-1.1;94.199;-37.5;0.886;4963.6;no
+42;management;married;university.degree;no;yes;no;cellular;sep;wed;232;1;3;2;success;-1.1;94.199;-37.5;0.886;4963.6;yes
+34;admin.;married;university.degree;no;no;yes;cellular;sep;wed;245;3;999;0;nonexistent;-1.1;94.199;-37.5;0.886;4963.6;yes
+42;admin.;divorced;university.degree;no;yes;no;cellular;sep;wed;211;1;999;1;failure;-1.1;94.199;-37.5;0.886;4963.6;no
+42;admin.;divorced;university.degree;no;no;no;cellular;sep;wed;678;1;16;1;success;-1.1;94.199;-37.5;0.886;4963.6;yes
+41;admin.;married;unknown;no;no;no;cellular;sep;wed;845;1;7;3;success;-1.1;94.199;-37.5;0.886;4963.6;yes
+50;management;married;university.degree;no;yes;no;cellular;oct;fri;197;2;999;0;nonexistent;-1.1;94.601;-49.5;0.942;4963.6;no
+30;technician;unknown;university.degree;no;no;no;cellular;oct;fri;131;2;16;1;success;-1.1;94.601;-49.5;0.942;4963.6;no
+59;unemployed;married;basic.9y;no;yes;yes;cellular;oct;fri;142;1;999;0;nonexistent;-1.1;94.601;-49.5;0.942;4963.6;no
+32;admin.;single;university.degree;no;no;no;cellular;oct;fri;143;1;999;2;failure;-1.1;94.601;-49.5;0.942;4963.6;no
+32;admin.;single;university.degree;no;yes;no;cellular;oct;fri;164;1;999;3;failure;-1.1;94.601;-49.5;0.942;4963.6;no
+41;retired;single;basic.4y;no;yes;no;cellular;oct;fri;278;1;999;0;nonexistent;-1.1;94.601;-49.5;0.942;4963.6;no
+27;student;single;university.degree;no;yes;no;cellular;oct;fri;161;1;999;3;failure;-1.1;94.601;-49.5;0.942;4963.6;no
+30;self-employed;single;basic.9y;no;no;yes;telephone;oct;mon;5;1;999;0;nonexistent;-1.1;94.601;-49.5;0.953;4963.6;no
+58;admin.;married;university.degree;no;yes;no;telephone;oct;mon;9;1;999;0;nonexistent;-1.1;94.601;-49.5;0.953;4963.6;no
+40;technician;married;professional.course;no;yes;no;telephone;oct;tue;10;1;999;0;nonexistent;-1.1;94.601;-49.5;0.956;4963.6;no
+32;technician;married;professional.course;no;no;no;cellular;oct;wed;311;1;3;1;success;-1.1;94.601;-49.5;0.959;4963.6;yes
+32;technician;married;professional.course;no;no;no;cellular;oct;wed;486;1;999;0;nonexistent;-1.1;94.601;-49.5;0.959;4963.6;yes
+26;technician;single;university.degree;no;no;no;cellular;oct;wed;649;1;999;0;nonexistent;-1.1;94.601;-49.5;0.959;4963.6;yes
+26;blue-collar;single;basic.6y;no;no;no;cellular;oct;wed;808;1;999;0;nonexistent;-1.1;94.601;-49.5;0.959;4963.6;yes
+35;technician;married;professional.course;no;yes;yes;cellular;oct;wed;608;1;9;2;failure;-1.1;94.601;-49.5;0.959;4963.6;yes
+26;admin.;single;university.degree;no;yes;yes;cellular;oct;wed;261;1;999;0;nonexistent;-1.1;94.601;-49.5;0.959;4963.6;no
+32;technician;married;professional.course;no;yes;no;cellular;oct;wed;275;2;999;0;nonexistent;-1.1;94.601;-49.5;0.959;4963.6;yes
+32;admin.;married;high.school;no;yes;no;telephone;oct;wed;48;1;999;0;nonexistent;-1.1;94.601;-49.5;0.959;4963.6;no
+41;technician;married;professional.course;no;no;no;cellular;oct;wed;391;2;27;1;success;-1.1;94.601;-49.5;0.959;4963.6;yes
+57;admin.;married;university.degree;no;unknown;unknown;cellular;oct;wed;229;2;3;2;success;-1.1;94.601;-49.5;0.959;4963.6;yes
+26;admin.;single;university.degree;no;no;no;telephone;oct;wed;541;1;999;2;failure;-1.1;94.601;-49.5;0.959;4963.6;no
+22;self-employed;single;professional.course;no;yes;no;cellular;oct;wed;218;1;999;0;nonexistent;-1.1;94.601;-49.5;0.959;4963.6;yes
+32;technician;married;professional.course;no;no;no;cellular;oct;wed;691;2;14;4;failure;-1.1;94.601;-49.5;0.959;4963.6;no
+75;retired;married;basic.4y;no;yes;no;cellular;oct;wed;1020;3;999;3;failure;-1.1;94.601;-49.5;0.959;4963.6;no
+28;admin.;single;high.school;no;no;no;cellular;oct;wed;1246;2;999;0;nonexistent;-1.1;94.601;-49.5;0.959;4963.6;yes
+64;unemployed;divorced;basic.9y;no;yes;no;cellular;oct;wed;604;2;999;0;nonexistent;-1.1;94.601;-49.5;0.959;4963.6;no
+36;admin.;single;university.degree;no;no;no;cellular;oct;thu;197;2;999;0;nonexistent;-1.1;94.601;-49.5;0.965;4963.6;no
+65;retired;married;basic.4y;no;yes;no;telephone;oct;thu;138;4;999;0;nonexistent;-1.1;94.601;-49.5;0.965;4963.6;no
+51;admin.;married;university.degree;no;yes;yes;cellular;oct;thu;236;3;3;1;success;-1.1;94.601;-49.5;0.965;4963.6;yes
+28;admin.;single;university.degree;no;no;no;cellular;oct;thu;116;1;17;1;success;-1.1;94.601;-49.5;0.965;4963.6;no
+70;retired;married;basic.4y;unknown;no;no;cellular;oct;thu;122;1;14;3;failure;-1.1;94.601;-49.5;0.965;4963.6;no
+31;admin.;single;university.degree;no;yes;no;telephone;oct;fri;118;1;999;0;nonexistent;-1.1;94.601;-49.5;0.972;4963.6;no
+62;blue-collar;married;unknown;no;no;no;cellular;oct;fri;73;3;999;0;nonexistent;-1.1;94.601;-49.5;0.972;4963.6;no
+61;retired;married;basic.4y;no;no;no;telephone;oct;fri;194;1;999;0;nonexistent;-1.1;94.601;-49.5;0.972;4963.6;yes
+33;blue-collar;single;basic.4y;no;yes;no;cellular;oct;fri;146;1;999;1;failure;-1.1;94.601;-49.5;0.972;4963.6;no
+29;technician;married;professional.course;no;yes;no;cellular;oct;fri;319;1;5;2;success;-1.1;94.601;-49.5;0.972;4963.6;yes
+47;admin.;married;high.school;no;yes;no;cellular;oct;fri;437;1;999;1;failure;-1.1;94.601;-49.5;0.972;4963.6;yes
+27;student;single;unknown;no;yes;no;cellular;oct;fri;512;1;20;4;failure;-1.1;94.601;-49.5;0.972;4963.6;no
+39;housemaid;married;basic.4y;no;no;no;cellular;oct;fri;282;1;999;0;nonexistent;-1.1;94.601;-49.5;0.972;4963.6;no
+60;retired;married;basic.4y;no;unknown;unknown;cellular;oct;fri;272;1;10;3;failure;-1.1;94.601;-49.5;0.972;4963.6;no
+27;student;single;unknown;no;yes;no;cellular;oct;fri;309;2;999;1;failure;-1.1;94.601;-49.5;0.972;4963.6;no
+32;services;single;university.degree;no;yes;no;cellular;oct;fri;375;2;999;2;failure;-1.1;94.601;-49.5;0.972;4963.6;no
+49;technician;divorced;professional.course;no;yes;no;cellular;oct;fri;251;2;3;1;success;-1.1;94.601;-49.5;0.972;4963.6;yes
+39;housemaid;married;basic.4y;no;yes;no;cellular;oct;fri;135;2;999;2;failure;-1.1;94.601;-49.5;0.972;4963.6;no
+66;retired;married;basic.4y;no;yes;no;telephone;oct;fri;369;2;999;1;failure;-1.1;94.601;-49.5;0.972;4963.6;yes
+56;unemployed;divorced;basic.4y;no;no;yes;cellular;oct;fri;363;2;5;3;success;-1.1;94.601;-49.5;0.972;4963.6;yes
+24;admin.;single;high.school;no;yes;no;cellular;oct;fri;133;2;999;1;failure;-1.1;94.601;-49.5;0.972;4963.6;no
+31;technician;single;professional.course;no;yes;no;cellular;oct;fri;401;2;999;0;nonexistent;-1.1;94.601;-49.5;0.972;4963.6;yes
+55;admin.;married;high.school;no;no;no;telephone;oct;mon;317;2;10;3;success;-1.1;94.601;-49.5;0.977;4963.6;no
+59;services;married;university.degree;no;yes;no;cellular;oct;mon;162;1;999;0;nonexistent;-1.1;94.601;-49.5;0.977;4963.6;no
+33;services;married;professional.course;no;no;no;cellular;oct;mon;291;1;999;3;failure;-1.1;94.601;-49.5;0.977;4963.6;no
+48;technician;married;professional.course;no;yes;yes;cellular;oct;mon;450;1;8;1;success;-1.1;94.601;-49.5;0.977;4963.6;yes
+30;technician;single;unknown;no;yes;yes;cellular;oct;mon;195;1;999;3;failure;-1.1;94.601;-49.5;0.977;4963.6;no
+27;admin.;single;university.degree;no;no;no;cellular;oct;mon;278;1;999;0;nonexistent;-1.1;94.601;-49.5;0.977;4963.6;yes
+29;admin.;single;university.degree;no;no;no;cellular;oct;mon;123;2;12;2;failure;-1.1;94.601;-49.5;0.977;4963.6;no
+33;services;single;university.degree;no;no;no;cellular;oct;mon;110;2;999;0;nonexistent;-1.1;94.601;-49.5;0.977;4963.6;no
+33;services;single;university.degree;no;yes;no;cellular;oct;mon;252;2;3;2;success;-1.1;94.601;-49.5;0.977;4963.6;yes
+65;retired;married;basic.4y;no;yes;yes;cellular;oct;mon;165;1;3;1;success;-1.1;94.601;-49.5;0.977;4963.6;yes
+24;blue-collar;single;basic.9y;no;no;no;cellular;oct;mon;485;1;6;1;success;-1.1;94.601;-49.5;0.977;4963.6;no
+74;retired;married;university.degree;no;no;no;telephone;oct;mon;160;1;999;0;nonexistent;-1.1;94.601;-49.5;0.977;4963.6;no
+25;services;single;high.school;no;no;no;cellular;oct;mon;251;1;999;1;failure;-1.1;94.601;-49.5;0.977;4963.6;no
+25;services;single;high.school;no;no;no;cellular;oct;mon;79;1;999;2;failure;-1.1;94.601;-49.5;0.977;4963.6;no
+26;technician;single;professional.course;no;no;no;telephone;oct;mon;4;1;16;1;success;-1.1;94.601;-49.5;0.977;4963.6;no
+22;unemployed;single;university.degree;no;no;yes;telephone;oct;mon;34;2;999;0;nonexistent;-1.1;94.601;-49.5;0.977;4963.6;no
+59;services;married;university.degree;no;yes;no;cellular;oct;mon;383;2;999;2;failure;-1.1;94.601;-49.5;0.977;4963.6;yes
+71;retired;married;professional.course;no;yes;no;cellular;oct;mon;185;2;999;0;nonexistent;-1.1;94.601;-49.5;0.977;4963.6;no
+61;admin.;married;high.school;no;yes;no;cellular;oct;mon;146;4;999;0;nonexistent;-1.1;94.601;-49.5;0.977;4963.6;no
+20;student;single;unknown;no;no;no;cellular;oct;mon;137;3;999;3;failure;-1.1;94.601;-49.5;0.977;4963.6;no
+28;blue-collar;single;basic.9y;no;yes;no;telephone;oct;mon;4;1;999;0;nonexistent;-1.1;94.601;-49.5;0.977;4963.6;no
+31;technician;single;professional.course;no;yes;no;telephone;oct;tue;54;1;999;1;failure;-1.1;94.601;-49.5;0.982;4963.6;no
+31;blue-collar;single;basic.9y;no;no;no;telephone;oct;tue;114;1;999;0;nonexistent;-1.1;94.601;-49.5;0.982;4963.6;no
+31;technician;married;university.degree;no;yes;yes;cellular;oct;tue;203;4;6;2;success;-1.1;94.601;-49.5;0.982;4963.6;yes
+21;student;single;high.school;no;no;no;cellular;oct;tue;362;1;999;0;nonexistent;-1.1;94.601;-49.5;0.982;4963.6;yes
+20;student;single;unknown;no;yes;yes;cellular;oct;tue;187;1;3;4;success;-1.1;94.601;-49.5;0.982;4963.6;yes
+22;student;single;university.degree;no;yes;no;cellular;oct;tue;166;1;999;0;nonexistent;-1.1;94.601;-49.5;0.982;4963.6;no
+27;admin.;single;university.degree;no;yes;yes;cellular;oct;tue;242;1;3;2;success;-1.1;94.601;-49.5;0.982;4963.6;no
+27;blue-collar;single;high.school;no;no;no;cellular;oct;tue;253;1;999;2;failure;-1.1;94.601;-49.5;0.982;4963.6;yes
+71;retired;married;professional.course;no;no;no;cellular;oct;tue;323;1;999;0;nonexistent;-1.1;94.601;-49.5;0.982;4963.6;yes
+27;admin.;single;university.degree;no;no;no;cellular;oct;tue;143;1;999;0;nonexistent;-1.1;94.601;-49.5;0.982;4963.6;no
+20;student;single;unknown;no;no;no;telephone;oct;tue;250;1;999;1;failure;-1.1;94.601;-49.5;0.982;4963.6;no
+31;technician;married;university.degree;no;no;no;cellular;oct;tue;146;2;12;3;failure;-1.1;94.601;-49.5;0.982;4963.6;no
+27;blue-collar;single;high.school;no;yes;no;cellular;oct;tue;209;3;999;1;failure;-1.1;94.601;-49.5;0.982;4963.6;yes
+51;housemaid;married;basic.4y;no;no;no;cellular;oct;tue;130;2;999;2;failure;-1.1;94.601;-49.5;0.982;4963.6;no
+27;student;single;high.school;no;no;no;telephone;oct;tue;5;1;999;0;nonexistent;-1.1;94.601;-49.5;0.982;4963.6;no
+49;admin.;married;high.school;unknown;no;no;cellular;oct;wed;169;1;6;3;success;-1.1;94.601;-49.5;0.985;4963.6;yes
+66;retired;married;basic.4y;unknown;unknown;unknown;cellular;oct;wed;216;1;6;3;success;-1.1;94.601;-49.5;0.985;4963.6;yes
+65;retired;married;basic.4y;no;yes;yes;cellular;oct;wed;190;1;3;3;success;-1.1;94.601;-49.5;0.985;4963.6;yes
+35;admin.;married;university.degree;no;no;no;cellular;oct;wed;194;1;3;2;success;-1.1;94.601;-49.5;0.985;4963.6;yes
+52;technician;married;university.degree;no;yes;no;telephone;oct;wed;6;1;999;1;failure;-1.1;94.601;-49.5;0.985;4963.6;no
+54;admin.;married;high.school;no;no;no;cellular;oct;wed;252;2;6;2;success;-1.1;94.601;-49.5;0.985;4963.6;yes
+60;retired;married;basic.4y;no;yes;no;cellular;oct;wed;357;2;999;1;failure;-1.1;94.601;-49.5;0.985;4963.6;no
+63;admin.;married;university.degree;no;yes;yes;cellular;oct;thu;133;2;999;0;nonexistent;-1.1;94.601;-49.5;0.987;4963.6;no
+33;management;single;university.degree;no;no;no;cellular;oct;thu;119;3;999;0;nonexistent;-1.1;94.601;-49.5;0.987;4963.6;no
+54;self-employed;married;university.degree;no;no;no;cellular;oct;thu;99;3;999;0;nonexistent;-1.1;94.601;-49.5;0.987;4963.6;no
+81;retired;divorced;basic.4y;no;yes;no;cellular;oct;thu;192;2;3;2;success;-1.1;94.601;-49.5;0.987;4963.6;no
+70;retired;married;professional.course;no;no;no;cellular;oct;thu;585;1;6;3;success;-1.1;94.601;-49.5;0.987;4963.6;yes
+50;admin.;married;high.school;no;yes;no;cellular;oct;thu;326;1;999;0;nonexistent;-1.1;94.601;-49.5;0.987;4963.6;yes
+48;technician;married;professional.course;no;yes;no;cellular;oct;thu;235;1;999;0;nonexistent;-1.1;94.601;-49.5;0.987;4963.6;no
+48;technician;married;professional.course;no;no;no;cellular;oct;thu;491;1;6;3;success;-1.1;94.601;-49.5;0.987;4963.6;yes
+61;blue-collar;married;professional.course;no;yes;no;cellular;oct;thu;246;2;999;0;nonexistent;-1.1;94.601;-49.5;0.987;4963.6;yes
+54;self-employed;married;university.degree;no;yes;no;cellular;oct;thu;317;6;6;1;success;-1.1;94.601;-49.5;0.987;4963.6;no
+37;admin.;single;high.school;no;no;no;telephone;oct;thu;301;1;3;1;success;-1.1;94.601;-49.5;0.987;4963.6;yes
+63;admin.;married;university.degree;no;yes;no;cellular;oct;thu;174;2;6;1;success;-1.1;94.601;-49.5;0.987;4963.6;no
+37;admin.;single;high.school;no;no;no;cellular;oct;thu;322;1;999;0;nonexistent;-1.1;94.601;-49.5;0.987;4963.6;no
+37;admin.;single;high.school;no;no;no;cellular;oct;thu;509;1;999;0;nonexistent;-1.1;94.601;-49.5;0.987;4963.6;yes
+54;self-employed;married;university.degree;no;no;no;cellular;oct;thu;219;3;999;1;failure;-1.1;94.601;-49.5;0.987;4963.6;no
+41;admin.;single;high.school;no;no;no;cellular;oct;thu;786;2;999;0;nonexistent;-1.1;94.601;-49.5;0.987;4963.6;no
+54;self-employed;married;university.degree;no;yes;no;cellular;oct;thu;72;4;999;1;failure;-1.1;94.601;-49.5;0.987;4963.6;no
+51;admin.;married;high.school;no;no;yes;cellular;oct;thu;181;2;999;1;failure;-1.1;94.601;-49.5;0.987;4963.6;no
+81;retired;divorced;basic.4y;no;yes;no;cellular;oct;thu;158;1;999;1;failure;-1.1;94.601;-49.5;0.987;4963.6;no
+74;retired;married;university.degree;no;yes;no;cellular;oct;fri;212;2;3;2;success;-1.1;94.601;-49.5;0.993;4963.6;no
+34;student;single;professional.course;no;yes;no;telephone;oct;fri;6;1;999;0;nonexistent;-1.1;94.601;-49.5;0.993;4963.6;no
+65;retired;married;basic.4y;no;no;no;cellular;oct;fri;187;2;7;3;success;-1.1;94.601;-49.5;0.993;4963.6;yes
+84;retired;divorced;basic.4y;unknown;yes;no;cellular;oct;fri;106;4;999;0;nonexistent;-1.1;94.601;-49.5;0.993;4963.6;no
+24;admin.;single;university.degree;no;yes;no;cellular;oct;fri;1176;3;3;2;success;-1.1;94.601;-49.5;0.993;4963.6;yes
+68;retired;divorced;high.school;no;yes;no;cellular;oct;mon;130;4;999;2;failure;-1.1;94.601;-49.5;1.0;4963.6;no
+26;student;single;high.school;no;yes;no;telephone;oct;mon;209;1;999;0;nonexistent;-1.1;94.601;-49.5;1.0;4963.6;no
+68;retired;divorced;high.school;no;yes;yes;cellular;oct;mon;567;1;3;1;success;-1.1;94.601;-49.5;1.0;4963.6;yes
+47;admin.;single;university.degree;no;yes;no;cellular;oct;mon;333;1;999;1;failure;-1.1;94.601;-49.5;1.0;4963.6;no
+44;technician;married;high.school;no;yes;yes;cellular;oct;mon;310;1;999;1;failure;-1.1;94.601;-49.5;1.0;4963.6;yes
+56;technician;divorced;professional.course;no;no;no;cellular;oct;mon;464;1;3;2;success;-1.1;94.601;-49.5;1.0;4963.6;yes
+42;technician;married;professional.course;no;yes;yes;cellular;oct;mon;509;1;6;1;success;-1.1;94.601;-49.5;1.0;4963.6;yes
+44;admin.;married;university.degree;no;yes;no;cellular;oct;mon;252;1;999;0;nonexistent;-1.1;94.601;-49.5;1.0;4963.6;yes
+56;technician;divorced;professional.course;no;yes;yes;cellular;oct;mon;170;5;999;0;nonexistent;-1.1;94.601;-49.5;1.0;4963.6;no
+29;admin.;single;university.degree;no;yes;no;cellular;oct;mon;526;1;999;0;nonexistent;-1.1;94.601;-49.5;1.0;4963.6;yes
+68;retired;divorced;high.school;no;yes;no;cellular;oct;mon;222;1;999;0;nonexistent;-1.1;94.601;-49.5;1.0;4963.6;yes
+74;retired;divorced;basic.4y;no;yes;no;cellular;oct;mon;180;2;999;0;nonexistent;-1.1;94.601;-49.5;1.0;4963.6;no
+74;retired;divorced;basic.4y;no;yes;no;cellular;oct;mon;102;3;3;2;success;-1.1;94.601;-49.5;1.0;4963.6;no
+44;services;married;high.school;no;no;no;cellular;oct;mon;95;3;999;0;nonexistent;-1.1;94.601;-49.5;1.0;4963.6;no
+47;admin.;single;university.degree;no;no;no;cellular;oct;mon;767;3;999;0;nonexistent;-1.1;94.601;-49.5;1.0;4963.6;yes
+84;retired;divorced;basic.4y;unknown;yes;yes;cellular;oct;mon;138;4;3;1;success;-1.1;94.601;-49.5;1.0;4963.6;no
+60;retired;married;university.degree;no;yes;no;cellular;oct;mon;338;2;999;0;nonexistent;-1.1;94.601;-49.5;1.0;4963.6;no
+44;technician;married;high.school;no;yes;yes;cellular;oct;mon;159;2;999;1;failure;-1.1;94.601;-49.5;1.0;4963.6;no
+24;student;single;professional.course;no;no;yes;cellular;oct;tue;133;3;999;2;failure;-1.1;94.601;-49.5;1.008;4963.6;no
+31;admin.;single;university.degree;no;unknown;unknown;cellular;oct;tue;192;1;3;1;success;-1.1;94.601;-49.5;1.008;4963.6;yes
+67;retired;divorced;basic.4y;no;yes;no;cellular;oct;tue;218;1;999;1;failure;-1.1;94.601;-49.5;1.008;4963.6;no
+48;technician;married;university.degree;no;yes;yes;cellular;oct;tue;337;2;999;0;nonexistent;-1.1;94.601;-49.5;1.008;4963.6;yes
+50;entrepreneur;divorced;university.degree;no;yes;no;telephone;oct;tue;898;7;11;2;success;-1.1;94.601;-49.5;1.008;4963.6;yes
+54;services;divorced;high.school;no;yes;yes;cellular;oct;wed;178;4;3;1;success;-1.1;94.601;-49.5;1.016;4963.6;yes
+54;services;divorced;high.school;no;no;no;cellular;oct;wed;268;1;999;1;failure;-1.1;94.601;-49.5;1.016;4963.6;no
+81;retired;married;basic.4y;no;yes;no;cellular;oct;wed;621;1;999;2;failure;-1.1;94.601;-49.5;1.016;4963.6;yes
+25;student;married;high.school;no;yes;no;telephone;oct;wed;7;1;999;0;nonexistent;-1.1;94.601;-49.5;1.016;4963.6;no
+34;technician;married;university.degree;no;yes;no;telephone;oct;wed;5;1;999;0;nonexistent;-1.1;94.601;-49.5;1.016;4963.6;no
+61;housemaid;married;basic.4y;no;yes;no;telephone;oct;wed;238;2;999;2;failure;-1.1;94.601;-49.5;1.016;4963.6;no
+54;services;divorced;high.school;no;yes;no;cellular;oct;wed;487;3;999;2;failure;-1.1;94.601;-49.5;1.016;4963.6;yes
+38;admin.;divorced;basic.9y;no;no;no;cellular;oct;wed;139;2;999;3;failure;-1.1;94.601;-49.5;1.016;4963.6;no
+45;student;single;unknown;no;yes;no;cellular;oct;wed;316;2;999;2;failure;-1.1;94.601;-49.5;1.016;4963.6;no
+37;management;married;university.degree;no;yes;no;cellular;oct;thu;150;3;5;5;success;-1.1;94.601;-49.5;1.025;4963.6;yes
+80;retired;married;professional.course;no;yes;no;cellular;oct;thu;411;1;999;1;failure;-1.1;94.601;-49.5;1.025;4963.6;yes
+63;unknown;married;professional.course;no;no;no;cellular;oct;thu;235;1;6;1;success;-1.1;94.601;-49.5;1.025;4963.6;no
+37;housemaid;married;university.degree;no;no;no;cellular;oct;thu;453;1;6;2;success;-1.1;94.601;-49.5;1.025;4963.6;yes
+37;housemaid;married;university.degree;no;no;no;cellular;oct;thu;178;2;13;2;success;-1.1;94.601;-49.5;1.025;4963.6;yes
+23;student;single;high.school;no;yes;no;cellular;oct;thu;262;3;999;0;nonexistent;-1.1;94.601;-49.5;1.025;4963.6;no
+24;blue-collar;single;high.school;no;no;no;cellular;oct;thu;1032;1;3;1;success;-1.1;94.601;-49.5;1.025;4963.6;yes
+33;admin.;single;university.degree;no;yes;no;cellular;oct;thu;759;1;3;3;success;-1.1;94.601;-49.5;1.025;4963.6;yes
+37;housemaid;married;university.degree;no;no;no;cellular;oct;thu;549;2;11;4;success;-1.1;94.601;-49.5;1.025;4963.6;yes
+65;retired;married;high.school;no;yes;no;cellular;oct;thu;201;5;3;1;success;-1.1;94.601;-49.5;1.025;4963.6;no
+29;admin.;single;high.school;no;no;no;telephone;oct;thu;330;2;6;1;success;-1.1;94.601;-49.5;1.025;4963.6;yes
+31;technician;single;professional.course;no;unknown;unknown;cellular;oct;thu;212;2;999;0;nonexistent;-1.1;94.601;-49.5;1.025;4963.6;yes
+34;admin.;divorced;university.degree;no;unknown;unknown;cellular;oct;thu;256;2;999;1;failure;-1.1;94.601;-49.5;1.025;4963.6;no
+37;management;married;university.degree;no;yes;no;cellular;oct;thu;339;3;3;3;success;-1.1;94.601;-49.5;1.025;4963.6;yes
+45;admin.;married;high.school;no;yes;no;cellular;oct;fri;738;3;6;1;success;-1.1;94.601;-49.5;1.029;4963.6;yes
+26;unemployed;single;high.school;no;yes;no;cellular;oct;fri;394;3;14;1;success;-1.1;94.601;-49.5;1.029;4963.6;yes
+31;student;single;high.school;no;yes;no;cellular;oct;fri;716;3;999;0;nonexistent;-1.1;94.601;-49.5;1.029;4963.6;yes
+25;student;single;high.school;no;yes;no;cellular;oct;fri;234;1;3;1;success;-1.1;94.601;-49.5;1.029;4963.6;yes
+29;unemployed;single;high.school;no;yes;no;cellular;oct;fri;168;2;999;0;nonexistent;-1.1;94.601;-49.5;1.029;4963.6;no
+23;student;single;high.school;no;no;yes;cellular;oct;fri;380;1;3;1;success;-1.1;94.601;-49.5;1.029;4963.6;yes
+27;self-employed;single;university.degree;no;no;no;telephone;oct;fri;84;3;999;0;nonexistent;-1.1;94.601;-49.5;1.029;4963.6;no
+37;unemployed;single;professional.course;no;no;no;cellular;oct;fri;142;4;6;1;success;-1.1;94.601;-49.5;1.029;4963.6;no
+25;student;single;high.school;no;no;no;cellular;oct;fri;554;3;999;0;nonexistent;-1.1;94.601;-49.5;1.029;4963.6;yes
+65;retired;married;high.school;no;yes;yes;cellular;oct;fri;344;2;12;1;success;-1.1;94.601;-49.5;1.029;4963.6;yes
+37;services;married;high.school;no;yes;yes;cellular;oct;fri;608;2;12;2;failure;-1.1;94.601;-49.5;1.029;4963.6;yes
+28;admin.;single;university.degree;no;yes;no;cellular;oct;mon;92;4;17;3;failure;-1.1;94.601;-49.5;1.032;4963.6;no
+46;management;married;university.degree;no;unknown;unknown;cellular;oct;mon;83;2;12;2;failure;-1.1;94.601;-49.5;1.032;4963.6;no
+28;admin.;single;university.degree;no;no;no;cellular;oct;mon;225;1;3;3;success;-1.1;94.601;-49.5;1.032;4963.6;yes
+25;student;single;high.school;no;yes;no;cellular;oct;mon;189;1;6;4;success;-1.1;94.601;-49.5;1.032;4963.6;no
+36;unemployed;married;high.school;no;yes;no;cellular;oct;mon;304;1;3;1;success;-1.1;94.601;-49.5;1.032;4963.6;yes
+33;admin.;single;university.degree;no;yes;no;cellular;oct;mon;400;1;5;2;success;-1.1;94.601;-49.5;1.032;4963.6;yes
+33;services;single;high.school;no;yes;no;cellular;oct;mon;182;1;6;1;success;-1.1;94.601;-49.5;1.032;4963.6;yes
+30;technician;married;professional.course;no;yes;no;cellular;oct;mon;253;1;9;2;success;-1.1;94.601;-49.5;1.032;4963.6;yes
+38;technician;single;university.degree;no;yes;no;telephone;oct;mon;254;1;9;3;failure;-1.1;94.601;-49.5;1.032;4963.6;no
+28;admin.;single;university.degree;no;yes;no;cellular;oct;mon;324;1;6;2;success;-1.1;94.601;-49.5;1.032;4963.6;no
+23;student;single;high.school;no;yes;no;cellular;oct;mon;226;2;999;1;failure;-1.1;94.601;-49.5;1.032;4963.6;yes
+33;admin.;single;university.degree;no;yes;no;cellular;oct;mon;297;5;999;0;nonexistent;-1.1;94.601;-49.5;1.032;4963.6;yes
+30;technician;married;professional.course;no;yes;no;cellular;oct;mon;215;1;6;1;success;-1.1;94.601;-49.5;1.032;4963.6;yes
+35;admin.;single;university.degree;no;yes;no;cellular;oct;mon;129;1;999;0;nonexistent;-1.1;94.601;-49.5;1.032;4963.6;no
+25;student;single;high.school;no;yes;no;cellular;oct;mon;211;2;6;3;success;-1.1;94.601;-49.5;1.032;4963.6;yes
+38;admin.;divorced;university.degree;no;yes;no;telephone;oct;mon;293;3;999;0;nonexistent;-1.1;94.601;-49.5;1.032;4963.6;no
+62;admin.;married;high.school;no;no;no;cellular;oct;tue;318;1;4;3;success;-1.1;94.601;-49.5;1.037;4963.6;yes
+30;student;single;high.school;no;yes;no;cellular;oct;tue;196;1;17;2;failure;-1.1;94.601;-49.5;1.037;4963.6;no
+60;admin.;married;high.school;no;no;no;cellular;oct;tue;604;1;999;1;failure;-1.1;94.601;-49.5;1.037;4963.6;yes
+62;admin.;married;high.school;no;no;no;cellular;oct;tue;238;4;18;2;failure;-1.1;94.601;-49.5;1.037;4963.6;yes
+25;student;single;high.school;no;yes;no;telephone;oct;tue;17;1;999;0;nonexistent;-1.1;94.601;-49.5;1.037;4963.6;no
+21;student;single;high.school;no;no;no;cellular;oct;tue;701;2;999;0;nonexistent;-1.1;94.601;-49.5;1.037;4963.6;yes
+30;management;married;university.degree;no;no;no;cellular;oct;wed;711;1;999;0;nonexistent;-1.1;94.601;-49.5;1.043;4963.6;yes
+27;technician;single;university.degree;no;no;no;cellular;oct;wed;223;2;999;0;nonexistent;-1.1;94.601;-49.5;1.043;4963.6;no
+65;retired;married;basic.4y;no;no;no;cellular;oct;wed;882;1;999;0;nonexistent;-1.1;94.601;-49.5;1.043;4963.6;yes
+23;student;single;high.school;no;no;no;cellular;oct;wed;409;1;3;1;success;-1.1;94.601;-49.5;1.043;4963.6;no
+31;student;single;university.degree;no;no;no;cellular;oct;wed;508;1;999;0;nonexistent;-1.1;94.601;-49.5;1.043;4963.6;yes
+27;technician;single;university.degree;no;yes;no;cellular;oct;wed;184;1;999;1;failure;-1.1;94.601;-49.5;1.043;4963.6;yes
+60;retired;married;professional.course;no;no;yes;cellular;oct;wed;170;2;999;1;failure;-1.1;94.601;-49.5;1.043;4963.6;no
+30;management;married;university.degree;no;no;yes;cellular;oct;wed;255;1;6;1;success;-1.1;94.601;-49.5;1.043;4963.6;yes
+65;retired;married;basic.4y;no;yes;no;cellular;oct;wed;258;1;3;3;success;-1.1;94.601;-49.5;1.043;4963.6;yes
+42;services;married;basic.9y;no;no;no;telephone;oct;thu;71;1;999;0;nonexistent;-1.1;94.601;-49.5;1.045;4963.6;no
+46;admin.;married;basic.9y;no;yes;no;telephone;nov;tue;18;1;999;1;failure;-1.1;94.767;-50.8;1.047;4963.6;no
+31;management;married;university.degree;no;yes;no;cellular;nov;mon;188;1;999;0;nonexistent;-1.1;94.767;-50.8;1.05;4963.6;yes
+51;services;married;high.school;no;yes;no;cellular;nov;mon;176;1;999;1;failure;-1.1;94.767;-50.8;1.05;4963.6;no
+48;admin.;married;university.degree;no;yes;no;cellular;nov;mon;159;1;6;3;success;-1.1;94.767;-50.8;1.05;4963.6;yes
+29;technician;single;university.degree;no;no;no;cellular;nov;mon;240;1;4;1;success;-1.1;94.767;-50.8;1.05;4963.6;no
+29;technician;single;university.degree;no;no;no;telephone;nov;mon;360;1;3;2;success;-1.1;94.767;-50.8;1.05;4963.6;yes
+37;technician;married;university.degree;no;no;no;cellular;nov;mon;119;1;999;3;failure;-1.1;94.767;-50.8;1.05;4963.6;no
+34;admin.;married;university.degree;no;no;no;cellular;nov;mon;230;1;999;1;failure;-1.1;94.767;-50.8;1.05;4963.6;no
+29;admin.;single;high.school;no;yes;no;telephone;nov;mon;207;1;6;1;success;-1.1;94.767;-50.8;1.05;4963.6;no
+51;services;married;high.school;no;no;yes;cellular;nov;mon;120;2;3;4;success;-1.1;94.767;-50.8;1.05;4963.6;no
+37;admin.;married;university.degree;no;no;no;cellular;nov;mon;137;1;999;1;failure;-1.1;94.767;-50.8;1.05;4963.6;no
+61;retired;married;university.degree;no;no;no;cellular;nov;mon;507;1;999;0;nonexistent;-1.1;94.767;-50.8;1.05;4963.6;no
+24;student;single;high.school;no;yes;yes;cellular;nov;mon;106;1;999;0;nonexistent;-1.1;94.767;-50.8;1.05;4963.6;no
+39;admin.;married;high.school;no;no;no;cellular;nov;mon;148;1;999;1;failure;-1.1;94.767;-50.8;1.05;4963.6;no
+35;blue-collar;married;basic.9y;no;yes;no;cellular;nov;mon;212;1;999;2;failure;-1.1;94.767;-50.8;1.05;4963.6;no
+34;admin.;married;university.degree;no;no;no;cellular;nov;mon;141;2;999;0;nonexistent;-1.1;94.767;-50.8;1.05;4963.6;no
+50;blue-collar;divorced;professional.course;no;yes;no;cellular;nov;mon;742;1;999;0;nonexistent;-1.1;94.767;-50.8;1.05;4963.6;yes
+45;blue-collar;married;high.school;no;yes;yes;cellular;nov;mon;449;2;5;3;success;-1.1;94.767;-50.8;1.05;4963.6;yes
+37;admin.;married;university.degree;no;no;no;cellular;nov;mon;282;2;6;1;success;-1.1;94.767;-50.8;1.05;4963.6;yes
+51;services;married;high.school;no;yes;no;cellular;nov;mon;354;3;6;3;success;-1.1;94.767;-50.8;1.05;4963.6;no
+27;student;single;high.school;no;no;yes;cellular;nov;tue;326;1;999;0;nonexistent;-1.1;94.767;-50.8;1.049;4963.6;no
+51;admin.;divorced;high.school;no;yes;no;cellular;nov;tue;283;1;3;7;success;-1.1;94.767;-50.8;1.049;4963.6;no
+48;admin.;married;high.school;no;no;no;telephone;nov;tue;301;1;999;2;failure;-1.1;94.767;-50.8;1.049;4963.6;no
+24;technician;single;university.degree;no;yes;yes;cellular;nov;tue;467;3;6;3;failure;-1.1;94.767;-50.8;1.049;4963.6;yes
+18;student;single;unknown;no;yes;no;cellular;nov;tue;600;2;999;3;failure;-1.1;94.767;-50.8;1.049;4963.6;no
+51;admin.;divorced;high.school;no;yes;yes;cellular;nov;tue;334;2;6;4;failure;-1.1;94.767;-50.8;1.049;4963.6;yes
+50;blue-collar;divorced;professional.course;no;yes;no;cellular;nov;tue;137;2;9;3;success;-1.1;94.767;-50.8;1.049;4963.6;no
+30;blue-collar;single;professional.course;no;yes;no;cellular;nov;tue;111;2;999;0;nonexistent;-1.1;94.767;-50.8;1.049;4963.6;no
+18;student;single;basic.4y;no;yes;no;telephone;nov;tue;394;1;13;2;success;-1.1;94.767;-50.8;1.049;4963.6;yes
+50;blue-collar;divorced;professional.course;no;yes;no;telephone;nov;tue;301;2;7;2;success;-1.1;94.767;-50.8;1.049;4963.6;yes
+31;admin.;single;university.degree;no;no;yes;cellular;nov;wed;212;2;3;6;success;-1.1;94.767;-50.8;1.048;4963.6;no
+31;admin.;single;university.degree;no;yes;no;cellular;nov;wed;228;1;999;0;nonexistent;-1.1;94.767;-50.8;1.048;4963.6;no
+31;admin.;single;university.degree;no;yes;no;cellular;nov;wed;404;1;2;5;success;-1.1;94.767;-50.8;1.048;4963.6;yes
+52;technician;married;university.degree;no;no;no;cellular;nov;wed;164;1;999;1;failure;-1.1;94.767;-50.8;1.048;4963.6;no
+19;student;single;basic.9y;no;yes;no;cellular;nov;wed;182;1;999;1;failure;-1.1;94.767;-50.8;1.048;4963.6;no
+31;admin.;single;university.degree;no;yes;no;telephone;nov;wed;98;2;999;0;nonexistent;-1.1;94.767;-50.8;1.048;4963.6;no
+28;services;married;high.school;no;yes;no;cellular;nov;wed;223;3;999;2;failure;-1.1;94.767;-50.8;1.048;4963.6;no
+34;admin.;married;university.degree;no;no;no;cellular;nov;wed;134;1;3;3;success;-1.1;94.767;-50.8;1.048;4963.6;no
+29;student;single;high.school;no;yes;yes;cellular;nov;thu;289;1;3;3;success;-1.1;94.767;-50.8;1.05;4963.6;yes
+59;admin.;divorced;high.school;no;no;no;cellular;nov;thu;357;3;3;2;success;-1.1;94.767;-50.8;1.05;4963.6;yes
+33;admin.;married;university.degree;no;yes;no;cellular;nov;fri;482;1;12;1;success;-1.1;94.767;-50.8;1.049;4963.6;yes
+63;retired;married;basic.4y;no;yes;no;cellular;nov;fri;413;1;3;2;success;-1.1;94.767;-50.8;1.049;4963.6;yes
+45;admin.;married;university.degree;no;no;no;cellular;nov;fri;319;1;999;3;failure;-1.1;94.767;-50.8;1.049;4963.6;no
+40;technician;married;basic.9y;no;yes;no;cellular;nov;mon;414;2;999;3;failure;-1.1;94.767;-50.8;1.048;4963.6;no
+46;admin.;single;high.school;no;yes;no;cellular;nov;mon;199;2;999;2;failure;-1.1;94.767;-50.8;1.048;4963.6;no
+32;admin.;single;high.school;no;no;no;cellular;nov;mon;191;2;19;2;failure;-1.1;94.767;-50.8;1.048;4963.6;no
+32;admin.;single;high.school;no;no;no;cellular;nov;mon;74;2;999;2;failure;-1.1;94.767;-50.8;1.048;4963.6;no
+32;admin.;single;high.school;no;yes;no;cellular;nov;mon;128;2;999;1;failure;-1.1;94.767;-50.8;1.048;4963.6;no
+64;unknown;married;unknown;no;no;no;cellular;nov;mon;78;1;3;3;success;-1.1;94.767;-50.8;1.048;4963.6;no
+34;technician;married;unknown;no;yes;no;cellular;nov;tue;138;1;1;4;success;-1.1;94.767;-50.8;1.046;4963.6;no
+34;technician;married;unknown;no;yes;no;cellular;nov;tue;200;1;3;1;success;-1.1;94.767;-50.8;1.046;4963.6;yes
+46;admin.;single;university.degree;no;no;yes;cellular;nov;tue;173;1;999;1;failure;-1.1;94.767;-50.8;1.046;4963.6;no
+58;admin.;married;high.school;no;yes;no;cellular;nov;tue;173;1;999;2;failure;-1.1;94.767;-50.8;1.046;4963.6;no
+34;technician;married;unknown;no;no;no;cellular;nov;tue;206;1;6;2;success;-1.1;94.767;-50.8;1.046;4963.6;yes
+60;admin.;married;unknown;no;no;no;cellular;nov;tue;787;1;7;2;success;-1.1;94.767;-50.8;1.046;4963.6;yes
+42;services;divorced;university.degree;no;unknown;unknown;cellular;nov;tue;262;1;999;1;failure;-1.1;94.767;-50.8;1.046;4963.6;yes
+36;blue-collar;single;basic.6y;no;no;no;cellular;nov;tue;238;1;999;0;nonexistent;-1.1;94.767;-50.8;1.046;4963.6;yes
+29;technician;single;professional.course;no;no;no;cellular;nov;tue;449;2;1;1;success;-1.1;94.767;-50.8;1.046;4963.6;yes
+34;technician;married;unknown;no;yes;no;cellular;nov;tue;162;2;999;2;failure;-1.1;94.767;-50.8;1.046;4963.6;no
+36;blue-collar;single;basic.6y;no;yes;no;cellular;nov;tue;330;1;999;0;nonexistent;-1.1;94.767;-50.8;1.046;4963.6;yes
+60;admin.;married;unknown;no;no;no;cellular;nov;tue;333;2;999;0;nonexistent;-1.1;94.767;-50.8;1.046;4963.6;no
+46;admin.;single;university.degree;no;yes;no;cellular;nov;tue;1166;3;999;1;failure;-1.1;94.767;-50.8;1.046;4963.6;no
+34;technician;married;unknown;no;no;no;cellular;nov;tue;985;3;999;0;nonexistent;-1.1;94.767;-50.8;1.046;4963.6;yes
+36;blue-collar;single;basic.6y;no;no;no;cellular;nov;tue;1556;4;999;0;nonexistent;-1.1;94.767;-50.8;1.046;4963.6;yes
+37;technician;single;professional.course;no;yes;no;cellular;nov;wed;226;1;6;4;success;-1.1;94.767;-50.8;1.044;4963.6;yes
+37;technician;single;professional.course;no;yes;no;cellular;nov;wed;224;1;999;0;nonexistent;-1.1;94.767;-50.8;1.044;4963.6;yes
+61;admin.;married;high.school;no;yes;no;cellular;nov;wed;300;1;21;5;failure;-1.1;94.767;-50.8;1.044;4963.6;yes
+61;admin.;married;high.school;no;yes;yes;cellular;nov;wed;386;2;999;0;nonexistent;-1.1;94.767;-50.8;1.044;4963.6;yes
+31;admin.;single;high.school;no;yes;no;cellular;nov;wed;456;2;999;0;nonexistent;-1.1;94.767;-50.8;1.044;4963.6;yes
+61;admin.;married;high.school;no;no;no;telephone;nov;wed;508;4;999;0;nonexistent;-1.1;94.767;-50.8;1.044;4963.6;no
+31;admin.;single;university.degree;no;yes;no;cellular;nov;thu;260;1;999;0;nonexistent;-1.1;94.767;-50.8;1.041;4963.6;yes
+58;management;married;university.degree;no;yes;no;cellular;nov;thu;193;1;999;0;nonexistent;-1.1;94.767;-50.8;1.041;4963.6;no
+41;unemployed;married;basic.9y;no;no;no;cellular;nov;thu;597;2;3;2;success;-1.1;94.767;-50.8;1.041;4963.6;yes
+28;self-employed;single;university.degree;no;yes;no;cellular;nov;thu;97;2;6;3;success;-1.1;94.767;-50.8;1.041;4963.6;no
+25;student;single;high.school;no;no;no;cellular;nov;thu;244;1;999;0;nonexistent;-1.1;94.767;-50.8;1.041;4963.6;yes
+54;technician;married;unknown;no;yes;no;cellular;nov;thu;222;1;999;1;failure;-1.1;94.767;-50.8;1.041;4963.6;no
+54;unemployed;married;professional.course;no;yes;no;telephone;nov;thu;200;2;10;4;failure;-1.1;94.767;-50.8;1.041;4963.6;no
+42;admin.;married;university.degree;no;yes;no;cellular;nov;thu;419;3;999;1;failure;-1.1;94.767;-50.8;1.041;4963.6;no
+58;unemployed;married;university.degree;no;yes;no;cellular;nov;thu;344;2;999;0;nonexistent;-1.1;94.767;-50.8;1.041;4963.6;yes
+31;services;married;high.school;no;yes;no;cellular;nov;fri;202;3;999;0;nonexistent;-1.1;94.767;-50.8;1.04;4963.6;no
+33;management;married;university.degree;no;yes;no;cellular;nov;fri;237;2;999;0;nonexistent;-1.1;94.767;-50.8;1.04;4963.6;yes
+37;admin.;married;university.degree;no;yes;no;cellular;nov;fri;315;1;999;0;nonexistent;-1.1;94.767;-50.8;1.04;4963.6;yes
+43;admin.;divorced;university.degree;no;yes;no;cellular;nov;fri;741;4;999;2;failure;-1.1;94.767;-50.8;1.04;4963.6;yes
+29;technician;single;professional.course;no;no;yes;cellular;nov;fri;127;1;6;2;success;-1.1;94.767;-50.8;1.04;4963.6;no
+35;admin.;single;professional.course;no;yes;no;cellular;nov;fri;92;3;999;4;failure;-1.1;94.767;-50.8;1.04;4963.6;no
+26;admin.;single;university.degree;no;no;no;cellular;nov;fri;528;3;999;0;nonexistent;-1.1;94.767;-50.8;1.04;4963.6;yes
+41;admin.;married;university.degree;no;yes;no;cellular;nov;fri;252;4;999;0;nonexistent;-1.1;94.767;-50.8;1.04;4963.6;yes
+25;technician;single;professional.course;no;yes;no;cellular;nov;fri;712;2;19;1;success;-1.1;94.767;-50.8;1.04;4963.6;yes
+35;admin.;single;professional.course;no;yes;no;cellular;nov;fri;397;3;999;0;nonexistent;-1.1;94.767;-50.8;1.04;4963.6;yes
+30;admin.;single;university.degree;no;yes;no;cellular;nov;mon;324;2;999;0;nonexistent;-1.1;94.767;-50.8;1.039;4963.6;no
+41;blue-collar;married;basic.9y;no;yes;no;cellular;nov;mon;371;2;999;1;failure;-1.1;94.767;-50.8;1.039;4963.6;no
+41;technician;married;professional.course;no;no;no;cellular;nov;mon;526;2;6;1;success;-1.1;94.767;-50.8;1.039;4963.6;yes
+26;management;single;university.degree;no;yes;no;cellular;nov;mon;112;5;999;0;nonexistent;-1.1;94.767;-50.8;1.039;4963.6;no
+67;housemaid;divorced;professional.course;no;yes;no;cellular;nov;mon;655;2;5;5;success;-1.1;94.767;-50.8;1.039;4963.6;yes
+41;technician;married;professional.course;no;yes;no;cellular;nov;mon;185;2;999;0;nonexistent;-1.1;94.767;-50.8;1.039;4963.6;no
+31;housemaid;single;university.degree;no;no;no;telephone;nov;mon;152;5;999;0;nonexistent;-1.1;94.767;-50.8;1.039;4963.6;no
+41;technician;married;professional.course;no;yes;no;cellular;nov;mon;545;2;999;0;nonexistent;-1.1;94.767;-50.8;1.039;4963.6;yes
+31;housemaid;single;university.degree;no;no;no;cellular;nov;mon;159;4;999;0;nonexistent;-1.1;94.767;-50.8;1.039;4963.6;no
+35;technician;divorced;basic.4y;no;no;no;cellular;nov;tue;363;1;999;0;nonexistent;-1.1;94.767;-50.8;1.035;4963.6;yes
+35;technician;divorced;basic.4y;no;yes;no;cellular;nov;tue;514;1;9;4;success;-1.1;94.767;-50.8;1.035;4963.6;yes
+33;admin.;married;university.degree;no;no;no;cellular;nov;tue;843;1;999;0;nonexistent;-1.1;94.767;-50.8;1.035;4963.6;yes
+33;admin.;married;university.degree;no;yes;no;cellular;nov;tue;510;1;999;1;failure;-1.1;94.767;-50.8;1.035;4963.6;no
+60;blue-collar;married;basic.4y;no;yes;no;cellular;nov;tue;347;2;4;1;success;-1.1;94.767;-50.8;1.035;4963.6;no
+35;technician;divorced;basic.4y;no;yes;no;cellular;nov;tue;385;3;4;2;success;-1.1;94.767;-50.8;1.035;4963.6;yes
+54;admin.;married;professional.course;no;no;no;cellular;nov;tue;1868;2;10;1;success;-1.1;94.767;-50.8;1.035;4963.6;yes
+38;housemaid;divorced;university.degree;no;no;no;cellular;nov;wed;403;2;999;0;nonexistent;-1.1;94.767;-50.8;1.03;4963.6;yes
+32;admin.;married;university.degree;no;no;no;telephone;nov;wed;651;1;999;1;failure;-1.1;94.767;-50.8;1.03;4963.6;yes
+32;admin.;married;university.degree;no;yes;no;cellular;nov;wed;236;3;999;0;nonexistent;-1.1;94.767;-50.8;1.03;4963.6;no
+38;entrepreneur;married;university.degree;no;no;no;cellular;nov;wed;144;2;999;0;nonexistent;-1.1;94.767;-50.8;1.03;4963.6;no
+62;services;married;high.school;no;yes;no;cellular;nov;wed;154;5;999;0;nonexistent;-1.1;94.767;-50.8;1.03;4963.6;no
+40;management;divorced;university.degree;no;yes;no;cellular;nov;wed;293;2;999;4;failure;-1.1;94.767;-50.8;1.03;4963.6;no
+33;student;married;professional.course;no;yes;no;telephone;nov;thu;112;1;999;0;nonexistent;-1.1;94.767;-50.8;1.031;4963.6;yes
+31;admin.;single;university.degree;no;yes;no;cellular;nov;thu;353;1;999;0;nonexistent;-1.1;94.767;-50.8;1.031;4963.6;yes
+62;retired;married;university.degree;no;yes;no;cellular;nov;thu;329;1;999;2;failure;-1.1;94.767;-50.8;1.031;4963.6;yes
+62;retired;married;university.degree;no;yes;no;cellular;nov;thu;208;1;1;6;success;-1.1;94.767;-50.8;1.031;4963.6;yes
+34;student;single;unknown;no;yes;no;cellular;nov;thu;180;1;999;2;failure;-1.1;94.767;-50.8;1.031;4963.6;no
+38;housemaid;divorced;high.school;no;yes;yes;cellular;nov;thu;360;1;999;0;nonexistent;-1.1;94.767;-50.8;1.031;4963.6;no
+57;retired;married;professional.course;no;yes;no;cellular;nov;thu;124;6;999;0;nonexistent;-1.1;94.767;-50.8;1.031;4963.6;no
+62;retired;married;university.degree;no;no;no;cellular;nov;thu;483;2;6;3;success;-1.1;94.767;-50.8;1.031;4963.6;yes
+64;retired;divorced;professional.course;no;yes;no;cellular;nov;fri;151;3;999;0;nonexistent;-1.1;94.767;-50.8;1.028;4963.6;no
+36;admin.;married;university.degree;no;no;no;cellular;nov;fri;254;2;999;0;nonexistent;-1.1;94.767;-50.8;1.028;4963.6;no
+37;admin.;married;university.degree;no;yes;no;cellular;nov;fri;281;1;999;0;nonexistent;-1.1;94.767;-50.8;1.028;4963.6;yes
+29;unemployed;single;basic.4y;no;yes;no;cellular;nov;fri;112;1;9;1;success;-1.1;94.767;-50.8;1.028;4963.6;no
+73;retired;married;professional.course;no;yes;no;cellular;nov;fri;334;1;999;0;nonexistent;-1.1;94.767;-50.8;1.028;4963.6;yes
+46;blue-collar;married;professional.course;no;no;no;cellular;nov;fri;383;1;999;0;nonexistent;-1.1;94.767;-50.8;1.028;4963.6;no
+56;retired;married;university.degree;no;yes;no;cellular;nov;fri;189;2;999;0;nonexistent;-1.1;94.767;-50.8;1.028;4963.6;no
+44;technician;married;professional.course;no;no;no;cellular;nov;fri;442;1;999;0;nonexistent;-1.1;94.767;-50.8;1.028;4963.6;yes
+74;retired;married;professional.course;no;yes;no;cellular;nov;fri;239;3;999;1;failure;-1.1;94.767;-50.8;1.028;4963.6;no
diff --git a/bank_subscription_prediction/pipelines/__init__.py b/bank_subscription_prediction/pipelines/__init__.py
new file mode 100644
index 00000000..0519ecba
--- /dev/null
+++ b/bank_subscription_prediction/pipelines/__init__.py
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/bank_subscription_prediction/pipelines/training_pipeline.py b/bank_subscription_prediction/pipelines/training_pipeline.py
new file mode 100644
index 00000000..077cbfb1
--- /dev/null
+++ b/bank_subscription_prediction/pipelines/training_pipeline.py
@@ -0,0 +1,35 @@
+from zenml import pipeline
+from steps.data_loader import load_data
+from steps.data_cleaner import clean_data_step
+from steps.data_preprocessor import preprocess_data_step
+from steps.data_splitter import split_data_step
+from steps.model_trainer import train_xgb_model_with_feature_selection
+from steps.model_evaluator import evaluate_model
+import logging
+
+# Set up logger
+logger = logging.getLogger(__name__)
+
+
+@pipeline
+def bank_subscription_training_pipeline():
+ """Pipeline to train a bank subscription prediction model.
+
+ This pipeline doesn't take parameters directly. Instead, it uses
+ step parameters from the YAML config file.
+ """
+ raw_data = load_data()
+ cleaned_data = clean_data_step(df=raw_data)
+ preprocessed_data = preprocess_data_step(df=cleaned_data)
+ X_train, X_test, y_train, y_test = split_data_step(df=preprocessed_data)
+ model, feature_selector = train_xgb_model_with_feature_selection(
+ X_train=X_train, y_train=y_train
+ )
+ evaluate_model(
+ model=model,
+ feature_selector=feature_selector,
+ X_test=X_test,
+ y_test=y_test,
+ )
+
+ logger.info("Bank subscription training pipeline completed.")
diff --git a/bank_subscription_prediction/predict_bank_cd_subs_by_xgboost_clf_for_imbalance_dataset.ipynb b/bank_subscription_prediction/predict_bank_cd_subs_by_xgboost_clf_for_imbalance_dataset.ipynb
new file mode 100644
index 00000000..42a064b5
--- /dev/null
+++ b/bank_subscription_prediction/predict_bank_cd_subs_by_xgboost_clf_for_imbalance_dataset.ipynb
@@ -0,0 +1,3333 @@
+{
+ "cells": [
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "collapsed": true
+ },
+ "outputs": [],
+ "source": []
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Predicting Bank Client's Financial Product subscription using Scikit Learn and XGBoost for imbalance dataset.\n",
+ "\n",
+ " - [Alok N Singh](https://github.com/aloknsingh/)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Table of Contents\n",
+ "1. [Introduction](#introduction)\n",
+ " \n",
+ "2. [Data Set](#dataset) \n",
+ "\n",
+ "3. [Statement of Classification Problem](#pb_statement)\n",
+ "\n",
+ "4. [Software and Tools(Xgboost and Scikit Learn)](#software_tools)\n",
+ "\n",
+ "5. [Data Exploration](#data_exploration)\n",
+ "\n",
+ "6. [ML Pipelines for Data Processing](#ml_pipeline)\n",
+ "\n",
+ "7. [Model Training](#model_training)\n",
+ "\n",
+ " 7.1 [What and Why of XGBoost](#xgboost)\n",
+ " \n",
+ " 7.2 [Metrics for Model Performance](#metrics_perf)\n",
+ " \n",
+ " 7.3 [First Attempt at Model Training](#ml_train_1)\n",
+ " \n",
+ " 7.4 [Strategy For Better Classifier for the Imbalance Data](#ml_clf_strategy)\n",
+ " \n",
+ " 7.5 [Second Attempt at Model Training using Weighted Samples](#ml_train_2)\n",
+ " \n",
+ " 7.6 [Third Attempt at Model Training using Weighted Samples and Feature Selection](#ml_train_3)\n",
+ "\n",
+ "8. [Generalization and Prediction](#prediction)\n",
+ "\n",
+ "9. [Summary](#summary)\n",
+ "\n",
+ "10. [Pointers to Other Advanced Techniques](#other_techniques)\n",
+ "\n",
+ "10. [References](#references)\n",
+ " "
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Introduction \n",
+ "\n",
+ "\n",
+ "We will illustrates the Machine Learning classification using the Gradient Boosted Tree. Gradient Boosted Tree,\n",
+ "is usually a better choice compare to the logistic regression and other techniques. We will use the real life data set which is highly imbalance i.e the number of positive sample is much less than the number of negative samples.\n",
+ "\n",
+ "We will walk the user to the the following conceptual steps\n",
+ "\n",
+ "* Data Set Description.\n",
+ "* Exploratory Analysis to understand the data.\n",
+ "* Use various preprocessing to clean and prepare the data.\n",
+ "* Use naive XGBoost to run the classification.\n",
+ " * Use cross validation to get the model.\n",
+ " * Plot, precision recall curve and ROC curve.\n",
+ "* We will then tune it and use weighted positive samples to improve classification performance.\n",
+ "* We will also talk about the following advanced techniques.\n",
+ " * Oversampling of majority class and Undersampling of minority class.\n",
+ " * SMOTE algorithms.\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Data Set \n",
+ "\n",
+ "We will use the dataset from [UCI repository for Bank Marketing Data Set](http://archive.ics.uci.edu/ml/datasets/Bank+Marketing).\n",
+ "\n",
+ "The source of the dataset is \n",
+ "\n",
+ "[Moro et al., 2014] S. Moro, P. Cortez and P. Rita. A Data-Driven Approach to Predict the Success of Bank Telemarketing. Decision Support Systems, Elsevier, 62:22-31, June 2014\n",
+ "\n",
+ "\n",
+ "## Data Set Infromation\n",
+ "\n",
+ "The data is related with direct marketing campaigns of a Portuguese banking institution. The marketing campaigns were based on phone calls. Often, more than one contact to the same client was required, in order to access if the product (bank term deposit) would be ('yes') or not ('no') subscribed. \n",
+ "\n",
+ "\n",
+ "### Feature Information\n",
+ "\n",
+ "###### A. Bank Client Information\n",
+ "| col num| feature name| feature description |\n",
+ "|--------|:-----------:|:--------------------|\n",
+ "|1| **age** |(numeric)|\n",
+ "|2| **job** | type of job (categorical: 'admin.','blue-collar','entrepreneur','housemaid','management','retired','self-employed','services','student','technician','unemployed','unknown')|\n",
+ "|3| **marital**| marital status (categorical: 'divorced','married','single','unknown'; note: 'divorced' means divorced or widowed)|\n",
+ "|4| **education** |(categorical: 'basic.4y','basic.6y','basic.9y','high.school','illiterate','professional.course','university.degree','unknown')|\n",
+ "|5| **default**| has credit in default? (categorical: 'no','yes','unknown')|\n",
+ "|6| **balance**| how much credit card balance|\n",
+ "|7| **housing**| has housing loan? (categorical: 'no','yes','unknown')|\n",
+ "|8| **loan**| has personal loan? (categorical: 'no','yes','unknown')|\n",
+ "\n",
+ "\n",
+ "\n",
+ "\n",
+ "###### B. Attributes related with the last contact of the current campaign\n",
+ "\n",
+ "| col num| feature name| feature description |\n",
+ "|--------|:-----------:|:--------------------|\n",
+ "|9|**contact**| contact communication type (categorical: 'cellular','telephone')| \n",
+ "|10|**day**| last contact day of month (categorical: '1', '2', '3', ..., '30', '31')|\n",
+ "|11|**month**| last contact month of year (categorical: 'jan', 'feb', 'mar', ..., 'nov', 'dec')|\n",
+ "|12|**duration**|last contact duration, in seconds (numeric). Important note: this attribute highly affects the output target (e.g., if duration=0 then y='no'). Yet, the duration is not known before a call is performed. Also, after the end of the call y is obviously known. Thus, this input should only be included for benchmark purposes and should be discarded if the intention is to have a realistic predictive model.|\n",
+ "\n",
+ "###### C. other attributes\n",
+ "\n",
+ "| col num| feature name| feature description |\n",
+ "|--------|:-----------:|:--------------------|\n",
+ "|13|**campaign**|number of contacts performed during this campaign and for this client (numeric, includes last contact)|\n",
+ "|14|**pdays**|number of days that passed by after the client was last contacted from a previous campaign (numeric; 999 means client was not previously contacted)|\n",
+ "|15|**previous**|number of contacts performed before this campaign and for this client (numeric)|\n",
+ "|16|**poutcome**|outcome of the previous marketing campaign (categorical: 'failure','nonexistent','success') |\n",
+ "\n",
+ "\n",
+ "\n",
+ "###### E. Output variable (desired target) \n",
+ "| col num| feature name| feature description |\n",
+ "|--------|:-----------:|:--------------------|\n",
+ "|17|**y**| has the client subscribed a term deposit? (binary: 'yes','no')|\n",
+ "\n",
+ "\n",
+ "\n",
+ "\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Statement of the Classification Problem \n",
+ "\n",
+ "Now we know the schema of the dataset, lets formalize our model building task.\n",
+ "\n",
+ "1) We will build a machine learning model to predict if a client is likely to subscribed to the a financial product i.e term deposit.\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "\n",
+ "### Challenges in building ML model\n",
+ "\n",
+ "There are many challenges in the machine learning. For example --\n",
+ "\n",
+ " * Non Representative data\n",
+ "\n",
+ " * Insufficient data.\n",
+ "\n",
+ " * Poor quality data.\n",
+ " \n",
+ " * Imbalance data set.\n",
+ "\n",
+ " * Irrelevant features.\n",
+ "\n",
+ " * Overfitting the model on data\n",
+ "\n",
+ " * Underfitting of the model on data\n",
+ "\n",
+ " * Whether model will generalize or not\n",
+ "\n",
+ " We will explore many of them as we proceed. \n",
+ "\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Software and Tools (Xgboost and Scikit Learn) \n",
+ "\n",
+ "##### Python Package Dependencies\n",
+ "\n",
+ "We will use the [scikit learn package](http://scikit-learn.org/stable/documentation.html) for this task. Next few cells load the libraries needed for this notebook. \n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 1,
+ "metadata": {
+ "collapsed": true
+ },
+ "outputs": [],
+ "source": [
+ "# load pandas for\n",
+ "## 1. reading various files into the dataframe\n",
+ "## 2. to performa various data manipulation tasks\n",
+ "\n",
+ "import pandas as pd\n",
+ "\n",
+ "# load numpy\n",
+ "import numpy as np"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 2,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ "/Users/singhal/anaconda3/lib/python3.6/site-packages/sklearn/cross_validation.py:41: DeprecationWarning: This module was deprecated in version 0.18 in favor of the model_selection module into which all the refactored classes and functions are moved. Also note that the interface of the new CV iterators are different from that of this module. This module will be removed in 0.20.\n",
+ " \"This module will be removed in 0.20.\", DeprecationWarning)\n"
+ ]
+ }
+ ],
+ "source": [
+ "# for preprocessing\n",
+ "from sklearn import preprocessing\n",
+ "\n",
+ "# for custom transformer\n",
+ "from sklearn.base import BaseEstimator, TransformerMixin\n",
+ "\n",
+ "# for creating pipeline\n",
+ "from sklearn.pipeline import Pipeline, FeatureUnion\n",
+ "\n",
+ "# for cross validation\n",
+ "from sklearn.cross_validation import train_test_split\n",
+ "from sklearn.cross_validation import train_test_split\n",
+ "from sklearn import cross_validation\n",
+ "from sklearn.model_selection import cross_val_predict, cross_val_score\n",
+ "\n",
+ "# for various metrics and reporting\n",
+ "from sklearn import metrics\n",
+ "from sklearn.metrics import roc_curve\n",
+ "from sklearn.metrics import precision_recall_curve\n",
+ "from sklearn.metrics import accuracy_score\n",
+ "from sklearn.metrics import confusion_matrix\n",
+ "from sklearn.metrics import classification_report\n",
+ "from sklearn.metrics import accuracy_score\n",
+ "from sklearn.metrics import confusion_matrix\n",
+ "\n",
+ "# feature selection\n",
+ "from sklearn.feature_selection import SelectFromModel\n",
+ "\n",
+ "# xgboost library\n",
+ "from xgboost import XGBClassifier\n",
+ "\n",
+ "# plot feature importance\n",
+ "from xgboost import plot_importance, plot_tree"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 3,
+ "metadata": {
+ "collapsed": true
+ },
+ "outputs": [],
+ "source": [
+ "# load matplot lib for various plotting\n",
+ "import matplotlib.pyplot as plt\n",
+ "\n",
+ "plt.rc(\"font\", size=14)\n",
+ "\n",
+ "# we will use the seaborn for visually appealing plots\n",
+ "import seaborn as sns\n",
+ "\n",
+ "sns.set() # set the seaborn stylesheet\n",
+ "# sns.set(style=\"white\")\n",
+ "# sns.set(style=\"whitegrid\")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Data Exploration \n",
+ "\n",
+ "\n",
+ "First step to build predictive model, is to explore data set so that one can get as much insight as possible so that we can do better feature engineering.\n",
+ "\n",
+ "##### Data Set loading \n",
+ "\n",
+ "We will use [pandas](https://pandas.pydata.org/) to read data and create dataframe. \n",
+ " \n",
+ " * Pandas support a lot more functionalities for analysis than reading and writing the dataframe. We will use a few of them.\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# following code is for IBM Watson Studio loading. note if you are not using Watson studion ,\n",
+ "# one can skip this.\n",
+ "\n",
+ "import sys\n",
+ "import types\n",
+ "import pandas as pd\n",
+ "from botocore.client import Config\n",
+ "import ibm_boto3\n",
+ "\n",
+ "\n",
+ "def __iter__(self):\n",
+ " return 0\n",
+ "\n",
+ "\n",
+ "# @hidden_cell\n",
+ "# The following code accesses a file in your IBM Cloud Object Storage. It includes your credentials.\n",
+ "# You might want to remove those credentials before you share your notebook.\n",
+ "client_9ebc573937b647fdaea67b50c5ffa1e9 = ibm_boto3.client(\n",
+ " service_name=\"s3\",\n",
+ " ibm_api_key_id=\"U2v61-Sy7j8htddu5cFZJe9EEgUeCqILurs3Vj9nn-4B\",\n",
+ " ibm_auth_endpoint=\"https://iam.ng.bluemix.net/oidc/token\",\n",
+ " config=Config(signature_version=\"oauth\"),\n",
+ " endpoint_url=\"https://s3-api.us-geo.objectstorage.service.networklayer.com\",\n",
+ ")\n",
+ "\n",
+ "# body = client_9ebc573937b647fdaea67b50c5ffa1e9.get_object(Bucket='pythondatasciencenotebooks238af3dbc1384aaebbcd5465d478db62',Key='bank.csv')['Body']\n",
+ "body = client_9ebc573937b647fdaea67b50c5ffa1e9.get_object(\n",
+ " Bucket=\"pythondatasciencenotebooks238af3dbc1384aaebbcd5465d478db62\",\n",
+ " Key=\"bank.csv\",\n",
+ ")[\"Body\"]\n",
+ "# add missing __iter__ method, so pandas accepts body as file-like object\n",
+ "if not hasattr(body, \"__iter__\"):\n",
+ " body.__iter__ = types.MethodType(__iter__, body)\n",
+ "\n",
+ "# df_data_1 = pd.read_csv(body)\n",
+ "# df_data_1.head()\n",
+ "\n",
+ "data_raw_all = pd.read_csv(body, header=0, sep=\";\")\n",
+ "\n",
+ "data_raw_all.head()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 4,
+ "metadata": {
+ "collapsed": true
+ },
+ "outputs": [],
+ "source": [
+ "# load csv file\n",
+ "# if you are using notebook on your laptop. use following to load\n",
+ "# data_raw_all = pd.read_csv(\"bank.csv\", header=0, sep=\";\")"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 5,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "(num_rows, num_cols) = (4521, 17)\n",
+ "attributes = ['age', 'job', 'marital', 'education', 'default', 'balance', 'housing', 'loan', 'contact', 'day', 'month', 'duration', 'campaign', 'pdays', 'previous', 'poutcome', 'y']\n",
+ "\n",
+ "\n",
+ "'Bank data set preview'\n",
+ "'Data set schema'\n"
+ ]
+ },
+ {
+ "data": {
+ "text/plain": [
+ "age int64\n",
+ "job object\n",
+ "marital object\n",
+ "education object\n",
+ "default object\n",
+ "balance int64\n",
+ "housing object\n",
+ "loan object\n",
+ "contact object\n",
+ "day int64\n",
+ "month object\n",
+ "duration int64\n",
+ "campaign int64\n",
+ "pdays int64\n",
+ "previous int64\n",
+ "poutcome object\n",
+ "y object\n",
+ "dtype: object"
+ ]
+ },
+ "execution_count": 5,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "# preview\n",
+ "print(\"(num_rows, num_cols) =\", data_raw_all.shape)\n",
+ "print(\"attributes =\", list(data_raw_all.columns))\n",
+ "\n",
+ "print(\"\\n\\n'Bank data set preview'\")\n",
+ "data_raw_all.head()\n",
+ "\n",
+ "# schema\n",
+ "print(\"'Data set schema'\")\n",
+ "data_raw_all.dtypes"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "## Data Exploration using Seaborn and Matplotlib\n",
+ "\n",
+ "Lets start with data exploration. As we explore, we hope to \n",
+ "\n",
+ "* Look at big picture.\n",
+ "* Get insights into the data and problem. \n",
+ "* If possible, redefine the problem statement based.\n",
+ "\n",
+ "\n",
+ "Usually, for exploratory analysis, one samples input dataset. However, our dataset is small and hence\n",
+ "we will put the sample fraction to be 1.0. For the bigger dataset, one may want to change fraction accordingly.\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 6,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# clean data\n",
+ "## cleaning routines\n",
+ "def clean_data(df):\n",
+ " \"\"\"\n",
+ " Clean the data for the exploratory analysis\n",
+ "\n",
+ " arguements:\n",
+ " df -- pandas dataframe.\n",
+ "\n",
+ " \"\"\"\n",
+ " # drop the missing data row\n",
+ " data = df.dropna()\n",
+ "\n",
+ " # first convert the day type to object as day is not of int64 type but a categorical type\n",
+ " data[\"day\"] = df.astype(\"object\")\n",
+ "\n",
+ " return data\n",
+ "\n",
+ "\n",
+ "#\n",
+ "data_ex = clean_data(data_raw_all.sample(frac=1.0))"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "collapsed": true
+ },
+ "source": [
+ "### Explore output\n",
+ "\n",
+ "\n",
+ "##### Positive and Negative Class Distribution.\n",
+ "\n",
+ "We know the output i.e client response 'y' can be 'yes' or 'no'. Lets see it's relative frequencies.\n",
+ "Since we are interested in predicting when client is going to purchase a term deposit, out positive sample is 'yes' and\n",
+ "negative samples is 'no'\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 7,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "image/png": "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\nOvTQjj+lKwAAAABJRU5ErkJggg==\n",
+ "text/plain": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "sns.countplot(x=\"y\", data=data_ex, palette=\"husl\")\n",
+ "plt.show()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "we can see that we have class imbalances between positive and negative classes (positive samples are around 10% and negative samples are around 90%). The class imbalance is very common in the real dataset. We will see that this imabalance causes problem in our model performance. However we will also explore ways to mitigate it.\n",
+ "\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "##### Check if there is the class skew wrt other numerical columns\n",
+ "\n",
+ "Lets see for the numeric column, on average if there is a pattern in the two classes.\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 8,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " | \n",
+ " age | \n",
+ " balance | \n",
+ " duration | \n",
+ " campaign | \n",
+ " pdays | \n",
+ " previous | \n",
+ "
\n",
+ " \n",
+ " | y | \n",
+ " | \n",
+ " | \n",
+ " | \n",
+ " | \n",
+ " | \n",
+ " | \n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " | no | \n",
+ " 40.998000 | \n",
+ " 1403.211750 | \n",
+ " 226.347500 | \n",
+ " 2.862250 | \n",
+ " 36.006000 | \n",
+ " 0.471250 | \n",
+ "
\n",
+ " \n",
+ " | yes | \n",
+ " 42.491363 | \n",
+ " 1571.955854 | \n",
+ " 552.742802 | \n",
+ " 2.266795 | \n",
+ " 68.639155 | \n",
+ " 1.090211 | \n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " age balance duration campaign pdays previous\n",
+ "y \n",
+ "no 40.998000 1403.211750 226.347500 2.862250 36.006000 0.471250\n",
+ "yes 42.491363 1571.955854 552.742802 2.266795 68.639155 1.090211"
+ ]
+ },
+ "execution_count": 8,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "# mean of the numeric features and how it effects output\n",
+ "\n",
+ "data_ex.groupby(\"y\").mean()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "\n",
+ "We note that:\n",
+ "\n",
+ " * age, balance, day, compaign are balanced between 'yes' and 'no' classes and hence probably not the best predictors\n",
+ " * duration feature as explained in the dataset shouldn't be used for prediction and we will not analyse this feature\n",
+ " * pdays feature indicates that usually the conversion happens if the client are contacted not frequently\n",
+ " * previous feature indicates that more the number of times client are contacted more likely he will be a positive sample.\n",
+ " \n",
+ " "
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "### Explore the inputs\n",
+ "\n",
+ "We can get many insights into the data set by exploring the inputs i.e features.\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "###### Distribution and corelation of the numeric columns\n",
+ "\n",
+ "Lets plot the distribution of the features and their cross co-relation to get the information about reduntant features.\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 9,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ "/Users/singhal/anaconda3/lib/python3.6/site-packages/matplotlib/contour.py:967: UserWarning: The following kwargs were not used by contour: 'label', 'color', 'marker'\n",
+ " s)\n",
+ "/Users/singhal/anaconda3/lib/python3.6/site-packages/statsmodels/nonparametric/kernels.py:128: RuntimeWarning: divide by zero encountered in true_divide\n",
+ " return (1. / np.sqrt(2 * np.pi)) * np.exp(-(Xi - x)**2 / (h**2 * 2.))\n",
+ "/Users/singhal/anaconda3/lib/python3.6/site-packages/statsmodels/nonparametric/kernels.py:128: RuntimeWarning: invalid value encountered in true_divide\n",
+ " return (1. / np.sqrt(2 * np.pi)) * np.exp(-(Xi - x)**2 / (h**2 * 2.))\n",
+ "/Users/singhal/anaconda3/lib/python3.6/site-packages/statsmodels/nonparametric/_kernel_base.py:514: RuntimeWarning: invalid value encountered in true_divide\n",
+ " dens = Kval.prod(axis=1) / np.prod(bw[iscontinuous])\n",
+ "/Users/singhal/anaconda3/lib/python3.6/site-packages/matplotlib/contour.py:1533: UserWarning: Warning: converting a masked element to nan.\n",
+ " self.zmax = float(z.max())\n",
+ "/Users/singhal/anaconda3/lib/python3.6/site-packages/matplotlib/contour.py:1534: UserWarning: Warning: converting a masked element to nan.\n",
+ " self.zmin = float(z.min())\n",
+ "/Users/singhal/anaconda3/lib/python3.6/site-packages/matplotlib/contour.py:1176: RuntimeWarning: invalid value encountered in greater\n",
+ " inside = (self.levels > self.zmin) & (self.levels < self.zmax)\n",
+ "/Users/singhal/anaconda3/lib/python3.6/site-packages/matplotlib/contour.py:1176: RuntimeWarning: invalid value encountered in less\n",
+ " inside = (self.levels > self.zmin) & (self.levels < self.zmax)\n",
+ "/Users/singhal/anaconda3/lib/python3.6/site-packages/matplotlib/contour.py:1180: UserWarning: No contour levels were found within the data range.\n",
+ " warnings.warn(\"No contour levels were found\"\n"
+ ]
+ },
+ {
+ "data": {
+ "image/png": "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\nmzcjNzdXv2/evHl48sknkZCQgD59+mDp0qVe3bTDrbGxEYsWLUJ5eTkEQcA999wDURTx2GOPwe12\nY/To0Zg/f37E2qP529/+BovFgl/96lcA1Ln6nnnmGXTv3h0DBw7EAw88gISEhIi3K5ZpK7t9/fXX\nUED42LwAACAASURBVBQFjz32GAYOHBjSz/AX4/fffz+WLVuGpqYm5ObmYtmyZZAkCatWrcLWrVsh\nyzIWLVqEvLw8fPfdd1i8eLGh5wbrl7/8JR566CGIomj4M8LRnieeeAI7duyAoiiYP38++vfvH9X2\ndDXMw8YxD0dGJHJze44dO4YFCxbgtddeCyrPBHpuqIRrnxIqDQ0NWLRoEWpqatDc3Iw77rgDAwcO\nNM3v1xlmiMtQCCaGYlF7xzYUWDRiPJhjkHAe2xk97ojEb2TkWEOSpLjIR6ESy/nZyPGGWcX7/iSW\nsThJREREREREREREUcFh3URERERERERERBQVLE4SERERERERERFRVLA4SURERERERERERFHB4iQR\nERERERERERFFBYuTREREREREREREFBUsThIREREREREREVFUsDhJREREREREREREUcHiJBERERER\nEREREUUFi5NEREREREREREQUFSxOEhERERERERERUVSwOElERERERERERERRweIkERERERERERER\nRQWLk0RERERERERERBQVLE4SERERERERERFRVLA4SURERERERERERFHB4iQRERERERERERFFhSXa\nDQg3h8MZkc/p1asnTpxoiMhnGdXRNkmSAABwu5VQN8l0v1NGRkq0m9CutmLYbL8n2xNYuNoS6zEc\nSmba3hrm4bbFa/y29RuHc9saYabt70+stS9WYlhrd7TjL5TMHisdEY3vFCsx3BZJEpCa2sM08WCW\n2Owq7YjlGDZb7HaUWWKtM6L5HWIhhiOBPSdDxGKRot2EVjrSJkkSMOPdqZjx7lT9ADbabaLAzPZ7\nsj2Bmakt8cqMvzHzcNcU6DcO97Y1wuzbn+0LD4tFMkX8hVKsbou2xON3Cjctrm949XrTxLVZtiPb\nYW5mjN2OiodtHA/fIdaxOElERERERERERERREffDuik4breCddev128TEVFkMQ/HL25biibGH8Uj\nLa7T05MjNo0MUSgwdom8sThJrfCAlYgoupiH4xe3LUUT44/iEeOaYhVjl6gFh3UTERERERERERFR\n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\nTI8cd7YN4u22nbPtDl/sI2faGv5SjzzFX/aH0WqxP36f+AtJ0zRN7yCMJikpCZ9//jmio6PtryUk\nJGDJkiUICAhA27ZtsWjRolrDtL2toqIC8+bNQ15eHiRJwlNPPQVZlvHyyy/DYrFgwIAB+NOf/uSz\neGz+/ve/w2Qy4Y9//CMA61x9r7/+Olq2bImrrroKzz//PAICAnwel5HZnuz2888/Q9M0vPzyy7jq\nqqs8ug5HOf7cc88hKSkJlZWViI6ORlJSEhRFwfLly5GdnQ1VVTFv3jzExsbiyJEjmD9/vlPLumrq\n1Kl48cUXIcuy0+vwRjyvvPIKdu/eDU3T8Kc//QlXXnmlrvE0N6zDzmMd9g1f1ObGHD9+HE888QT+\n9a9/uVRn6lvWU7z1neIp5eXlmDdvHgoKClBVVYWHH34YV111lTD7rylEyEtPcCWHjKixtg3VT48c\nd6UN4s22nbPtDl/sI2faGoqi+EU98hQj12dn2hui8vfvEyNj5yQRERERERERERHpgrd1ExERERER\nERERkS7YOUlERERERERERES6YOckERERERERERER6YKdk0RERERERERERKQLdk4SERERERERERGR\nLtg5SURERERERERERLpg5yQRERERERERERHpgp2TREREREREREREpAt2ThIREREREREREZEu2DlJ\nREREREREREREumDnJBEREREREREREemCnZNERERERERERESkC3ZOEhERERERERERkS7YOUlERERE\nRERERES6YOckERERERERERER6YKdk0RERERERERERKQLdk4SERERERERERGRLkx6B+Btp0+X+mQ9\nbdq0QlFRuU/W5SzG1LjIyFC9Q2hUQzks2v5kPPXzVixGz2FPEul42zCmhvlr/oq0j+sSOTbAePEZ\nJYdF36/u4DZ5hlFyuDEi5YMosTSXOIyew6Icp6bgNjSNEXLYFzhy0kNMJkXvEC7hTkyKIkFRJC9E\nYyXifjIqRZGE25+Mp34ixeKvRNzHrsbk7RoMiLmf/I3I+1jk2ADG5y114/ZFrfE2ox6LhvjjNvmC\naG1iUWJhHOITLXfdxW0gT/DpyEmLxYLnn38eR44cgaIoSE5OhqZpmDt3LiRJQvfu3bFgwQLIsowV\nK1Zgy5YtMJlMSExMRN++fXH06FGHy5JnKIqE+M8mAABSR2TAYtF0jkg8ouQwjxW5S5Qcpkvxc+0c\n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\nrkz65tnu9tTU1GD69OkIBAKYMGECgsFg0puY3e0ZqpiHs8M8bA+7cnO2Cs3ZxVbs9xQrrFu3Ds3N\nzVi9ejUikYjr2pcPt8VlIbKJIS/J9tqGMnMqxrO5BrH62i7b6w47jlE21xqllI+KoVSOhxdzcam9\nn5QKdk7m4ciRI7jyyitx00034eKLLwYAXHXVVfjzn/8MAHjttdcwefJkW9v0+OOP4+677wYAHDp0\nCL29vaioqMAnn3wCVVXx8ssvY+rUqba2CQDeeOMNfOUrXwGQ+FZl/vz5OHjwIABnjlMpaGhowI4d\nOwAAb7/9Nk499dSi78MsxidNmoRdu3YBAHbs2IGpU6eioaEBL7/8MhRFwf79+6EoCmpra3O6bzYe\neeQRPPzww/jNb36D0047DevWrcOMGTMca88Xv/hF7Ny5E6qq6q+3f/3Xf3WsPUMR83D2mIftYUdu\nzkWhObuYrHhPKaatW7fioYceAgCUl5dDEARMmTLFNe0rhNviMl/ZxpCXZHttQ5k5EePZXoNYfW2X\n7XWHHccom2uNUslHxVIqx8NrubgU309KhaCqqup0I7xmzZo1ePbZZzFhwgT9thUrVuCee+6B3+/H\n8OHDcccddyQN07ZaNBrFqlWrsH//fgiCgBtvvBGiKOKuu+6CLMuYPn06rr/+etvao/mv//ov+Hw+\nfOtb3wKQmKvv/vvvR1lZGSZOnIgf//jH8Pv9trfLy7SV3f72t79BVVXcddddmDhxYlH3YRbjt9xy\nC9asWYNYLIYJEyZgzZo1kCQJ69evx44dO6AoClatWoWpU6fio48+wurVq7O6b64uv/xy3H777RBF\nMet9WNGef//3f8euXbugqiquv/56jB071tH2DDXMw9ljHraHHbl5MPv27cMNN9yAxx57LKc8k+6+\nxWLVe0qx9PT0YNWqVThy5Aji8TiuvvpqTJw40TXHrxBuiMtiyCWGvGiwaxtKz4kYz+UaxMpru2yv\nO+w4Rtlca0iSVBL5qFi8nJ+zud5wq1J/P/Eydk4SERERERERERGRI1jWTURERERERERERI5g5yQR\nERERERERERE5gp2TRERERERERERE5Ah2ThIREREREREREZEj2DlJREREREREREREjmDnJBERERER\nERERETmCnZNERERERERERETkCHZOEhERERERERERkSPYOUlERERERERERESOYOckERERERERERER\n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\nqioHW0iUGWOYvI4xTF7G+CWvYwyT1zGGyesYw0T2cW3n5COPPKL/fPnll+P222/HPffcg127dmHa\ntGnYsWMHvvzlLzvYQqLMGMPkdYxh8jLGL3kdY5i8jjFMXscYJrKPqxfESbVy5UqsX78eS5YsQSwW\nQ2Njo9NNIsoJY5i8jjFMXsb4Ja9jDJPXMYbJ6xjDRNYQVFVVnW6EleyaN8CN8yywTYPzwvwOmY6X\nG48n22POi3NOFgvzMNuUTqnGr5uOcSo3tw3wXvu8EsPGdo94MPcSxMPXdBS7WQVze6zko9TmnCyW\nbI6Jm+LBLW0ZKu3wegy75TwVgs+h8H2Tx0ZOEhERERERERERUelg5yQRERERERERERE5gp2TRERE\nRERERERE5Ah2ThIREREREREREZEj2DlJREREREREREREjmDnJBERERERERERETmCnZNERERERERE\nRETkCHZOEhERERERERERkSPYOUlERERERERERESOYOckEREREREREREROYKdk0REREREREREROQI\ndk4SERERERERERGRI9g5SURERERERERERI5g5yQRERERERERERE5gp2TRERERERERERE5AifXTvq\n6upCZ2cnVFXVbxszZoxdu/cUSRIAALKsZnU7DU1aPBh/ZmwQFY45mIpBkgTGEBGRDfx+jrchb2Ls\nEvWzpXPyF7/4BX75y1+ipqZGv00QBGzfvt2O3XuKJAlY+sxFAIANczfrH2DS3U5DkzEeNs5rwpKn\nFgNgbBAVijmYCiVJAhofbgTAGCIisprfL+rXwRvnNSEWUxxuEVF2GLtEyWzpnHz88cfxwgsvoLa2\n1o7dERERERERERERkQfY0jk5evRoVFdX27ErRxjLawslyyo2zN2s/zzY7TQ0ybKKjfOaUFNTidbW\nTsYGDXnFysPMwVQoWVbR/M1mtLd3J42CYAwRERVfLKZg0/wtqKqqQGtrp9PNIcoaY5comS2dk5/7\n3Odw2WWXYdq0aQgEAvrt1157rR27t5QVZVrptsEPM6SRJIGl3ETHFTsPMwdTIdKVdQOMISKiYpMk\nAZdsWwSA18TkLYxdomS2dE6OHDkSI0eOzOkxsizjxz/+MT766CNIkoS1a9dCVVX86Ec/giAIOOWU\nU3DbbbdBFDmJbLY4Eb+97I5hnl8qNubh4uPr1F5OxLAoFq+agoh5mLyM8Utexxgmso8tnZP5jJB8\n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\n4x//mGnTpgFw4YUXcvTRR49quYpdagLmv/71r4RCIVasWMH++++f0230FeMHH3wwl19+OYZhMGvW\nLK6++mpM0+S2227jySefJBAIcOWVVzJ79mw++OCDrJ87FLt372bRokXccccdBAKBgpbn9ttv54kn\nniCRSLBs2TKOPvrogu+f8UR5ODvKw6NnNHLzYF599VVuvPFGVq1aNaQ8099zcyVf55RcsW2b73//\n+7z33ntYlsX111+P67q+Kd9I+CEuc2EoMVRssqnbSP8KEeNDqYPku26XTb0j3/so27rG3Llzx0Q+\nypVizs/Z1Df8aiyfT4qeK0N23333uStWrHBd13UbGxvdz3zmM+69997r/vrXvy5YmTo6OtyFCxf2\neOyUU05xP/jgA9dxHPef/umf3E2bNhWodK57zTXXuPfcc4+7cuVK95FHHilYOcaCuro697LLLnNd\n13Vffvll99xzz835NvqK8XPOOcd97rnnXNd13eXLl7uPPvqou2nTJvfLX/6y6ziOW19f7y5atMh1\nXXdIz81WZ2en+61vfcs94YQT3Lfffrug5Xnuuefcc845x7Vt241Go+4tt9xS8P0z3igPD53ycH6N\nRm4eyC9/+Uv3pJNOcpcsWeK67tDyTF/PzaV8nFNy6bHHHnMvv/xy13W9/H7uuef6qnwjUei4zJVs\nY6jYZFO3kYEVIsazrYPku26Xbb1jNPfRQHWNsZKPcqVY90c29Q0/G6vnk7FAzcHD8Pd///f88z//\nc/p3y7LYtGkTTz75JGeddRZXXnkl0Wh0VMv0l7/8hfb2dr7+9a/zla98hRdffJHOzk72228/DMNg\n3rx5PPvss6NappTXX3+dt99+m6VLl7J582bWrl3LmWeeyY9+9COSyWRBylTMNm7cyLHHHgvAJz7x\nCTZt2pTzbfQV45s3b073rpo/fz7PPPMMGzduZN68eRiGwfTp07Ftm8bGxiE9N1s33HADZ5xxBlOm\nTAEoaHk2bNjAIYccwvnnn8+5557LcccdV/D9M94oDw+N8nD+jUZuHsh+++3Hrbfemv59pDkpl/Jx\nTsml448/nuuuuw6ArVu3MnnyZF+VbyQKHZe5km0MFZts6jYysELEeLZ1kHzX7bKtd4zWPhqsrjFW\n8lGuFOv+yKa+4Wdj9XwyFqhxchjKy8uJRCJEo1EuuugiLr74YmbPns2//Mu/cNddd7Hvvvvys5/9\n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\niOJXip5iWIqdYliKnWJYip1iWIqdYlikcHzRc/L555/n5Zdf5u67MtKj9gAAIABJREFU72bVqlVs\n27aN66+/nosvvpjf/va3uK7L448/zubNm3nhhRdYs2YNK1eu5Nprry100UUUv1L0FMNS7BTDUuwU\nw1LsFMNS7BTDIoXli8bJDRs2cMghh3D++edz7rnnctxxx7F582aOPvpoAObPn88zzzzDxo0bmTdv\nHoZhMH36dGzbprGxscCll/FO8SvFTjEsxU4xLMVOMSzFTjEsxU4xLFJYvhjW3dTUxNatW/nFL37B\nli1bOO+883BdF8MwACgvL6e1tZVoNEpVVVX6danHq6ur+33viRPLCASsvH8GgJqailHZzlCoTPmX\nz/iFwWPYb/tT5emfn8qSqdAxnEt+3McqU/75sR7h533s57LB+CxfvmM4X+UuNH0m//BjHh5Ivvez\nX46jypG9QsZwMeyfwegzyEj5onGyqqqKmTNnEgqFmDlzJuFwmG3btqX/HovFqKysJBKJEIvFejxe\nUTFwADU1teWt3JlqairYubN1VLaVLZVpcLlIQPmMXxg4hv24P1WevuWrLMUew7nkp+OdojINLFeV\nQL/VI/y0j3vzc9mg+MpXLDHs9/06HPpMudtmLvgtDw8mn/vZL7E5XspR7DHsl+M0EvoMI9+2+GRY\n91FHHcXTTz+N67ps376d9vZ2Pv3pT/P8888DsH79eubOncucOXPYsGEDjuOwdetWHMcZtMeOSL4p\nfqXYKYal2CmGpdgphqXYKYal2CmGRQrLFz0nP/vZz/Liiy9y+umn47ouV111FTNmzGD58uWsXLmS\nmTNnsmDBAizLYu7cuSxduhTHcbjqqqsKXXQRxa8UPcWwFDvFsBQ7xbAUO8WwFDvFsEhhGa7ruoUu\nRD6NVtdcP3ZlVpkGVwxdqAfaX37cnypP3/w8rDvflIdVpv6M1fj10z7uzc9lg+IrX7HEsN/363Do\nM+Vum36XzT6Z8vPKIb3njm+1DLc4g/JLbI6XchR7DPvlOI2EPsPIty0+GdYtIiIiIiIiIiIi448a\nJ8cZyzKwLKPQxZAc0vEUKS7KwwKKA/EPxaKISPFR7paxRo2T44hlGVQvW0z1ssVKZGOAZRmwYIGO\np0gRUR4WUByIfygWRUSKj3K3jEVqnBQREREREREREZGC8MVq3TI6bNul8e616Z+luNm2C3V1NDZG\n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\n795wF0NUIKZwF0AIIYQQQlQ+27ZtCz5evHhxGEsiROmqVasW//73v8NdDCGEqLKmT58e7iKICkYa\nJ6sQn8/HlClTOHz4MGfPnqVFixa88cYbLFiwgI8++ojIyEgaN25MgwYNePzxx1m/fj2zZ8/G5/NR\nr149pk6dSkxMTLh3Q1RR586dY9SoUZw+fZp27drx/PPPs2DBAhYvXozL5cJsNvP666/TuHHj4Hty\ncnKYOHEiqampnD59ms6dOzN9+nS2bdvG3Llzsdls/PTTT7Ro0YLXXnsNi8XCBx98wCeffILRaKRH\njx6MGzeOs2fPMnnyZFJSUlAUhb/97W906dIljEdDVFW6rjNjxgzWrl1LXFwcqqrSoUMH3nzzTTZv\n3kxmZiZxcXG8+eabrFmzhi1btvD6668D/t4RVquVP/7xj2HeC1HVXCoue/bsyerVqwGCPXMef/xx\nOnXqRNu2bTlz5gwLFy7khRdeuKhu8dprrwEwZMgQPv/8c1q0aMGhQ4dwuVw899xzHDp0CEVRGDVq\nFL/73e9ITExkw4YNZGZm8ssvv9C1a1emTJkSrkMiKjhd13nttdf45ptvMBqNDB06lFatWvHmm2+S\nn59PVlYWEyZMoFevXowfPx673c7+/fvJysriqaeeYvHixRw8eDD4emJiImvXriUtLY0zZ87Qo0cP\nxo8fj6qqRdadz549y4gRI1i9ejUpKSmMHTuWzMxMmjdvzvbt21m/fj1z5swhNTWV48ePc/LkSYYM\nGcKYMWPCfehEJbJ161beeustTCYTJ06coF27dkyfPp3//ve/LFiwgJiYGKKiomjXrh0AH3300UX1\n5tTUVGbNmsWnn34KQGJiIrt372b48OFMnjwZn8+H1Wrl5ZdfplGjRmHcW1GZFRWrY8aM4c9//jMx\nMTHYbDbeffddZs6cybZt21BVlYSEBEaOHMljjz1G//79ufPOOwFISEhg2rRpvPzyyzz22GN07NiR\nf/3rXyxZsgSj0UjXrl0ZN24cp06dCuZhOF9PGT16NBMnTuTw4cMA3Hfffdx7773hOTCiVMmw7ipk\n586dmM1mPvvsM1atWkV2djbvvvsu8+fPJzExkY8//pjjx48DkJ6ezuuvv857773HokWL6NatW/BC\nQ4iycOLECSZNmsSSJUvIzc3lk08+4ZtvvmHevHksXbqU2267jfnz5xd6z9q1a2nVqhWfffYZK1as\n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\n",
+ "text/plain": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "# create the scatter plot.\n",
+ "num_cols = [\n",
+ " \"age\",\n",
+ " \"balance\",\n",
+ " \"day\",\n",
+ " \"duration\",\n",
+ " \"campaign\",\n",
+ " \"pdays\",\n",
+ " \"previous\",\n",
+ "]\n",
+ "\n",
+ "num_cols_with_y = num_cols + [\"y\"]\n",
+ "\n",
+ "g = sns.pairplot(\n",
+ " data_ex[num_cols_with_y],\n",
+ " hue=\"y\", # yes is green and\n",
+ " diag_kind=\"hist\", # histogram plot for diag\n",
+ " dropna=True,\n",
+ " markers=[\",\", \",\"], # markers for yes and no\n",
+ " palette=sns.color_palette(\n",
+ " [\"red\", \"green\"]\n",
+ " ), # # yes is green and no is red\n",
+ " plot_kws={\n",
+ " \"s\": 3 # size of the point\n",
+ " },\n",
+ ")\n",
+ "g = g.map_lower(sns.kdeplot, cmap=\"Blues_d\")\n",
+ "\n",
+ "\n",
+ "plt.show()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "We observe the following insights\n",
+ "\n",
+ "* All the columns of interests (i.e diagonal plot) has the predictive power (as none of them are uniform). \n",
+ "\n",
+ "* The class imbalance is high (i.e green color 'yes' is far less than red colored 'no' in the diag plot)\n",
+ "\n",
+ "* Non diagonal lower matrix plot contains contour plot for pairwise features.\n",
+ "\n",
+ "* Non diagonal upper matrix plot contains the corelation between pairwise corelation. For example cell (1 rst row, 3rd column) shows that there is some corelation between 'age' and 'days' feature. So to get the better feel, we will plot the heat map co-relation matrix also.\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 10,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "image/png": "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\nQl9ExEL+DyERh7Ju/InZAAAAAElFTkSuQmCC\n",
+ "text/plain": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "# find the corelation between inputs\n",
+ "corr = data_ex[num_cols].corr()\n",
+ "\n",
+ "# plot heatmap\n",
+ "sns.heatmap(\n",
+ " corr,\n",
+ " xticklabels=corr.columns.values,\n",
+ " yticklabels=corr.columns.values,\n",
+ " cmap=sns.light_palette(\"navy\"),\n",
+ ")\n",
+ "plt.show()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "We note that:\n",
+ "\n",
+ "* pdays and previous features are correlated heavily and we should use one of them\n",
+ "\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "We did various exploratory analysis to get more insights into the dataset.\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "## Create a Test and Train Set.\n",
+ "\n",
+ "Now it is time to split aside the train and test dataset. Why is it that we makes this decision at this stage?\n",
+ "Since if we don't do it and train our model on the whole dataset and then test it on the part of the dataset, we are testing on the subset of data which was used for training and hence we will never know whether our model generalizes well or not.\n",
+ "\n",
+ "\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "\n",
+ "To split the dataset into training and testing, we will use scikit learn's utility [train_test_split](http://scikit-learn.org/stable/modules/generated/sklearn.model_selection.train_test_split.html). It works also with pandas dataframe and we don't have to do any conversion from pandas to numpy data type.\n",
+ "\n",
+ "For Model Training, we will sub-split train set and only in the end, we will use test set for generalization test.\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 11,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Size of the training dataset = (4068, 17)\n",
+ "Size of the testing dataset = (453, 17)\n",
+ "\n",
+ "Sample of the training dataset \n",
+ "\n"
+ ]
+ },
+ {
+ "data": {
+ "text/html": [
+ "\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " | \n",
+ " age | \n",
+ " job | \n",
+ " marital | \n",
+ " education | \n",
+ " default | \n",
+ " balance | \n",
+ " housing | \n",
+ " loan | \n",
+ " contact | \n",
+ " day | \n",
+ " month | \n",
+ " duration | \n",
+ " campaign | \n",
+ " pdays | \n",
+ " previous | \n",
+ " poutcome | \n",
+ " y | \n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " | 1511 | \n",
+ " 34 | \n",
+ " unemployed | \n",
+ " single | \n",
+ " secondary | \n",
+ " no | \n",
+ " 0 | \n",
+ " no | \n",
+ " no | \n",
+ " cellular | \n",
+ " 17 | \n",
+ " nov | \n",
+ " 63 | \n",
+ " 2 | \n",
+ " -1 | \n",
+ " 0 | \n",
+ " unknown | \n",
+ " no | \n",
+ "
\n",
+ " \n",
+ " | 1119 | \n",
+ " 28 | \n",
+ " management | \n",
+ " single | \n",
+ " tertiary | \n",
+ " no | \n",
+ " 4937 | \n",
+ " yes | \n",
+ " no | \n",
+ " telephone | \n",
+ " 13 | \n",
+ " may | \n",
+ " 421 | \n",
+ " 3 | \n",
+ " -1 | \n",
+ " 0 | \n",
+ " unknown | \n",
+ " no | \n",
+ "
\n",
+ " \n",
+ " | 3750 | \n",
+ " 79 | \n",
+ " retired | \n",
+ " divorced | \n",
+ " unknown | \n",
+ " no | \n",
+ " 2628 | \n",
+ " no | \n",
+ " no | \n",
+ " telephone | \n",
+ " 8 | \n",
+ " jul | \n",
+ " 220 | \n",
+ " 7 | \n",
+ " 450 | \n",
+ " 2 | \n",
+ " failure | \n",
+ " no | \n",
+ "
\n",
+ " \n",
+ " | 2868 | \n",
+ " 40 | \n",
+ " services | \n",
+ " married | \n",
+ " secondary | \n",
+ " no | \n",
+ " 771 | \n",
+ " yes | \n",
+ " no | \n",
+ " cellular | \n",
+ " 15 | \n",
+ " may | \n",
+ " 173 | \n",
+ " 4 | \n",
+ " -1 | \n",
+ " 0 | \n",
+ " unknown | \n",
+ " no | \n",
+ "
\n",
+ " \n",
+ " | 2758 | \n",
+ " 57 | \n",
+ " admin. | \n",
+ " married | \n",
+ " tertiary | \n",
+ " no | \n",
+ " 46 | \n",
+ " no | \n",
+ " no | \n",
+ " cellular | \n",
+ " 7 | \n",
+ " aug | \n",
+ " 238 | \n",
+ " 2 | \n",
+ " -1 | \n",
+ " 0 | \n",
+ " unknown | \n",
+ " no | \n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " age job marital education default balance housing loan \\\n",
+ "1511 34 unemployed single secondary no 0 no no \n",
+ "1119 28 management single tertiary no 4937 yes no \n",
+ "3750 79 retired divorced unknown no 2628 no no \n",
+ "2868 40 services married secondary no 771 yes no \n",
+ "2758 57 admin. married tertiary no 46 no no \n",
+ "\n",
+ " contact day month duration campaign pdays previous poutcome y \n",
+ "1511 cellular 17 nov 63 2 -1 0 unknown no \n",
+ "1119 telephone 13 may 421 3 -1 0 unknown no \n",
+ "3750 telephone 8 jul 220 7 450 2 failure no \n",
+ "2868 cellular 15 may 173 4 -1 0 unknown no \n",
+ "2758 cellular 7 aug 238 2 -1 0 unknown no "
+ ]
+ },
+ "execution_count": 11,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "# 10 percent of dataset is used for test and 90 percent for model training\n",
+ "data_raw, data_raw_test = train_test_split(\n",
+ " data_raw_all, test_size=0.1, random_state=0\n",
+ ")\n",
+ "\n",
+ "#\n",
+ "print(\"Size of the training dataset = \", data_raw.shape)\n",
+ "print(\"Size of the testing dataset = \", data_raw_test.shape)\n",
+ "print(\"\\nSample of the training dataset \\n\")\n",
+ "data_raw.head()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# ML Pipeline for Data Processing \n",
+ "\n",
+ "\n",
+ "\n",
+ "Next, we will preprocess the data so that it is more suitable for input to the scikit learn algorithms.\n",
+ "\n",
+ "* we will use scikit learn transformer and pipeline to create the ML pipeline. This will allow us to use \n",
+ " the pro-processing ml pipeline to apply to both training and test dataset. \n",
+ "\n",
+ "* We will implement ml pipeline for X (i.e the input feature set) and y for the output. We will use various transformer from scikit learn and as well as use our custom transformer\n",
+ "\n",
+ " * clean and split the dataset\n",
+ "\n",
+ " * encode the categorical features. \n",
+ " \n",
+ " * combine the various new features to create new X.\n",
+ " "
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "### Create Helper functions\n",
+ "\n",
+ "Model training is the iterative process and we would now build various helper function which will be used later on multiple times. We will explain the details while developing each of helper utilities.\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "##### split dataset into data numeric and categorical attributes\n",
+ "\n",
+ "Lets create the utility to split the input features to categorical and numerical features. "
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 12,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "\n",
+ "\n",
+ "sample of 'target i.e output attributes'\n",
+ " y\n",
+ "1511 no\n",
+ "1119 no\n",
+ "3750 no\n",
+ "2868 no\n",
+ "2758 no\n",
+ "\n",
+ "\n",
+ "'sample of categorical attribute and output attributes'\n",
+ " job marital education default housing loan contact month \\\n",
+ "1511 unemployed single secondary no no no cellular nov \n",
+ "1119 management single tertiary no yes no telephone may \n",
+ "3750 retired divorced unknown no no no telephone jul \n",
+ "2868 services married secondary no yes no cellular may \n",
+ "2758 admin. married tertiary no no no cellular aug \n",
+ "\n",
+ " poutcome \n",
+ "1511 unknown \n",
+ "1119 unknown \n",
+ "3750 failure \n",
+ "2868 unknown \n",
+ "2758 unknown \n",
+ "\n",
+ "\n",
+ "'sample of continous (scale) attributes'\n",
+ " age balance day duration campaign pdays previous\n",
+ "1511 34 0 17 63 2 -1 0\n",
+ "1119 28 4937 13 421 3 -1 0\n",
+ "3750 79 2628 8 220 7 450 2\n",
+ "2868 40 771 15 173 4 -1 0\n",
+ "2758 57 46 7 238 2 -1 0\n",
+ "\n",
+ "\n",
+ " names of the attributes splited according to type\n",
+ "\n",
+ "{'y': ['y'], 'X_cat': ['job', 'marital', 'education', 'default', 'housing', 'loan', 'contact', 'month', 'poutcome'], 'X_num': ['age', 'balance', 'day', 'duration', 'campaign', 'pdays', 'previous'], 'X': ['age', 'job', 'marital', 'education', 'default', 'balance', 'housing', 'loan', 'contact', 'day', 'month', 'duration', 'campaign', 'pdays', 'previous', 'poutcome']}\n"
+ ]
+ }
+ ],
+ "source": [
+ "def get_data_attrs_names(data):\n",
+ " \"\"\"\n",
+ " get the categorical inputs and numerical inputs and output column names.\n",
+ " We use the dtype of the data to decide between numerical and categorical attribut\n",
+ "\n",
+ " arguements:\n",
+ " data -- pandas dataframe.\n",
+ "\n",
+ " return:\n",
+ " a dict with the following keys and values\n",
+ " y: list of of the target attribute\n",
+ " X_cat: list of categorical inputs i.e dtype == object\n",
+ " X_num: list of numerical inputs i.e dtype != object\n",
+ " X: list of the combied {X_num, X_cat} inputs\n",
+ " \"\"\"\n",
+ "\n",
+ " all_attribs = list(data.columns.values)\n",
+ " target_attrib = [\"y\"]\n",
+ "\n",
+ " # seperate out output column\n",
+ " y = data[target_attrib]\n",
+ " print(\"\\n\\nsample of 'target i.e output attributes'\")\n",
+ " print(y.head())\n",
+ "\n",
+ " data_cat = data.select_dtypes(include=[\"object\"]).copy()\n",
+ " data_cat = data_cat.drop(target_attrib[0], axis=1)\n",
+ " cat_attribs = list(data_cat.columns.values)\n",
+ " print(\"\\n\\n'sample of categorical attribute and output attributes'\")\n",
+ " print(data_cat.head())\n",
+ "\n",
+ " # sep out continous aka scale columns\n",
+ " data_scale = data.select_dtypes(include=[np.number]).copy()\n",
+ " num_attribs = list(data_scale.columns.values)\n",
+ " print(\"\\n\\n'sample of continous (scale) attributes'\")\n",
+ " print(data_scale.head())\n",
+ "\n",
+ " # col_X contains all the predictors\n",
+ " X_attribs = list(all_attribs) # copy all cols names\n",
+ " X_attribs.remove(target_attrib[0])\n",
+ "\n",
+ " res = {\n",
+ " \"y\": target_attrib,\n",
+ " \"X_cat\": cat_attribs,\n",
+ " \"X_num\": num_attribs,\n",
+ " \"X\": X_attribs,\n",
+ " }\n",
+ " return res\n",
+ "\n",
+ "\n",
+ "attrs_map = get_data_attrs_names(data_raw)\n",
+ "print(\"\\n\\n names of the attributes splited according to type\\n\")\n",
+ "print(attrs_map)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "\n",
+ "##### create transformer to select the subset of data\n",
+ "\n",
+ "We will extends [BaseEstimator](http://scikit-learn.org/stable/modules/generated/sklearn.base.BaseEstimator.html) and [TransformerMixin](http://scikit-learn.org/stable/modules/generated/sklearn.base.TransformerMixin.html) classes from scikit library to create a transformer which will\n",
+ "select a list of the columns corresponding to attribute_names.\n",
+ "\n",
+ "We will use this transformer later to create the pipeline for inputs as well as output.\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 13,
+ "metadata": {
+ "collapsed": true
+ },
+ "outputs": [],
+ "source": [
+ "class DataFrameSelector(BaseEstimator, TransformerMixin):\n",
+ " def __init__(self, attribute_names):\n",
+ " \"\"\"\n",
+ " custom transformer to select the columns\n",
+ " arguements:\n",
+ " attribute_names -- name of the attributes to select\n",
+ " \"\"\"\n",
+ " self.attribute_names = attribute_names\n",
+ "\n",
+ " def fit(self, X, y=None):\n",
+ " \"\"\"no processing to be done for fit\"\"\"\n",
+ " return self\n",
+ "\n",
+ " def transform(self, X):\n",
+ " \"\"\"\n",
+ " returns the subset of the columns corresponding to the attribute_names\n",
+ " X -- input dataset\n",
+ " return -- selected data columns from X\n",
+ " \"\"\"\n",
+ " return X[self.attribute_names].values"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 14,
+ "metadata": {
+ "collapsed": true
+ },
+ "outputs": [],
+ "source": [
+ "class DataFrameCatImputer(BaseEstimator, TransformerMixin):\n",
+ " def __init__(self):\n",
+ " \"\"\"\n",
+ " custom categorical imputer\n",
+ " source : https://stackoverflow.com/questions/25239958/impute-categorical-missing-values-in-scikit-learn\n",
+ " Columns of dtype are imputed with the most frequest value in the column\n",
+ " \"\"\"\n",
+ " pass\n",
+ "\n",
+ " def fit(self, X, y=None):\n",
+ " for c in X:\n",
+ " print(\"al\", c)\n",
+ "\n",
+ " self.fill = pd.Series(\n",
+ " [\n",
+ " X[c].value_counts().index[0]\n",
+ " if X[c].dtype == np.dtype(\"O\")\n",
+ " else X[c].mean()\n",
+ " for c in X\n",
+ " ],\n",
+ " index=X.columns,\n",
+ " )\n",
+ "\n",
+ " return self\n",
+ "\n",
+ " def transform(self, X):\n",
+ " return X.fillna(self.fill)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "##### Create Transformer to create categorical encoding\n",
+ "\n",
+ "Since ML algorithms works with numbers, we would like to map string or categorical inputs to integers. However, if we map the categorical features to integer than we might be biasing the data.For example, if we map maritial status ('single', 'married', 'divorced', 'unknown') to (0, 1, 2, 3), then we are giving divorced values to have more weights and it is not we intended, so ideally we would like to map categerical values to one hot encoding. \n",
+ "\n",
+ "\n",
+ "Scikit learn has transformers called [LabelEncoder](http://scikit-learn.org/stable/modules/generated/sklearn.preprocessing.LabelEncoder.html) and [OneHotEncoder](http://scikit-learn.org/stable/modules/generated/sklearn.preprocessing.OneHotEncoder.html) and we could them together to do encoding of categorical features.\n",
+ "\n",
+ "However, as of scikit-learn 0.19 version, the LabelEncoder and OneHotEncoder transformer can't be used in the Scikit learn together in a pipeline due to a bug.\n",
+ "The bug has been fixed in the dev branch of scikit learn by [PR9151](https://github.com/scikit-learn/scikit-learn/pull/9151) and will be available in future releases. Until then, we will just copy paste the content of class CategoricalEncoder.\n",
+ "\n",
+ "The following transformer is just copy pasted from the \n",
+ "dev branch and we recommend user not to go into the details for the purpose of this notebook\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 15,
+ "metadata": {
+ "collapsed": true
+ },
+ "outputs": [],
+ "source": [
+ "# Definition of the CategoricalEncoder class, copied from PR #9151.\n",
+ "# Just run this cell, or copy it to your code, do not try to understand it (yet).\n",
+ "\n",
+ "from sklearn.base import BaseEstimator, TransformerMixin\n",
+ "from sklearn.utils import check_array\n",
+ "from sklearn.preprocessing import LabelEncoder\n",
+ "from scipy import sparse\n",
+ "\n",
+ "\n",
+ "class CategoricalEncoder(BaseEstimator, TransformerMixin):\n",
+ " \"\"\"Encode categorical features as a numeric array.\n",
+ " The input to this transformer should be a matrix of integers or strings,\n",
+ " denoting the values taken on by categorical (discrete) features.\n",
+ " The features can be encoded using a one-hot aka one-of-K scheme\n",
+ " (``encoding='onehot'``, the default) or converted to ordinal integers\n",
+ " (``encoding='ordinal'``).\n",
+ " This encoding is needed for feeding categorical data to many scikit-learn\n",
+ " estimators, notably linear models and SVMs with the standard kernels.\n",
+ " Read more in the :ref:`User Guide `.\n",
+ " Parameters\n",
+ " ----------\n",
+ " encoding : str, 'onehot', 'onehot-dense' or 'ordinal'\n",
+ " The type of encoding to use (default is 'onehot'):\n",
+ " - 'onehot': encode the features using a one-hot aka one-of-K scheme\n",
+ " (or also called 'dummy' encoding). This creates a binary column for\n",
+ " each category and returns a sparse matrix.\n",
+ " - 'onehot-dense': the same as 'onehot' but returns a dense array\n",
+ " instead of a sparse matrix.\n",
+ " - 'ordinal': encode the features as ordinal integers. This results in\n",
+ " a single column of integers (0 to n_categories - 1) per feature.\n",
+ " categories : 'auto' or a list of lists/arrays of values.\n",
+ " Categories (unique values) per feature:\n",
+ " - 'auto' : Determine categories automatically from the training data.\n",
+ " - list : ``categories[i]`` holds the categories expected in the ith\n",
+ " column. The passed categories are sorted before encoding the data\n",
+ " (used categories can be found in the ``categories_`` attribute).\n",
+ " dtype : number type, default np.float64\n",
+ " Desired dtype of output.\n",
+ " handle_unknown : 'error' (default) or 'ignore'\n",
+ " Whether to raise an error or ignore if a unknown categorical feature is\n",
+ " present during transform (default is to raise). When this is parameter\n",
+ " is set to 'ignore' and an unknown category is encountered during\n",
+ " transform, the resulting one-hot encoded columns for this feature\n",
+ " will be all zeros.\n",
+ " Ignoring unknown categories is not supported for\n",
+ " ``encoding='ordinal'``.\n",
+ " Attributes\n",
+ " ----------\n",
+ " categories_ : list of arrays\n",
+ " The categories of each feature determined during fitting. When\n",
+ " categories were specified manually, this holds the sorted categories\n",
+ " (in order corresponding with output of `transform`).\n",
+ " Examples\n",
+ " --------\n",
+ " Given a dataset with three features and two samples, we let the encoder\n",
+ " find the maximum value per feature and transform the data to a binary\n",
+ " one-hot encoding.\n",
+ " >>> from sklearn.preprocessing import CategoricalEncoder\n",
+ " >>> enc = CategoricalEncoder(handle_unknown='ignore')\n",
+ " >>> enc.fit([[0, 0, 3], [1, 1, 0], [0, 2, 1], [1, 0, 2]])\n",
+ " ... # doctest: +ELLIPSIS\n",
+ " CategoricalEncoder(categories='auto', dtype=<... 'numpy.float64'>,\n",
+ " encoding='onehot', handle_unknown='ignore')\n",
+ " >>> enc.transform([[0, 1, 1], [1, 0, 4]]).toarray()\n",
+ " array([[ 1., 0., 0., 1., 0., 0., 1., 0., 0.],\n",
+ " [ 0., 1., 1., 0., 0., 0., 0., 0., 0.]])\n",
+ " See also\n",
+ " --------\n",
+ " sklearn.preprocessing.OneHotEncoder : performs a one-hot encoding of\n",
+ " integer ordinal features. The ``OneHotEncoder assumes`` that input\n",
+ " features take on values in the range ``[0, max(feature)]`` instead of\n",
+ " using the unique values.\n",
+ " sklearn.feature_extraction.DictVectorizer : performs a one-hot encoding of\n",
+ " dictionary items (also handles string-valued features).\n",
+ " sklearn.feature_extraction.FeatureHasher : performs an approximate one-hot\n",
+ " encoding of dictionary items or strings.\n",
+ " \"\"\"\n",
+ "\n",
+ " def __init__(\n",
+ " self,\n",
+ " encoding=\"onehot\",\n",
+ " categories=\"auto\",\n",
+ " dtype=np.float64,\n",
+ " handle_unknown=\"error\",\n",
+ " ):\n",
+ " self.encoding = encoding\n",
+ " self.categories = categories\n",
+ " self.dtype = dtype\n",
+ " self.handle_unknown = handle_unknown\n",
+ "\n",
+ " def fit(self, X, y=None):\n",
+ " \"\"\"Fit the CategoricalEncoder to X.\n",
+ " Parameters\n",
+ " ----------\n",
+ " X : array-like, shape [n_samples, n_feature]\n",
+ " The data to determine the categories of each feature.\n",
+ " Returns\n",
+ " -------\n",
+ " self\n",
+ " \"\"\"\n",
+ "\n",
+ " if self.encoding not in [\"onehot\", \"onehot-dense\", \"ordinal\"]:\n",
+ " template = (\n",
+ " \"encoding should be either 'onehot', 'onehot-dense' \"\n",
+ " \"or 'ordinal', got %s\"\n",
+ " )\n",
+ " raise ValueError(template % self.handle_unknown)\n",
+ "\n",
+ " if self.handle_unknown not in [\"error\", \"ignore\"]:\n",
+ " template = (\n",
+ " \"handle_unknown should be either 'error' or 'ignore', got %s\"\n",
+ " )\n",
+ " raise ValueError(template % self.handle_unknown)\n",
+ "\n",
+ " if self.encoding == \"ordinal\" and self.handle_unknown == \"ignore\":\n",
+ " raise ValueError(\n",
+ " \"handle_unknown='ignore' is not supported for\"\n",
+ " \" encoding='ordinal'\"\n",
+ " )\n",
+ "\n",
+ " X = check_array(X, dtype=np.object, accept_sparse=\"csc\", copy=True)\n",
+ " n_samples, n_features = X.shape\n",
+ "\n",
+ " self._label_encoders_ = [LabelEncoder() for _ in range(n_features)]\n",
+ "\n",
+ " for i in range(n_features):\n",
+ " le = self._label_encoders_[i]\n",
+ " Xi = X[:, i]\n",
+ " if self.categories == \"auto\":\n",
+ " le.fit(Xi)\n",
+ " else:\n",
+ " valid_mask = np.in1d(Xi, self.categories[i])\n",
+ " if not np.all(valid_mask):\n",
+ " if self.handle_unknown == \"error\":\n",
+ " diff = np.unique(Xi[~valid_mask])\n",
+ " msg = (\n",
+ " \"Found unknown categories {0} in column {1}\"\n",
+ " \" during fit\".format(diff, i)\n",
+ " )\n",
+ " raise ValueError(msg)\n",
+ " le.classes_ = np.array(np.sort(self.categories[i]))\n",
+ "\n",
+ " self.categories_ = [le.classes_ for le in self._label_encoders_]\n",
+ "\n",
+ " return self\n",
+ "\n",
+ " def transform(self, X):\n",
+ " \"\"\"Transform X using one-hot encoding.\n",
+ " Parameters\n",
+ " ----------\n",
+ " X : array-like, shape [n_samples, n_features]\n",
+ " The data to encode.\n",
+ " Returns\n",
+ " -------\n",
+ " X_out : sparse matrix or a 2-d array\n",
+ " Transformed input.\n",
+ " \"\"\"\n",
+ " X = check_array(X, accept_sparse=\"csc\", dtype=np.object, copy=True)\n",
+ " n_samples, n_features = X.shape\n",
+ " X_int = np.zeros_like(X, dtype=np.int)\n",
+ " X_mask = np.ones_like(X, dtype=np.bool)\n",
+ "\n",
+ " for i in range(n_features):\n",
+ " valid_mask = np.in1d(X[:, i], self.categories_[i])\n",
+ "\n",
+ " if not np.all(valid_mask):\n",
+ " if self.handle_unknown == \"error\":\n",
+ " diff = np.unique(X[~valid_mask, i])\n",
+ " msg = (\n",
+ " \"Found unknown categories {0} in column {1}\"\n",
+ " \" during transform\".format(diff, i)\n",
+ " )\n",
+ " raise ValueError(msg)\n",
+ " else:\n",
+ " # Set the problematic rows to an acceptable value and\n",
+ " # continue `The rows are marked `X_mask` and will be\n",
+ " # removed later.\n",
+ " X_mask[:, i] = valid_mask\n",
+ " X[:, i][~valid_mask] = self.categories_[i][0]\n",
+ " X_int[:, i] = self._label_encoders_[i].transform(X[:, i])\n",
+ "\n",
+ " if self.encoding == \"ordinal\":\n",
+ " return X_int.astype(self.dtype, copy=False)\n",
+ "\n",
+ " mask = X_mask.ravel()\n",
+ " n_values = [cats.shape[0] for cats in self.categories_]\n",
+ " n_values = np.array([0] + n_values)\n",
+ " indices = np.cumsum(n_values)\n",
+ "\n",
+ " column_indices = (X_int + indices[:-1]).ravel()[mask]\n",
+ " row_indices = np.repeat(\n",
+ " np.arange(n_samples, dtype=np.int32), n_features\n",
+ " )[mask]\n",
+ " data = np.ones(n_samples * n_features)[mask]\n",
+ "\n",
+ " out = sparse.csc_matrix(\n",
+ " (data, (row_indices, column_indices)),\n",
+ " shape=(n_samples, indices[-1]),\n",
+ " dtype=self.dtype,\n",
+ " ).tocsr()\n",
+ " if self.encoding == \"onehot-dense\":\n",
+ " return out.toarray()\n",
+ " else:\n",
+ " return out"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "##### Create Transformer to create label encoding for output\n",
+ "\n",
+ "As explained in the previous section, there seems to be a bug in scikit learn current version which doesn't allow\n",
+ "Label encoder to be used in a ML pipeline. To solve that we will create our custom transformer, which is same as the \n",
+ "original one i.e LabelEncoder but with the signature of fit and transform different. \n",
+ "\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 16,
+ "metadata": {
+ "collapsed": true
+ },
+ "outputs": [],
+ "source": [
+ "## custom LabelEncoder as the org doesn't work\n",
+ "class MyLabelEncoder(preprocessing.LabelEncoder):\n",
+ " \"\"\"\n",
+ " custom LabelEncoder as the org doesn't work with the pipeline\n",
+ " \"\"\"\n",
+ "\n",
+ " def fit_transform(self, X, y=None):\n",
+ " return super(MyLabelEncoder, self).fit_transform(X)\n",
+ "\n",
+ " def fit(self, X, y=None):\n",
+ " return super(MyLabelEncoder, self).fit(X)\n",
+ "\n",
+ " def transform(self, X):\n",
+ " return super(MyLabelEncoder, self).transform(X)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "##### Utility for ML pipeline for X i.e input features\n",
+ "\n",
+ "\n",
+ "The idea of combining various transformers into a pipeline allows scikit users to create complex data and ML processing\n",
+ "pipeline. For the input features we will do the following \n",
+ "\n",
+ "* Numeric attributes: \n",
+ " * select numerical attributes.\n",
+ " * impute missing values of a feature using the median of the feature.\n",
+ " * scale values of a feature by shifting it by it's mean and dividing by standard deviation.\n",
+ "* Categorical attributes:\n",
+ " * select categorical attributes.\n",
+ " * for each of the columns perform one hot encoding\n",
+ "* Feature Union:\n",
+ " * combine the columns from numeric and categorical attributes to create the processed input dataset i.e X\n",
+ " "
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 17,
+ "metadata": {
+ "collapsed": true
+ },
+ "outputs": [],
+ "source": [
+ "def create_X_ml_pipeline(cat_attrs, num_attrs):\n",
+ " \"\"\"\n",
+ " Create ml pipeline for the features by first processing numerical and then categorical attribute.\n",
+ " Afterwards, it combines those to create final transformed X attribute.\n",
+ "\n",
+ " arguement:\n",
+ " cat_attrs -- list of categorical attribute\n",
+ " num_attrs -- list of numerical attribute\n",
+ "\n",
+ " return: a full X ML pipeline, which can be used for train and test data\n",
+ " \"\"\"\n",
+ "\n",
+ " num_pipeline = Pipeline(\n",
+ " [\n",
+ " (\"selector\", DataFrameSelector(num_attrs)),\n",
+ " (\"imputer\", preprocessing.Imputer(strategy=\"median\")),\n",
+ " (\"std_scaler\", preprocessing.StandardScaler()),\n",
+ " ]\n",
+ " )\n",
+ "\n",
+ " cat_pipeline = Pipeline(\n",
+ " [\n",
+ " (\"selector\", DataFrameSelector(cat_attrs)),\n",
+ " (\"cat_enc\", CategoricalEncoder(encoding=\"onehot-dense\")),\n",
+ " ]\n",
+ " )\n",
+ "\n",
+ " full_pipeline = FeatureUnion(\n",
+ " transformer_list=[\n",
+ " (\"num_pipeline\", num_pipeline),\n",
+ " (\"cat_pipeline\", cat_pipeline),\n",
+ " ]\n",
+ " )\n",
+ "\n",
+ " return full_pipeline"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "##### Utility for ML pipeline for Y i.e output features\n",
+ "\n",
+ "\n",
+ "Output contains 'yes' and 'no' values and should be mapped to numerical values. Lets us custom transformer MyLabelEncoder for this purpose. Also we will be use our custom transformer DataFrameSelector to select output column.\n",
+ "\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 18,
+ "metadata": {
+ "collapsed": true
+ },
+ "outputs": [],
+ "source": [
+ "def create_y_ml_pipeline(target_attr):\n",
+ " \"\"\"\n",
+ " create ml pipeline for the output feature i.e target attribute by first selecting it and mapping 'no' and 'yes' to\n",
+ " 0 and 1\n",
+ " arguements:\n",
+ " target_attr -- list of outputs.(Usually a list containing one value)\n",
+ " return:\n",
+ " a full y ML pipeline, which can be used for train and test data\n",
+ " \"\"\"\n",
+ " target_pipeline = Pipeline(\n",
+ " [\n",
+ " (\"selector\", DataFrameSelector(target_attr)),\n",
+ " # ('cat_imputer', DataFrameCatImputer()),\n",
+ " (\"label_enc\", MyLabelEncoder()),\n",
+ " ]\n",
+ " )\n",
+ "\n",
+ " return target_pipeline"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "##### Create and run the ML pipeline for X and y\n",
+ "\n",
+ "Now we have defined the function for creating ML pipelines, lets us it to create X and y ML pipeline."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "\n",
+ "First lets create the X ML pipeline and print it's values.\n",
+ "Readers should note that the values are all scaled and one hot encoded.\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 19,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "\n",
+ "\n",
+ "Shape of the transformed data. Note that increased in the number of columns due to one hot encoding\n",
+ "\n",
+ "\n",
+ "Original data shape (num_rows, num_cols) == \n",
+ "(4068, 17)\n",
+ "\n",
+ "Transformed data shape (num_rows, num_cols) == \n",
+ "(4068, 51)\n",
+ "\n",
+ "\n",
+ " Sample of transformed inputs\n",
+ " [[-0.6734285 -0.4727389 0.12702873 ..., 0. 0. 1. ]\n",
+ " [-1.23973489 1.14925852 -0.35693557 ..., 0. 0. 1. ]\n",
+ " [ 3.57386941 0.39066179 -0.96189094 ..., 0. 0. 0. ]\n",
+ " ..., \n",
+ " [ 1.11987506 -0.37220594 1.45793055 ..., 0. 1. 0. ]\n",
+ " [-0.8621973 -0.26181681 -0.96189094 ..., 0. 0. 1. ]\n",
+ " [ 0.36479988 -0.57852848 -0.84089986 ..., 0. 0. 1. ]] \n",
+ "\n"
+ ]
+ }
+ ],
+ "source": [
+ "## run the pipeline\n",
+ "\n",
+ "X_pipeline = create_X_ml_pipeline(attrs_map[\"X_cat\"], attrs_map[\"X_num\"])\n",
+ "X_pipeline = X_pipeline.fit(data_raw)\n",
+ "X = X_pipeline.transform(data_raw)\n",
+ "\n",
+ "\n",
+ "print(\n",
+ " \"\\n\\nShape of the transformed data. Note that increased in the number of columns due to one hot encoding\\n\"\n",
+ ")\n",
+ "print(\"\\nOriginal data shape (num_rows, num_cols) == \")\n",
+ "print(data_raw.shape)\n",
+ "print(\"\\nTransformed data shape (num_rows, num_cols) == \")\n",
+ "print(X.shape)\n",
+ "print(\"\\n\\n Sample of transformed inputs\\n\", X, \"\\n\")"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 20,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Output attribute name = ['y'] \n",
+ "\n",
+ "\n",
+ "Sample of original output = ['no' 'no' 'no' 'no' 'no' 'no' 'no' 'no' 'no' 'no' 'no' 'no' 'no' 'yes'\n",
+ " 'yes' 'no' 'no' 'no' 'yes' 'no'] \n",
+ "\n",
+ "\n",
+ "Sample of transformed output = [0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0] \n",
+ "\n"
+ ]
+ },
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ "/Users/singhal/anaconda3/lib/python3.6/site-packages/sklearn/preprocessing/label.py:95: DataConversionWarning: A column-vector y was passed when a 1d array was expected. Please change the shape of y to (n_samples, ), for example using ravel().\n",
+ " y = column_or_1d(y, warn=True)\n",
+ "/Users/singhal/anaconda3/lib/python3.6/site-packages/sklearn/preprocessing/label.py:128: DataConversionWarning: A column-vector y was passed when a 1d array was expected. Please change the shape of y to (n_samples, ), for example using ravel().\n",
+ " y = column_or_1d(y, warn=True)\n"
+ ]
+ }
+ ],
+ "source": [
+ "print(\"Output attribute name = \", attrs_map[\"y\"], \"\\n\")\n",
+ "\n",
+ "y_pipeline = create_y_ml_pipeline(attrs_map[\"y\"])\n",
+ "y_pipeline = y_pipeline.fit(data_raw)\n",
+ "y = y_pipeline.transform(data_raw)\n",
+ "\n",
+ "\n",
+ "print(\n",
+ " \"\\nSample of original output = \",\n",
+ " data_raw[\"y\"].as_matrix().reshape(-1)[:20],\n",
+ " \"\\n\",\n",
+ ")\n",
+ "print(\"\\nSample of transformed output = \", y[:20], \"\\n\")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Model Training \n",
+ "\n",
+ "we have transformed dataset using our custom ML pipelines and are ready to build the model. There are many ML models in python. We will use [XGBoost](http://xgboost.readthedocs.io/en/latest/). \n",
+ "\n",
+ "\n",
+ "### What and Why of XGBoost. \n",
+ "\n",
+ "* XGBoost is extreme gradient boosting algorithm based on trees and tends to perform very good out of the box compare to other ML algorithms.\n",
+ "* XGBoost is popular amongt data-scientist and one of the most common ML algorithms used in [Kaggle](https://www.kaggle.com/) Competitions.\n",
+ "* XGBoost allows one to tune various parameters.\n",
+ "* XGBoost allows parallel processing.\n",
+ "* Here is the official tutorial, which explains in details [XGBoost Tutorial 1](http://xgboost.readthedocs.io/en/latest/model.html) and also [XGBoost tutorial 2](https://www.slideshare.net/ShangxuanZhang/kaggle-winning-solution-xgboost-algorithm-let-us-learn-from-its-author) is excellent.\n",
+ "\n",
+ "Though above tutorial is very detail, here we present the basic of XGBoost for the sake of continuation of the text.\n",
+ "\n",
+ "XGBoost was developed by Tianqi Chen.XGboost is a class of ML algorithms which uses Gradient Boosting.\n",
+ "\n",
+ "Gradient Boosting in is an ensemble techniques, at each steps new models are added to correct the errors made by current existing models and thus models are added sequentially until no more improve is possible.\n",
+ "\n",
+ "Each of the tree model is classification and regression tree (CART). The ensemble of prediction of multiple trees gives better result compare to the individual tree.\n",
+ "\n",
+ "\n",
+ "The objective of XGBoost model is given by \n",
+ "\n",
+ "\n",
+ "| Objective => | **Obj** **= Loss + Regularization**|\n",
+ "|-----|:------------------------|\n",
+ "|**Loss** | is the loss function that controls the predictive power. Usually logloss for classification and RMSE loss for regression.|\n",
+ "|**Regularization**| controls simplicity and overfitting and depends on the number of leaves|\n",
+ "\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "##### Create the utils for instantiating classifier with correct options\n",
+ "\n",
+ "Since we will be instantiating XGBoost classifier multiple times for doing the cross validation and tesitng. Lets create a utility for instantiating the classifier.\n",
+ "\n",
+ "\n",
+ "Here are the explaination in reference to our dataset for each tuning parameters we will use. (Note: also see [XGBoost parameter official guide](https://github.com/dmlc/xgboost/blob/master/doc/parameter.md)\n",
+ "\n",
+ "| xgboost parameter | description |\n",
+ "|:------|:------------|\n",
+ "|**booster**| select the type of model to run at each iternation we have the options of tree and linear models| \n",
+ "|**objective**|since we want the output to have the probability also, we will use the logistic objective.| \n",
+ "|**eval_metric**|lets use the error as the eval metrics i.e in each boosting steps we will reduce error.| \n",
+ "|**eta**|eta is like learning rate and it makes the model more robust by shrinking the weights at each iteration.| \n",
+ "|**gamma**|gamma controls the minimum loss reduction to split and it should be tuned.|\n",
+ "|**max_depth**|maximum depth of a tree to control the over fitting. should be tuned with cv|\n",
+ "|**min_child_weight**|minimum number of samples for the leaf and is used to control overfitting. We will use lower values, as we have class imbalance and if we set high then accuracy of minory class will be affected.| \n",
+ "|**max_delta_step**|maximum delta step from previous iteration for each tree. Higher the value (i.e non zero), more conservative we are!| \n",
+ "|**subsample**|as explained before in boosting each tree is build using samples from prev iteration with replace and this specify the fraction of data to be used for each tree. typically values slightly less than 1 makes it robust.|\n",
+ "|**colsample_bytree**|as explained before boosting use subset of rows and also subset of columns. this controls the subset of cols as fraction.|\n",
+ "|**silent**|control the verbosity.|\n",
+ "|**seed**|random seed for reproducibility.| \n",
+ "|**base_score**|set the initial prediction score i.e global bias.| \n",
+ "|**scale_pos_weight**|how much weight to give the positive sample, in future we will change it but for now lets put it 1|\n",
+ "\n",
+ " "
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 21,
+ "metadata": {
+ "collapsed": true
+ },
+ "outputs": [],
+ "source": [
+ "def create_xgb_clf(clf_param=None):\n",
+ " \"\"\"\n",
+ " create the xgboost classifier with predefined parameters, user can overwright it by passing kw args\n",
+ " \"\"\"\n",
+ "\n",
+ " param = {}\n",
+ " # select the type of model to run at each iternation we have the options of tree and linear models\n",
+ " ##param['booster'] = 'gbtree'\n",
+ "\n",
+ " # since we want the output to have the probability also, we will use the logistic objective.\n",
+ " ##param['objective'] = 'binary:logistic'\n",
+ "\n",
+ " # lets use the error as the eval metrics i.e in each boosting steps we will reduce error\n",
+ " ##param[\"eval_metric\"] = \"error\"\n",
+ "\n",
+ " # eta is like learning rate and it makes the model more robust by shrinking the weights at each iter\n",
+ " ##param['eta'] = 0.3\n",
+ "\n",
+ " # gamma controls the minimum loss reduction to split and it should be tuned.\n",
+ " ##param['gamma'] = 0\n",
+ "\n",
+ " # maximum depth of a tree to control the over fitting. should be tuned with cv\n",
+ " ##param['max_depth'] = 10\n",
+ "\n",
+ " # minimum number of samples for the leaf and is used to control overfitting. We will use lower values, as we have\n",
+ " # class imbalance and if we set high then accuracy of minory class will be affected\n",
+ " ##param['min_child_weight']=1\n",
+ "\n",
+ " # maximum delta step from previous iteration for each tree. Higher the value (i.e non zero), more conservative we are\n",
+ " ##param['max_delta_step'] = 0\n",
+ "\n",
+ " # as explained before in boosting each tree is build using samples from prev iteration with replace and this specify\n",
+ " # the fraction of data to be used for each tree. typically values slightly less than 1 makes it robust.\n",
+ " ##param['subsample']= 1\n",
+ "\n",
+ " # as explained before boosting use subset of rows and also subset of columns. this controls the subset of cols as fraction\n",
+ " ##param['colsample_bytree']=1\n",
+ "\n",
+ " # control the verbosity\n",
+ " ##param['silent'] = 0\n",
+ "\n",
+ " # random seed for reproducibility\n",
+ " ##param['seed'] = 0\n",
+ "\n",
+ " # set the initial prediction score i.e global bias\n",
+ " ##param['base_score'] = 0.5\n",
+ "\n",
+ " # how much weight to give the positive sample, in future we will change it but for now lets put it 1\n",
+ " param[\"scale_pos_weight\"] = 1\n",
+ "\n",
+ " if clf_param:\n",
+ " for k, v in clf_param.items():\n",
+ " param[k] = clf_param[k]\n",
+ "\n",
+ " xgb_model = XGBClassifier(**param)\n",
+ " return xgb_model"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "### Metrics for Model Performance \n",
+ "\n",
+ "To come up with the best model, we should evaluate model performance for comparison amongs models.There are many ways to evaluate the model performance for classification.\n",
+ "\n",
+ "1) Accuracy Score\n",
+ "\n",
+ "2) Confusion Matrix\n",
+ "\n",
+ "3) ROC curve\n",
+ "\n",
+ "4) Precision Recall Curve\n",
+ "\n",
+ "We will discuss and create utilities for the above in next few sections\n",
+ "\n",
+ "\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "###### Accuracy Score\n",
+ "Accuracy is just the ratio of the number of correctly classified samples to the total number of samples.\n",
+ "This is very simple score but it in case of the class imbalance, the score can be misleading. Hence, we \n",
+ "will not use this.\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "##### Confusion Matrix\n",
+ "\n",
+ "Apart from the accuracy, the following performance measures for the models are also very helpful to measure it's performance on test dataset.\n",
+ "\n",
+ "* The number of samples correctly predicted as negative i.e True Negative (TN).\n",
+ "\n",
+ "* The number of samples correctly predicted as positive i.e True Positive (TP). These are also used in accuracy calculation.\n",
+ "\n",
+ "* The number of samples which were positive but were predicted as negative i.e False Negative (FN).\n",
+ "\n",
+ "* The number of samples which were negative but were predicted as positive i.e False Positive (FP).\n",
+ "\n",
+ "[Confusion matrix](https://en.wikipedia.org/wiki/Confusion_matrix) gives above mentioned metrics of performance and is widely used for classification task.\n",
+ "\n",
+ "We have created a utility to visualize confusion matrix based on the dataset.\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 22,
+ "metadata": {
+ "collapsed": true
+ },
+ "outputs": [],
+ "source": [
+ "# plot the confusion matrix\n",
+ "def plot_cm(y_test_act, y_test_pred, title=\"Confusion Matrix\", cmap=\"Blues\"):\n",
+ " \"\"\"\n",
+ " plot the confusion matrix given the test label and predicted label.\n",
+ "\n",
+ " @arguements:\n",
+ " y_test_act -- actual label (0 or 1) of the data set.\n",
+ " y_test_pred -- model's predicted label (o or 1) of the data set.\n",
+ " title -- title string to be put on plot. default -- Confusion Matrix\n",
+ " cmap -- matplotlib color palette to be used. default -- Blues\n",
+ " \"\"\"\n",
+ "\n",
+ " fig, ax = plt.subplots()\n",
+ " cm = confusion_matrix(y_test_act, y_test_pred)\n",
+ " tp = cm[1, 1]\n",
+ " tn = cm[0, 0]\n",
+ " fp = cm[0, 1]\n",
+ " fn = cm[1, 0]\n",
+ " sns.heatmap(cm, annot=True, fmt=\"d\", linewidths=0.5, cmap=cmap, ax=ax)\n",
+ " ax.set_title(title)\n",
+ " ax.set_xlabel(\"Predicted class\")\n",
+ " ax.set_ylabel(\"Actual class\")\n",
+ " plt.show()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "###### ROC curve\n",
+ "\n",
+ "Lets see what is ROC curve? We can get the TP, TN, FN, FP from confusion matrix as explained in previous section. ML models also gives us the probability of a sample being a positive or negative. This allows us to make the better decision. \n",
+ "\n",
+ "For ROC curve, we use \n",
+ "\n",
+ "**TPR** : True Positive Rate (aka Recall) = $ \\frac{TP}{(TP+FN)} $ i.e number of samples, model correctly classifies a positive sample as positive.\n",
+ "\n",
+ "**FPR** : False Positive Rate (aka Specificity) = $\\frac{FP}{(FP + TN)}$ i.e number of samples, model incorrectly classifies a negative sample as positve.\n",
+ "\n",
+ "obviously, we would like to have higher TPR and lower FPR.\n",
+ "\n",
+ "For example, consider two predicted positive samples, one with 0.55 probability and other with 0.95 probability.\n",
+ "These samples are considered positive because by default the threshold is 0.5. \n",
+ "If we use the threshold of 0.6 then first sample will be negative and the second will be positive. \n",
+ "\n",
+ "In short, the values of TP, FP, TN, FN will change depending on the threshold.\n",
+ "\n",
+ "Thus we see that by adjusting the threshold, one can change the model's performance and for binary classification this adjustment is very often done. When we adjust the threshold, the value of TPR and FPR will also change, as they are function of TP, FP, TN, FN and when we plot TPR vs FPR for various threhold, we get the ROC curve. \n",
+ "\n",
+ "For a model to have best performance, we would like to have model rank a randomly chosen positive sample higher than a randomly chosen negative samples and this is what we call Area Under the Curve (AUC) metric.\n",
+ "\n",
+ "For more information visit wiki for [ROC curve](https://en.wikipedia.org/wiki/Receiver_operating_characteristic).\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "##### Precision Recall Curve\n",
+ "\n",
+ "We have a good measure for measuring model performance using ROC curve. However, when we have the class imbalances, ROC curve doesn't perform good. To understand that see the equation for TPR and FPR and in the case of class imbalances, the number of positive samples are quite few and the number of FN relative to TP is quite more and hence if there is any change in TP or FP, that will be very small compare to TN and FN and hence even if I get get improvement ROC curve won't be able to capture it.\n",
+ "\n",
+ "Hence we use another metrics which is **precision** and is defined as **TP/(TP+FP)**. We note that since it is the odd ratio of TP and FP both of them are sensitive to changes in positive samples.This matrix is very useful for measuring the performance in case of class imbalance.\n",
+ "\n",
+ "But we should note that Precision and recall have inverse relationship and hence if we want high precision then we should be fine with low recall and vice versa. \n",
+ "\n",
+ "There are many applications where high precision might be desired. For example if we train a model to detect safe website for kids. It's ok to reject many safe website (low recall) as long as we correctly reject bad website (high precision)\n",
+ "\n",
+ "However for our applications, i.e bank client's CD subscription prediction, higher recall is desirable. Since it is perfectly fine to have false client i.e model predict client will accept the subscription but will actually decline it, as long as we predict almost all the client who is likely to accept the subscription and thus improving the balance sheet.\n",
+ "\n",
+ "\n",
+ "For more information visit wiki for [Precision and Recall](https://en.wikipedia.org/wiki/Precision_and_recall).\n",
+ "\n",
+ "\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "##### F1 Score\n",
+ "\n",
+ "There is tradeoff between precision and recall and hence we need the unified measure to see the effect of precision and recall and F1 score measure both at the same time. It is just the harmonic mean of precision and recall i.e it is defined as $\\frac{1}{\\frac{1}{precision}+ \\frac{1}{recall}}$ or $\\frac{recall \\times precision}{recall + precision}$. \n",
+ "\n",
+ "For more information visit wiki for [F1 score](https://en.wikipedia.org/wiki/F1_score)\n",
+ "\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "We have also created the utility to plot both ROC curve and Precision recall curve given the actual label and predicted probabilities by model on the test data"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 23,
+ "metadata": {
+ "collapsed": true
+ },
+ "outputs": [],
+ "source": [
+ "def plot_pr_roc(y_act, y_score, label=\"\", color=\"b\", show=False, tag=\"\"):\n",
+ " \"\"\"\n",
+ " plot both precision recall and ROC curve\n",
+ " arguements:\n",
+ " y_act -- Actual label of the class on the test data.\n",
+ " y_score -- Actual probabilities as predicted by model on the test data.\n",
+ " color (default:blue) -- color of plot\n",
+ " show (default:False) -- flag to control whether to show plot or user will call plt.show() oneself.\n",
+ " \"\"\"\n",
+ " fig = plt.figure(figsize=(20, 10))\n",
+ " ax1 = fig.add_subplot(1, 2, 1)\n",
+ " ax1.set_xlim([-0.025, 1.025])\n",
+ " ax1.set_ylim([-0.025, 1.025])\n",
+ " ax1.set_xlabel(\"Recall\")\n",
+ " ax1.set_ylabel(\"Precision\")\n",
+ " ax1.set_title(\"PR Curve \" + tag)\n",
+ "\n",
+ " ax2 = fig.add_subplot(1, 2, 2)\n",
+ " ax2.set_xlim([-0.025, 1.025])\n",
+ " ax2.set_ylim([-0.025, 1.025])\n",
+ " ax2.set_xlabel(\"False Positive Rate (FPR)\")\n",
+ " ax2.set_ylabel(\"True Positive Rate (TPR)\")\n",
+ " ax2.set_title(\"ROC Curve \" + tag)\n",
+ "\n",
+ " pr, rc, _ = precision_recall_curve(y_act, y_score)\n",
+ " tpr, fpr, _ = roc_curve(y_act, y_score)\n",
+ "\n",
+ " ax1.plot(rc, pr, c=color, label=label)\n",
+ " ax2.plot(tpr, fpr, c=color, label=label)\n",
+ " ax2.plot([0, 1], [0, 1], \"k--\")\n",
+ "\n",
+ " ax1.legend(loc=\"lower left\")\n",
+ " ax2.legend(loc=\"lower left\")\n",
+ "\n",
+ " if show:\n",
+ " plt.show()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "\n",
+ "In previous section, we saw the inverse relationship between precision and recall and how we have to make tradeoff.\n",
+ "To get the visual information about the plot, we created a utility to plot precision and recall on the same plot with respect to \n",
+ "threshold.\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 24,
+ "metadata": {
+ "collapsed": true
+ },
+ "outputs": [],
+ "source": [
+ "def plot_pr_vs_th(y_act, y_score, show=True, tag=\"\"):\n",
+ " \"\"\"\n",
+ " plot precision and recall vs threshold on same plot\n",
+ "\n",
+ " arguements:\n",
+ " y_act -- Actual label of the class on the test data.\n",
+ " y_score -- Actual probabilities as predicted by model on the test data.\n",
+ " \"\"\"\n",
+ "\n",
+ " fig = plt.figure(figsize=(20, 10))\n",
+ " ax1 = fig.add_subplot(1, 2, 1)\n",
+ " ax1.set_xlim([-0.25, 1.25])\n",
+ " ax1.set_ylim([-0.025, 1.025])\n",
+ " ax1.set_xlabel(\"Threshold\")\n",
+ " ax1.set_ylabel(\"Precision and Recall\")\n",
+ " ax1.set_title(\"Precision, Recall Curve vs Threshold \" + tag)\n",
+ "\n",
+ " pr, rc, th = precision_recall_curve(y_act, y_score)\n",
+ "\n",
+ " ax1.plot(th, pr[:-1], \"b--\", label=\"Precision\")\n",
+ " ax1.plot(th, rc[:-1], \"g-\", label=\"Recall\")\n",
+ "\n",
+ " ax1.legend(loc=\"upper left\")\n",
+ "\n",
+ " if show:\n",
+ " plt.show()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Following is the convenient utility for reporting, ROC, PR and F1 score ."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 25,
+ "metadata": {
+ "collapsed": true
+ },
+ "outputs": [],
+ "source": [
+ "def report_clf(y_act, y_pred, y_proba, title=\"\", cmap=\"Blues\"):\n",
+ " \"\"\"\n",
+ " create the classification reports with confusion matrix\n",
+ " arguement:\n",
+ " y_act -- Actual label of the class on the test data.\n",
+ " y_pred -- Prediction by model on the test data.\n",
+ " y_proba -- Probabilities as predicted by model on the test data.\n",
+ " \"\"\"\n",
+ " plot_pr_roc(y_act, y_proba, \"\", \"darkorange\", True, title)\n",
+ " plot_cm(y_act, y_pred, title + \" Confusion Matrix\", cmap)\n",
+ " print(\"\\n\\n Classification Report \", title, \"\\n\\n\")\n",
+ " print(classification_report(y_act, y_pred))"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "\n",
+ "###### Utility for prediction using weighted cross validation\n",
+ "\n",
+ "Note that we had splitted dataset into training and test. When we are training model, we shouldn't look at the held out test dataset until final testing. This way we will know how well or bad our model generalizes.\n",
+ "\n",
+ "However when we are training the model, we would also like to validate our model on the part of the training set. We further split the train set into validate train and validate test set.\n",
+ "\n",
+ "The best strategy is to use cross validation. In this approach , we split dataset into K folds $(f_1, f_2, ..f_k)$ and train the model on $(k-1)$ folds and test it on the remaining fold. The process is repeated by selecting each fold as the validate test set and remaining $(k-1)$ folds as validate train set. Model with the best result is choosen\n",
+ "\n",
+ "For more details see the article on wiki about [cross validation](https://en.wikipedia.org/wiki/Cross-validation_(statistics).\n",
+ "\n",
+ "Scikit learn provides a many nice utilities for cross validation. We will use the [cross_val_predict](http://scikit-learn.org/stable/modules/generated/sklearn.model_selection.cross_val_predict.html).\n",
+ "\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 26,
+ "metadata": {
+ "collapsed": true
+ },
+ "outputs": [],
+ "source": [
+ "def create_xgb_weights(w, X, y):\n",
+ " \"\"\"\n",
+ " helper routine to create weight of size y .All the values are same i.e w\n",
+ " \"\"\"\n",
+ " r = y.copy()\n",
+ " r[r == 1] = w\n",
+ " r[r == 0] = 1\n",
+ " return r\n",
+ "\n",
+ "\n",
+ "def find_cv_model_predict(xgb_model, X, y, weight=1):\n",
+ " \"\"\"\n",
+ " utility function to find the best model using k fold cross validation\n",
+ "\n",
+ " arguements:\n",
+ " xgb_model-- xgboost model\n",
+ " X -- transformed input dataset\n",
+ " y -- corresponding output dataset\n",
+ " weight -- weight to apply to positive sample. Default to 1 and we will see how it can be used with different weights.\n",
+ "\n",
+ " return: cross validated model with k == 3. It will return prob as well as prediction\n",
+ " \"\"\"\n",
+ "\n",
+ " # get the weights of w of size y\n",
+ " y_wts = create_xgb_weights(weight, X, y)\n",
+ "\n",
+ " # get prediction\n",
+ " y_proba = cross_val_predict(\n",
+ " xgb_model,\n",
+ " X,\n",
+ " y,\n",
+ " cv=3,\n",
+ " method=\"predict_proba\",\n",
+ " fit_params={\"eval_metric\": \"auc\", \"sample_weight\": y_wts},\n",
+ " )\n",
+ "\n",
+ " # get probabilies\n",
+ " y_pred = cross_val_predict(\n",
+ " xgb_model,\n",
+ " X,\n",
+ " y,\n",
+ " cv=3,\n",
+ " method=\"predict\",\n",
+ " fit_params={\"eval_metric\": \"auc\", \"sample_weight\": y_wts},\n",
+ " )\n",
+ "\n",
+ " # result\n",
+ " res = {\n",
+ " \"model\": xgb_model,\n",
+ " \"X\": X,\n",
+ " \"y\": y,\n",
+ " \"weight\": weight,\n",
+ " \"proba\": y_proba,\n",
+ " \"pred\": y_pred,\n",
+ " }\n",
+ "\n",
+ " return res"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "\n",
+ "### First Attempt at Model Training \n",
+ "\n",
+ "In previous sections, we talked about xgboost, various utilities and various performance measures for classification model. Now it's time to train the model using cross validation and get the predicted probabilities and predicted results.\n",
+ "\n",
+ "We will use the helper function find_cv_model_predict which uses cross validation to find the best model."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 27,
+ "metadata": {
+ "collapsed": true
+ },
+ "outputs": [],
+ "source": [
+ "# fit the model\n",
+ "\n",
+ "# we would like to split it using the stratified samples so that all the representative of each class is there\n",
+ "X_train, X_test, y_train, y_test = train_test_split(\n",
+ " X, y, stratify=y, test_size=0.3, random_state=0\n",
+ ")\n",
+ "\n",
+ "xgb_model = create_xgb_clf({\"scale_pos_weight\": 1})\n",
+ "\n",
+ "\n",
+ "# use cross validation to find best model\n",
+ "xgb_predict_obj = find_cv_model_predict(xgb_model, X_train, y_train, weight=1)\n",
+ "\n",
+ "xgb_cls_1_proba = xgb_predict_obj[\"proba\"][:, 1]\n",
+ "xgb_y_pred = xgb_predict_obj[\"pred\"]"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "### Analysis of the classification \n",
+ "\n",
+ "Lets measure the performance of our model by using our helper functions.\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 28,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "image/png": "iVBORw0KGgoAAAANSUhEUgAABI0AAAJaCAYAAACiI7eZAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDIuMS4wLCBo\ndHRwOi8vbWF0cGxvdGxpYi5vcmcvpW3flQAAIABJREFUeJzs3XmcjXX/x/H3OWd2M2Esg4pEpEWW\nJMmefb3tS9okKn7dlTUpS6SQkFCUnex30iYqoURIyRbGEsZYxsyY7Szf3x9zO7cxlhlm5prl9Xw8\nenTt1/tc1xnnez7ne12XzRhjBAAAAAAAAFzCbnUAAAAAAAAAZD8UjQAAAAAAAJAKRSMAAAAAAACk\nQtEIAAAAAAAAqVA0AgAAAAAAQCoUjQAAAAAAAJAKRSPkGceOHVOFChXUunVr73+tWrXS0qVLrzq/\nYcOG6t69u44ePXrFbbrdbn366adq27atWrdurWbNmmns2LFKSkrKypcmSdq9e7cee+wxtW3bVseO\nHbupbSUlJenpp5/W119/ne51f/jhB02cOPGay/Tt21fVq1dXfHx8iukffPCBvvvuO0nSzp079cYb\nb6R7/zdiyZIlmj9//hXnvf766/rzzz/TvK2///7b+/6pW7euqlat6h2fNWtWunL17NlTf//9d5qX\nP3bsmMqXL6/HH3881bxBgwapfPnyOnv2bLoy9OrVS8uXL7/mMps3b1aLFi3StV0AQO5Vvnx5tWzZ\nUq1bt1abNm3UuHFjtWvXTn/88Yd3mbi4OL3zzjtq3LixWrZsqZYtW2rChAlKSEhIsa0VK1aoU6dO\n3nbW0KFDFR0dfdV9p3f5zHLixAm1aNFCrVu31vbt229qW8YYDRw4UDNnzkz3umlpT40ZM0b33Xef\nTp48mWL6pe2jo0ePqm/fvune/424Vlvy0rZiWkRHR6do11esWNE7/s4776Qr15AhQ7Rp06Z0rVO+\nfHnVr19fxpgU0ydPnqzy5cun+JtIixEjRmjy5MnXXObYsWOqXLlyurYLXIuP1QGArBQQEKD//Oc/\n3vGIiAi1aNFC9913n4KDg1PNN8borbfe0oQJE/Tee++l2t6wYcN0/vx5zZ49WyEhIYqLi1O/fv00\nZMgQjR07Nkte00Vr165V9erVNWrUqJvazvbt2zVixAgdPHhQnTp1Svf6f/zxh86fP3/V+REREdqy\nZYsqVaqklStXqkuXLt55mzdvVtmyZSUlF18iIiLS/wJuwG+//aa77rrrivM2bdqUruNQtmxZ73to\n+fLl+uabbzR9+vQbyvXxxx+nex1/f38dOnRI//zzj2699VZJyQ3zbdu23VAGAABuxOzZsxUaGuod\nnzlzpt566y199tlncrlcevrpp71tgcDAQMXHx2v8+PHq0aOHZs+eLR8fH02bNk3r16/XlClTVLhw\nYTmdTo0ePVq9e/fWggULUu0zvctnps2bN6tw4cLp/sHocgcOHNDw4cO1c+dOlStXLt3rX689lZiY\nqJUrV6px48aaN2+e+vXr5513afvo+PHjOnToUPpfwA24Vlvy0rZiWtxyyy3edtnmzZs1cuTIFG39\n9LjRNrYxRlu3blW1atW841999ZXy589/Q9sDshpFI+RpYWFhKlWqlMLDw3Xfffelmp+YmKhTp06p\ncOHCqeYdO3ZMq1at0oYNGxQcHCxJCgoK0vDhw71f0AcNGqS77rpLPXr0SDVev359VaxYUXv37lXf\nvn01depUrVq1SlLyryINGjTQd999p4SEBI0YMUInTpyQ0+lU8+bN1bt37xRZPv/8cy1cuFBut1sJ\nCQkaP368pkyZotWrV8vhcKh06dIaOnSoihQpou7duyt//vw6ePCgunTpou7du6fY1ty5c/Xqq6+m\nKnRcvl5YWJimTp0qm80mh8OhAQMGyM/PT4sWLZLb7VZISIhefvnlVMdt8eLFqlGjhho3bqyJEyeq\nc+fOstlsmj9/vv7880+9++67SkhI0KRJkxQTE6PBgwfr7bff1rp16zR16lQ5nU4FBARo4MCBqly5\nsiZPnqwjR44oIiJCkZGRuvfee1W9enWtXLlSx44dU//+/dWiRQtNnjxZhw8f1smTJxUZGam7775b\no0aN0s8//6x169Zp48aNCggIULdu3bxZJ0yYoFOnTqlfv3569913FRYWpmHDhumff/6RMUZt2rTR\ns88+e9332aUmT56sHTt26NSpUypfvrwGDRqkN954Q2fOnFFkZKRuvfVWvf/++ypUqJDq16+viRMn\nKi4uThMmTNDtt9+u/fv3y+Vyafjw4apatWqq7TscDjVt2lSrVq3yvk++/fZbNWjQQJ988ol3uc8+\n+0xz586V3W5X4cKFNXToUJUuXVoREREaNGiQTp06pRIlSujMmTPedQ4cOKBRo0YpKipKbrdb3bt3\nV/v27dP1+gEAeY/L5dKJEye8X5K//vpreTweDR482LtMYGCghgwZojZt2mjNmjWqU6eOpk+frhUr\nVnjbYb6+vhowYIDWrFmjpKQk+fn5edePi4u77vLTp0/XuXPnvD1vJk+e7B2/tJ3TqVMnffjhh/rp\np5/k5+cnt9utunXratasWSpatKhGjRqlffv2yel0qkaNGhowYIB8fP73teqXX37R+++/r5iYGHXv\n3l1z58696ufuoEGDFBUVpaNHj6pu3brq379/imM3f/58dejQQSVKlEgx/fL16tWrpzFjxsjj8UhK\n7ilcsWLFVO2py61evVolS5bUU089pR49eujFF19UYGCg1qxZk6J9NGvWLEVERKhHjx6aOXOmtm3b\npnHjxik+Pl52u119+vRRvXr1tHz5cn377bfyeDw6fvy4wsLC1LFjR82bN0/h4eF6+umn9cwzz2j5\n8uXe98HF5caMGaOTJ09etS15aVvR4XDo4Ycf1vDhw7Vnzx7ZbDbVqlVLr7zySopzcT3Lly/X0qVL\nFR8fr+DgYE2fPl3Dhg3T4cOHFRUVpXz58mncuHG688471b17d3Xr1k333XefnnrqKdWpU0e///67\noqOj1b9/fzVs2PCK+2jVqpU+//xzb9Hot99+U9myZVP0qvvuu+/0wQcfyOPxKF++fBo8eLAqVqyo\n2NhYDRkyRHv27FHRokXlcDi87b+IiIjrfkcAMoQB8oijR4+aSpUqpZi2bds2U61aNXP8+HFz9OhR\nc/fdd5tWrVqZFi1amBo1apgmTZqY9957z8TGxqba3tdff23atWt3zX0OHDjQzJgx44rj9erVMx98\n8IExxhiPx2Pq1atndu7caYwxZv78+ebVV181xhjTvXt3s3btWmOMMQkJCaZ79+5m9erVqfY1adIk\nM3z4cGOMMUuXLjWdOnUyFy5c8M575plnjDHGPP7442bw4MHXOVrJy3311Vcpxi9dr0GDBmb79u3G\nGGN++uknM3ny5FQ5Lud0Os2jjz5q1q1bZxITE021atXMDz/8cMV9Llu2zDz33HPGGGMOHTpkWrRo\nYc6ePWuMMWbfvn2mZs2a5sKFC2bSpEmmXr16Jjo62sTHx5tq1aqZt99+2xhjzJo1a0yjRo28uWrX\nrm0iIyON2+02r7zyihkzZowxJvV5utSl56Vbt27mk08+McYYEx0dbVq2bGm++OKLqx7DS1/DRZMm\nTTKNGzc2TqfTGGPMrFmzzPTp040xye+DZ5991sycOTPFvn/55RdToUIF89dffxljjJk5c6bp1q1b\nqv1dfI//8ccfpkmTJt7pTz75pNm7d68pV66cOXPmjNm0aZN57LHHzJkzZ7w5mzZtajwej3nhhRfM\nhAkTjDHGhIeHm0qVKplly5YZp9NpmjVrZv7880/v62/atKnZvn27+eWXX0zz5s2vehwAAHlLuXLl\nTIsWLUyLFi1MzZo1Tf369c3IkSPN6dOnjTHGjBgxwvsZfLm3337bjBw50vzxxx/m4YcfTvM+07L8\n5W2US8cvb+d069bN2yb54YcfTOfOnY0xxgwaNMjMmTPHGGOMy+Uy/fr1Mx999FGqfV3aBrjW5+7A\ngQPNk08+ed3Xd6U25aXrPfHEE942ye7du82wYcNS5biSdu3amblz5xpjjGnWrJmZP3/+Ffd56Wd9\nVFSUadSokTl69KgxxpiTJ0+a2rVrm3/++ccsW7bMVK1a1Rw/fty43W7TrFkz07dvX+N2u83u3bvN\n/fffb9xut1m2bJmpVKmSOXjwoDHGmLFjx5q+ffsaY67dlry0rThgwAAzcuRI4/F4TGJionnmmWe8\nbaoruVJ7ZdmyZaZatWomJibGGGPMV199ZUaOHOmdP3ToUDNixIgU+z569KgpV66cWbdunTEm+TtB\n3bp1r7jPcuXKmX379pnq1aubxMREY4wxr732mlm3bp23nff333+bRx55xBw5csQYk/x+qVmzpomJ\niTGjRo0yAwYMMB6Px5w5c8bUrl3bTJo0yRhz9e8IV/rOA9wMehohT0lISFDr1q0lJd+PqGDBgho7\ndqyKFy+uY8eOpbg87aefflL//v1Vr1495cuXL9W27Ha799ecG/Xggw9Kkmw2m9q1a6cVK1bo/vvv\n1/LlyzVgwADFxcVpy5YtOn/+vPfa7ri4OO3Zs0fNmjW76nbXr1+vtm3bKigoSJL0xBNPaNq0ad57\nLV3c743mlaTmzZurT58+qlOnjmrWrKmePXted/21a9fK4/GoVq1a8vHxUbNmzTRnzhzVqVPnmutt\n3LhRp06d0lNPPeWdZrPZdOTIEUnSI488opCQEElS0aJFVatWLUlSyZIlFRUV5V2nSZMm3l8f27dv\nr9GjR2vgwIFpeu0XL/G62FsnJCREbdu21fr169W8efM0beOiSpUqeX8Fe/LJJ7V161Z9+umnCg8P\n1/79+/XAAw+kWqdEiRKqUKGCJOmee+7RihUrrrr9++67Tw6HQ3/++acKFSqkCxcupOjS/tNPP6lZ\ns2beywbatm2rUaNG6dixY9q0aZP3mJQqVUrVq1eXJIWHh+vIkSN67bXXvNtJSEjQX3/9pTJlyqTr\n9QMAcr+Ll6ft2rVLzz33nKpXr65ChQp557tcriuul5SUJIfDke52Vka2y6TkdsKKFSvUpEkTLV++\nXB07dpSUfL+dP/74w3tPzMvvwXQl1/rclXTFnsNpcel6TZs21YgRI7Ru3To98sgjeuWVV667/q5d\nu7Rnzx5vO6ZNmzaaM2eOunTpIpvNdtX1duzYocjISL344oveaTabTXv37pUk3X///SpevLgk6bbb\nbtOjjz4qu92u22+/XYmJid57WtasWVOlS5eWJHXs2NHbRk+r9evXa+HChbLZbPLz81Pnzp01e/Zs\nPffcc+naTvny5b1XDTRp0kS333675s6dq8OHD+vXX3+94v2BfH19ve3Xe+65J0V783KFChVSxYoV\n9f3336tOnTraunWrhg8f7p3/yy+/6OGHH9btt98uSapRo4ZCQ0P1559/6ueff9Zrr70mm82m0NBQ\nb2+ma31HqFixYrpeP3A9FI2Qp1x+z6JrqVWrlp5++mm99NJLWr16tffD5KKKFSvq4MGDio2NTTEv\nIiJCQ4cO1aRJk2Sz2VLc+M7pdKbYxsWijpTcOPnXv/6lDh06KCYmRg899JBiY2NljNGiRYsUGBgo\nSTp79qz8/f2vmd3j8aT4sPd4PCkaZ5fuNz0uXe/ll19Wu3bttHHjRi1fvlyffPKJtwF1NQsWLFBC\nQoIaNWokKblhGBkZqf3791/1nkIX89eoUUPvv/++d9qJEydUtGhRrVmzJkX3dElX7ZbscDhSbNNu\nT/uzADweT6qbGF5+XNPq0uM4duxY7dy5U+3atVP16tXlcrlS7UdKfu9edPn76koudoUODQ1N1Qi7\nUqPaGCOXy5Vq2xeP5cVu4pf+/Zw+fVohISHasWPHdV4xACCvuvfeezV48GANGjRIFSpU0G233aYq\nVapoxowZqT6LPR6PtmzZoueff15ly5aVy+VSeHi47rjjDu8yiYmJ6tOnj9566y2FhYV5p6dl+fS0\ny5o2baoxY8bowIED2rJli8aMGePNOHHiRO8PJtHR0dcssFxc53IXP3cv3296XLpe586dVa9ePW3c\nuFE//fSTPvjgg+s+0GT+/Pny8fFRu3btJCUX8k6dOqX169df8wc9t9utMmXKaMmSJd5pERERCg0N\n1apVq264XXbpeFpcr72bVpcexwULFmjx4sXq1q2bWrZsqQIFClzxATO+vr7e9+71zr+UXJD7/PPP\nlZSUpPr166c4Jpe/Dinl++PS9+zFY3SxXXql7wjnzp1L60sH0oSnpwHX8MwzzyhfvnyaNGlSqnlh\nYWFq2bKlXnvtNcXGxkqSYmNjNWzYMBUoUEABAQEqWLCg98lbERER+vXXX6+6r7CwMFWsWFFvvPGG\n9z4xwcHBqlSpkj799FNJyQ2TLl26aO3atdfMXatWLS1btkxxcXGSku9TVK1atVQf4jfK5XKpfv36\nio+PV5cuXfTmm29q79693l8Hr/SBfejQIW3ZskXLly/XunXrtG7dOm3YsEHVqlXTnDlzJCnFupcO\n16hRQxs3btSBAwckST/++KNatWqVpl/3LrV27VrFxMTI4/Fo8eLFqlevXqp9Xe7ivODgYD3wwAPe\np4jExMRo5cqVeuSRR9KV4XIbNmzQk08+qTZt2qhQoULatGmT3G73TW1Tklq3bq2vv/5aX375Zaon\nm9WqVUtffvml90lqy5YtU4ECBVSqVCnVqlVLn332maTkm15u3rxZklS6dOkURdeLT4VJz5PlAAB5\nU4sWLVSxYkXvPXUaN26swMBAjR492vtZnpCQoJEjRypfvnxq2LCh/Pz81LNnTw0ZMkSnT5+WlPxj\n0+jRoxUfH5+iYCQpTcsXLFhQu3btkjFGsbGx+v7776+a2d/fX82bN9egQYPUqFEj7xfzRx99VLNm\nzZIxRklJSXr++ec1b968a77+a33uZpTOnTtr9+7datu2rUaOHKno6GhFRkZetY0THR2tL7/8UtOm\nTfO2y9avX69WrVpp9uzZklK3yy4W2SpVqqTDhw9ry5YtkpKf4Nu4ceN0P8Dkl19+8a6zaNGidLXL\npORzMW/ePO+5WLx4cYa0yy7+iFu6dGmtW7cuQ9plDRo00Pbt2zV//nz961//SjGvRo0a2rBhg/dp\nzT///LNOnDihBx54QLVq1dLSpUvl8Xh0/vx573eAG/2OANwIehoB1+Dr66uhQ4fq2WefVfv27VM9\nteLNN9/Uhx9+qM6dO8vhcCgpKUmPPfaY95Gk3bt3V79+/dS4cWPddtttevjhh6+5vw4dOuill17S\n1KlTvdPGjRunkSNHqmXLlkpKSlKLFi3UqlWra26nffv2OnHihDp06CCPx6NSpUpp3LhxN3gUUvPx\n8dFrr72mfv36ycfHRzabTaNHj5afn58efvhh9evXTyNHjtTQoUO96yxcuFCPPfZYqgbSiy++qF69\neunll19W/fr19d5778npdKpKlSqaMmWK+vTpow8++EAjRozQK6+8ImOMfHx8NHXq1CteNngthQsX\nVs+ePXXu3DlVq1bNe7PA2rVre39B7NWrV4p1GjZsqP79+2vYsGEaN26cRowYoeXLlyspKUktW7ZU\n27Ztb+QQpnj97777riZOnChfX19VqVLFe9ndzQgLC1OZMmUUEhKiAgUKpJhXs2ZNPfXUU3ryySfl\n8XgUGhqq6dOny263680339TgwYPVtGlTFStWTHfffbek5Mb4hx9+qFGjRmnGjBlyuVx66aWXVLVq\nVW9hCQCAqxk6dKhatWqln376SbVq1dInn3yiDz/8UG3btpXdbpfb7Vb9+vX1ySefyNfXV5LUu3dv\nBQYGeh8okpiYqIceekgffvjhFfdxveUv7r9Ro0YKCwvTQw89dM2eux06dNC8efM0bNgw77QhQ4Zo\n1KhRatmypZxOpx555JHrPhTjWp+7GaVfv34aPXq03n//fdlsNvXp00e33Xab3G53ivbURStWrFCZ\nMmVStU2ff/55NW/eXPv27UvRPurUqZP8/f3Vvn17LVmyRJMmTdK7776rxMREGWP07rvv6rbbbrvm\nD6SXCwsLU//+/RUZGamyZctqxIgRknTVtqSkFG3F119/XW+99Zb3XNSqVeumbwT9zDPP6I033vD2\nnq9UqZL27dt3U9uUkouQ9evX119//ZXq+0TZsmX15ptvqk+fPnK73QoICNC0adMUEhKivn376s03\n31TTpk0VGhqaYt2rfUe4Us8o4GbYzPWucQCAXODSJ6QAAADAOsuXL9c333yT6mm9ALIfLk8DAAAA\nAABAKvQ0AgAAAAAAQCr0NAIAAAAAAEAqFI0AAAAAAACQCkUjAAAAAAAApOJjdYC0ioyMSdfyBQsG\n6dy5uExKg7TgHFiL4289zoH1OAfWSu/xL1IkJBPT4EbRBst5OAfW4vhbj3NgLY6/9TKyDZZrexr5\n+DisjpDncQ6sxfG3HufAepwDa3H88ybOu/U4B9bi+FuPc2Atjr/1MvIc5NqiEQAAAAAAAG4cRSMA\n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\nP//8s9LT0+X1evXll1+qUaNGpmMhCBh/mccYzDzGYGYxBjOPMVj4CuYYrNTPNGrTpo1Wrlypnj17\nyrZtjRkzRtOmTVP16tXVunVr9e3bV71795Zt27r33ns5nzvITrT/A4GAPv/8c3m9Xq1YsUKSdN99\n9/EHQ5Cd7GcAoXWy/T9s2DANHDhQktSuXTv+cAqBkx2DVatWqXv37nK5XGrcuLGuvPJK05Edb8mS\nJcrJyVGPHj00YsQIDRgwQLZtq1u3bqpUqZLpeAgCxl/mMQYzjzGYWYzBzGMMFn5CMQazbJtrDwIA\nAAAAAOBopf70NAAAAAAAAAQfpREAAAAAAACOQWkEAAAAAACAY1AaAQAAAAAA4BiURgAAAAAAADhG\nlOkAAJxtx44dateunWrVqiVJCgQCys7OVufOnTV06NCgbOO5556TJN199906//zztXHjxqA8LwAA\niEx/HL/8asqUKapSpcpxv+f345HTtXDhQo0dO7ZoG3l5eWrWrJkeffRRRUUV70+3Z599VhdffLFa\nt26tvn37asaMGZKkTp066a233jrtjJLUt29f7d69W/Hx8ZKkrKwsnX322Xr66adVvnz5P/2+efPm\nKT4+Xh06dDjlbe3evVvPPvusnnzyyWO2K0ndu3fX1VdfXXS8LMuSz+dTxYoV9eSTT6py5conzTt8\n+HANGzbstC9JDjgZpRGAkKtYseJRg5M9e/aobdu2uuGGG44ZjAEAAISDP45fSso111yjsWPHSpIK\nCgrUs2dPLViwQD179izW89xzzz1Ftz///POi28F6TaNHj9all14qqfBNwaFDh2ratGl64IEH/vR7\nvvrqKzVr1qxY2xkzZsxRr+X32/3Vjh07jjleY8eO1fjx4zVx4sST5h00aJDGjBmjZ599tljZgEjA\n6WkASty+fftk27YSEhI0depUdenSRR07dtT48eNl27Yk6dVXX1Xbtm3Vvn17PfXUU5KkTZs2qW/f\nvurWrZtatWql2bNnm3wZAAAgAp1sPOLz+fTAAw+oc+fO6ty5s+bNmydJ2r9/v4YMGaKuXbuqW7du\nWrVq1Um35Xa71bRpU23evFmS9MYbb6hDhw668cYbNWLECGVnZ//p9kaMGKGFCxdq9OjRkqS0tDRJ\n0vnnny+/36+rrrpK+/fvlySlp6frqquuks/n00cffaSbbrpJnTt31l133aVDhw6dNGdOTo4OHTqk\n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\nRK5CYII=\n",
+ "text/plain": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "image/png": "iVBORw0KGgoAAAANSUhEUgAAAXEAAAETCAYAAADAuzb1AAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDIuMS4wLCBo\ndHRwOi8vbWF0cGxvdGxpYi5vcmcvpW3flQAAIABJREFUeJzt3Xl4Ddf/wPH3TSIJubGVqKWUEktV\nLbEnVNS+xFY0mlKqllpbJJG1SO2prSj1rX5pKvampUUVIUE1qFqCqqqQCKJf2WS59/z+8Lg/qXAT\nzTbyeXnu85i5M+d8ZpL7ybln5pzRKaUUQgghNMmisAMQQgjx9CSJCyGEhkkSF0IIDZMkLoQQGiZJ\nXAghNEySuBBCaJjmknhAQACurq588skn/7qsQ4cO4ebm9lT7Dh8+nISEhMe+f/78eerWrcuqVauy\nrL969Srjx483Lfv6+nL69OmniiE3EhMTefvtt7N979SpU/j7++eqvFmzZuHm5oabmxsNGzakS5cu\npuV79+7luJy9e/cya9asXNXt5eVF3bp1OXLkSJb1MTEx1KtXjxkzZuSqvN9++w1XV1ez23l4ePDD\nDz9k+96lS5cYP348vXr1onfv3rz11lv88ssvuYrjnw4dOkSHDh0YMGBArs7pAz4+PkRGRv6rGB7Y\nunUrdevWZcmSJVnWK6Xo2LEjPXv2NFvGpk2b+Oqrr7J97+uvv37ksyJyxqqwA8it0NBQ9u/fz/PP\nP//UZdy7d48VK1YQEhJCpUqVnqqMiIiIJ74fEhJCr169+Oqrrxg+fDhWVvdP9fXr17l8+bJpu8jI\nSAYNGvRUMeTG//73P3777bds3/v999+5ceNGrsrz9fU1/d/V1ZUFCxbwyiuv5Dqujh070rFjx1zv\nV6VKFb755htatWplWrd9+3aee+65XJf1b/3xxx8MHTqU2bNn4+LiAsDhw4cZPXo0X3/9NXXq1Hmq\ncnfs2MEbb7zB2LFjn2r/oKCgp9rvcapUqUJYWBgTJkwwrfvll1+4d+8eJUuWNLt/VFTUY8/Fm2++\nmWdxFjeaSuLu7u4opRg5ciQBAQGUKVOGGTNm8Pfff6PT6Rg+fDh9+vTh6NGjBAUFUapUKZKTk9my\nZQvW1tamcg4dOkRqaipz5szJ0qL/534hISH4+Phw5coVLCwsePnll5kxYwY+Pj4ADB06lFWrVlG5\ncuUscSYlJfHtt9+yadMmoqOj2bVrFz169MBgMODr68uNGzcYMWIEDRs2JD4+nilTpjBv3jxq1apF\nUFAQFy5cICMjg9atWzNt2jSsrKx45ZVXeOedd4iMjCQlJYVx48bxww8/cOHCBRwcHFi5ciWlSpWi\nQYMGjBw5koMHD5KSksIHH3xA586d8fb25t69e7i5ubF161YsLS0BiI2NZcmSJSQmJuLt7c3s2bMJ\nDQ1l3bp1WFhYUKFCBfz8/KhZs2auflYNGzakY8eOREdHs2DBAs6fP09oaCgZGRn873//Y+TIkbi7\nu7N161Z27drFZ599hoeHB40bN+b48ePExsbSunVrZs6ciYXFo18Yu3fvzubNm7l37x62trYAfP/9\n93Tr1g2j0QhAXFwcgYGBXLt2DaUUffr04d133wXu/5H98ssv0ev1ODo6Zil7xYoV7N69G6PRSNWq\nVQkICHjiH/vVq1fTv39/UwIHaN26NQsXLjTF9uOPP7Js2TKMRiN2dnZ4e3vTqFEjli5dyrVr17h5\n8ybXrl2jUqVKzJ8/n7CwMPbu3YuNjQ2JiYmUKlWKO3fumL4xLV261LS8e/duVqxYgU6nw9LSkmnT\nptG8eXM8PDwYMmQIXbt2zXX9Dg4Ojxyno6MjsbGxHD9+nKZNmwKwbds2evfuzcGDBwG4desW/v7+\n3L59m5s3b1K1alUWLVrE8ePH+emnn4iIiMDW1paEhAROnjxJfHw8devWpUaNGty5c4exY8fSp08f\ngoKCaN++PYsWLeLXX39lzZo12f4eCEBpjKOjo7p9+7bKyMhQHTt2VLt27VJKKRUXF6dcXFzU8ePH\n1ZEjR1S9evVUTEzME8s6cuSI6tGjR5blh/fbtm2bGj58uFJKqczMTOXj46P+/PPPLHFkZ/369apv\n375KKaVWr16tBgwY8Ng6O3TooE6dOqWUUsrLy0v997//NdU3ZcoUtWrVKlN9X375pVJKqc8++0w1\nadJExcXFKYPBoPr27avCwsJM261YsUIppdS5c+dUs2bN1O3bt9XVq1dV48aNs413y5Yt6r333lNK\nKRUZGalef/1107Ft2bJFdevWTRmNxseex4eP4QFHR0e1bds2pZRSSUlJauDAgSohIUEppdSJEydM\nsTxc91tvvaUmTJigDAaDSkxMVM7Ozurw4cOP1Ofp6ak+//xzNWrUKLVjxw6llFLHjh1T48ePV0uW\nLFEfffSRUkqpIUOGqP/85z9KKaXu3r2revXqpb777jt19uxZ1bp1axUfH6+UUsrPz0916NBBKXX/\nZz5p0iSVkZGhlFJqw4YN6t133zXF9/333z8ST8+ePdX+/fsfe35+//131aZNG/XXX3+ZznHbtm1V\nYmKiWrJkierYsaNKTExUSik1atQotXjx4izHqZTKclz/XO7YsaM6ceKEUkqpgwcPqqVLl2aJ92nr\nf9iDn9OaNWuUv7+/UkqplJQU1blzZxUREWH6nV67dq367LPPlFJKGY1G9e6776o1a9ZkezxdunQx\nneeHj+fgwYPKxcVF7d69W7Vv3/6xnzNxn2b/tP3555+kpaXRuXNnACpVqkTnzp1NLYLKlStTtWrV\nXJf78H7NmjXj999/x8PDg1WrVjF06FBq1KhhtowNGzbQt29fAHr37s2ZM2c4ceKE2f32799PaGgo\nbm5u9OvXj1OnTnHhwgXT+126dAGgevXqODo6UqlSJSwsLKhWrRr/+9//TNu99dZbANSrVw9HR0eO\nHTuW4+M/ePAg3bt3p3z58gD069ePGzduEBMTk+MyHnBycgLAzs6OlStXcuDAARYtWsTKlStJSUnJ\ndp8OHTpgYWGBXq+nRo0aWY7rn9zc3AgLCwPud6U8OOcAKSkpHD9+nCFDhgBgb29Pv379CA8P5/Dh\nw7Rt25aKFSsCZOnO2rdvH7/++iv9+/fHzc2N9evXZ+n+yo5OpzO1/rNz5MgRWrVqxQsvvADcb6WX\nL1/edC2kRYsW6PV6ABo0aPDEY85Ojx49GDduHD4+Pty9e5eRI0fmW/29evViz549pKens2fPHlxd\nXU3f6uD+t9OmTZvyxRdfEBgYyMWLFx/7s27cuLGpm/Fhzs7OdO/enfHjx7NgwQLT76LInqa6Ux5m\nMBjQ6XRZ1imlyMzMBKBUqVJPVe7D+73wwgvs2bOHo0ePcuTIEd555x1mzJjxxItgv/zyCxcvXuTz\nzz/niy++AKBEiRKsXbuWJk2aPLFuo9HI4sWLeemllwC4e/dulmMsUaJEtv//p4c/VEajMcuyOdkl\no4fPa248OJdxcXEMGjSIgQMH0qxZM7p27cq+ffuy3edB9wPcT47qCVP7dOzYkRkzZhAbG8uxY8cI\nDAw0JSaj0fjIvkaj0XQcD7/3z/P17rvv4u7uDkB6errZpNq4cWNOnjxJhw4dsqxftmwZ1atXx2g0\nPvF3NSfH/M/1GRkZpv9PnjyZ/v37ExERwdatW/nPf/7D5s2bsxzTv63/gYoVK9KgQQPCw8PZvn07\nXl5e3Llzx/T+/PnzOXXqFP3796dly5ZkZmY+trzHfUaVUly6dIkKFSpw8uRJU2NAZE+zLfFatWph\nZWXF7t27Abhx4wa7du2iTZs2eVZHSEgI3t7eODs7M3XqVJydnTl79ixw/4OfXWL7+uuvcXNz48CB\nA/z000/89NNPrFy5kj179nD9+nUsLS2zfAAfLsfZ2Zm1a9eilCI9PZ0xY8awfv36XMe9fft2AM6c\nOcPly5dp3rw5VlZWGAyGbD9QD8fg4uLCzp07TXfebNmyhbJly+boG8jjnD59mvLlyzN27FicnZ1N\nCdxgMDx1mQDW1tZ06tSJadOm4erqmqVVp9frefXVV013QyQmJrJ9+3batGlD27ZtiYiIIC4uDrjf\nr/uAs7MzmzdvJikpCYDFixczbdq0J8YxYsQINm3axKFDh0zrwsPDWbduHfXq1aN169YcOnSIq1ev\nAvcvesbGxvLqq6/m+FjLlSvHmTNnUEqRlJRkOoeZmZm4urqSmprKm2++SUBAAOfPnyc9Pd20b17U\n/7A+ffrwxRdfkJiY+Mj1hEOHDjF06FD69OnDc889R2RkpOnn/LjPzD+tXbuWlJQUtmzZwtq1azl1\n6tRTxVlcaLYlXqJECZYvX86sWbNYunQpBoOB999/n1atWnH06NE8qaNPnz78/PPPdO/enZIlS1K5\ncmU8PDwA6Nq1Kx4eHixdutT0i5yQkMDu3bvZsmVLlnJat25N48aNWbduHaNGjcLGxoYBAwawadMm\nOnXqxNSpUwkMDMTHx4egoCB69epFRkYGbdq0MV2Iy43jx4+zceNGjEYjn3zyCWXKlEGv19OoUSN6\n9OjBV199Rbly5UzbN27cmE8//ZRx48axbNkyhg0bxtChQzEajZQvX57PPvvsX11Uatu2LZs3b6Zr\n167odDpatGhB+fLluXLlylOX+YCbmxvu7u74+fk98t6CBQuYMWMGW7duJT09nV69etGvXz90Oh1T\np05l6NCh2NnZ0ahRI9M+b7zxBjdu3GDgwIHodDoqV67MnDlznhhDjRo1WLlyJYsWLWLu3Lmm87Zi\nxQrT70ZAQADjxo3DYDBga2vLypUrsbe3z/FxPrh42LlzZypVqkSLFi1QSmFlZcX06dOZMmUKVlZW\n6HQ6Pv744ywX8mvXrv2v63/Y66+/TkBAAJMnT37kvffff5958+axePFiSpQoQdOmTfnrr78AaNeu\nndlzefbsWVauXMnmzZupVKkS06dP58MPP2Tbtm2mLh+RlU496buT0Jy6dety+PBh6UcUopjQbHeK\nEEIIaYkLIYSmSUtcCCE0TJK4EEJomGbvThFCiLyi61Qtx9uqPbkf+JafimwSz81JFc++Bx+ce4bs\nR/+J4snW8ukG9T1LpDtFCCF0upy/niAjI4OpU6fi7u7OgAED2Lt3r+m9b7/9NssUDxs3bqRfv34M\nHDjQNHgrISGB4cOH4+7uzqRJk0hNTTUbuiRxIYSw1OX89QRhYWGULVuWkJAQVq9ezcyZMwE4d+4c\nmzdvNo2YvnnzJuvWrWPDhg2sWbOG4OBg0tPTWb58OT179iQkJIQGDRoQGhpqNnRJ4kIIocvF6wm6\ndu3KxIkTTcuWlpbcuXOHBQsWMH36dNP6U6dO0aRJE6ytrbG3t6d69epER0cTFRVlmtK4Xbt2OXqo\nR5HtExdCiAJjppskp+zs7ID7zxSYMGECEydOxMfHh+nTp2NjY2PaLikpKcu0B3Z2diQlJWVZb2dn\nR2Jiotk6JYkLIUQe9knExsby/vvv4+7uzosvvsiVK1cIDAwkLS2N33//naCgIFq1akVycrJpn+Tk\nZOzt7dHr9SQnJ2Nra0tycjKlS5c2W58kcSGEyKOW+K1btxg+fDj+/v60bt0auP+YPbj/DNgPPvgA\nHx8fbt68yaJFi0hLSyM9PZ1Lly7h6OhI06ZNOXDggGnu+2bNmpmtU5K4EELkTQ5n5cqV3L17l+XL\nl7N8+XLg/uP7Hp6zHe7Py+7h4WF65OTkyZOxsbFhzJgxeHp6snHjRsqVK8fChQvNh15U506R+8TF\nw+Q+cZGdvLpPXNcv58+QVVuf/KSngiYtcSGEyKPulMIgSVwIIbSbwyWJCyEEFtrN4pLEhRBCuzlc\nkrgQQmCp3cHrksSFEEJa4kIIoWFyd4oQQmiYdnO4JHEhhJC7U4QQQsu0m8MliQshhLmHPRRlksSF\nEEIubAohhIZpN4dLEhdCCGmJCyGElml3wKYkcSGEkFsMhRBCyySJCyGEhkmfuBBCaJh2c7gkcSGE\n0ElLXAghtEuSuBBCaJilXNgUQgjtkpa4EEJomCRxIYTQMEniQgihYRrO4ZLEhRBCWuJCCKFhFjrt\nzoAlSVwIUexJS1wIITQsr3J4RkYG06dP59q1a6SnpzNmzBhq166Nl5cXOp2OOnXqEBAQgIWFBcuW\nLWP//v1YWVkxffp0GjVqxJUrV7Ld9km0+x1CCCHyiIVOl+PXk4SFhVG2bFlCQkJYvXo1M2fOZPbs\n2UyaNImQkBCUUuzdu5czZ87w888/s2nTJoKDg/noo48Ast3WbOx5cgaEEELDdDpdjl9P0rVrVyZO\nnGhatrS05MyZM7Ro0QKAdu3aERkZSVRUFM7Ozuh0OqpUqYLBYCAhISHbbc2RJC6EKPYsLHQ5fj2J\nnZ0der2epKQkJkyYwKRJk1BKmZK/nZ0diYmJJCUlodfrs+yXmJiY7bZmY/8Xxy2EEM+EvGqJA8TG\nxvL222/j5uZGr169svRpJycnU7p0afR6PcnJyVnW29vbZ7utOZLEhRDFXl4l8Vu3bjF8+HCmTp3K\ngAEDAGjQoAFHjx4FIDw8HCcnJ5o2bcqhQ4cwGo1cv34do9FI+fLls93WHLk7RQhR7OXVLYYrV67k\n7t27LF++nOXLlwPg4+PDrFmzCA4OplatWnTp0gVLS0ucnJwYNGgQRqMRf39/ADw9PfHz88uyrdnY\nlVIqT6LPY7pO1Qo7BFGEqD0xANwzpBRyJKIosbUslSflPD+jXY63jfMPz5M684q0xIUQxZ6Gx/pI\nEhdCCHMDaooySeJCiGLP3CCeokySuBCi2NNwDpckXtCGdOzH1DdGo1Ck3EtlwnJ/oi6cMr3/yZhA\nald5kV5+wwAoXcqeG5tOEH31kmmbySs+Yv+vkdSuWpM1H8ynQpnyJKWm8Pa8iZx/aDvxbLh44SJz\nguaSmJiEpaUFfoG+NHi5ASuWrWTXD7uxsLCgwcv18Qv0xcbGprDD1SSZAEvkiGO1Wswf6UPTsd2I\nS4inWwtXtgaspsaQlgC80a4nQ1z7cjT6hGmfVg2aEv7bUbp4DXmkvK+8lrJo6+d8vW87XZt3YLPf\nZ7zy3usFdjwi/6WmpjL63bEEzvTHpb0L+/buw3uaD74BPvzw/S5Ct3yNjY0Nkyd8yNfrNzBsxNDC\nDlmTdGg3ied7b77RaMzvKjQjLSOdd4OnEpcQD8AvF37l+XIVKWFVgnrVazNt0BhmrF+UZZ82DZwo\nb1+Ww0vCOL7iB0b39ACgynPPU++Fl9iw/xsAfji2D31JO5rUbliwByXy1eGII1SrXg2X9i4AvOb6\nGvOD52I0GEhPSyPtXhqZGZmkp6VhbWNduMFqWF6O2Cxo+dISv3r1KrNnz+b06dNYWVlhNBpxdHTE\n29ubmjVr5keVmnDlRgxXbsSYloNHBRB2eA/WViVY57mYYfM/wMmxUZZ9Mg2ZfHv4R+aEfkqF0uXZ\nt2AjsQnxxN25yfXbN3j4Nv+YW7FUq1iZE7+fLrBjEvnrypUrVKjwHAG+gVw4fwF7e3smT5lEy9Yt\nadWmFV06dqNEiRK8WLMGbwwcUNjhapa5OVGKsnxpifv4+DBq1CjCw8P56aef2L9/P2PHjsXb2zs/\nqtOcUrYl2ei3ktpVX+Td4Kms+XABS7d/wZk/zz+y7ayvFjNj/SekZ6Rz/XYcn+1YT9+2XbHQ6VBk\nHael0+kwGAwFdRiiAGRmZHIoPIL+b/Tn600hvDlkMO+PGs+m0M1ci7nG3vA97A3fQ9VqVVkwb2Fh\nh6tZWm6J50sST09P59VXX82yrnHjxvlRlea8ULEKkYu+wWAw0GHKQPQl7XB5pQWT+4/kxMpdzBg6\nBZdXWrAj6L8AjHN7hxcqVjHtr0NHhiGTv+KvU7m8Q5ayq5SvRMyt2AI9HpG/KjpUpGatmjR69RUA\nOnTsgNFoYPcPe+jeszt2dnZYW1vT/43+HPv5l0KOVrskif9D3bp18fb2ZufOnRw8eJAffvgBb29v\n6tatmx/VaYa+pB37F25i66HvefPj97mXfo9rt2KpOtiJJqO70GR0F/y/XMDB336mh8/bADg3bM7U\ngWMAKGdflhHdBhO6P4xrt2L5/fqfDHqtNwCdndpjVEZ+uxxdaMcn8p6zS1uuxVzj7JmzAET9EgU6\nHQ1ers/eH38iMzPz/sMD9uw1JXqRe1pO4vnSJx4YGMiPP/5IVFSUad7cDh060KlTp/yoTjPGuQ2j\nhkM1+jp3pa9zV9P6jlMHkZD4d/b7LPPls0lzOb16LyWsSrDsm7X8ePwgAG9+PI7Vk+fh6z6Bexlp\nvDFzNEV0KhzxlCpUrMCiZcEEzZhNamoq1tbWBC9eyMsNG7Bg7kL69uqPtbU1jnUdme7nVdjhalYR\nzM05JhNgCU2QCbBEdvJqAqz6i7vneNtzE3fmSZ15Re4TF0IUe0WxmySnJIkLIYo9DedwSeJCCCEt\ncSGE0DBJ4kIIoWGSxIUQQsO0POxekrgQQkhLXAghtEu6U4QQQsM0nMMliQshhLTEhRBCwySJCyGE\nhsndKUIIoWHSEhdCCA2TJC6EEBqm5SSe70+7F0KIoi6vn+zz66+/4uHhAcDt27cZM2YMQ4YMYfDg\nwfz1118AbNy4kX79+jFw4ED27dsHQEJCAsOHD8fd3Z1JkyaRmppqti5piQshir28vLC5evVqwsLC\nKFmyJADz58+nV69edO/enSNHjvDHH39QsmRJ1q1bx5YtW0hLS8Pd3Z22bduyfPlyevbsSb9+/Vi1\nahWhoaEMGzbsybHnWeRCCKFRedkSr169OkuXLjUtHz9+nBs3bjBs2DC+/fZbWrRowalTp2jSpAnW\n1tbY29tTvXp1oqOjiYqKwsXFBYB27doRGRlptj5J4kKIYi8vk3iXLl2wsvr/To5r165RunRp1q5d\nS+XKlVm9ejVJSUnY29ubtrGzsyMpKSnLejs7OxITE83WJ0lcCFHs6XQ5f+VW2bJlcXV1BcDV1ZXT\np0+j1+tJTk42bZOcnIy9vX2W9cnJyZQuXdps+ZLEhRDFXl5f2HxYs2bNOHDgAADHjh2jdu3aNGrU\niKioKNLS0khMTOTSpUs4OjrStGlT07bh4eE0a9bMbPm5urCZlJREbGwsderUyfWBCCFEkZWPtxh6\nenri6+vLhg0b0Ov1LFy4kDJlyuDh4YG7uztKKSZPnoyNjQ1jxozB09OTjRs3Uq5cORYuXGg+dKWU\netIGmzZtIioqimnTptGnTx/s7Oxwc3Nj9OjReXaQ2QbWqVq+li+0Re2JAeCeIaWQIxFFia1lqTwp\np+Pmt3O87d4B/82TOvOK2e6Ur7/+mg8++IDvvvuOjh078u2337J79+6CiE0IIQpEfnan5Lcc9Yk7\nODhw4MABXnvtNaysrEhLS8vvuIQQosBY6HQ5fhU1ZvvEa9euzahRo4iJiaF169ZMmjSJV155pSBi\nE0KIAlEUW9g5ZTaJf/zxx5w4cYI6depgbW2Nm5ub6WZ0IYR4Fmj5Nj2zSfz69evExsbi5OSEn58f\nZ8+epWLFijRs2LAg4hNCiHxnaaHdNG42cm9vb4xGI3v37uXPP//E29ubWbNmFURsQghRILTcJ242\niaelpdGnTx/27dtHr169cHJyIj09vSBiE0KIAvFM351iaWnJrl272L9/P6+99ho//vgjFhr+6iGE\nEP9kkYtXUWM2phkzZrB//378/f1xcHBgx44dBAUFFURsQghRILTcnWL2wmbdunXx9PQkNTWV69ev\n88EHHxATE1MQsQkhRIEoit0kOWU2iS9ZsoQvv/ySzMxMypYtS3x8PA0bNmTTpk0FEZ8QQuQ7Sw0n\ncbPdKdu3b+fAgQN0796ddevWsWLFCsqVK1cQsQkhRIHQcneK2STu4OCAXq+nTp06REdH89prrxEb\nG1sQsQkhRIHQchI3252i1+vZvn07L7/8MuvXr8fBwYF79+4VRGxCCFEgtNwnbrYlHhQUREJCAi1b\ntqRq1ar4+/szadKkgohNCCEKxDPdEq9UqRLDhw8HwMvLK98DEkKIglb0UnPOPTaJ16tXD51Oh1Iq\ny1eNB8vnzp0rkACFECK/WWl4AONjk3h0dPQj6/6Z0IUQ4lmg5bxm9s/P0aNHGTx4MACXL1+mY8eO\nHD9+PN8DE0KIgqLlPnGzSXzOnDnMmDEDgFq1arFq1SoZdi+EeKbocvEqasxe2ExLS8PR0dG0/NJL\nL5GZmZmvQQkhREEqii3snDKbxGvVqsX8+fNxc3NDp9Px3Xff8eKLLxZAaEIIUTCe6YdCBAUFkZqa\nyocffsi0adNITU2Vh0IIIZ4pWp6K1mxLvEyZMvj7+xdELEIIUSi0fHeK2SQuhBDPume6T7ywqD0y\nZ7l4lK1lqcIOQTyDJIkLIYSGPZPdKQ+G3cP9kZoPK4hh93fSbuZr+UJbytlUBCAlM7GQIxFFSSkr\n+zwpx1JXFC9Z5kyuht0LIcSz6JnuTklISCAsLIzk5GSUUhiNRmJiYpg3b15BxCeEEPlOl8djMX/9\n9VcWLFjAunXrOHfuHDNnzsTS0hJra2vmzp1LhQoV2LhxIxs2bMDKyooxY8bQoUMHEhISmDJlCvfu\n3cPBwYHZs2dTsmTJJ9Zl9jvEpEmTOHfuHGFhYaSmprJr1y4sNHxjvBBC/JNOp8vxy5zVq1fj6+tL\nWloacH+sjZ+fH+vWraNTp06sXr2amzdvsm7dOjZs2MCaNWsIDg4mPT2d5cuX07NnT0JCQmjQoAGh\noaFm6zObjePj45k7dy6urq507tyZ9evXc/bs2RycFiGE0Ia8nACrevXqLF261LQcHBxM/fr1ATAY\nDNjY2HDq1CmaNGmCtbU19vb2VK9enejoaKKionBxcQGgXbt2REZGmo/d3AZlypQBoGbNmkRHR8tD\nkoUQzxwdFjl+mdOlSxesrP6/p9rBwQGA48ePs379eoYNG0ZSUhL29v9/UdbOzo6kpKQs6+3s7EhM\nNH8h32yfeKtWrZgwYQKenp4MHz6cM2fOYGtra7ZgIYTQivyeO2Xnzp2sWLGCVatWUb58efR6PcnJ\nyab3k5OTsbe3N623tbUlOTmZ0qVLmy3bbOSTJ09mypQpVK1aleDgYGrVqsWyZcv+3REJIUQRosvF\nv9z65ptvWL9+PevWreOFF15nu9QhAAATHElEQVQAoFGjRkRFRZGWlkZiYiKXLl3C0dGRpk2bcuDA\nAQDCw8Np1qyZ2fLNtsS3b98OYHoQRNmyZYmMjKRPnz65PhghhCiK8usWQ4PBQFBQEJUrV2b8+PEA\nNG/enAkTJuDh4YG7uztKKSZPnoyNjQ1jxozB09OTjRs3Uq5cORYuXGi2Dp3650ief/D29jb9PyMj\ng6ioKJycnJg/f/6/PLwnk8E+4mEy2EdkJ68G+wRF5XxmVp9mvnlSZ14x2xKfPXt2luW///6byZMn\n51tAQghR0CyK5CSzOZPruVNKlSrFtWvX8iMWIYQoFFoe+2I2iXt4eGSZQyUmJoZ27drle2BCCFFQ\nLIrk0zNzxmwSf9AZD/dHNZUrV47atWvna1BCCFGQtDyLodnvELt27aJFixa0aNGC5s2bU7t2bTw9\nPQsiNiGEKBB5OWKzoD22Je7j48PVq1c5ffo0Fy9eNK3PzMzM0SgiIYTQiryeAKsgPTaJjxkzhmvX\nrhEUFMT48eNNc4pbWlry0ksvFViAQgiR3yw0PJ/4YyOvVq0aLVu2JCQkhAsXLtCiRQtq1KjBoUOH\nsLGxKcgYhRAiX1noLHL8KmrMRjRlyhTi4+OB+xOyGI1Gpk2blu+BCSFEQdFyn7jZJH79+nXT4B69\nXs/kyZP566+/8j0wIYQoKPk5d0p+M5vEdTod58+fNy1funQpyzSLQgihdVpuiZvNxg+moK1UqRI6\nnY6EhIR8nzdFCCEKkq4I9nXnlNkk3qZNG/bt20d0dDTh4eEcPHiQkSNHcuLEiYKITwgh8l1R7CbJ\nKbNJ/OrVq2zcuJEtW7Zw9+5dRo8ezYoVKwoiNiGEKBD5/VCI/PTYyPfs2cOIESN44403+Pvvv5k/\nfz4ODg6MGzeO8uXLF2SMQgiRr3L+cLai12J/bEt8/PjxdOvWjdDQUGrUqAFoe34BIYR4HC3ntscm\n8bCwMLZu3Yq7uztVq1alR48eGAyGgoxNCCEKhJYvbD42ckdHR7y8vDhw4ADvvfceR48e5datW7z3\n3numZ8AJIcSz4JnsTjFtYGXF66+/zuuvv05CQgLbt29n4cKFtG/fviDiE0KIfFcUh9PnlNlnbBYW\necameJg8Y1NkJ6+esRny+9ocb+tee1ie1JlXZOilEKLYK4rdJDklSVwIUexp+cKmJHEhRLH3TI/Y\nFEKIZ90zeZ+4EEIUF1q+O0WSuBCi2JMLm0IIoWHSnSKEEBqmM/98nCJLkrgQotjLq5Z4RkYGXl5e\nXLt2DQsLC2bOnImVlRVeXl7odDrq1KlDQEAAFhYWLFu2jP3792NlZcX06dNp1KjRU9UpSVwIUexZ\n5tGFzQMHDpCZmcmGDRuIiIhg0aJFZGRkMGnSJFq2bIm/vz979+6lSpUq/Pzzz2zatInY2FjGjx/P\nli1bnqpOSeJCiGIvr+4Tr1mzJgaDAaPRSFJSElZWVpw8eZIWLVoA0K5dOyIiIqhZsybOzs7odDqq\nVKmCwWAgISHhqZ7VIElcCFHs5VV3SqlSpbh27RrdunXjzp07rFy5kmPHjpnKt7OzIzExkaSkJMqW\nLWva78F6SeJCCPEU8urC5tq1a3F2dubDDz8kNjaWoUOHkpGRYXo/OTmZ0qVLo9frSU5OzrLe3v7p\nJvPS7iVZIYTIIzqdLsevJyldurQpGZcpU4bMzEwaNGjA0aNHAQgPD8fJyYmmTZty6NAhjEYj169f\nx2g0PvVjL6UlLoQo9vJqsM+wYcOYPn067u7uZGRkMHnyZBo2bIifnx/BwcHUqlWLLl26YGlpiZOT\nE4MGDcJoNOLv7//Udcp84kITZD5xkZ28mk9877WdOd62Y9XueVJnXpGWuBCi2JMRm0IIoWEyYlMI\nITTMQlri4ml8/90uvlobgk6nw9bWlg+8JlG3viOfLlpJ5MFILHQWVKtRDS+/qZQrX457qff4OHAO\n56MvooxG3p88hvau7Qr7MEQ+UErhPz2QOo61efsdDwwGA8HzFhEZEYkh04DHO2/xxqABABw7+gvB\n8z/BYDBQpkwZpnh9SN16joV8BNoiD4UQuXbl8l8sC17Ol6FrqFCxApEHD+M1eTrDR73D+bPn+TL0\nP1hbW7M0eDlLFiwj4GM/Vq/4DyVLlST0m6+Ii41jpMdo6jeoh8PzDoV9OCIP/XHpMnNmzeW3305T\nx7E2AFs2buXKlSts2h5KSnIKQ4e8Q/369ahR80U+nDSV+Z/MpWWrFlz+408mj/+Ajds2YG1tXbgH\noiFa7hPXbkeQxpWwLsH0QE8qVKwAQL0G9bh9K4EXalRj3AdjTR/A+i/XJS72BgAHfgrHrX9vAJ6v\n/DzNWzXnx90/Fc4BiHyz8euN9O3fh06dXzet+2nvPtz69sbKyorSZUrTpVtndnz3PX9d+Qu9Xk/L\nVveHddes9SJ2dnpOnTxVWOFrkoXOIsevokZa4oWkStXKVKlaGbj/1XnxgqW4vOZMU6cmpm3u3r3L\nf1aupe/APgDEx8VT6aFWt0OlisTfkFsxnzVevp4AHI48Ylp3I+4GlZ6vZFp2qFSJixd+p8aL1UlN\nTeVwxBFat23Fmd/O8MelS9y8eavA49YyCw23ZyWJF7LUlFRm+gVxIy6eRSsWmtbHXL2G50RvXm3a\niAGD+wFgNBrhoa99SiksLbT7yydyzmhUWb/yK4WFhQV6vZ5Plixg2ZLlfLJgMU2dmtC8ZXNKlChR\neMFqkJa7U/IliXt4eGSZLwDuJxydTseGDRvyo0pNiouNY8p4T16s9SKfrlmKra0NAFE/H8d3qj9v\nvePOkGHupu2fr1yJW/G3eO65+8Nzb928jWPd2oUSuyhYz1d+npvx//+t6+bNm1Sq5IDRaKRkqVJ8\nvnaV6T237v14ofoLhRGmZsmFzX+YMmUKvr6+fPrpp1haWuZHFZqXnJzC2OHj6d67G++OGW5aH332\nPJ6TpzNzbiCtnVtl2celgzPbN4fh6TeF+Lh4jkQc5Z33hhZ06KIQvObajm+2htHuNRdSU1LZ9f1u\npvt7o9PpGD9mIp8sXcjLDRuw6/vd2NhY41i3TmGHrCnSEv+HV199FTc3N86fP0+nTp3yowrN2/z1\nFuJib3Dgp3AO/BRuWl+2XFmUUixfvJLli1cC9/vP5y6azcixI5g3ayFv9n0Lo8HIuA/GUu2FqoV1\nCKIAvTFoADF/XWNQv/tzcgwY2A+n5s0A+HjeLGYGzCIjI5MKFSsQvGSBppNSYdByn7jMnSI0QeZO\nEdnJq7lTfrkVmeNtnSq0yZM684pc2BRCFHvSJy6EEBqm5e4nSeJCiGJPWuJCCKFhksSFEELDiuJw\n+pySJC6EKPakJS6EEBomFzaFEELDpCUuhBAaJi1xIYTQMGmJCyGEhsndKUIIoWHSEhdCCA2TJC6E\nEBomFzaFEELTJIkLIYRmyYVNIYTQMC33iWv3z48QQuQRnU6X41dO3L59m/bt23Pp0iWuXLnCm2++\nibu7OwEBARiNRgCWLVvGgAEDGDx4MKdOnXrq2CWJCyGKPV0u/pmTkZGBv78/tra2AMyePZtJkyYR\nEhKCUoq9e/dy5swZfv75ZzZt2kRwcDAfffTRU8cuSVwIUezlZRKfO3cugwcPxsHBAYAzZ87QokUL\nANq1a0dkZCRRUVE4Ozuj0+moUqUKBoOBhISEp4pdkrgQotjLq+6UrVu3Ur58eVxcXEzrlFKm/ezs\n7EhMTCQpKQm9Xm/a5sH6pyEXNoUQxV5e3Z2yZcsWdDodhw8f5ty5c3h6emZpYScnJ1O6dGn0ej3J\nyclZ1tvb2z9VndISF0IUe3nVnfLVV1+xfv161q1bR/369Zk7dy7t2rXj6NGjAISHh+Pk5ETTpk05\ndOgQRqOR69evYzQaKV++/FPFLi1xIYTIx1sMPT098fPzIzg4mFq1atGlSxcsLS1xcnJi0KBBGI1G\n/P39n7p8nVJK5WG8eeZO2s3CDkEUIeVsKgKQkvl0/Ybi2VTK6um6IP4pNuWvHG9buVT1PKkzr0hL\nXAhR7MncKUIIoWmSxIUQQrO0POxekrgQotjTcneK3GIohBAaJi1xIUSxJ90pQgihYZLEhRBCw6RP\nXAghRKGQlrgQotiT7hQhhNA0SeJCCKFZ2k3hksSFEELTFzYliQshij3pExdCCE2TJC6EEJql5e4U\nuU9cCCE0TFriQohiT/rEhRBC0ySJCyGEZllouE9ckrgQQkhLXAghtEu7KVySuBBCoOU0LklcCFHs\nafk+cZ1SShV2EEIIUZjuGVJyvK2tZal8jCT3JIkLIYSGyYhNIYTQMEniQgihYZLEhRBCwySJCyGE\nhkkSF0IIDZMkLoQQGiZJXAghNEySeBFlNBrx9/dn0KBBeHh4cOXKlcIOSRQRv/76Kx4eHoUdhigi\nZNh9EfXjjz+Snp5OaGgoJ0+eZM6cOaxYsaKwwxKFbPXq1YSFhVGyZMnCDkUUEdISL6KioqJwcXEB\noHHjxpw+fbqQIxJFQfXq1Vm6dGlhhyGKEEniRVRSUhJ6vd60bGlpSWZmZiFGJIqCLl26YGUlX6DF\n/5MkXkTp9XqSk5NNy0ajUT68QohHSBIvopo2bUp4eDgAJ0+exNHRsZAjEkIURdK0K6I6depEREQE\ngwcPRinFxx9/XNghCSGKIJmKVgghNEy6U4QQQsMkiQshhIZJEhdCCA2TJC6EEBomSVwIITRMkrjI\nVkxMDA0bNsTNzY0+ffrQo0cP3nnnHeLi4p66zK1bt+Ll5QXAyJEjuXHjxmO3XbJkCb/88kuuyq9b\nt26+bCtEUSZJXDyWg4MD33zzDdu3b2fHjh3UrVuXefPm5UnZq1evplKlSo99/9ixYxgMhjypS4hn\nmQz2ETnWsmVLgoODAXB1daVRo0acO3eOkJAQDh48yJdffonRaOTll18mICAAGxsbtm/fzooVK9Dr\n9VStWpVSpUqZ9v/vf/9LxYoV+eijj4iKiqJEiRKMHTuW9PR0Tp8+ja+vL8uWLcPW1pbAwED+/vtv\nbG1t8fPzo0GDBsTExDB16lRSUlJ49dVXs43577//xsfHhz/++ANra2u8vLxo3bq16f0bN24wffp0\nEhMTiY+Pp2/fvkycOJHo6Gj8/f3JzMzExsaG2bNnU7VqVaZPn87FixcBcHd3Z+DAgfl81oUwQwmR\njatXr6oOHTqYltPT05Wnp6fy9fVVSinVoUMHtWXLFqWUUhcuXFBvvvmmunfvnlJKqQULFqhPP/1U\nxcXFqbZt26qbN2+qjIwMNXz4cOXp6Wna/+rVq2r16tVq4sSJymAwqPj4eNW9e3eVlpam3nrrLXXk\nyBGllFKDBg1SZ86cUUopdfHiRdW5c2ellFLvvfee2rhxo1JKqW3btilHR8dHjiMwMFDNmTNHKaVU\ndHS0GjhwoFJKmbb9/PPP1datW5VSSt29e1c1adJE3b59W3l5eamdO3cqpZTaunWr2rZtmzp69Kga\nOXKkUkqpuLg4NXXq1H9/ooX4l6QlLh4rPj4eNzc3ANLT02nUqBEffvih6f0Hrd+jR49y5coVU6s0\nIyODBg0acOLECZo0aUKFChUA6NWrF0eOHMlSx7Fjxxg4cCAWFhZUrFiRHTt2ZHk/OTmZ06dP4+3t\nbVqXkpLCnTt3+Pnnn1m4cCEAvXv3xtfX95FjOHbsGAsWLADu94OHhoZmeX/EiBEcOXKENWvWcPHi\nRTIyMkhNTaV9+/bMmDGDgwcP4urqSocOHbh79y6XL19mxIgRtGvXjmnTpuX+pAqRxySJi8d60Cf+\nODY2NgAYDAa6detmSqLJyckYDAYOHz6MemhWh+xmYbSyskKn05mWr1y5QuXKlU3LRqMRa2vrLHHE\nxcVRtmxZAFP5Op0OC4tHL/H8s/xLly5Rs2ZN0/KcOXO4evUqPXv25PXXXycyMhKlFF27dqVJkybs\n27ePtWvXsn//fmbNmsWOHTuIiIjgwIED9O3blx07dlC6dOnHniMh8ptc2BT/WsuWLdmzZw+3b99G\nKUVgYCBffvklzZo14+TJk9y4cQOj0cjOnTsf2bd58+bs3LkTpRS3b9/mrbfeIj09HUtLSwwGA/b2\n9rz44oumJB4REcGQIUMAaNOmDWFhYQDs3r2btLS0R8p3cnIyte4vXbrEyJEjsyT1iIgIRowYQbdu\n3bh8+bIp1kmTJvHbb78xePBgJk6cyNmzZ9m7dy9Tp07ltddew9fXl1KlShEbG5vn51OI3JCWuPjX\n6tWrx7hx4xg6dChGo5H69evz3nvvYWNjg6+vL8OGDaNkyZLUrl37kX3d3d2ZNWsWvXv3BsDPzw+9\nXo+LiwsBAQHMnTuX+fPnExgYyOeff06JEiX45JNP0Ol0+Pv7M3XqVEJDQ2nYsCF2dnaPlD9hwgR8\nfX3p3bs3VlZWzJs3L0sSHzVqFNOmTcPW1pbnn3+ehg0bEhMTw+jRo/Hx8eHTTz+lRIkSBAYGUr9+\nfXbv3k2PHj2wsbGhd+/ecquiKHQyi6EQQmiYdKcIIYSGSRIXQggNkyQuhBAaJklcCCE0TJK4EEJo\nmCRxIYTQMEniQgihYf8HTABu7K1WKykAAAAASUVORK5CYII=\n",
+ "text/plain": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "\n",
+ "\n",
+ " Classification Report for 1rst Attempt to Train Model \n",
+ "\n",
+ "\n",
+ " precision recall f1-score support\n",
+ "\n",
+ " 0 0.92 0.97 0.94 2518\n",
+ " 1 0.62 0.33 0.43 329\n",
+ "\n",
+ "avg / total 0.88 0.90 0.89 2847\n",
+ "\n"
+ ]
+ }
+ ],
+ "source": [
+ "report_clf(\n",
+ " y_train,\n",
+ " xgb_y_pred,\n",
+ " xgb_cls_1_proba,\n",
+ " title=\"for 1rst Attempt to Train Model\",\n",
+ " cmap=\"Greens\",\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 29,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "image/png": "iVBORw0KGgoAAAANSUhEUgAAAiwAAAJaCAYAAAAMDBw1AAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDIuMS4wLCBo\ndHRwOi8vbWF0cGxvdGxpYi5vcmcvpW3flQAAIABJREFUeJzs3Xd8U9X/x/FXRndLKVC2Zbcie6lM\npbKUvREEERAcqKCC8hUEQTaIAspQNuiPLcMFCAiCIEOQjYDsAmV2t0lzfn9cmzZ0QGnT2/F5Ph48\naNLk5pOTNPedc84916CUUgghhBBCZGNGvQsQQgghhHgQCSxCCCGEyPYksAghhBAi25PAIoQQQohs\nTwKLEEIIIbI9CSxCCCGEyPYksOQily9fpmLFirRt29b+r02bNqxatSrTHuOLL77g+++/T/M2bdu2\nJSwsLNMeM6mgoCBat25N27ZtadeuHc2bN6djx44cOXIk0x/r8uXL1KhRA4AZM2YwevToFG8XFhbG\np59+6lDXypUrM70eZwoLC7O/Z5o2bUrVqlXtlydOnMiaNWsYMGCA0x4/KCiI27dvp+s+PXv25Oef\nf052/ZEjRwgODk7xPrNmzeLZZ59l2LBhj1RnUidPnqRBgwaPdN/hw4dz9OjRVH9/+/ZtqlatysiR\nIx2uDw8Pp1evXvbLM2fOZMuWLY9UQ3r16dMnxdfo0qVLvPXWW+na1ty5c+3vrxo1ahAcHGy/fPHi\nxYfezpEjR3j77bfT9dgzZswgKCiI1atXO1wfFRVFjRo10v0+v337NkFBQQ+83Ycffsi8efPStW3h\nyKx3ASJzubu7s27dOvvl69ev06pVKypXrszjjz+e4e2/8847D7xN0sd3hkWLFlGgQAH75Xnz5vHp\np5+yfPlypz5uSmJjY3nppZdo3bo1a9euxWw2c+XKFXr37g1A586ds7ymR5EvXz7767Z3717GjBnj\n8DquWbNGr9Iy1apVq5gyZQq1a9d+5G1YrVaWLl3K119/TVRU1CNtY/fu3XTt2jXV369atYrnnnuO\njRs3MnjwYPLnzw/AvXv3HML53r17KV++/CPVkF67du1K8fqrV6/y77//pmtb/fv3p3///oAWPHv0\n6EGLFi3SXVOVKlWYPn16uu9XvHhx1q1bR8eOHe3Xbdq0CU9Pz3RvS2QdCSy5XJEiRShVqhTnz5/n\n+PHjrFq1iujoaLy9vVmyZAkrV67ku+++w2azkT9/fkaMGEG5cuWIjIzk008/5eDBg5hMJpo0acLg\nwYMZNmwYFSpUoG/fvkyfPp3Nmzfj4uKCn58f48ePp3DhwgQFBfHHH39QoEABvvzyS3744QdMJhNl\nypRhxIgR+Pv707NnT6pXr87BgwcJCQmhbt26jBkzBqMxfZ1+VquVkJAQfH197dfNmjWLTZs2YbPZ\nKFGiBCNHjqRIkSKEhoYycuRIzp07h9FopFu3bvTq1YtDhw4xefJk4uLiCA0NpV69eowbN+6hHv/H\nH3/E09OTV1991X5diRIl+Pzzz7FYLAAEBwfzxRdfUKVKFYfLfn5+9OjRg3LlynHlyhVq1qyJp6cn\nI0aMAOC3335j5syZrFy5koMHDzJlyhSio6MxGo0MHDiQxo0bO9SyfPlytm3bxuzZswE4e/YsvXv3\nZvv27Xz55ZcpvlbpERoaSv/+/QkJCcFkMjF16lTKlStHz5498fX15dy5c7z44ou0a9eOsWPHcvr0\naSwWC3Xr1mXo0KGYzeZU3zOgffM9fPgwd+/epW/fvvTo0QMg1fdQUt9++y2LFi3C29ubwMDAFOsf\nNGgQ169f56OPPuKdd96hZs2ajBo1iitXrqCUol27dvTr14/Lly87vC5LlixxaKvjx49z6tQpZs6c\nSZ8+fezX33+/hQsXMnv2bA4ePIiLiwslS5Zk/PjxzJ07lxs3bvD+++8zadIkqlWr5lCnzWZj+fLl\njBw5kqioKFasWGHfuQ8bNoyYmBjatm1Lly5dOHr0KJMmTcJkMvHMM88wZcoU9u3bR3x8PE888QTD\nhw/H29ub4OBgWrVqxZ49e7h37x79+vXj4MGDHDt2DLPZzKxZsyhSpAjBwcG0bNmSXbt2ER4eziuv\nvEL37t3tPVIvv/wyc+fOpVixYgDEx8czfPhwrl+/Tt++fZk3bx5btmxh5syZ2Gw2vLy8GDZsGFWr\nVk3Xey04OJiqVaty6tQp3n33XcxmM3PmzCEuLo7bt2/Trl07Bg0aZA/XGzdu5MMPP8Tb25tTp05x\n7do1goKCmDhxIl5eXsm237BhQ7Zs2cK1a9coWrQoAGvXrqVNmzacO3cO0HqzPvnkE06ePInBYKBh\nw4b2WjZt2sS0adPw8PCgcuXKDttO7TNVZAIlco1Lly6p6tWrO1x38OBBVadOHXX16lW1evVqVadO\nHRUeHq6UUmrv3r2qe/fuKioqSiml1M6dO1WLFi2UUkqNGzdODR48WFmtVhUbG6t69Oih9uzZoz74\n4AP1zTffqKtXr6qaNWuq2NhYpZRS8+bNU5s3b1ZKKRUYGKhu3bqlVq1apbp27aoiIyOVUkpNnz5d\n9enTRyml1EsvvaTefvttFR8fr8LDw1WDBg3UH3/88cDnGBgYqFq1aqVatWql6tevr4KDg9WYMWPU\nzZs3lVJKrV27Vg0aNEhZLBallFL/93//p/r166eUUurNN99UEydOVEopFRYWplq2bKnOnz+vBg8e\nrPbs2aOUUioiIkI99dRT6siRIw7tOX36dPXJJ58kq2f06NH2baamcePG6u+//052+dKlSyowMFDt\n27dPKaXUxYsX1VNPPWVv03feeUetWLFC3b17VzVr1kxdunRJKaXUtWvXVKNGjdSVK1ccHic8PFzV\nrl1b3bhxQyml1KRJk9Rnn32W5muVkj179qiWLVs6XLd69WpVu3Ztdf78eaWUUmPGjFHDhg1TSmmv\nZcLPSin14YcfqsWLFyullLJarer9999Xc+fOfeB7Zt68eUoppY4dO6YqV66s4uLiHvge+umnn9Tx\n48dV3bp17c97xIgRqnHjxg98LXr06KHmz5+vlNLeD61bt1YbN25M9rqk5v6/t/vvt2/fPtWiRQtl\ns9mUUtrrceDAgWR13G/79u2qXr16ymKxqB9//FE1bNjQ/n6+/zET2kAppWbMmKEmTJhgf7ypU6eq\nkSNH2h9v3LhxSimlfvjhB/X444+rEydOKKWUeuONN9SsWbPstxsxYoSy2WwqJCREPfXUU+rkyZNK\nqcS/6/slfb+cOXNG1atXT128eFEppdTu3btV/fr17Z85KUn6HBI0btxYzZw5UymllM1mUy+99JL6\n999/lVLa+79ixYrq1q1bDo/9wQcfqK5du6rY2FgVFxen2rVrp1atWpXs8RL+lkePHq3mzJmjlFLq\nypUrqmPHjmr16tWqf//+Simlhg4dqsaMGaNsNpuKjY1Vffr0UXPmzFGhoaGqVq1a6p9//lFKKTV7\n9mwVGBiolEr7MzXhs1M8OulhyWUSvn2B9u3Hz8+PyZMn278RBQUF4e3tDcD27du5cOEC3bp1s98/\nLCyMu3fvsnv3boYNG4bJZMJkMrF06VJA+xYCWs/N448/Tvv27WnUqBGNGjWibt26DrXs2LGDDh06\n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\n",
+ "text/plain": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "# plot the precision and recall against threshold\n",
+ "\n",
+ "\n",
+ "plot_pr_vs_th(\n",
+ " y_train, xgb_cls_1_proba, show=True, tag=\"for 1rst Attempt to Train Model\"\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "\n",
+ "\n",
+ "##### ROC Curve\n",
+ "\n",
+ "1) We can see that ROC curve is not hugging the top left corner. So ROC curve is not giving use the proper lift. What's wrong with it? The main reason for this is the class imbalances. i.e number of positive testcase i.e user said yes and subscribed a term deposit is much less than people who said \"no\"\n",
+ "\n",
+ "2) Typically in these cases of the imbalance class , you use the precision recall curve with a specific threshold, rather than roc curve, We will explore with the precision recall curve and the confusion matrix to solve the problem. \n",
+ "\n",
+ "##### Precision Recall Curve\n",
+ "\n",
+ "1) As we pointed out that for the imbalance dataset, the precision recall curve is better.\n",
+ "\n",
+ "2) if we want to find all the guys who are likely to accept the offer, we should aim for higher recall as explained in previous sections.\n",
+ "\n",
+ "\n",
+ "##### Confusion Matrix\n",
+ "\n",
+ "1) For the imbalance data, we can see the confusion matrix is not balanced, i.e TPR and FPR are less.\n",
+ "\n",
+ "2) We note that overall recall is 0.9 but for positive class (which we care more), it is only 0.38 and we would want to improve it.\n",
+ "\n",
+ "##### precision and recall vs threshold\n",
+ "\n",
+ "1) We also plotted, precision recall vs threshold and since for us recall is more important so we should choose our threshold accordingly.\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "### Strategy For Better Classifier for the Imbalance Data \n",
+ "\n",
+ "Can we do better than the current performance? The answer is yes and typically in these cases, we follow the following \n",
+ "techniques.\n",
+ "\n",
+ "1) Use the weighted class i.e give higher weight for the class 1 i.e 'yes'\n",
+ "\n",
+ "2) OverSampling of the Minority class and Undersampling of the minority class\n",
+ "\n",
+ "3) Use the SMOTE (synthetic Minority class oversampling)\n",
+ " \n",
+ " \n",
+ " "
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "\n",
+ "### Second Attempt At Model Training using Weighted Samples\n",
+ "\n",
+ "Lets use first approach i.e weighting the class to find the better model. The reason weighing the samples works is that we are saying to xgboost for a weight say 10, that consider each positive sample 10 times more important than 1 negative samples. In short, this is same as taking one positive sample and replicating it 10 times.\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 30,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "image/png": "iVBORw0KGgoAAAANSUhEUgAABrsAAANpCAYAAAC7O4KQAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDIuMS4wLCBo\ndHRwOi8vbWF0cGxvdGxpYi5vcmcvpW3flQAAIABJREFUeJzs3Xd4lMXax/HvbnqjJkGqgnSQF6RI\nERCUnhAIICqiICo2wALS5KCgYkEUEBAriCC9KkW6SDtwVLAhSkdaElI2Pdmd94/ISkhCEtLA/D7X\nlSvZp8zc++yw7Dz3zozFGGMQERERERERERERERERuQFZizoAERERERERERERERERkWulZJeIiIiI\niIiIiIiIiIjcsJTsEhERERERERERERERkRuWkl0iIiIiIiIiIiIiIiJyw1KyS0RERERERERERERE\nRG5YSnaJiIiIiIiIiIiIiIjIDUvJLhG5oZw+fZo6deoQEhLi/OnevTtLly7Ncn+HDh3o378/p06d\nyrRMu93OZ599RmhoKCEhIXTt2pW3336b5OTkwnxqAPz222/cc889hIaGcvr06Wsqo3PnzmzatMn5\neMeOHdSqVYtFixY5tx08eJBWrVphjMmynJ9++omhQ4dmW9/777+frr6catSoUabPMTY2lpdeeong\n4GC6d+9Ojx49WLJkSa7LvxajRo3ik08+ybfyfvvtN0aPHg3AiRMnGDhwoLONffrpp7kub8KECUyf\nPj3L/b///ju1atXiww8/TLf91KlTDBkyxPn4pZde4ueff851/blls9l46KGHnI+HDx/OkSNHCrxe\nERERESleatWqRXBwMCEhIfTo0YNOnTrRq1cvfvrpJ+cx8fHxvPnmm3Tq1Ing4GCCg4N59913SUxM\nTFfWihUr6Nu3r/Nz+7hx44iJicmy7tweX1DOnj1LUFAQISEh/PDDD9dUxqBBg5g7d67z8bFjx6hV\nqxZTpkxxbouIiKB+/frYbLYsyzl//jz33XdftvW1b98+3Wt0uUceeYSLFy/mIvq0Pmz79u0z3Xfk\nyBEef/xx52v/4IMPsn///lyVf62u9jyvxYIFC5z9+x07djjvZfTs2ZPvvvsu1+UFBQWxd+/eLPfP\nmzePWrVq8eOPP6bbvm3bNqZOnQpk7PsVpIMHD/Kf//wHSLt/8Oijj2b4dywixZOSXSJyw/H09GTV\n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\nvTv33nsv99xzD02bNs1QR8eOHZ39zHXr1vHjjz9y8OBBevXq5exnXj5NZGamTJnC2rVrCQ4OZubM\nmZl+GXHr1q04HA6Cg4PTbR8wYADh4eFs376d5s2b89133zFx4sR0fb+4uLgc3WfIyfXMrN/esGFD\nTp06xTPPPAOkJZl//PHHDLOtiEjxYzFXjg8WERG5wvz586lbty6NGjUiOTmZBx54gCFDhji/1Xcj\n2bt3LxMnTuSrr74q0HrsdjuhoaF8+OGHGb4F+m9Tq1Ytdu/e7VwTICsnT55k+PDhLFq0KEff5hQR\nERERkRvbpeUE2rZti8PhYMiQIbRq1YoHHnigqEPLV9OnTycyMjLLtanzy6lTpxg2bBjLli37V/ep\nctNvX758OX/88Ue69dFEpHjSyC4REclW9erVmThxIj169KBnz560bdv2hkx0FSYXFxcmTpzIlClT\nijqU68Z7773nXLtARERERET+/WrUqMGsWbMICQkhKCiIwMDAdCPXJHcqV65Mjx49WLhwYVGHcl2I\ni4vjq6++YsiQIUUdiohcBzSyS0RERERERERERERERG5YGtklIiIiIiIiIiIiIiIiNywlu0RERERE\nREREREREROSG5VrUAeRUWJgtX8opXdqbyMj4fClLiie1IckrtSHJK7UhySu1Icmr/GpDAQF++RCN\nSObUh5TrhdqQ5JXakOSV2pDkldqQ5FVh9CGL3cguV1eXog5BbnBqQ5JXakOSV2pDkldqQ5JXakNS\nnKi9S16pDUleqQ1JXqkNSV6pDUleFUYbKnbJLhEREREREREREREREfn3ULJLRERERERERERERERE\nblhKdomIiIiIiIiIiIiIiMgNS8kuERERERERERERERERuWEp2SUiIiIiIiIiIiIiIiI3LCW7RERE\nRERERERERERE5IalZJeIiIiIiIiIiIiIiIjcsJTsEhERERERERERERERkRuWkl0iIiIiIiIiIiIi\nIiJyw1KyS0RERERERERERERERG5YSnaJiIiIiIiIiIiIiIjIDUvJLhEREREREREREREREblhKdkl\nIiIiIiIiIiIiIiIiNywlu0REREREREREREREROSGpWSXiIiIiIiIiIiIiIiI3LAKNNl14MAB+vfv\nn2H7li1b6NWrF3379mXx4sUFGYKIiIiIiIjcINSHFBERERGRa+FaUAV/9NFHrF69Gi8vr3TbU1JS\n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\nRgX123ivOHbsmMLDw90+FgCUVKzsAgDcMvfee68iIyO1bds2Pfjgg4qKilJ2drbatm2r7t27yzAM\n9e3bV3369JHT6VTHjh3VunVrjRgxQtHR0fL19VW9evVUpUoVHTt2zNO3AwAAAADFXn751L333qvP\nP/9cjz76qHx9fdWlSxfVrVtXkyZN0uTJk9W5c2dJ0syZM/M8r+v36tWrp9jYWMXExCgzM1N/+MMf\n9OKLL8rX1/e64/1Whw4d1LVrV7333ntXXe/SpYtmz56tv/71r5KkChUqaNq0aRo1apScTqcqVqyo\nWbNm5Rubj4+PRo0apWnTpumLL75Q/fr19cc//lGGYeiee+7R9u3bJUmtW7fWq6++qqCgoAJ9Hu3b\nt9e4ceMK/BkV1G/j7dKli4KCgvTPf/4z93MAAEiGaZqmp4MAAAAAAAAAgJJu+PDhGjlypO68884i\nG2Pfvn2aP39+7vlhAAC2MQQAAAAAAAAAt3juuee0ZMmSIh3jjTfe0MSJE4t0DAAoaVjZBQAAAAAA\nAAAAgBKLlV0AAAAAAAAAAAAosSh2AQAAAAAAAAAAoMSi2AUAAAAAAAAAAIASi2IXAAAAAAAAAAAA\nSiyKXQAAAAAAAAAAACix/h8Z/fHHzaJZwwAAAABJRU5ErkJggg==\n",
+ "text/plain": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "image/png": "iVBORw0KGgoAAAANSUhEUgAABrsAAANpCAYAAAC7O4KQAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDIuMS4wLCBo\ndHRwOi8vbWF0cGxvdGxpYi5vcmcvpW3flQAAIABJREFUeJzs3Xd4VFX6wPHv3OmTSa9ASIBAQq8i\nUkRwVQRBRMWGWLGtFX/WdREUEFFWBUVd67o2RBB1raigsAoIovReQnrvyfTz++PCkDgTQBcV5P08\nj4+TmXfOOXPPvSfhvnPOMSilFEIIIYQQQgghhBBCCCGEEEIch7Q/ugFCCCGEEEIIIYQQQgghhBBC\n/FqS7BJCCCGEEEIIIYQQQgghhBDHLUl2CSGEEEIIIYQQQgghhBBCiOOWJLuEEEIIIYQQQgghhBBC\nCCHEcUuSXUIIIYQQQgghhBBCCCGEEOK4JckuIYQQQgghhBBCCCGEEEIIcdySZJcQQgghhDim5ebm\n0qlTJ0aPHh3879xzz2XBggVHrY7Zs2fz/vvvHzJm9OjRVFdXH7U6G8vKymLUqFGMHj2a8847j2HD\nhnHBBRewYcOGo15Xbm4uvXr1AuDpp5/m4YcfDhtXXV3NtGnTmrTr3XffPert+S1VV1cHz5kzzzyT\n7t27B3+eOXMm7733HjfccMNvVn9WVhbl5eW/6D3jx4/ns88+C3l+w4YNnH766WHf89xzzzFkyBDu\nv//+X9XOn376iX79+hEIBILP3XnnnXTt2pXa2trgc1OmTOHxxx8/ZFlHci0d6rh//fXXzJ49+xe0\nXnfDDTfw3nvvhX3txRdfDI4bI0eOZObMmXg8nl9cxy91NM6vb775hieffBKA9evXc8kllzB69GhG\njRrFBx988IvLO9RxAliyZAlZWVl88sknTZ5fv349Dz74YPDna6655hef279GTk4Ot956KwB+v58b\nbriBsrKy37xeIYQQQghx/DH90Q0QQgghhBDicGw2W5Mbu0VFRYwcOZKuXbvSsWPH/7n822+//bAx\nv+bG8i/x2muvERcXF/z55ZdfZtq0abzzzju/ab3huN1uLr/8ckaNGsWiRYswmUzk5eVx1VVXATB2\n7NjfvU2/RlRUVLDfVq1axdSpU5v046Fu+h9PFixYwKxZszjppJN+1fu7d+8OwLZt2+jUqRM+n49V\nq1bRr18/li9fzvDhwwFYuXIlU6dOPWRZR3ItHcqGDRuoqqr6n8po7NNPP+XLL7/knXfewWaz4Xa7\nue2223jmmWe48847j1o9v4Xa2lpmzZrF/PnzUUpx22238cgjjzBgwAAKCwsZM2YMPXr0oE2bNket\nzrfeeotRo0bxr3/9ixEjRgSf37lzJ0VFRcGfv/3226NW56Hk5+ezZ88eAIxGIxMmTOChhx5izpw5\nv0v9QgghhBDi+CHJLiGEEEIIcdxJTk4mPT2dvXv3snnzZhYsWEBDQwNOp5PXX3+dd999l7fffptA\nIEBMTAyTJk0iIyODuro6pk2bxtq1azEajZxxxhlMnDiR+++/nw4dOnDttdcyZ84cvvjiC8xmM7Gx\nscyYMYOkpCSysrJYsWIFcXFxzJ07l48//hij0Ujbtm2ZNGkSiYmJjB8/np49e7J27VoKCgro378/\nU6dORdN+2YIKPp+PgoICoqOjg88999xzLF68mEAgQKtWrZg8eTLJycmUlJQwefJkdu/ejaZpXHLJ\nJVxxxRX89NNPPP7443g8HkpKShgwYACPPPLIEdX/ySef4HA4uO6664LPtWrViqeeegqv1wvA6aef\nzuzZs+nWrVuTn2NjYxk3bhwZGRnk5eXRu3dvHA4HkyZNAvSZKs888wzvvvsua9euZdasWTQ0NKBp\nGrfccgtDhw5t0pZ33nmHpUuX8vzzzwOwa9currrqKr7++mvmzp0btq9+iZKSEq6//noKCgowGo38\n4x//ICMjg/HjxxMdHc3u3bu59NJLOe+885g+fTrbt2/H6/XSv39/7rnnHkwmU7PnDOiz59atW0dl\nZSXXXnst48aNA2j2HGrsrbfe4rXXXsPpdJKZmRm2/XfccQdFRUU88MAD3H777fTu3ZspU6aQl5eH\nUorzzjuPCRMmkJub26RfXn/99WAbNU1j0KBBrFq1ik6dOvHDDz+QlZXF2WefzZIlSxg+fDhFRUWU\nlZUFZwU2d43dd999wWvpm2++YdasWWiaRqdOnfjuu+946623mj3utbW1zJs3D7/fT2RkJBMnTmy2\nnqKiIu677z6Ki4tp2bJls7N9SkpK8Pv9uFwubDYbVquVSZMmBWcl7dmzh4cffpi6ujpKSkro2LEj\nTz31FFarlW7dunH11Vfz3XffUV9fzy233MJnn33G9u3bSUpK4vnnn8fhcNC5c2euu+46li9fTn19\nPXfeeSdnnXVWk3bU1NT84vPnrbfeYtCgQdjtdtxuNzfffDMDBgwAICUlhbi4OAoLCykqKuLJJ5+k\ndevW7NixA5/Px0MPPUSfPn2O+DiBPovq+++/Z+nSpYwYMYKffvqJnj17UlBQwJw5c6ipqWkye/DK\nK6/khRdeQNM0Hn74YQoKCvB6vZxzzjnceOON5ObmcuWVVzJw4EA2btyI3+/ntttu45133mH37t10\n7dqVJ554gvz8fMaPH8+pp57KunXrUErx4IMP0qtXL/7+979TVFTEtddey8svv0zfvn2ZPHkyW7Zs\noVOnTs1+FiGEEEIIcQJSQgghhBBCHMNycnJUz549mzy3du1a1bdvX5Wfn68WLlyo+vbtq2pqapRS\nSq1atUpddtllqr6+Ximl1PLly9XZZ5+tlFLqkUceURMnTlQ+n0+53W41btw4tXLlSnXvvfeql156\nSeXn56vevXsrt9utlFLq5ZdfVl988YVSSqnMzExVVlamFixYoC6++GJVV1enlFJqzpw56pprrlFK\nKXX55Zer2267Tfn9flVTU6MGDRqkVqxYcdjPmJmZqUaOHKlGjhypBg4cqE4//XQ1depUVVpaqpRS\natGiReqOO+5QXq9XKaXUvHnz1IQJE5RSSt18881q5syZSimlqqur1TnnnKP27t2rJk6cqFauXKmU\nUqq2tlb169dPbdiwocnxnDNnjnrooYdC2vPwww8Hy2zO0KFD1fr160N+zsnJUZmZmWr16tVKKaX2\n7dun+vXrFzymt99+u5o/f76qrKxUZ511lsrJyVFKKVVYWKgGDx6s8vLymtRTU1OjTjrpJFVcXKyU\nUuqxxx5TTzzxxCH7KpyVK1eqc845p8lzCxcuVCeddJLau3evUkqpqVOnqvvvv18ppfflgcdKKXXf\nffepf//730oppXw+n7rrrrvUCy+8cNhz5uWXX1ZKKbVp0ybVtWtX5fF4DnsOffrpp2rz5s2qf//+\nwc89adIkNXTo0MP2xbhx49Qrr7yilNLPh1GjRqmPPvoopF9+btGiReqmm25SSik1Y8YM9dprr6mi\noiJ18sknK5/PFzwHlTr0NXbgWiovL1cnn3yy2rJli1JKqffee09lZmaqnJycQx73xufkoer561//\nqp588kmllFJ79+5VPXv2VAsXLgz5XNXV1erqq69WXbp0URdddJGaMWOG+v7774OvP/roo+r9999X\nSinl8XjUyJEj1WeffRbsv9dee00ppdQ///lP1atXL1VYWKj8fr8aM2aM+vDDD4Nxzz33nFJKqS1b\ntqg+ffqosrIytXDhQnX99dcrpX7d+TNmzJjgNfxz8+bNU6eddppqaGhQK1euVJ06dVKbN28OljFu\n3LhfdJyUUmrmzJnq1ltvVUopNWXKFHX77bcHX2v8WQ585rKyMqWUUuPHj1dfffWVUkopl8ulxo8f\nrz7++OPgOffll18qpZR68MEH1dChQ1VNTY1yuVxq4MCB6ocffgjGHTieX3/9tRo4cKDyeDxhr9up\nU6eq2bNnh/0MQgghhBDixCUzu4QQQgghxDHP5XIxevRoQN+3JTY2lscff5wWLVoA+t5ITqcT0Pf8\nyc7O5pJLLgm+v7q6msrKSr777jvuv/9+jEYjRqORN954A4BFixYB+oyxjh07MmbMGAYPHszgwYPp\n379/k7YsW7aM888/H4fDAcAVV1zB888/H9wDaOjQoWiahtPpJD09/YiXZDuwjOGmTZu4/vrr6dev\nH/Hx8QAsXbqUDRs2cMEFFwAQCARoaGgA4LvvvuPuu+8GIDIyko8++giARx99lGXLlvH888+ze/du\n3G439fX1xMTEHLYtBoMBpdQRtTsck8lEz549AWjdujVZWVksWbKE/v37s3LlSqZPn86aNWsoKSnh\n5ptvblLvtm3baNmyZfA5p9PJmWeeyYcffshVV13Ff/7zH958880j6qsj0b17d9LT0wHo1KkTX3zx\nRfC1xssCfv3112zYsCG4V5zL5QIOf86MHDkyWLbH46G2tvaw5xDAihUrGDhwYHC218UXX8x///vf\nQ36W+vp61q5dyyuvvALo58P555/PsmXL6NGjR5N++bnBgwczY8YMAoEAS5cu5aWXXiIpKYlWrVqx\nceNGVq5cyWmnnRY8Fs1dYwesWbOGjIyM4DKjY8aMYdq0aUd03Bsf80Ndy/feey8A6enp9OvXL+zn\nioyM5JVXXiEnJ4eVK1fy/fffc/3113PZZZdx9913c/fdd/Ptt9/y4osvsnfvXoqLi6mvrw++f9iw\nYQCkpaWRmZlJcnIyAKmpqU2u7csvvxyAjh07kpmZyerVq0M+yy89f/bs2RM8Ro298MIL/Pvf/+al\nl17CZrMB0LJly+BMp86dOwfHtCM9Th6Ph/feey84+3PMmDFceumlFBQUBMfZcOrr61m9ejVVVVXB\nvdbq6+vZunUr3bt3x2w2B/eaS0tLo1evXsGxOikpiaqqKpKSkoiOjmbUqFEAnHbaaRiNRrZt2xa2\nztTUVNatW9dsm4QQQgghxIlJkl1CCCGEEOKY9/M9u37uQNIA9ETQ6NGjgwmgQCBAcXEx0dHRmEwm\nDAZDMLagoCB4sxj05dzeeOMNNmzYwIoVK3jkkUc49dRTueeee5qU37iMQCCAz+dr0tYDfk3SqEuX\nLtx///3cd999dOrUidTUVAKBABMmTOCyyy4D9BvTB260//wz5eTkEBsbyzXXXENWVhannnoqw4cP\nDy4PdiR69uzJm2++GfL8V199xZo1a4I3zxuX1zhRY7FYMJkO/lPjoosu4v3336esrIwzzjiDiIgI\n/H4/GRkZvPvuu8G4oqKiJvuWNX7/geXrMjIyaN26NcBh++pING7nz/vr5+fV7NmzycjIAPSki8Fg\nOOw5c6D8A32klDrsOXRA47YYjcbDfpZAIBDSx43L/nm/NBYXF0dqaiqLFy/GaDQGj/GQIUP44Ycf\n+P7774Of6VDXWOP2/rwtjZfzPNRxb9z25ur5+Xua+1wvvvgiffr0oXfv3rRu3ZqxY8eyZs0arrvu\nOu6++27uvPNO/H4/w4cPZ8iQIRQUFDQp12w2h338c437JxAIhPTXrzl/DAYDgUAgWIbH4+G+++5j\n586dzJs3j9TU1OBrzY07R3qcPvnkE6qrq5k6dWowKWkwGHj99dcPeU0dOOfmzZuH3W4HoLy8HKvV\nSkVFBWazucm53twxDHe8mjvnTSbTL14aVgghhBBC/PnJX4hCCCGEEOJPZdCgQXz88ccUFxcD8Pbb\nb3PllVcC0L9/fxYtWkQgEMDj8XDbbbc1mYGxdetWRo4cSUZGBjfccANXXXUVGzZsaFL+qaeeysKF\nC4OzP15//XX69u2LxWI5ap9h5MiRdO/enRkzZgQ/04IFC6itrQVg9uzZwRvQ/fv3Z+HChYC+L9CV\nV17J3r172bBhA3fddRdnnXUWhYWF7Nu3r8mN80M566yzqK2t5cUXX8Tv9wN6Eu3RRx8N3qyPi4tj\n48aNAKxatYqSkpJmyzvzzDPZtGkT8+fP56KLLgL0hFp2dnbw+G/ZsoVhw4ZRVFQU8v4Ds5Hmzp3L\n2LFjgSPrq6Np0KBB/Otf/0Iphcfj4aabbuKNN974Ve04knNo4MCBfPvttxQWFgIHZx8eitPppEeP\nHsFEZU1NDe+//35wn6fDGTx4MM8++yxDhgwJPjdkyBA++OADEhMTg4nIQ11jB/Tu3Zu9e/eydetW\nAD7//PNggudQjEZjMDl3qHpOPfVU3nnnHQDy8/NZtWpV2PJcLhf/+Mc/msw62759O507dwbgv//9\nLzfffDMjRowAYN26dcFz/pd4//33Adi0aRN79uyhb9++TV7/NedPmzZt2LdvX7CMu+66K7ivWeNE\n16Ec6XGaN28eN954I0uXLmXJkiUsWbKEKVOm8O6771JfX9+kX+BgPzmdTnr27Mmrr74K6Em8Sy+9\nlK+++uoIj5yuvLycZcuWAbBkyRLMZjOZmZkYjcbgPoEH5Obm0q5du19UvhBCCCGE+POTmV1CCCGE\nEOJPZdCgQVx33XVcc801GAwGnE4nzzzzDAaDgVtuuYXp06czevRo/H4/I0aM4KyzzmLJkiWAvgTZ\n8OHDueCCC3A4HNhsNv7+9783Kf/CCy+koKCAsWPHEggESE9PZ9asWYdt1wMPPEDXrl259NJLj+hz\nTJo0iXPPPZfly5czduxYioqKuOiiizAYDLRo0YJHH30UgAcffJApU6YwatQolFLccMMNdO3aleuv\nv54xY8bgcDhITk6md+/eZGdnB2fsHIrFYuHVV1/l8ccfZ9SoUcFlH2+66SbOP/98QL/xPmXKFN55\n5x26dOlCly5dDlneiBEj+O677+jevTugJ8vmzJnDY489htvtRinFY4891uxN/LFjx/Lss89yxhln\nAEfWV0fTAw88wPTp0xk1ahRer5cBAwYwYcIEzGbzL27HkZxDWVlZ3H333Vx55ZVEREQEj9vhzJo1\ni4cffpj33nsPj8fDqFGjOP/888nLyzvsew8kuyZNmhR8rlu3bpSWlgZnFcKhr7EDYmJieOKJJ7j3\n3nvRNI2uXbtiMpmCs3+ac8opp3DXXXcxdepUJk2a1Gw9kydP5v7772f48OGkpKQEl0v8ub/+9a8Y\nDAYuueSS4Eyprl278tRTTwEwceJEbr75ZhwOB06nk759+zZJMB2ptWvXMn/+fAKBAE8++WSTWW7w\n686fs88+m+XLl3PKKafw448/8vnnn9OmTZsmY8hdd911yET7kRynrVu3smXLFp599tkmz5933nk8\n99xzLFq0iEGDBjF37lxuueUWnnnmGc4++2zGjx/P008/zaxZs5g6dSqjRo3C4/EwcuRIzj33XHJz\n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\nvUWtw9vojndv05QNf9bgjkPVLLjZBZ3D8t13OhEWJrO0loqsI4RdXta+fUdt27ZFKSk9tXHjp0pJ\n6an4+FaaP3+Ohg5NV05OjtxuUxERERfUFgAAAAAAAABQfw0fXqqrrnKquNgTaiUmusuP/fvfBXK7\nqz6nWbOK0Gfy5GJlZFQdwRUUVNFmxQqbli61a+FCu4KCTPXu7VJamlNXX+1Sx47VXKAeIeyqHV2a\nJWtM199r+qYp2n4sU9cmXKdSV6kCrOc3pWbJ1dfIuf1/kh+v1yURdnnduHH3a+bMqXruuXlKTGyt\nPn3SZLValZzcTaNHj5BpmsrIeOiC2wIAAAAAAAAA6i/DkNq1MyVVDXIuvfTcQZQnAKo5BHryyWIN\nHOjURx/ZtHq1VatX27R6tU09erj0n/8USJLee8+q5csD1Lq1W4mJbiUkmEpMdKt5c1PWqrMk1pnY\nWM/3wLNuV/0O5vxNetLdSk+6Ww57mPJL89VjyWW6vHlvDWh7s36V2F9NAsPP+lzTESaby1WH1dYO\nwzRNv4hQjx074+sSahQdHVbvawQAb6PvA9AY0fcBaIzo+wA0NvR78Bfffmto9WqbLBbpjjs889A9\n8YRdc+ZUXRQrONjU/v15slo9z3vrLZsSE83yUKxJk9qt9c03bRozJlhPPlmkESP8fM68emz3iV26\nd9Vd2p27S5Jkt9h1Tau+GtD2Ft3UZoDC7JXf6MDX/injj/fr7ciVan5USj7awxdln5fo6LMv+cTI\nLgAAAAAAAAAA/FB8vKn09MrB0cSJJbrrrlIdOmTRwYMWHTxo6OBBiwoLVT6ya/t2q6ZMCar0vIgI\nU/Hxbi1aVKg2bUy53dKiRQGKiTF/eLgVG2sqNNQziu1C/XgaQ9SejlGdtH7oZu05sVv/3v+2Vux7\nWx8cXKUPDq5SSkxPhUVVDrvMUIfsTqdORUixx3xUtBfUWtjldrs1efJk7d69W3a7XU888YQSExPL\nj7/22mt69dVXZbPZNGbMGPXt27e2SgEAAAAAAAAAoFGw2aSEBFMJCS798pfVT0/Xs6dLixcXlgdh\nhw5ZdOCAoQMHLAoO9rQ5ccLQI48EVXluSIipGTOKdPvtTknS/PkBKioyygOxmBhTsbGmmjUzZftR\nAhEbS9hVlzpEdVRG1IPK6Pmg9p/ap3WH/6sOUR2rtHMmXaaQJmef5tBf1FrY9eGHH6qkpETLli1T\n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\n5xCEyxp0AAAAAElFTkSuQmCC\n",
+ "text/plain": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "# setup the figure\n",
+ "fig1 = plt.figure(figsize=(30, 15))\n",
+ "\n",
+ "# plot one for PR curve\n",
+ "ax1 = fig1.add_subplot(1, 2, 1)\n",
+ "ax1.set_xlim([-0.025, 1.025])\n",
+ "ax1.set_ylim([-0.025, 1.025])\n",
+ "ax1.set_xlabel(\"Recall\")\n",
+ "ax1.set_ylabel(\"Precision\")\n",
+ "ax1.set_title(\"PR Curve for Weigted Samples (2nd Attempt)\")\n",
+ "\n",
+ "# plot 2 for ROC curve\n",
+ "ax2 = fig1.add_subplot(1, 2, 2)\n",
+ "ax2.set_xlim([-0.025, 1.025])\n",
+ "ax2.set_ylim([-0.025, 1.025])\n",
+ "ax2.set_xlabel(\"False Positive Rate (FPR)\")\n",
+ "ax2.set_ylabel(\"True Positive Rate (TPR)\")\n",
+ "ax2.set_title(\"ROC Curve for Weighted Samples (2nd Attempt)\")\n",
+ "\n",
+ "# plot the baseline ROC curve\n",
+ "ax2.plot([0, 1], [0, 1], \"k--\")\n",
+ "\n",
+ "\n",
+ "fig2 = plt.figure(figsize=(30, 15))\n",
+ "# plot 3 for precision recall vs threshold curve\n",
+ "ax3 = fig2.add_subplot(1, 1, 1)\n",
+ "ax3.set_xlim([-0.025, 1.025])\n",
+ "ax3.set_ylim([-0.025, 1.025])\n",
+ "ax3.set_xlabel(\"Threshold\")\n",
+ "ax3.set_ylabel(\"Precision and Recall\")\n",
+ "ax3.set_title(\n",
+ " \"Precision, Recall Curve vs Threshold for Weighted Samples(2nd Attempt)\"\n",
+ ")\n",
+ "\n",
+ "\n",
+ "xgb_models = {}\n",
+ "# try various weights and plot on the same figure for better comparasion\n",
+ "for pos_sample_weight, color in zip(\n",
+ " [1, 5, 20, 50, 100, 1000, 10000], \"bgrcmykw\"\n",
+ "):\n",
+ " # create a model with pos_sample_weight and other default params\n",
+ " xgb_model = create_xgb_clf({\"scale_pos_weight\": pos_sample_weight})\n",
+ "\n",
+ " # store the model for future use\n",
+ " xgb_models[pos_sample_weight] = xgb_model\n",
+ "\n",
+ " # find the prediction with probabilities for pos_sample_weight\n",
+ " xgb_predict_obj = find_cv_model_predict(\n",
+ " xgb_model, X_train, y_train, weight=pos_sample_weight\n",
+ " )\n",
+ "\n",
+ " xgb_cls_1_proba = xgb_predict_obj[\"proba\"][:, 1]\n",
+ " xgb_y_pred = xgb_predict_obj[\"pred\"]\n",
+ " y_act = y_train\n",
+ " y_score = xgb_cls_1_proba\n",
+ " label = pos_sample_weight\n",
+ " pr, rc, pr_th = precision_recall_curve(y_act, y_score)\n",
+ " tpr, fpr, _ = roc_curve(y_act, y_score)\n",
+ "\n",
+ " ax1.plot(rc, pr, c=color, label=label)\n",
+ " ax2.plot(tpr, fpr, c=color, label=label)\n",
+ "\n",
+ " ax3.plot(pr_th, pr[:-1], c=color, label=label)\n",
+ " ax3.plot(pr_th, rc[:-1], \"--\", c=color, label=label)\n",
+ "\n",
+ "\n",
+ "ax1.legend(loc=\"lower left\")\n",
+ "ax2.legend(loc=\"lower left\")\n",
+ "ax3.legend(loc=\"lower left\")\n",
+ "\n",
+ "plt.show()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "##### Analysis of Weighted model\n",
+ "\n",
+ "We have seen how ROC curve is not helpful for class imbalance dataset. We usually rellies on Precision vs Recall curve and Precisio/Recall vs threshold.\n",
+ "\n",
+ "We talked initially, how the recall is more important for our use case i.e we want to find all the people who are likely to accept the offer, even at some risk some of them rejecting it. \n",
+ "\n",
+ "Hence, we should have higher recall but good enough precision.\n",
+ "\n",
+ "Lets look at bottom picture, (double click to enlarge) for Precision,Recall vs Threshold curve.\n",
+ "dashed lines are recall and solid lines are precision. We see that golden color lines have good balance of higher recall and good enough precision. Which corresponds to weight 1000.\n",
+ "\n",
+ "For the weight of 1000 i,e golden line, both the top figure for ROC and Precision vs Recall curve is also reasonable and hence we will go with that weight.\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Lets also see the confusion matrix and classification report for the best weighted models\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 31,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "[ 0.99629873 0.99986863 0.48349929 ..., 0.99997461 0.99997461\n",
+ " 0.99616134]\n",
+ "[1 1 1 1 1 1 0 0 1 0 0 1 0 0 0 1 1 1 1 0 0 1 1 1 1 1 1 1 0 1 1 1 0 0 1 0 1\n",
+ " 0 1 1 1 0 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 0 1 0 1 1 1 1 0 1 0 1 1 1\n",
+ " 0 1 1 1 1 0 0 1 1 0 1 1 1 0 1 1]\n"
+ ]
+ },
+ {
+ "data": {
+ "image/png": "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\n",
+ "text/plain": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "image/png": "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\n",
+ "text/plain": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "\n",
+ "\n",
+ " Classification Report for 2nd Attempt to Train Weighted Model \n",
+ "\n",
+ "\n",
+ " precision recall f1-score support\n",
+ "\n",
+ " 0 0.99 0.36 0.52 2518\n",
+ " 1 0.17 0.98 0.28 329\n",
+ "\n",
+ "avg / total 0.90 0.43 0.50 2847\n",
+ "\n"
+ ]
+ },
+ {
+ "data": {
+ "image/png": "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\ntvv+++8rJiZGdrtdrVq1UmxsrL766qt890H47rvvlJycrDVr1khy/ZLO+X8hSW3btpXkWs/Kly/v\n3kRcuXLlXP/3evXqJZvNpquuukrNmjVTXFycoqOjL7rsHOvWrdNtt92m6667TpLUqFEjlS1bVtu3\nb9dtt91WoDZy5KxTNptNs2bN0nfffadly5bp119/lTHG/f/6XM2aNVNQUJAk12jDhf6m1K1bVwkJ\nCUpKStLKlSv12GOPqVixYrrtttu0bt06/frrr7r99tslyT1SlrOJN6eec/ez2bt3ryS5X3Pbbbep\nWrVq7vnXXXedbrrpJklS9erV9fHHH59X08WWs3btWg0bNkw2m01ly5ZVmzZtLtpvOfvSDR8+XN98\n841atmypwMBA9/xVq1Zp4MCBKlasmCTXJrmnnnpKe/fuld1ud/+f7NChg3sfm4L0w5WKwFKE/roP\ny1/l/OGXXF/mnTp1cn+JO51OHT16VKVLl5bdbpfNZnM/NyEhQcHBwe7HAQEBmj9/vrZt26a1a9dq\n/PjxatasmV544YVc7Z/bhtPpVFZWVq5ac1zKF/+NN96ooUOHasiQIapRo4auvfZaOZ1O9zC8JDkc\nDvcfrb++pwMHDig8PFyPPPKIoqOj1axZM919993aunVrgWupW7euFixYcN70b7/9Vhs3btTgwYMl\nKVd7537ZBgUFyW4/+1/i3nvv1dKlS3X8+HG1bt1aoaGhys7OVmRkZK4deY8cOZJrP55zX5+zWS8y\nMtL9xZHfZ1UQ59b518/rr+vV66+/rsjISEmuEGyz2fJdZ3Laz/mMjDH5rkM5zq3l3D/OeXE6ned9\nxue2/dfP5a/mzp2r2bNn69VXX1Xjxo1zzStevPh57+Ov8qrx0KFD+v7777Vjxw59/fXXklybPd9+\n++18A4vT6dSwYcPcX5ypqanKyMhwz8/5Ipfk/rK6kHPft9Pp9Ggz7V8/L8n1/i/0meUnZ51KS0tT\nly5d1Lp1azVo0EDdunXT8uXLL9ivBfmbYrfbddttt2nVqlXatWuXOxjdfvvt2rRpk3bv3q1hw4a5\n30+jRo302muvuV+fkJCgChUquAN7YGDgecs59/M9t6/zquliy5E8W78jIiJUs2ZNrVq1SkuXLtWQ\nIUN08uTJXMv66/+pnM3Xf60tZ10oSD9cqThKyCKaNm2qzz//XEePHpXk+mX30EMPSXL9MlqyZImc\n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\n6XTqsceeUL16DRQXt1pz574pSapWLVrPPz9U997bSQsWLNK6dXGaP/8d2e12XX31NRox4kXNnfum\nypUrp86du2vatH/r55+3SJLatLlL9957n8aNG61ixYrp8OEEHT9+TMOGjVZ0dHVfdgcAAIWiyAJL\n5cqVNW3aNL3wwgu5pv/666+qXLmySpcuLUmqX7++Nm7cqLvvvvuyl1m/fugFpz/5pEOPPpr55/1g\nrV9//umD69fP1uzZZyRJ8+YV02uvBWnTptQCLXfTpo3q37+fAgICZLfbNXDg81qw4F21aXOXbr+9\nhZYsWaTSpcto6NBROnUqSU891U9vv/2e/v3vyXrzzXcUHl5Wc+e+qaNHj7rb/Oab/6pHj15q3fpO\nffnlMqWmnq0lLm61EhLiNXv228rOztYTTzyq+vUbSpKuuupqvfDCcH366RJ9+uliPf/8sPPqTclM\n0bDVz2voHS/o6oCqBXqPAAD4UpEFljvvvFMHDx48b3pKSkquTSWhoaFKSUnJt73w8JB8r1MQkMcu\nxCVLBisiIliSFBxc7ILPK148QBERxf58vquti12EKUeZMiFq3LiR/v3vf+ea/tFH76lu3ZqKiCip\n+Ph92rRpkwYN2v3nXKcCAhwKDy+jqKgqkqQXXhgkSQoMDFBEREmNHj1Sb7zxhj7/fKn+8Y9/qGvX\nGIWGFldYWLCOHYtXkya3qUKFUpKkBg3q6cSJBAUHF1ODBnUVEVFS1apdr//9b+cF38Pe/T/rg90L\nFBlxvca2HJvve/QXBfm8/Qn9kRv9cRZ9kRv9cVZR9oXXd7oNCwvLNVqQmppaoH09CnIFyA0b8p6X\nmOjqyFdfzfuqz4mJrtvOnV3/ch5fTFJSmjIyMs+7mrTDkaWkpHQlJiarQoVKuuOOcD344CPKyDij\nd955S1KwkpJO6ddfD6pUqdJ67bUpatv2bmVnO5WYmKx3352nXr0eVnh4WU2ePE6LF3+m1NQMBQef\nUUTENfrii0/Vvn03ZWVlacOGTbrjjjt15kymTp8+o8TEZJ06la4zZ86vS5LSkrMkSemZ6YVyFewr\nQURESfriHPRHbvTHWfRFbvTHWYXRFxcLPF4PLJGRkdq3b5+SkpIUEhKijRs36tFHH/V2GV7VqVNX\nTZo0Vv3791Nqaoq6dLlHAQEBGjRosJ5/foACAgIUFRWtGjVudL+mRo0bNWDAUypdurRCQkLUuHFT\n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\neQQWAABgeQQWAABgeQQWAABgeQQWAABgeQQWAABgeQQWAABgeQQWAABgeQQWAABgeQQWAABgeQQW\nAABgeQQWAABgeQQWAABgeQQWAABgeQQWAABgeQQWAABgeQQWAABgeQQWAABgeUUWWJxOp0aNGqUe\nPXrogQce0L59+3LNnzNnjrp27apu3brpm2++KaoyAADAFcBeVA0vX75cDodDCxcu1JYtWzRx4kTN\nnDlTknT69GnNmzdPX3/9tdLT09W5c2e1adOmqEoBAAB/c0U2wrJp0yY1a9ZMklS3bl1t377dPa9E\niRK65pprlJ6ervT0dNlstqIqAwAAXAGKbIQlJSVFYWFh7seBgYHKysqS3e5a5NVXX6327dsrOztb\njz/+eFGVAQAArgBFFljCwsKUmprqfux0Ot1hZdWqVTp69Ki+/fZbSdKjjz6qevXqqU6dOnm2Fx4e\nIrs98LLriogoedltXEnoj7Poi9zoj9zoj7PoCyk75ez3G/1xVlH2RZEFlnr16mnlypVq166dtmzZ\noqioKPe80qVLKzg4WEFBQbLZbCpZsqROnz590fZOnky77JoiIkoqMTH5stu5UtAfZ9EXudEfudEf\nZ9EXLsfSUtz36Q+Xwlg3LhZ4iiywtGnTRnFxcerZs6eMMRo/frzmzp2rypUrq1WrVlqzZo3uvfde\nBQQEqF69emrSpElRlQIAAP7miiywBAQEaMyYMbmmRUZGuu8/88wzeuaZZ4pq8QAA4ArCieMAAIDl\nEVgAAIDlEVgAAIDlEVgAAIDlEVgAAIDlEVgAAIDlEVgAAIDlEVgAAIDlEVgAAIDlEVgAAIDlEVgA\nAIDlEVgAAIDlEVgAAIDlEVgAAIDlEVgAAIDlEVgAAIDlEVgAAIDlEVgAAIDlEVgAAIDlEVgAAIDl\nEVgAAIDlEVgAAIDlEVgAAIDlEVgAAIDlEVgAAIDlEVgAAIDlEVgAAIDlEVgAAIDlEVgAAIDlEVgA\nAIDlEVgAAIDlEVgAAIDlEVgAAIDlEVgAAIDlEVgAAIDlEVgAAIDlEVgAAIDlEVgAAIDlEVgAAIDl\nEVgAAIDlEVgAAIDlEVgAAIDlEVgAAIDlEVgAAIDlEVgAAIDlEVgAAIDlEVgAAIDlEVgAAIDlEVgA\nAIDlEVgAAIDlEVgAAIDlEVgAAIDlEVgAAIDlEVgAAIDlEVgAAIDlEVgAAIDlEVgAAIDlEVgAAIDl\nEVgAAIDlEVgAAIDlEVgAAIDlEVgAAIDlEVgAAIDlEVgAAIDlEVgAAIDlEVgAAIDlEVgAAIDlEVgA\nAIDlEVgAAIDlEVgAAIDlEVgAAIDlEVgAAIDlEVgAAIDlEVgAAIDlEVgAAIDlEVgAAIDlEVgAAIDl\nEVgAALhERsbXJfgNAgsAAB6yyebrEvwOgQUAAFgegQUAAFgegQUAAFgegQUAAFgegQUAAFgegQUA\nAFgegQUAAFgegQUAAFgegQUAAFgegQUAAFgegQUAAFgegQUAAFgegQUAAFgegQUAAFgegQUAAFge\ngQUAAFgegQUAAFievagadjqdGj16tPbs2aOgoCCNHTtWVapUcc///vvvNWPGDElSzZo1FRsbK5vN\nVlTlAACAv7EiG2FZvny5HA6HFi5cqOeee04TJ050z0tJSdGUKVM0a9Ysffjhh6pUqZJOnjxZVKUA\nAIC/uSILLJs2bVKzZs0kSXXr1tX27dvd83766SdFRUVp0qRJ6tWrl8qXL6+yZcsWVSkAAOBvrsg2\nCaWkpCgsLMz9ODAwUFlZWbLb7Tp58qTWr1+vpUuXKiQkRL1791bdunVVtWrVPNsLDw+R3R542XVF\nRJS87DauJPTHWfRFbvRHbvTHWfSF5ExJc9+nP84qyr4ossASFham1NRU92On0ym73bW4MmXKqHbt\n2oqIiJAkNWjQQLt27bpoYDl5Mi3PeQUVEVFSiYnJl93OlYL+OIu+yI3+yI3+OIu+cDmWluK+T3+4\nFMa6cbHAU2SbhOrVq6dVq1ZJkrZs2aKoqCj3vFq1amnv3r06ceKEsrKytHXrVt1www1FVQoAAPib\ny3OE5YEHHrjoUTvvvvvuRRtu06aN4uLi1LNnTxljNH78eM2dO1eVK1dWq1at9Nxzz6lv376SpLvu\nuitXoAEAADhXnoHl6aefvqyGAwICNGbMmFzTIiMj3ffbt2+v9u3bX9YyAACAf8gzsHBOFAAAYBV5\nBpapU6fm+SKbzZbvJiEAAIDCkmdgmTdvnjfrAAAAyFO+hzVv2bJFb7zxhtLS0mSMkdPpVHx8vFas\nWOGN+gAAAPI/rHnYsGFq3bq1srOz1bt3b1WsWFGtW7f2Rm0AAACSCjDCEhQUpG7duunQoUMqVaqU\nJk+erJiYGG/UBgAAIKkAIyzFixdXUlKSqlatqq1btyowMFDZ2dneqA0AAEBSAQJLnz59NHDgQLVo\n0UKffPKJ2rdvr1q1anmjNgAAAEkF2CR09913q02bNrLb7froo4+0e/du1atXzxu1AQAASCrACMsX\nX3yhLl26SJJOnDihQYMGcYQQAADwqnwDy8yZMzV37lxJUuXKlbVkyRJNmzatyAsDAADIkW9gyczM\nVPny5d2Py5UrJ2NMkRYFAABwrnz3Yalfv74GDRqkmJgY2Ww2ffHFF6pbt643agMAAJBUgMASGxur\nefPmaeHChbLb7WrQoIF69erljdoAAAAkFfDEcXfeeaciIyPVtGlTJSQkKCgoyBu1AQAASCrgUUJP\nPPGExo0bp1OnTqlnz5765JNPvFEbAACApAIEljfffFPvv/++QkNDVa5cOS1ZskSzZ8/2Rm0AAACS\nChBYAgICFBYW5n5coUIFBQTk+zIAAIBCk+8+LNWqVdP8+fOVlZWlXbt26b333lP16tW9URsAAICk\nAoywjBo1SkeOHFHx4sU1bNgwhYWFafTo0V4oDQAAwCXfEZaQkBA999xzeu6559zTli1bpg4dOhRp\nYQAAADnyHGFZvny5mjRpovbt22vfvn2SpK1bt+qee+7R+PHjvVYgAABAniMsU6ZM0Ysvvqj4+HjN\nnDlT119/vd544w3df//9evzxx71ZIwAA8HN5BpagoCC1bt1aktS0aVMdPHhQn332ma699lqvFQcA\nACBdJLAEBga67wcHB+uNN95QaGioV4oCAAA4V577sNhsNvf9kiVLElYAAIDP5DnCEh8fr6FDh553\nP8eECROKtjIAAIA/5RlYhgwZ4r5/yy23eKUYAACAC8kzsHTp0sWbdQAAAOSJiwIBAADLI7AAAADL\nI7AAAADLy3MflurVq+c6tNlutyswMFAZGRkKCwvThg0bvFIgAABAnoFl9+7dkqTY2FjVq1dPHTt2\nlM1m03//+1+tXr3aawUCAADku0no559/VqdOndyjLXfeeae2b99e5IUBAADkyDewlChRQh9//LHS\n0tKUkpKiBQsWqHTp0t6oDQAAQFIBAsuUKVP0zTffqEmTJmrevLnWrVunyZMne6M2AAAASRfZhyVH\npUqVNGvWLG/UAgAAcEH5BpbVq1frtdde06lTp2SMcU//9ttvi7QwAACAHPkGlrFjx2rIkCGqVq1a\nrsOcAQDwd8cSfV2B/8g3sISHh6tFixbeqAUAgL+F/ftdP+BXrJDU3be1+It8A0v9+vU1YcIENWvW\nTMWLF3dPb9iwYZEWBgAAkCPfwPLzzz9Lknbu3OmeZrPZ9O677xZdVQAAWFhYmOv22ut8W4c/yTew\nzJs3zxt1AAAA5CnfwLJlyxa98cYbSktLkzFGTqdT8fHxWrFihTfqAwDActLSXLcHD/i2Dn+S74nj\nhg0bptatWys7O1u9e/dWxYoV1bp1a2/UBgCAJQUVc93mbBpC0ct3hCUoKEjdunXToUOHVKpUKU2e\nPFkxMTHeqA0AAEuy/xlYyoT7tg5/ku8IS/HixZWUlKSqVatq69atCgwMVHZ2tjdqAwAAkFSAwNKn\nTx8NHDhQLVq00CeffKL27durVq1a3qgNAABAUgE2Cd1999266667ZLPZ9PHHH+uPP/5Q9erVvVEb\nAACApAIEFknuU/KHhISoZs2aRVoQAABWl3OlmmIF+hZFYch3kxAAAMgtPNx1MeCGt/i4ED9CYAEA\nAJaX72DWoUOHNH/+fJ06dUrGGPf0CRMmFGlhAABYVabDdXvypG/r8Cf5BpYBAwaoQYMGatCggXtf\nFgAA/Flyiuv7cNcuSZ19W4u/yDewZGVlafDgwd6oBQAA4ILy3Yelfv36WrFihRwOhzfqAQAAOE++\nIyxfffWV5s+fn2uazWbTrl27iqwoAACAc+UbWH744Qdv1AEAAJCnfANLenq6pk+frrVr1yo7O1u3\n3Xabnn32WYWEhHijPgAAgPz3YRkzZozS09M1fvx4TZo0SZmZmYqNjfVGbQAAWFKpkq7TfNxUx8eF\n+JF8R1h27NihTz/91P141KhRateuXZEWBQCAldmLuW5Dw3xbhz/Jd4TFGKPTp0+7H58+fVqBgYFF\nWhQAAFaWcx7Vc86niiKW7whLnz591L17d7Vs2VLGGK1cuVL9+vXzRm0AAFjSyZOuE8etXSvpDp+W\n4jfyDSzdunVT7dq1tWHDBjmdTk2bNk3R0dHeqA0AAEDSRTYJrVy5UpK0dOlS7dy5U6GhoSpZsqR2\n7dqlpUuXeq1AAACAPEdYtm3bphYtWmj9+vUXnN+5MxdPAAAA3pFnYHnmmWck5b4qc3Jysg4fPqxq\n1aoVfWUAAAB/yvcooY8++khDhgzRiRMn1L59ez3zzDOaNWuWN2oDAACQVIDA8v7772vQoEFatmyZ\nWrVqpc8++0xff/21N2oDAMCSSpRwHc9cubKPC/Ej+QYWSapQoYK+//573XHHHbLb7crIyCjqugAA\nsKwSJVy3117r2zr8Sb6B5YYbbtDjjz+ugwcPqlGjRhowYIBq167tjdoAAAAkFeA8LOPHj9dPP/2k\natWqKSgoSB07dtTtt9/ujdoAALCk5D9PAL9zhyS+Er0iz8CycOFC9ejRw72D7bmHN+/cuVP9+/cv\n+uoAALCgzCzXmW6TTvm4ED+S5yYhwwUSAACAReQ5wtKzZ09J0j//+U99//33atWqlU6cOKEVK1ao\nW7duXisQAAAg351uR44cmesw5vXr1ys2NrZIiwIAADhXvjvdbt++XZ999pkkqWzZspoyZYpiYmKK\nvDAAAIAc+Y6wOJ1OHT161P34+PHjCggo0OlbAAC4IhWzu/bzLF3ax4X4kXxHWP75z3+qS5cuql+/\nviRp69atGj58eJEXBgCAVZUs5bq98Ubf1uFP8g0sMTExuuWWW7RlyxbZ7XaNGDFCFSpU8EZtAAAA\nkgqwScjhcGjJkiX69ttvdcstt+jDDz+Uw+HwRm0AAFhSerrr9tAh39bhT/INLGPGjFFaWpp27twp\nu92u/fv3a9iwYd6oDQAAS0pPd504bt8+HxfiR/INLDt27NCgQYNkt9tVokQJTZo0Sbt37/ZGbQAA\nAJIKEFhsNpscDodsNleaPHnypPs+AACAN+S70+2DDz6ohx9+WImJiRo3bpyWL1+up556yhu1AQAA\nSCpAYGnevLlq1aql9evXKzs7WzNnzlT16tW9URsAAICkAgSW3r1768svv9QNN9zgjXoAAADOk29g\nqV69upYuXao6deooODjYPf2aa64p0sIAALCq8HDXmW4b3ebjQvxIvoFl69at2rp1a65pNptN3377\nbZEVBQCAleUce2LjSjVek29gWbFihTfqAADgbyM7y3WbmurbOvxJntnwyJEjeu6559SxY0fFxsbq\n9OnT3qwLAADLOnXaNcTylw0QKEJ5BpZhw4apQoUKGjRokBwOhyZMmODNugAAANzy3CR05MgRzZkz\nR5LUpEkTde7c2WtFAQAAnCvPEZZixYrlun/uYwAAAG8q8P7Nnp6O3+l0atSoUerRo4ceeOAB7bvA\nFaKcTqf69u2r999/36O2AQCAf8lzk9D//vc/tWrVyv34yJEjatWqlYwxBTqsefny5XI4HFq4cKG2\nbNmiiRMnaubMmbme89prr+nUqVOX+RYAAMCVLs/A8t///veyGt60aZOaNWsmSapbt662b9+ea/5X\nX30lm82m5s2bX9ZyAADwtrAw14njqlc3Pq7Ef+QZWCpVqnRZDaekpCgsLMz9ODAwUFlZWbLb7dq7\nd6+WLVumqVOnasaMGZe1HAAAvK14kGs3ifBwHxfiR/I9cdylCgsLU+o5Z9RxOp2y212LW7p0qY4c\nOaKHHnpIhw4dUrFixVSpUqWLjraEh4fIbg+87LoiIkpedhtXEvrjLPoiN/ojN/rjLPpCMqnp7vv0\nx1lF2RdFFljq1aunlStXql27dtqyZYuioqLc81544QX3/WnTpql8+fL5bho6eTLtsmuKiCipxMTk\ny27nSkF/nEVf5EZ/5EZ/nEVfuPzvkOsH+caNUuId9IdUOOvGxQJPkQWWNm3aKC4uTj179pQxRuPH\nj9fcuXNVuXLlXDvzAgDwd2P+3HUlM9O3dfiTIgssAQEBGjNmTK5pkZGR5z3v6aefLqoSAADAFYLr\nTAIAAMsjsAAAAMsjsAAAAMsjsAAA4KHixV173V51tY8L8SMEFgAAPBQa6rqter0vq/AvBBYAAGB5\nBBYAADyUkuK6/d8vvq3DnxBYAADwkMPhupbQsUQfF+JHCCwAAMDyCCwAAMDyCCwAAMDyCCwAAMDy\nCCwAAHgoMNB14rjgYB8X4kcILAAAeKh0adftzTf7tg5/QmABAACWR2ABAMBDGRmu22PHfFuHPyGw\nAADgodRU14nj/vc/HxfiRwgsAADA8ggsAADA8ggsAADA8ggsAADA8ggsAADA8ggsAAB4qEwZ15lu\n69XzcSF+hMACAICHAv789ixe3Ld1+BMCCwAAHnK6BliUmenbOvwJgQUAAA+dPOE6cdzGjT4uxI8Q\nWAAAgOURWAAAgOURWAAAgOURWAAAgOURWAAAgOURWAAA8FBoqOu45n/8w8eF+BECCwAAHgoOdt1W\nrOjbOvwJgQUAAFgegQUAAA+dOuW6/fln39bhTwgsAAB4KCvLdabb1FQfF+JHCCwAAMDyCCwAAMDy\nCCwAAMDyCCwAAMDyCCwAAHioeHHXiePKlfNxIX6EwAIAgIfCwly3UVG+rcOfEFgAAIDlEVgAAPBQ\nzvlX9u33bR3+hMACAICHzpxxnTgu/pCPC/EjBBYAAGB5BBYAAGB5BBYAAGB5BBYAAGB5BBYAADxk\nc+1zq8BA39bhTwgsAAB4qGxZ15lub7nFx4X4EQILAACwPAILAAAeysx03Z465ds6/AmBBQAAD50+\n7dqJZedOHxfiRwgsAADA8ggsAADA8ggsAADA8ggsAADA8ggsAADA8ggsAAB4qHRp14njatXycSF+\nhMACAICH7HbXbcmSvq3DnxBYAACA5RFYAADw0LFjrhPHrVvn40L8CIEFAAAPGZP7FkWPwAIAwCWy\n2Xxdgf8gsAAAAMsjsAAA4CE2BXkfgQUAAFgegQUAAA+FhrqGWK691seF+BECCwAAHgoNdd0SWLyH\nwAIAACyPwAIAgIdOnnQdz7xnj48L8SMEFgAAPJSR4bpNSvJtHf6EwAIAACyPwAIAgIc4D4v3EVgA\nALhEnJrfewgsAAB4iBEW7yOwAADgoWLFXLdhJX1bhz8hsAAA4KGICNcQS80aPi7EjxBYAACA5RFY\nAADwUEqK6/bIEd/W4U8ILAAAeCgpyXV40P79Pi7EjxBYAADwEEcJeR+BBQAADxFYvI/AAgAALI/A\nAgCAhxhh8T4CCwAAl4hT83sPgQUAAA9dV9k1xFKvno8L8SMEFgAAPBTw58hKAN+iXkNXAwDgIYfD\ndXvmjG/r8CcEFgAAPBQf7xpi2b7dx4X4EQILAAAe4igh7yOwAADgIafTdctRQt5DYAEAwEM5+7AE\nBvq2Dn9CYAEAwEMZGa5bjhLyHroaAAAPZThc24IYYfEee1E17HQ6NXr0aO3Zs0dBQUEaO3asqlSp\n4p7/9ttv6/PPP5ck3X777erfv39RlQIAQKGqdoORdkrXXefrSvxHkY2wLF++XA6HQwsXLtRzzz2n\niRMnuucdOHBAn376qT744AMtXLhQP/zwg3bv3l1UpQAAUKjKlnUdJlSqlI8L8SNFNsKyadMmNWvW\nTJJUt25dbT/nYPWrrrpK//nPfxT451haVlaWihcvXlSlAACAv7kiCywpKSkKCwtzPw4MDFRWVpbs\ndruKFSumsmXLyhijyZMnq2bNmqpatepF2wsPD5HdfvkbCyMiSl52G1cS+uMs+iI3+iM3+uMs+kJa\nsiBdknTgIP1xrqLsiyILLGFhYUpNTXU/djqdstvPLi4jI0PDhg1TaGioYmNj823v5Mm0y64pIqKk\nEhOTL7udKwX9cRZ9kRv9kRv9cRZ94RIf7zonv3GK/vhTYawbFws8RbYPS7169bRq1SpJ0pYtWxQV\nFeWeZ4zRk08+qejoaI0ZM8a9aQgAgL+DnPOwBPD15TVFNsLSpk0bxcXFqWfPnjLGaPz48Zo7d64q\nV64sp9OpH3/8UQ6HQ6tXr5YkDRo0SDfffHNRlQMAQKHJyLBJgVIgJwfxmiILLAEBARozZkyuaZGR\nke7727ZtK6pFAwBQpDIyJIUwwuJNZEMAADyU7trnlhEWL6KrAQDwUGSk6+qHnIfFewgsAAAUkNMp\nbdgQoFq1XIElKMjHBTkFQtIAABkgSURBVPmRItuHBQCAK8HRozb9+GOgVq4M1Fdf2ZWYGKB/PmeX\nOP2KVxFYAABXnNOnpT17AlSlilFampSUZNPJkzalp9vUrl2WJCkzU/r6a7syMlzzk5Js+umnQB05\nYtN776WrTBmjHj1KaPXqs1+VJUsa1a6drRIlfPXO/BeBBQDwt3LqlHTsmE1//BGgxESbEhMDdOyY\nTWXLGj37rOsEKdOnB+n/27vz6KjK+w3gz501ZCHrACYQgSIVfxBDoApiZAlpKYuURJKQGogFT6ki\nPYFzhLpEixZZSsUgKhSLQEUErLQi0ormgEUqsgYEZalCgkIi2SeZ9b6/P14yYZqQqGQyl8nzOSeH\nZO7NzDffQ+Y+ee9737t8edNbvgQHC3z1VS0AYP16I373u6Am+3TvriI6Wt4raOZMByoqFNx9txtj\nxriQmOhGcDBQVufE86/57mekphhYiIhIM44d0+HLL3Ww2wGHQ4HdDqxZY8S997owf74MI48+GoS3\n3zY2+d5+/dyewDJ2rAsXL+pQWQmEhwMREQKRkQLR0QJCAIoiJ84+9pgd4eFyW3i4QJ8+KuLiBBRF\nPmdqqhupqde/0jpdPwYWIiJqF5WVwOHDepSVKaiuVlBVJT+CggQee0wGjXXrjFi/vulM1oMHhefz\noUPdMJmAXr1UdO0qYLGoiIkR6Nq1cZ/ERBUFBbYW6xkxwo0RI9xt9NORrzGwEBEFCHHleK0o8rTJ\n7t0G1NUBVqsCq1VBXR1QV6fg/vud6NtXXuUye3YQqquBHj3k6ELPnircbvn1LbfIfQoL5eposbEC\nFy4AFy/q4HAosFhU9OkjX/TAAR3OnJGP19QANTUKamsVhIYKz8jIn/5kxiuvNA0jXbqonsAycaIL\n/fqpMJkAk0nAbAY6dRK4447GYJGb60RurtM3TSTNYmAhImon//qXHk6nAodDrpRqs8lTHrfeqmL4\ncHlA3rrVgD17DHA4ALdbXkbrdgMWi8DSpXYAwN69ejz/vMmzze2WoeTUKR2OH69FZCRQUqLDjBnN\nzwwdNsyFhtu7FRbqcelS0xUuZs+244knZIjIzzfjiy+uXtI1BAAwdaoDf/yjrGnjRiP++temYcRi\nUT2BpX9/N377Wzvi4wUiIgQ6d5anYcLDG0dGkpPdSE7mqAc1xcBCRNQKux348EM9vvhCh4oKBU6n\nguJiBdOmOT0H1xdeMKG6WgYLIRpHGG65RUVOjhwNmD8/CCUlTcPB1KkOT2DZt0+PTZuazs+4+WYV\ngAwH336rYM+exrdvnU5Arwd691bhdisABOLiVDz3nA0hIQLBwXKyacO/vXurnu/dvdsKt1vBuXMK\nzpzR4fx5Hcxm4Cc/aQwNeXkOHD6sR10dEBlpgtvtgNkskJjYuE9GhguDB8tTNWFhAp07A6GhAjEx\nwmsfoh+KgYWINM1mk4FBpwPCrqx7UVam4NtvFbhc8q65DaMWigJPgDh6VIdVq0yor28YhZD7u91A\nQYENsbECViuQnh4MpxOoqJDP6XAAqqpg0SIbfvUrGTTuvhs4cCC4SW09egjP673/vh779zd9Sx09\n2nVVYLGjokKB2QwEBcnTHWZzQxiR5s514OGHHejUSf7MOh2g1wsYr8ow48e7UFJSA71ebm+YIHq1\niAhg+vTWT5tERQGAgMUiMHiw2uw+aWkupKXJsGGxmFBWZm+yz5AhbgwZ0urLEf1gDCxEHZgQ8BzE\nG/51u71X7ywvlwdzl0vBxYtyLoT9yvFq0iR5EPvqKwVbtxrhcgHdugl066bC5ZIBYeRIF8LD5fOu\nXy/3cToBl0vOqQCAjAwneveWf4mvWmXE6dM6lJYq+OwzPYqLdVdey4lVq+QkyhdfNOHll5uefoiI\nEDh1Sl6yWlysw9atTUcqAHn6BJCvd+KEDno9EBkpcOutKsxmAZ0OXhM4hw4F+vVzYORIN2JiBGpr\ngaoqxTMqIuu2oaRE1m0wyNGFsLDvP8IQGyta3Uevlx9EHQkDC1EAqqsD1qwx4ZtvFBw4oEdJieIZ\nYVi40IasLHngTEkJxvHjTY986enAyy/Lz1euNGHFiqbrWXTuLDBpkgwH587psGRJ030A4IMPrBgw\nQP7lPm9e0zUvACA6WqB3bzka8I9/GPHpp7KmLl1UJCe7EBIikJDQGA7uuMMNm80BkwkwGuXog9Eo\nT3c0GDnShYMHaxEcDBgMwnOQNxjkBwCEhADnz9des48NCgrQ7KjC1eLiBOLiOPeio1CaG9Yin2Jg\nIWpnbrc8xSE/FOh0QJcu8kBbUqLg3/+WEzMbRjsaRj6yspyIigKsVjkXoqpKrs5ZVSVX8KypUfDU\nU3bk5jqh1wPPPisDhNEo0LOnCoNBwGCQB+kGSUluREYKz0Fcr5cH9iFDGkcmBg5Ucf/9Duh0cn5G\neLhAUJB3OEhIcGPr1jro9UBxsYLLlxUYjfI5b7pJ7qfXA6tW1cNgkDU11GK1Nv78ALB8uQ1CAFFR\n3qMTVxs3zoVx41oerQgJAUJCWh+tIPohooOiMe3/puO+hF/4u5QOQxFC3BC/0WVlNdf9HBZLWJs8\nT6BgPxpZLGE4c6YGly/LA3+fPipCQmRQWLvWiPp6GSCcTnlb+dOn9cjJceCnP5V/Uc+cGYSTJ3VX\n9mncd9QoF55/Xv5lvmiRCQUFJrhc3n+ZJSe78Prr9QgKAt57z4Bp05q/smP3biv69VPhdAJxcXIy\nh6LIyY3h4fKKi4cfdiA9XR7IP/xQD4tFoFcvFaGh378f/L/RiP1oxF54Yz8atUUvLJZr36CJIyzU\noVy6pMBoFFcmGgLvvmtAdTVw7Biwfn0oHA4ZJnbutCIpSYVOBzz5pPnKlRfeRoxwAZCB5eJFBV9/\nrfOMYhgMuHK6onH/bt0EEhNVBAUJmEyA2SxHKsxmec+T229XMWCAGy+8UO95DoNBTqo0GAS6d5en\nVYxG4NNPa6+EFLm9OaNG8fQEEQUOBha6IbndwNmzOhw/Lu8h0nAJ6cSJTiQmygP73LnmK0t8yys/\n6urkyMiLL9Z7Jj8uWCD3kRRMmuREly4CUVFy4FFRgFdftcFolKdKGuZKdOmiolevxsHJbdvqW635\nuyx21b27wJQprU/MvPnmG2JglIiozTCwkF85HPKy1c6d5dfl5UBRkR7V1TKEWK3wrND54IMyTHzz\njYKhQ0NQV9d01KN3b9UTWA4e1OPECT10OjmSYTLJoNFw1QkAPPGEHVYrEBXVCd26WZGQ0PSyzoY7\nuxIRkf8wsJBPuN1AebmcfHnrrTIEnD2r4KOPDNi504Bjx3SoqVFgsymIiVFx4oQVAHDokB7Z2U3X\nuwCACRNc6NJF3i+kXz8VffrIUyixsfLy0bAwObm0wc6ddV5XhFzrOQHAYgHKyppfg4KIiPyPgYW+\nl/p6OV/j/HkdoqMF+veXB/knnzRj1y4DamqA2lrFM/oxaJAb770nF9vYscOIZ56RV67Ex6vo3l1F\nWJjw3MYdAG65RcX8+fLuqaGhAiEh8mqUkBB4VufU6eB5zpYENX8FLRER3YAYWKiJS5cUlJUpnjCy\neLEJr79uxMWL3rM7s7MdWL5cXgHjcgHV1UBoKNC1q3plaW65cmbDrdyHD3chIkJg+HAX4uObn4Nx\n880Cc+Y4fPsDEhHRDYeBhSAEcOyYDm+9ZcR//qPHkSM6xMYKHD5sRV0dcOyYHhcv6mA0Ctx0k8Cd\nd7rRs6eKpKTGq1Cee86O555reWGthAS12TkiRERErWFg6eCKixWkpgajvFyOnhgMAkOHunHXXTKM\nBAcDy5bZoChy0TAu7khERP7AwNLBvfuuAaGhQKdOKhYtsiE52Y3g/5nzevU9VYiIiPyBgaWDmznT\nienTnTAYmr/jKxERkRZcY41MCnQnTujwyivyPi5GI8MKERFpGwNLB/X442b85jfAvn28Rz0REWkf\nA0sHZLPJoDJoEDB6NO83Q0RE2sfA0gF9/bUCVVUwYIC/KyEiIvpuGFg6IJtNTlgJDfVzIURERN8R\nA0sHZL+yvpvZ7N86iIiIvisGlg5ICMBiURER4e9KiIiIvhuuw9IBJSWp+OwzKyyWMJSV+bsaIiKi\n1nGEhYiIiDSPgYWIiIg0j4GFiIiINI+BhYiIiDSPgYWIiIg0j4GFiIiINI+BhYiIiDSPgYWIiIg0\nj4GFiIiINI+BhYiIiDSPgYWIiIg0j4GFiIiINI+BhYiIiDSPgYWIiIg0j4GFiIiINI+BhYiIiDSP\ngYWIiIg0j4GFiIiINI+BhYiIiDSPgYWIiIg0j4GFiIiINI+BhYiIiDSPgYWIiIg0j4GFiIiINI+B\nhYiIiDSPgYWIiIg0j4GFiIiINI+BhYiIiDSPgYWIiIg0j4GFiIiINI+BhYiIiDSPgYWIiIg0j4GF\niIiINI+BhYiIiDSPgYWIiIg0j4GFiIiINI+BhYiIiDSPgYWIiIg0j4GFiIiINI+BhYiIiDSPgYWI\niIg0j4GFiIiINI+BhYiIiDSPgYWIiIg0j4GFiIiINI+BhYiIiDSPgYWIiIg0j4GFiIiINI+BhYiI\niDSPgYWIiIg0j4GFiIiINI+BhYiIiDSPgYWIiIg0j4GFiIiINI+BhYiIiDSPgYWIiIg0j4GFiIiI\nNI+BhYiIiDSPgYWIiIg0j4GFiIiINI+BhYiIiDTPZ4FFVVXk5+cjMzMTOTk5OHfunNf2zZs3Iy0t\n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\n",
+ "text/plain": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "# get the best model with respect to recall\n",
+ "best_weight = 1000\n",
+ "xgb_model_best_wt_sofar = xgb_models[best_weight]\n",
+ "\n",
+ "\n",
+ "# use cross validation to find best model\n",
+ "xgb_predict_best_weighted_obj = find_cv_model_predict(\n",
+ " xgb_model_best_wt_sofar, X_train, y_train, weight=best_weight\n",
+ ")\n",
+ "\n",
+ "xgb_best_wt_cls_1_proba = xgb_predict_best_weighted_obj[\"proba\"][:, 1]\n",
+ "xgb_best_wt_y_pred = xgb_predict_best_weighted_obj[\"pred\"]\n",
+ "\n",
+ "\n",
+ "print(xgb_best_wt_cls_1_proba)\n",
+ "print(xgb_best_wt_y_pred[10:100])\n",
+ "\n",
+ "report_clf(\n",
+ " y_train,\n",
+ " xgb_best_wt_y_pred,\n",
+ " xgb_best_wt_cls_1_proba,\n",
+ " title=\"for 2nd Attempt to Train Weighted Model \",\n",
+ " cmap=\"Greens\",\n",
+ ")\n",
+ "plot_pr_vs_th(\n",
+ " y_train,\n",
+ " xgb_best_wt_cls_1_proba,\n",
+ " show=True,\n",
+ " tag=\"for 2nd Attempt to Train Weighted Model \",\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "\n",
+ "**The key observation**, we make is that our best weighted model, the recall for positive class is 0.89 improvement from 0.38 but overall recall is reduced and it's ok as for yes recall for positive samples are more important\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "### Third Attempt at Model Training using Weighted Samples and Feature Selection \n",
+ "\n",
+ "\n",
+ "Now as we saw that weight 1000 is the best and we will use it. The next question, we ask is how can we make it better.\n",
+ "One of the things about the decision tree based model is that more the number of attributes, more noise is introduced i.e model won't generalize. So it is advisable to use only the important features for building.\n",
+ "\n",
+ "We will classify using the important features to remove the noise.\n",
+ "\n",
+ "1) We will find the important features\n",
+ "\n",
+ "2) We will use it to classify again\n",
+ "\n",
+ "3) plot the PR, ROC curve.\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "##### Plot feature importance\n",
+ "\n",
+ "Before we proceed to optimize the code, lets plot feature importance for our best model so far.\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 32,
+ "metadata": {
+ "scrolled": true
+ },
+ "outputs": [
+ {
+ "data": {
+ "image/png": "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\nAAAASUVORK5CYII=\n",
+ "text/plain": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Feature importance = [ 0.02884615 0.10737179 0.03205128 0.3349359 0.0400641 0.05608974\n",
+ " 0.02724359 0.00480769 0.01602564 0.00641026 0. 0. 0.\n",
+ " 0.00160256 0.00160256 0. 0.00641026 0.00160256 0. 0.\n",
+ " 0.01602564 0.00160256 0.02724359 0. 0.01282051 0.00320513\n",
+ " 0. 0. 0.0224359 0. 0.01923077 0.\n",
+ " 0.00641026 0.00320513 0.06410257 0.00801282 0.00801282 0. 0.\n",
+ " 0.00480769 0.0224359 0. 0.01121795 0.01923077 0.00961538\n",
+ " 0.02724359 0. 0.00160256 0. 0.04647436 0. ]\n",
+ "Sorted Feature importance = [ 0. 0. 0. 0. 0. 0. 0.\n",
+ " 0. 0. 0. 0. 0. 0. 0.\n",
+ " 0. 0. 0. 0.00160256 0.00160256 0.00160256\n",
+ " 0.00160256 0.00160256 0.00320513 0.00320513 0.00480769 0.00480769\n",
+ " 0.00641026 0.00641026 0.00641026 0.00801282 0.00801282 0.00961538\n",
+ " 0.01121795 0.01282051 0.01602564 0.01602564 0.01923077 0.01923077\n",
+ " 0.0224359 0.0224359 0.02724359 0.02724359 0.02724359 0.02884615\n",
+ " 0.03205128 0.0400641 0.04647436 0.05608974 0.06410257 0.10737179\n",
+ " 0.3349359 ]\n"
+ ]
+ }
+ ],
+ "source": [
+ "# xgb_model.fit(X_train, y_train, eval_metric='auc')\n",
+ "\n",
+ "# get the best model with respect to recall\n",
+ "best_weight = 1000\n",
+ "xgb_model_best_sofar = xgb_models[best_weight]\n",
+ "\n",
+ "# fit the whole training set. We will later run for the better model later, but for now. Lets go with it.\n",
+ "xgb_model_best_sofar.fit(X_train, y_train, eval_metric=\"auc\")\n",
+ "\n",
+ "\n",
+ "# fit the model just in case\n",
+ "fig = plt.figure(figsize=(10, 10))\n",
+ "\n",
+ "ax1 = fig.add_subplot(1, 1, 1)\n",
+ "\n",
+ "plot_importance(xgb_model_best_sofar, ax=ax1)\n",
+ "\n",
+ "\n",
+ "# need graph viz package\n",
+ "# ax2 = fig.add_subplot(1,2,2)\n",
+ "# plot_tree(xgb_model, ax=ax2)\n",
+ "\n",
+ "plt.show()\n",
+ "\n",
+ "print(\"Feature importance = \", xgb_model_best_sofar.feature_importances_)\n",
+ "print(\n",
+ " \"Sorted Feature importance = \",\n",
+ " np.sort(xgb_model_best_sofar.feature_importances_),\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "We can see that not all features are important and may be our model is better, if we use only the selected features\n",
+ "Lets try it out.\n",
+ "\n",
+ "\n",
+ "We have transformer [SelectFromModel](http://scikit-learn.org/stable/modules/generated/sklearn.feature_selection.SelectFromModel.html) which will select the features based on threshold.\n",
+ "\n",
+ "\n",
+ "Now, we won't know what threshold, we should use for selecting the list of features. So we will perform the grid search using our custom code. \n",
+ "\n",
+ "We will plot various performance metrics and use visual inspection to find the best threshold.\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 33,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "image/png": "iVBORw0KGgoAAAANSUhEUgAABrsAAANpCAYAAAC7O4KQAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDIuMS4wLCBo\ndHRwOi8vbWF0cGxvdGxpYi5vcmcvpW3flQAAIABJREFUeJzs3Xd4VEXbx/Hv2ZZsegIh9I70ooiA\ngAgoRUCRIvjwomLBgl1REAEfmoqIIgoWFBQLCAbro6AiUqWJFBWkSI9JIIT0bDnn/SOyEpIAGiAg\nv891xc2eMnPP7hB39j4zx7Asy0JERERERERERERERETkPGQr6QBERERERERERERERERE/iklu0RE\nREREREREREREROS8pWSXiIiIiIiIiIiIiIiInLeU7BIREREREREREREREZHzlpJdIiIiIiIiIiIi\nIiIict5SsktERERERERERERERETOW46SDkBELhz79u3j6quv5qKLLgpssyyLm266id69exe6Pysr\ni7JlyzJ+/HgqVapUoEy/388777zDZ599ht/vx+v10q5dOx544AFcLtdZaddRv/76K/fddx8RERG8\n9NJLVKxY8azWf9Tw4cPp2rUrl19++Rmro7D3CqB9+/Y88MAD/6jMxYsXs2HDhn98/sns27eP7t27\ns379+jNS/om8/PLL1KlTh6uuuuqs1w0wduxY1qxZA8COHTuoUKECwcHBAMyZM4fGjRuzcuVKYmJi\nTnvdQ4cOpVatWtx2222nfE58fDwLFizgtddeK7CvW7dujBgxgubNm5/OMEVERETkHFC7dm0uuugi\nbDYbhmGQnZ1NWFgYTz31FA0bNgTyxohTpkxh0aJFgTFf+/btufvuuwOfcQHmz5/P7NmzycnJwev1\n0rRpU4YMGUJEREShdf/d48+UhIQE7rjjDux2O0899RQXX3zxWa3/qMmTJ1OlShV69OhxRus59j0/\nqkGDBowbN+4flbdx40bmzZvH6NGjT1eIBdSuXfuMjZ9OZO7cuXg8Hvr3739W6z3q9ddf54svvgBg\nz549REdHEx4eDsCUKVO45ZZbmDx5cuDf6uk0ZcoUDh8+zMiRI0/5nFWrVjFmzBg+//zzAvvuvPNO\nOnXqRM+ePU9nmCJSwpTsEpGzKjg4mE8++STwPDExkW7dutGgQQPCwsIK7Lcsi7Fjx/LCCy8wadKk\nAuU99dRTHDlyhLfffpvw8HCysrJ49NFHGT58OM8999xZadNR3377Lc2bN//HH8pPl7NV//HvVXFt\n2rSJI0eOnLbyziWrVq2iZs2aJVb/k08+Gfi9ffv2TJw48YwMQEREREREiuvtt9/Ol0R48803GTt2\nLHPmzMHn8zFw4ECaNGnCxx9/jNvtJjs7m+eff57bbruNt99+G4fDwauvvsqSJUt45ZVXKF26NF6v\nl/Hjx3PXXXfx/vvvF6jz7x5/Jq1atYrSpUszc+bMs1rv8c7URYiFOf49L47t27eTmJh4Wso616xb\nt45atWqVWP2DBg1i0KBBAAwYMID+/fvTuXPnEotHROR4SnaJSImKi4ujSpUq7Nq1iwYNGhTYn5ub\nS1JSEqVLly6wb9++fXz22WcsW7aMsLAwAEJCQvjvf//Ljz/+CBScVXLs8/bt29OoUSO2bt3Kfffd\nx7Rp0/jss88ASEtLo0OHDnzzzTfk5OQwevRoEhIS8Hq9dO3albvuuitfLJ9++ikffPABfr+fnJwc\nnn/+eV555RW++OIL7HY71apVY8SIEcTGxjJgwAAiIyPZuXMnN954IwMGDAiU069fPwYOHEinTp0A\nAgm7wYMH89RTT7F7925SU1MJDQ1l4sSJVK9evUB5CxcuDHzo/Oabb3j55ZcxTZPQ0FCGDRtGo0aN\nClwVdezzhQsXMm3aNAzDwG6389hjj9GsWbO/9b7++OOPTJw4kezsbGw2G/feey/t2rUjKyur0Hak\np6cze/Zs/H4/4eHhVKlSJd/MnmNn+gwdOpTU1FT27t3LlVdeyQMPPMDEiRNZs2YNfr+fevXq8eST\nTwb6RGFWrVrFpEmTKFeuHL///jtut5tBgwYxa9Ysfv/9dzp27MgTTzzBqlWrmDhxIuXLl2fnzp0E\nBwfzzDPPUKNGDdLT0/nvf//Lli1bMAyDNm3a8PDDD+NwOGjQoAEdOnRgy5YtdO/enc2bNzNhwgTs\ndjs1a9Zk9OjRZGZmkpycTJ06dXjxxRcJCgqiYcOGDBo0iOXLl5OUlMTtt9/Of/7zHwBee+015s+f\nj8PhoEqVKjzzzDOEh4czd+5cPvjgA0zTJCoqihEjRlCjRo2/9X4d7QMbNmwgNTWV2267jf79+xMf\nH8+8efMCV9TOmjWryPrWrl3LM888g2mawF9XygGsX7+efv36cfDgQWrVqsXzzz9PSEgIa9euZcKE\nCWRnZ+N0OnnwwQe54oor8sW1fft2nnjiCbKzs6levTpZWVl/u20iIiIicn7y+XwkJCQQGRkJwFdf\nfYVpmgwbNixwjNvtZvjw4fTo0YOvv/6atm3bBj47Hx1HOp1OHnvsMb7++ms8Hk++VUCysrJOevxr\nr71W5Pjp2PFY3759mTp1KkuXLsXlcuH3+7nyyiuZOXMmZcqUYdy4cfz22294vV5atmzJY489hsPx\n11dzP/zwAy+++CLp6ekMGDCAWbNmMWfOHGbNmoXNZqN06dKMGDGCatWqFRgXDRkyJFDOI488Qv36\n9bn11lsBeP/991m9ejWTJk1i/PjxbNiwgczMzMDFpU2bNi1Q3qFDhwJj56I+tx+/IsOxz080PjhV\nO3bsYNy4caSmpuL3+xkwYAC9e/fGNM1C21G+fHleeukl0tPTGTZsGD169Mg3s+fYmT5Tpkzhp59+\nIikpidq1azNx4kSmTZvGwoULMU2TChUqMGrUKOLi4oqMb9++fdx88820atWKzZs34/f7uf/++5kz\nZw47d+6kQYMGTJo0iQMHDjBgwADatGnDhg0bsCyLkSNHcumll+L1ennmmWdYuXIldrudRo0aMWzY\nMMLCwvJ9Z/Hwww+zaNEili9fTnBwMJ06dWLkyJEcOnSI5ORkKlSowIsvvkipUqVo3749119/PStX\nriQhIYHrrruOBx98EIB58+YxY8YMbDYb0dHRPPvss5QrV45FixYxbdo0vF4vwcHBPP744/9oVuGc\nOXMYNWoUKSkpXHfddTz00EOsWrWKcePGERISQmZmJh999BHLli0rtL4dO3YwfPhwPB4PlmXRu3fv\nwEy2nTt3MmDAAJKTkyldujSTJk2iTJkybNu2jdGjR5OamophGNx6660FZiQmJiYydOhQkpKSKF++\nPIcOHfrbbRORc5+SXSJSotavX8+ePXto3LhxIFF03XXXYZomhw4dIjIyko4dOwauHjrWzz//TM2a\nNQskNWJjY0/5Q3StWrV48cUXsSyLiRMnsmnTJho2bMjnn39O27ZtiYyM5L777uOWW26hffv25Obm\ncscdd1C5cmWuueaaQDnXXnstu3fvDgx4PvroI5YuXcq8efMICQlhypQpDB06lDfffBOAiIgI/ve/\n/xWIp0+fPsTHx9OpUyf8fj+ffvops2bNYsmSJURERDBnzhwARo4cyXvvvceIESMKlLdw4UIgb2Aw\natQoZs+eTaVKlVi5ciX33HMPX3311QlfkwkTJjBx4kSaNGnCsmXLWLVqVaHJrqPv1VF2u534+HiO\nHDnCsGHDePPNN6lYsSKJiYnccMMN1K5dm40bNxbZjn79+nH48GEeeugh4uPjTxhjTk5OYPmEl19+\nOVC3YRhMmjSJiRMn8tRTT52wjE2bNjFq1Cjq1avH7bffzuuvv84777xDRkYGV1xxRSBBunnzZh5/\n/HEuvfRSPvjgA4YMGUJ8fDxjx44lKiqKzz77DK/Xy913381bb73FoEGDAstpTp48GcgbVPXv35+r\nr76aZ599lh49enDdddfh9Xrp2bMnixcvplOnTng8HqKjo5k9ezabN2/mxhtvpFevXixbtoz4+Hg+\n/PBDIiMjefrpp3n33Xdp2rQpH3/8Me+99x5ut5tly5Zx77338uWXX56w7YWpVKkSo0aN4pdffqFv\n377ccMMNQF6yadGiRYSFhbF69eoi65syZQoDBw6ka9eubNmyhTlz5gT+HSYmJvLOO+/gcrno06cP\nCxcupG3bttx///1MmzaNxo0bs23bNv7v//6PefPm5Yvr0UcfpX///vTp04d169aV2JIdIiIiInJ2\n3HzzzQAcPnyYoKAg2rVrx9NPPw3kjR8vvfTSAucYhkHLli1Zt24dlSpVIjg4mKpVq+Y7xu12c+21\n1xY49+hFbad6fGGOHY99/fXXLFq0iM6dO7Ns2TIqVqxIjRo1GDZsGPXr1+eZZ57B7/czdOhQZsyY\nwR133BEop0WLFtx///2BhNHKlSuZPn06c+bMISYmhvj4eAYPHhwYCx07LjpWnz59GDduXCDZNX/+\nfB566CE2bNhAUlISc+bMwWaz8frrr/PGG2/QtGnTAuUNHToUyHsfTuVz+/FOND443s0335xvGcO3\n3nqLyMhI7r//fiZMmED9+vVJT0+nb9++1KxZE8uyCm3Hq6++Gnj9nn76aVatWnXCGPfv38/nn3+O\nw+Hg448/5rfffmPu3Lk4HA7mzJnDk08+yRtvvHHCMvbt20fbtm0ZPXo0o0aNYty4cXz66ac4nU46\ndOjATz/9RJkyZThw4ADNmjVj9OjRfP/99zz44IN89913TJs2jaSkJD755BPsdjvDhw9nwoQJgWUY\nj35nAXmrydSqVYv+/fvz9ttv06RJEwYNGoRlWQwaNIhPPvkk8J5nZWXx/vvvk5iYyNVXX02vXr3I\n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\nwIoVK1i5ciWvvPJKYOWXvzuuPNbxfUHjSpF/J9vJDxERKTm33noroaGhvPTSSwX2xcXF0b17d554\n4onALJSMjAyeeuopoqKiCA4OJjo6OjCTKTExkdWrVxdZV1xcHI0aNWLkyJH07t0bgLCwMJo0acKM\nGTOAvAHJjTfeyLfffnvCuNu0acNHH30UmLEza9YsmjVrViDBUpgbbriB+fPn8+OPPwaWeVi2bFkg\nEVetWjUWLVqE3+8/YTktW7Zk2bJl7N27FyCwXnfjxo2Jjo7m559/xrIsMjIy+O6774C8qyTbt29P\ndnY2N954I6NGjWLr1q2BGWmnokmTJuzevZs1a9YA8Ouvv9KpUycSExNP2A673R74QBoTE8O2bdvI\nzc3F6/WyYMGCIutr3bo17733Hh6PB9M0GTFiBJMmTTrleE9my5YtbNmyBchbf/ziiy8mIiKC1q1b\n8+6772JZFh6Phw8//JDLL7+80DKObduyZcsYPHhwYGbghg0bTvpeXn755Xz99deBfj5lyhRmzpxJ\n69at+eKLL0hKSgLggw8+CCz7ciacqL5+/frx66+/0rNnT8aMGUNaWhrJyclFltWkSRN27tzJxo0b\ngbxlLdasWcNll10WOCY6Opr69esHEqc///wzv/3225lqnoiIiIicY7p160ajRo0Cyxh26tQJt9vN\n+PHjAzOjcnJyGDNmDKGhoVx99dW4XC7uuOMOhg8fzsGDB4G8xMX48ePJzs4ucA+mUzm+qPFTYYKC\ngujatStDhw6lY8eOgYsmW7duzcyZMwPjh7vvvpt33333hO1v06YN//vf/0hJSQHgo48+IioqqsAS\nbYW5/vrrWbRoEQsWLKBnz55A3oyadu3a8Z///IcGDRrwzTffnHQscqLP7Scat/3d8cHxqlWrlu9i\n2YSEBLp168bmzZtP2I7jx5UHDhzg0KFDWJZV6JKPR7Vu3Zp58+YFxlyTJ0/mscceO+V4TyYlJYUl\nS5YAsGjRIpxOJxdddBFt2rThgw8+wOv1Ypom7733Hq1atSq0jOPHlTfffDM9evSgVKlSrFix4qTv\nZfPmzVm5cmVgPDd79myee+45WrZsyfLly9mxYwcA33//Pddee+0pzT78J05U3yOPPML//vc/unbt\nyqhRowgLC2PPnj1FllW9enUcDkfgdg6JiYksWLCgwNi8TZs2gdspHDhw4KRLXIrI+UlpbBE5pzmd\nTkaMGMHtt99O7969ueiii/LtHzVqFFOnTqVfv37Y7XY8Hg9XXXUV9913H5C3BMCjjz5Kp06dqFix\nIi1atDhhfX369OGBBx5g2rRpgW0TJ05kzJgxdO/eHY/HQ7du3U66dnvv3r1JSEigT58+mKZJlSpV\nmDhx4im1uUGDBtjtdjp37hy4GuvWW29l5MiRgRlWTZo0OemX/jVr1mTUqFHce++9+P1+goODefXV\nVwkPD+faa69l6dKldOzYkbi4OC677DIsy8LhcPDEE0/w6KOP4nA4MAyD8ePHn1KS7qiYmBheeukl\nJkyYQG5uLpZlMWHCBCpWrHjCdrRo0YJHH32UMWPGMGzYMJo1a0aXLl2IjY2lefPmbN26tdD67rnn\nHp599lmuv/56/H4/devWDawvfzqULl2aF198kf379xMTE8OECRMAePLJJxk7dizdu3fH6/XSpk0b\n7rrrrkLLaN++PZMmTcLr9fLQQw8xePBgQkJCCAsLo1mzZif88A55y1xs3749sFZ5zZo1GTNmDGFh\nYdxxxx3ceuutGIZBWFgYL7/88kmvEP2nWrduXWR9jz76KOPHj+fFF1/EMAzuvfdeKlasWGRZMTEx\nTJ48mTFjxpCTk4NhGDz99NNUq1aN9evXB46bNGkSw4YNY/bs2VSuXJnq1aufkbaJiIiIyLlpxIgR\ngfFLmzZteOutt5g6dSo9e/bEZrPh9/tp3749b731VmBWzV133YXb7Q7chzc3N5fLLruMqVOnFlrH\nyY4vavxUlD59+vDuu+/mu4/w8OHDGTduXGD8cPnll3P77befsO2tWrXilltu4eabb8Y0TWJiYnjt\ntdfyzWorSmxsLPXq1cPn8wUSfP369eORRx6he/fu+Hw+WrVqxcKFC0+4jOOJPrdXqlSpyHHb3x0f\nHM/lcjF16lTGjRvH9OnT8fl8PPDAAzRt2pSoqKgi29GkSRNeeeUV7r33Xl5++WX69etHr169iI2N\n5corr2TTpk2F1tenT5/A/aYNw6BcuXKBWXmnQ1BQEJ988gkTJ04kODiYV155Bbvdzt133x24r7PP\n56NRo0aBe3Mf74orrgjENHjwYCZMmMDkyZNxOp1ccsklJx1X1q5dmyFDhgT6XWxsLOPHjycuLo7R\no0fz8MMPB74XmDZt2j9aGvJU1KxZs8j67rnnHoYPH86cOXOw2+1cddVVNGvWrMjklNPpZOrUqYwd\nO5YpU6bg9/sZPHgwLVq0yHfOqFGjGDZsGF26dKFs2bJ/e3lGETk/GNaJ/u8sIiJyAVu1ahVjxozh\n888/L+lQRERERERE5Dy0b98+unfvnu+iPhEROf20jKGIiIiIiIiIiIiIiIictzSzS0RERERERERE\nRERERM5bmtklIiIiIiIiIiIiIiIi5y0lu0REREREREREREREROS85SjpAE5VcnL6aSknOjqEw4ez\nTktZcmFSH5LiUh+S4lIfkuJSH5LiOl19KDY2/DREI1I4jSHlXKE+JMWlPiTFpT4kxaU+JMV1NsaQ\nF9zMLofDXtIhyHlOfUiKS31Iikt9SIpLfUiKS31ILiTq71Jc6kNSXOpDUlzqQ1Jc6kNSXGejD11w\nyS4RERERERERERERERH591CyS0RERERERERERERERM5bSnaJiIiIiIiIiIiIiIjIeUvJLhERERER\nERERERERETlvKdklIiIiIiIiIiIiIiIi5y0lu0REREREREREREREROS8pWSXiIiIiIiIiIiIiIiI\nnLeU7BIREREREREREREREZHzlpJdIiIiIiIiIiIiIiIict5SsktERERERERERERERETOW0p2iYiI\niIiIiIiIiIiIyHlLyS4RERERERERERERERE5bynZJSIiIiIiIiIiIiIiIuctJbtERERERERERERE\nRETkvKVkl4iIiIiIiIiIiIiIiJy3zmiya8OGDQwYMKDA9kWLFtGrVy/69u3Lhx9+eCZDEBERERER\nkfOExpAiIiIiIvJPOM5UwW+88Qaffvopbrc733av18vTTz/NvHnzcLvd3HjjjbRr147Y2NgzFUpA\nZkYmOdmHCXZHn/G6RERERERE5NSdi2NIERERESlZlukFM/sfnWt4sjD8uZhYZGDmbfT7MbJzsGVn\ng88PgD3jCJjmqcWDRYbHS2KqhWXzg3Fq513omnTpyRlMR8GZLL1y5cpMmTKFxx57LN/2HTt2ULly\nZSIjIwFo2rQpa9eupUuXLmcqlICyAy4naO0efvh8MTUbNz7j9YmIiIiIiMipORfHkCIiIiJyllkW\n5ORgZGVBVgbsfg0j8zBGtvevnxzfn4/eIrfbM3JxHM7EyPWD10+ZXD94fOA9PcmpuqellAuHWX0I\nh37YfUbrOGPJrk6dOrFv374C2zMyMggPDw88Dw0NJSMj46TlRUeH4HDYixVTdrATI9dP+RkjiH3v\n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\n81qY/iAAwYRaR3y7VHnkoa688k98/vmnvPrqLGrWrBnpcERERETkLFVtBrsmFR3kS2/ZcesZuz2E\nghXbTftKp52HE46+fMKiRd/g9/uZMeMtsrPXMH36FDIyJgNQULCXefPmMGtWJn6/n0GD+tGuXRoO\nh6NiX0hEREREREROmSrNIQMBjI+XcP2P/+Je3xIAQol1jzjYpTyynN/vx+Fw0KRJMz766NNIhyMi\nIiIiZzktY1gJWVmrSEvrAECrVqmsW5cTLsvJWUtqahscDgdut5v69VPYtGlDpEIVERERERGRUyVY\nPpuLKBv2Uj8AZkLKEasqj4QvvviMLl0uY/PmjZEORURERESqiWozs+vhhOhjzsL6VVVupu3xeHC5\n3OFzwzAIBALYbLbDypxOJyUlJVVyXxEREREREamcqswho+Z+QtyQ++C2NhyoVwMAo0bTI9Y91/PI\nxYsX0b//XVitVgoKCmjc+MjPSURERETkRFSbwa5IcLlceL3e8LlpmthstiOWeb1eYmO10a6IiIiI\niEh1Y+TnlR8kxBC1r4RQlA1LXMMj1j2X88hVq77njjtuIRQKkZn5Pu3apUU6JBERERGpJrSMYSWk\nprZh6dLFAGRnrznkjbQWLVqSlfUDPp+PkpIStm3bQqNGTSIVqoiIiIiIiJwi1tydABxMisW+r4Sy\nmrEYhvWIdc/VPHL9+nX07t2d0lIvr732Jr///R8iHZKIiIiIVCOa2VUJXbtezooVyxgwoC+maTJq\n1FjmzHmX5OQUOnfuRo8evRk8+F5CoRDp6YOIioqKdMgiIiIiIiJSxYxfBrs8NeOILgvhT0o4at1z\nMY8MBoP063cnhYWFvPjiy1x//Y2RDklEREREqhkNdlWCYRiMGDHqkM8aNjw/fHzDDTdzww03n+ao\nRERERERE5HSy5O2AKCt+W/lsrrKkpKPWPRfzSKvVyssvv853363kttvujHQ4IiIiIlINabBLRERE\nREREpBKM3FxIiMEoDQBQVidZewYARUX7ME2TxMQatGnTljZt2kY6JBERERGppvT/bxEREREREZGT\nVVqKrWg/JMZgLy4FIFineuyzVRkej4fbbuvJTTddy759hZEOR0RERESqOQ12iYiIiIiIiJwka35u\n+UFCNI5iLwCWuq0jGFHk+Xw+7rnndlauXM5FF7UiPv7oe5iJiIiIiFQFDXaJiIiIiIiInCQjL6/8\n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\n1IekstSHpLJORw6pPbtEREREREREjiExfzcAxeefd5yav1myZDH9+t2F3W5n2LBHTlVoIiIiIiKC\nBrtEREREREREjilqzwGwGxQnV2zvqqysVdxxxy0EAgHefDOT9u07nOIIRURERETObdqzS0RERERE\nROQYjKJSiLET3fDC49bdsOEnbrnlZkpKipkx402uuOKq0xChiIiIiMi5TTO7RERERERERI5m/34s\n/iBE27DVa33c6mvXrqGoqIiJE6dy001/OQ0BioiIiIiIZnaJiIiIiIiIHMXmlVk0BkynHaPG8Wd2\n3XTTX2jd+mIaN25y6oMTERERERFAM7tEREREREREjmrj9ysBMBOiMaxHfl90//4inn32Kfx+P4AG\nukRERERETjMNdlVCKBTihRee5b777mHIkHR27txxSPnChfPp1+9O0tPvZvHiRYeUrVr1Pd27/zl8\n/u9//4v+/e/ivvvuYeHC+QD4fAd5/PERDBrUn+HDH2Dfvn0A5OSsZdCg/gwc2I/Rox/B5/OF29m3\nr5Du3f/Mtm1bD7nfSy9N4qOP5lXl1xcREREREan2Enb+AEAgKfaI5V6vl9tv78WLL04kM3P2cdtT\nHikiIiIiUvWqzTKGrrlTiVr5z+NXtFqoETQr1Kbv0ivw9Bp61PJFi77B7/czY8ZbZGevYfr0KWRk\nTAagoGAv8+bNYdasTPx+P4MG9aNduzQcDge7d+9izpx3CQQCAAQCAaZNm8zMme8QExPDwIH96NSp\nC19++TmNGzelX7/7+OqrL3j77TcYOvRhnnvuGcaPf47k5BQ+/vgjdu/Op0GD8wkEAjz//LM4HFHh\nGPft28f48WPZsWMbt912Z4W+t4iIiIiISHVX0RwysWAXXNEYm9NKjUduOKTMNE2Ce/fwfuxBnNe3\nwuX24j1Oe8ojRURERESqnmZ2VUJW1irS0joA0KpVKuvW5YTLcnLWkpraBofDgdvtpn79FDZt2oDP\n52PixAk8/PDIcN2tW7dQv34KcXFx2O12Wrduw+rVq8jKWk1aWkcA2rfvxMqVy9mxYxvx8fHMnfse\nQ4akc+DAfho0OB+A6dNf5Kab/kKtWrXCbZeWeunbN50//ena0/BEREREREREqhcjGAIgeNgShiaF\nhQUcPHiQ6OhoatSoicViOW57yiNFRERERKpetZnZ5ek19JizsH6VlBRL4Z7iqrmnx4PL5Q6fG4ZB\n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\nevW6JoQBAAAAAP643+avqtK1a1clJSVJkq5cuaLBgwdrw4YNGjx48O/az5NPPmn/eM+ePfaPK+o9\nzZw5U+3bt5f0yx9jxsXFacWKFZo0adINX7N//361a9fud62TmJhY4r38et2rsrKyrvl6JSUlafbs\n2Zo7d26Z9Y4cOVKJiYmaN2/e76oNAG5mXMYQAFBlzp07J8Mw5O3traVLl6pfv36KiIjQ7NmzZRiG\nJGnlypXq3r27evbsqTlz5kiSjhw5otjYWEVFRSksLExr1qxx5tsAAAAAAJdRVp4qKirSpEmTFBkZ\nqcjISKWkpEiSzp8/rzFjxqh///6KiorS7t27y1zLYrGobdu2+vbbbyVJGzduVO/evdWnTx8lJCQo\nLy/vhuslJCRo06ZNmjlzpiRp4MCBkqSgoCAVFxerU6dOOn/+vCTpwoUL6tSpk4qKirRz504NGDBA\nkZGRGjdunHJycsqs8/Lly8rJyZGfn58k6b333lN0dLQiIiLUo0cP7d+/X7t371Zqaqrmz5+vXbt2\nlet4nDx5UmfPnv1Df9zZvn17+3Erq97GjRvr9OnTOnny5O9eBwBuVpzZBQCoNGfPnlXfvn1VUFCg\nnJwctWrVSgsXLtSRI0eUkZGhDRs2yGQyadKkSdq6dasaNmyot956Sxs3bpSnp6dGjBihjIwMbdmy\nRWPGjNEDDzygU6dOKSIiQg8//LCz3x4AAAAAVBtX89dVffr00YgRI7R+/fpS89SBAwd08eJFbd68\nWdnZ2XrppZcUHR2tF154QVFRUerWrZvOnj2rmJgYbd68WT4+PjesIScnR59++qlGjhypb775RkuW\nLFFKSor8/f01Y8YMLVy4UGFhYddd76qpU6cqOTlZ69evtz9ntVrVo0cPvf/++xoyZIg+/PBDhYeH\n66efftJLL72kN954Q35+flq7dq1efPFFvfDCC9fUNnXqVHl6eurHH3+Un5+fevbsqWHDhslms2nt\n2rVasmSJAgICtGHDBi1dulRLlixR165d1a5dO3Xu3FkTJkwo83ikpqYqNDT0mnWvXo7Q29tbb731\n1jW1FRUV6YMPPlCbNm3KrPeqe++9Vzt27NDQoUNv+PUAgFsJwy4AQKW5elkGm82mpKQkHT16VB07\ndtScOXN06NAh9e/fX9Iv13WvX7++zp8/r7CwMPn6+kr65SwvSWrWrJl27dql1157TUeOHNHly5ed\n9ZYAAAAAoFq60WUMExISSs1T99xzj44fP67hw4erS5cumjx5siRp9+7dOnbsmObPny9JKi4u1qlT\np9SsWbMSr09NTVXfvn1lGIYMw1B4eLh69+6t1atXKywsTP7+/pKkQYMG6emnn9bIkSOvu15ZIiIi\nNGvWLA0ZMkTbtm3ThAkTdPDgQX3//ff629/+JumXy/1dPfvpt65eFnD//v2Ki4tTeHi43N3dJUmL\nFi1Samqqjh8/rj179shsvvZiWOU5HpmZmWrYsOF11/2tXw8nCwsLFRwcrPj4+HLVK0n169dXZmZm\nuY4dANwKGHYBACqd2WzW5MmTFRkZqeXLl+vKlSsaOnSoHn30UUnSpUuXZLFY7Gd6XZWdnS1PT089\n88wzuu222xQWFqaePXtq27ZtznorAAAAAOBSxo8fX2qe8vf317vvvqu0tDR98skn6tevn959913Z\nbDatWrVKNWvWlPTLcKZWrVrX7P/X9+z6NZvNVuKxYRgqLi6+4XplCQ4O1sWLF3Xo0CFlZ2crJCRE\n27dvV2hoqJYsWSJJKigoUF5eXqn7CQ0NVWxsrOLj4/X222+roKBAAwYMUEREhO677z4FBQVp9erV\n130/ZR0Pk8kkq7V8v24t7z3Wflvv1f1brdbrDuUA4FbFd0QAQJWwWq2aPHmyFi9erObNm2vLli3K\ny8tTcXGxxo4dqw8++EBt27bVJ598Yn8+Pj5eGRkZSktLU1xcnB566CHt3LlT0i83PgYAAAAAlK6s\nPPXxxx9r0qRJ+vOf/2y/5N7333+v+++/337Jve+++059+vRRfn5+uddt166dUlNTdeHCBUlSSkqK\n2rdvf8P1fs1isai4uPiaffbp00fTp09Xr169JEmtW7dWenq6jh8/LklavHixZs+eXWZtjz76qPLy\n8rRu3TqdOHFCJpNJo0ePVvv27fXRRx/Zj4/FYrF/XJ7jERgYqNOnT5f7GJXXr+u9KisrS4GBgRW+\nFgC4Ks7sAgBUmS5duigkJER79+7VX/7yF0VHR+vKlSvq3Lmz+vXrJ5PJpCFDhmjw4MGy2WwKDw9X\nhw4d9MQTTygmJkYeHh5q2rSp7rzzTmVlZTn77QAAAABAtVdWnurSpYs+/PBD9erVSx4eHoqIiFBQ\nUJCmTp2qadOmqU+fPpKk2bNnl3q/rt9q2rSpRo0apdjYWBUVFalFixaaMWOGPDw8rrver3Xr1k19\n+/bVpk2bSjwfERGhefPm6eWXX5Yk1a5dW4mJiRo/frxsNpvq1q2rOXPmlFmbu7u7xo8fr8TERH30\n0Udq1qyZ/vrXv8pkMqlTp07at2+fJKlDhw6aO3eufH19y3U8wsLC9I9//KPcx6i8fl1vRESEfH19\n9eWXX9qPAwBAMhmGYTi7CAAAAAAAAABwdePGjVNcXJyaNGlSaWscPnxYixcvtt8/DADAZQwBAAAA\nAAAAoEI8/fTTWr58eaWusWzZMiUkJFTqGgDgajizCwAAAAAAAAAAAC6LM7sAAAAAAAAAAADgshh2\nAQAAAAAAAAAAwGUx7AIAAAAAAAAAAIDLYtgFAAAAAAAAAAAAl8WwCwAAAAAAAAAAAC7r/wHH6GBV\nQXXNLgAAAABJRU5ErkJggg==\n",
+ "text/plain": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "image/png": "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\nPn06nTt3Zu3atTF9T5s2jW+++YapU6cye/ZsmjZtyogRI6zXd+/ezcSJE5k1axaLFi2Kaf9orr32\nWvr27UuXLl244IILAKwl6WbOnMmWLVuYMmUKH3/8MWeffTYPPfQQAI8++iiNGjXis88+Y/LkyXz0\n0Ufs2rWLd999l9tvv50pU6YwZ84c5s+fz/r163/RWNavX0+HDh3inm/dujXt27c/5vv379/PLbfc\nwueff84tt9zCnDlzCAQCAMyYMYPLL7+c4uJiRo4cyfjx45kxYwYvv/wyo0eP5ueff45p66KLLuKH\nH34gPz8fMKtBLr30Ug4ePHjMufolfvrpJx588EFmz57NaaedxhtvvGG9lpqayty5cxk8eDBPPvkk\nrVu3Zvr06cycOZPCwkLeeuutY24z9evXZ/r06bz44ouMGzeOYDB4zG0IYOPGjbz44otMmjSJadOm\n4XA4Eo7/2WefpWbNmkyYMIELL7yQe+65hzPPPJPZs2fzwQcfMGvWLObMmRM3L9FJwdzcXJo2bWot\n0fbtt99Sr149mjRpctTtKLq96ETBK6+8wsGDB/n444/5+OOP0XWd8ePHH3UeVq9ezbJly5g1axbT\np0+nfv36bN68OWHs3Llz6devn/Xz4osvAkffT6r7HHfddZf1/VUdT6oTDAbp3r07n3/+OS1btuT2\n22/n//7v/5g+fTqTJk3izTffZPXq1UdtA2DDhg2888471ns8Hg8ffvghQ4YM4fXXX7fi1q5dy5tv\nvsncuXPZvn07kydPprCwkNtvv93aZp966inuvfdefvrpJyD2WDh27FirKrayspIpU6bw2muvMXPm\nTJ555hmefvppq6/ly5czatQoPvnkE9q1a8drr70GVH98qW5/+LWO9/1PCCGEEEL8b5DKLiGEEEII\n8Yeoqk4A0DSNjIwMnn76aWrXrg2Y92apqmT4+uuv2bVrF1dccYX1/pKSEoqKiliyZAkjR47EZrNh\ns9mYNGkSYCZgwKwYa9GiBZdccgndunWjW7dudOzYMWYsixYt4tJLL8Xj8QAwZMgQXn31VSuZ0717\nd1RVxev10rBhQ4qLi3/RZ6xaxvDHH39k+PDhnHnmmWRlZQGwYMEC1q1bx4ABAwDQdR2fzweYS7Dd\ne++9AKSkpPDJJ58AMG7cOBYtWsSrr75KXl4efr+fiooK0tPTjzkWRVEwDOMXjTsRu91uJcXq169P\n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\n2U7lhKjYJSIiIiIiIiIiIiIiMoe5laB2YO3sJnKCVOwSERERERERERERERGZw8y+samD03PjLhW7\nRERERERERERERERE5rJsfLYzeE5U7BIREREREREREREREZnDTs/FC6d5s52AiIiIiIiIiIiIiIiI\nzKJ5KSgFs53FCVOxS0REREREREREREREZA4rv2QpyYNjED89lzPUMoYiIiIiIiIiIiIiIiJzWDmR\nmO0UnhMVu0REREREREREREREROawMBdQyYdQrc52KidEyxiKiIiIiIiIiIiIiIjMYclNB/Af2ANh\nONupnBB1domIiIiIiIiIiIiIiMxh8UJptlN4TlTsEhERERERERERERERmcNMoQKAVWeXiIiIiIiI\niIiIiIiInG5MKZg6srOax4lSsUtERERERERERERERGQOs2a2M3huVOwSERERERERERERERGZ045U\nu07Pzi5vthMQERERERERERERERGR2RNcuwr/0AQkErOdyglRZ5eIiIiIiIiIiIiIiMgcNpptBef0\nXctQxS4REREREREREREREZE5zC9XCSshhNFsp3JCVOwSERERERERERERERGZw5yNB3F/tJMwqMx2\nKidExS4REREREREREREREZE5LDORA8BYdXaJiIiIiIiIiIiIiIjI6SYIa39G4ezmcYJU7BIRERER\nEREREREREZnDnMly7SBSZ5eIiIiIiIiIiIiIiIicZmz9yMxiFidOxS4RERERERERERERERE5bXmz\nnYCIiIiIiIiIiIiIiIjMnnD9IpyeDMQTs53KCVGxS0REREREREREREREZA4b6+2mKwxx3NOzbKRl\nDEVEREREREREREREROYw163t1RUG4SxncmJU7BIREREREREREREREZnLNh0iumcvJizNdiYnRMUu\nERERERERERGR/5+9ew2ytC7sff9bl753zzDAgIqibC7heMBNBiQXxEgGjpcJRosYqRATU7Gi2YlG\noSoxJBFCKSDUPseSWECyLarExI1utxANUQMYUJJwPB5nEAFFk8hNAZlrT/f0up4XPfbeJjbtefas\n9czi+XyqdK3Va03Pd3zxvPn5fxYAVNjs0ztT37mYfq1fdkohxi4AAAAAAIAKa+y/feHSkrELAAAA\nAACAEVPfvpAkqbVbJZcUY+wCAAAAAAAgiZNdAAAAAAAAjJh+bfmxm7FyQwpqlh0AAAAAAABAeXov\n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\nefbZZxg/fgoXXtj4uP0+/XQDTZs2ixxv27aVESMeYtSoLK68shUA11xzLXPnvszUqTPo338Ql1xy\nKZmZXVmzZhXjx48DID6+EsFgkEAgQEZG80iP69at5fzz653WeyJJkiRJkiRJklSWKtRrDMtamzZt\nWbVqBb16dSMYjGHIkOHMm/cCaWl1aN36Gjp2vIO+fe8nFArRo0cfKlWqxLPPjufo0aNkZY0CID39\nPIYOfZQDBw6QkJBIIBCI7D99+lSKi4t59tlvXnWYlJTE2LETTthL8+YX895779K7dzeOHQvRvv3t\n1KpVm7vvvpexY7Po2fNegsEgw4ePPv03RpIkSZIkSZIkqYwEwuFwuLyb+D727Ttc3i2cVGpq8hnf\noySVNmefpLORs0/S2cjZJ+ls49yTdDY602dfamryd9Z8jaEkSZIkSZIkSZKilmGXJEmSJEmSJEmS\nopZhlyRJkiRJkiRJkqKWYZckSZIkSZIkSZKilmGXJEmSJEmSJEmSopZhlyRJkiRJkiRJkqKWYdcP\nEAqFePrpJ+jZ814yMzPJy9t1XH3hwjfo3j2THj26snTpkuNqOTlrad/+xsjxX//6Pvfddzc9e97L\nwoVvAFBU9DWPPjqEPn3u45e/7M+BAwcA2LDhY/r0uY/evbszfPhQioqKIvscOPAl7dvfyI4d24+7\n3uTJ41mw4NXS/PqSJEmSJEmSJEnlLljeDZSWxPnPUmn1f5XqnkWXtqOg04PfWV+y5M8UFxczffps\ndu/ewpQpExk7dgIA+/f/nVdfncesWdkUFxfTp093LrusJfHx8ezdu4d5816gpKQEgJKSEqZMmcDM\nmb+jSpUq9O7dnVatruZPf3qHevXq0717T9599w/Mnfs8Dz44mHHjHicraxxpaXVYtGgBe/d+Tnr6\n+ZSUlPDUU08QH18p0uOBAwfIyhrFrl076NIls1TvjyRJkiRJkiRJUnnzya4fIDc3h5YtrwSgefPm\nbNy4IVLbsOFjmjZtRnx8PElJSdSuXYctWzZRVFTEM888yeDBwyJrt2/fRu3adahatSpxcXFkZDRj\n3boccnPX0bLlVQBccUUrVq9eya5dO6hWrRrz579Ev349OHToK9LTzwdg6tRJ3HprB2rWrBnZ+8iR\nQrp168HPfvbzMrgjkiRJkiRJkiRJZavCPNlV0OnBkz6FdVquWVBAYmJS5DgmJoaSkhKCweC3agkJ\nCeTn5zNx4lPceWcmqannHrdPUtI/r02koCD/uPMJCQkUFORz8OBBPvoolwEDhlCnTjpDhw6gYcNG\nfPHFXlJSUmjZ8kqys2dH9qpVqza1atVm+fKlp/NWSJIkSZIkSZIklYsKE3aVh8TERAoLCyPH4XCY\nYDB4wlphYSFxcXGsW/cheXm7+O1vZ3Do0FeMGvUwmZndKCws+Ke134Rc3+xREPl8UlIS1aqlkJaW\nRt269QBo2fJKPv10Ax988FcCgQCrV69k8+bPyMoaydixEzjnnP95ykuSJEmSJEmSJKmiMez6AZo2\nbcbSpUto1+56cnJyqFevfqTWqNFFzJjxHEVFRRw9epQdO7bRqNFFvPzy65E1N9/8M0aPfpKSkhLy\n8nZx6NBXVKmSQE7Oh9x5ZyZ79uxh2bKlNG7chOXLl9KsWQtq1arNkSNHyMvbRVpaHdaty+E//uMW\n7rrrnsi+/fr1YMiQRwy6JEmSJEmSJElShWfY9QO0adOWVatW0KtXN4LBGIYMGc68eS+QllaH1q2v\noWPHO+jb935CoRA9evShUqVKJ9wnGAzSr99ABg16gFAoxI033kxq6rncdltHsrJG0bt3d+Li4hg1\nKou4uDiGDRvB6NGPEg5DkyYZXHVV6zL+5pIkSZIkSZIkSWeGQDgcDpd3E9/Hvn2Hy7uFk0pNTT7j\ne5Sk0ubsk3Q2cvZJOhs5+ySdbZx7ks5GZ/rsS01N/s5aTBn2IUmSJEmSJEmSJJUqwy5JkiRJkiRJ\nkiRFLcMuSZIkSZIkSZIkRS3DLkmSJEmSJEmSJEUtwy5JkiRJkiRJkiRFLcMuSZIkSZIkSZIkRS3D\nrh8gFArx9NNP0LPnvWRmZpKXt+u4+sKFb9C9eyY9enRl6dIlx9VyctbSvv2NkeO//vV97rvvbnr2\nvJeFC98AoKjoax59dAh9+tzHL3/ZnwMHDgCwYcPH9OlzH717d2f48KEUFRVF9jlw4Evat7+RHTu2\nH3e9yZPHs2DBq6X59SVJkiRJkiRJkspdsLwbKE01ht58wvOFN/yCr6/tBEDyzJHEbcr51pqj9Zpw\nuNcTAFT+yxsk/Odsvnxq4Umvt2TJnykuLmb69Nns3r2FKVMmMnbsBAD27/87r746j1mzsikuLqZP\nn+5cdllL4uPj2bt3D/PmvUBJSQkAJSUlTJkygZkzf0eVKlXo3bs7rVpdzZ/+9A716tWne/eevPvu\nH5g793kefHAw48Y9TlbWONLS6rBo0QL27v2c9PTzKSkp4amnniA+vlKkxwMHDpCVNYpdu3bQpUvm\nv35TJUmSJEmSJEmSzmA+2fUD5Obm0LLllQA0b96cjRs3RGobNnxM06bNiI+PJykpidq167BlyyaK\niop45pknGTx4WGTt9u3bqF27DlWrViUuLo6MjGasW5dDbu46Wra8CoArrmjF6tUr2bVrB9WqVWP+\n/Jfo168Hhw59RXr6+QBMnTqJW2/tQM2aNSN7HzlSSLduPfjZz35eBndEkiRJkiRJkiSpbFWoJ7tO\n9SQWwOH7x5xyzdfX3MbX19x2ynUFBQUkJiZFjmNiYigpKSEYDH6rlpCQQH5+PhMnPsWdd2aSmnru\ncfskJf3z2kQKCvKPO5+QkEBBQT4HDx7ko49yGTBgCHXqpDN06AAaNmzEF1/sJSUlhZYtryQ7e3Zk\nr1q1alOrVm2WL196yu8jSZIkSZIkSZIUbSpU2FXWEhMTKSwsjByHw2GCweAJa4WFhcTFxbFu3Yfk\n5e3it7+dwaFDXzFq1MNkZnajsLDgn9Z+E3J9s0dB5PNJSUlUq5ZCWloadevWA6Blyyv59NMNfPDB\nXwkEAqxevZLNmz8jK2skY8dO4Jxz/ucpL0mSJEmSJEmSpIrGsOsHaNq0GUuXLqFdu+vJycmhXr36\nkVqjRhcxY8ZzFBUVcfToUXbs2EajRhfx8suvR9bcfPPPGD36SUpKSsjL28WhQ19RpUoCOTkfcued\nmezZs4dly5bSuHETli9fSrNmLahVqzZHjhwhL28XaWl1WLcuh//4j1u46657Ivv269eDIUMeMeiS\nJEmSJEmSJEkVnmHXD9CmTVtWrVpBr17dCAZjGDJkOPPmvUBaWh1at76Gjh3voG/f+wmFQvTo0YdK\nlSqdcJ9gMEi/fgMZNOgBQqEQN954M6mp53LbbR3JyhpF797diYuLY9SoLOLi4hg2bASjRz9KOAxN\nmmRw1VWty/ibS5IkSZIkSZIknRkC4XA4XN5NfB/79h0u7xZOKjU1+YzvUZJKm7NP0tnI2SfpbOTs\nk3S2ce5JOhud6bMvNTX5O2sxZdiHJEmSJEmSJEmSVKoMuyRJkiRJkiRJkhS1DLskSZIkSZIkSZIU\ntQy7JEmSJEmSJEmSFLUMuyRJkiRJkiRJkhS1DLskSZIkSZIkSZIUtYLl3UA0C4VCjB8/ls2bN5GY\nWIVBgx4mLa1OpP7aa/N5++3FBALQtev9tGp1NUeOHGH06Ec5dOgQlStXYcSIMVSvXj3ymblzn2fr\n1s2MHv0kAJMmPcNHH62jSpUq9O7dn4suasK2bVt56qnHgTAXXNCAgQOHEBsby7JlS5k9eyYADRpc\nyODBDxEIBMr0nkiSJEmSJEmSJJWlChN2JT42nEqLFpTqnkU33UrBY1nfWV+y5M8UFxczffpsdu/e\nwpQpExk7dgIABw8e5I03XmXOnJcoLi7iF7/oxFVXtWbRojdo2LAR9957P2+9tYi5c59nwIBfArBs\n2VKWL/+Ac889F4ClS5ewc+cOZs6cy6FDhxg8+AGefz6bGTOm0bNnX5o3v5jHH3+Mv/71fS677HKe\ne+5ZpkyZQUpKCi++OJeDBw8eF6RJkiRJkiRJkiRVNBUm7CoPubk5tGx5JQDNmzdn48YNkVpKSgpz\n5rxEMBjk88//RlJSEoFAgE6dunDs2DEA9u7dQ40aNQDIy9vFwoWv061bDxYv/ia02759Ky1bXkFM\nTAwpKSnExMSwf//fycp6itjYWI4ePcr+/fupUaMGH32US7169Zk6dSJ/+9tubrrpVoMuSZIkSZIk\nSZJU4VWYsKvgsayTPoV1Wq5ZUEBiYlLkOCYmhpKSEoLBb25rMBjktdde4fnnZ9CxY+fIutjYWPr3\n78XWrZuZOHEahYWFTJgwjuHDR7N9+7bIup/+tCHz5r1Ahw6d2bt3D9u3b+Xrr78mNjaWPXs+Z8CA\nPiQmJpGefh4rVizjww/XMHv2i1SpkkDfvvdx0UVNSU8/r+xuiCRJkiRJkiRJUhmLKe8GolliYiKF\nhYWR43A4HAm6/qFDh868+eY7rFv3IWvXro6cnzz5N0ybNotHHx3KqlXL2b9/PyNHPszkyRNYs2Y1\n2dlzuPzyK2jWrAX9+/filVdepGHDRlStWg2AH//4J8yb9wa33tqBKVMmUrVqNS68sDHnnFOThIQE\nmjW7mE2bPiubGyFJkiRJkiRJklRODLt+gKZNm7F8+VIAcnJyqFevfqS2c+d2HnlkSCQAi4uLIxAI\nkJ09m3fe+U8AKleuTExMLNdccy1z577M1Kkz6N9/EJdccimZmV3ZuXMH1avX4LnnZnHXXfcQCARI\nTk7moYcGsmvXTgASEhKIiYmhYcNGbNu2hYMHD1JSUsLHH39E3bp1y/6mSJIkSZIkSZIklaEK8xrD\n8tCmTVtWrVpBr17dCAZjGDJkOPPmvUBaWh1at76G+vV/Ss+e9xIIBLjiiqto0eISzjvvfLKyHmPx\n4jcJhUI88sjI79z/Rz/6MStWfMDixW8SHx/PoEEP6LtfqgAAEHpJREFUAfCLX3TliSceIxiMo3Ll\nyjz00AiqV69Oz559GTSoHwDXXnvdceGbJEmSJEmSJElSRRQIh8Ph8m7i+9i373B5t3BSqanJZ3yP\nklTanH2SzkbOPklnI2efpLONc0/S2ehMn32pqcnfWfM1hpIkSZIkSZIkSYpapy3sCoVCjBw5ks6d\nO5OZmcmOHTuOq8+fP5/27dvTqVMn3nvvvdPVhiRJkiRJkiRJkiqw0/abXe+++y7FxcW88sor5OTk\nMHbsWH79618DsG/fPrKzs3nttdcoKiqiS5cutGrVivj4+NPVjiRJkiRJkiRJkiqg0xZ2rVmzhquv\nvhqA5s2bs379+kgtNzeXFi1aEB8fT3x8POnp6WzcuJGMjIzv3K969QSCwdjT1W6pONn7IiWponL2\nSTobOfsknY2cfZLONs49SWejaJ19py3sys/PJykpKXIcGxtLSUkJwWCQ/Px8kpP/54YlJiaSn59/\n0v0OHCg8Xa2WijP9h9sk6XRw9kk6Gzn7JJ2NnH2SzjbOPUlnozN99p0siDttv9mVlJREQUFB5DgU\nChEMBk9YKygoOC78kiRJkiRJkiRJkr6P0/Zk18UXX8x7773Hz3/+c3JycmjQoEGklpGRwaRJkygq\nKqK4uJgtW7YcV48WoVCI8ePHsnnzJhITqzBo0MOkpdWJ1F97bT5vv72YQAC6dr2fVq2u5siRI4we\n/SiHDh2icuUqjBgxhurVq0c+M3fu82zdupnRo58EYNKkZ/joo3VUqVKF3r37c9FFTdi2bStPPfU4\nEOaCCxowcOAQYmNjWbZsKbNnzwSgQYMLGTz4IQKBQJneE0mSJEmSJEmSpLJ02sKu66+/nqVLl3LH\nHXcQDod54oknmD17Nunp6bRr147MzEy6dOlCOBxm4MCBVKpU6Qdfs8YlTU54vrBPf77u3gOA5D73\nE7di2bfWHL3kUg7PmANA5ew5JEx6hi/XrP/Wun+2ZMmfKS4uZvr02ezevYUpUyYyduwEAA4ePMgb\nb7zKnDkvUVxcxC9+0YmrrmrNokVv0LBhI+69937eemsRc+c+z4ABvwRg2bKlLF/+Aeeeey4AS5cu\nYefOHcycOZdDhw4xePADPP98NjNmTKNnz740b34xjz/+GH/96/tcdtnlPPfcs0yZMoOUlBRefHEu\nBw8ePC5IkyRJkiRJkiRJqmhOW9gVExPDmDFjjjt3wQUXRP65U6dOdOrU6XRdvkzk5ubQsuWVADRv\n3pyNGzdEaikpKcyZ8xLBYJDPP/8bSUlJBAIBOnXqwrFjxwDYu3cPNWrUACAvbxcLF75Ot249WLx4\nAQDbt2+lZcsriImJISUlhZiYGPbv/ztZWU8RGxvL0aNH2b9/PzVq1OCjj3KpV68+U6dO5G9/281N\nN91q0CVJkiRJkiRJkiq80xZ2lYdTPYkFcPi5madc83VmV77O7HrKdQUFBSQmJkWOY2JiKCkpifw2\nWTAY5LXXXuH552fQsWPnyLrY2Fj69+/F1q2bmThxGoWFhUyYMI7hw0ezffu2yLqf/rQh8+a9QIcO\nndm7dw/bt2/l66+/JjY2lj17PmfAgD4kJiaRnn4eK1Ys48MP1zB79otUqZJA3773cdFFTUlPP++U\n30OSJEmSJEmSJClaxZR3A9EsMTGRwsLCyHE4HI4EXf/QoUNn3nzzHdat+5C1a1dHzk+e/BumTZvF\no48OZdWq5ezfv5+RIx9m8uQJrFmzmuzsOVx++RU0a9aC/v178corL9KwYSOqVq0GwI9//BPmzXuD\nW2/twJQpE6latRoXXtiYc86pSUJCAs2aXcymTZ+VzY2QJEmSJEmSJEkqJ4ZdP0DTps1YvnwpADk5\nOdSrVz9S27lzO488MiQSgMXFxREIBMjOns077/wnAJUrVyYmJpZrrrmWuXNfZurUGfTvP4hLLrmU\nzMyu7Ny5g+rVa/Dcc7O46657CAQCJCcn89BDA9m1aycACQkJxMTE0LBhI7Zt28LBgwcpKSnh448/\nom7dumV/UyRJkiRJkiRJkspQhXqNYVlr06Ytq1atoFevbgSDMQwZMpx5814gLa0OrVtfQ/36P6Vn\nz3sJBAJcccVVtGhxCeeddz5ZWY+xePGbhEIhHnlk5Hfu/6Mf/ZgVKz5g8eI3iY+PZ9CghwD4xS+6\n8sQTjxEMxlG5cmUeemgE1atXp2fPvgwa1A+Aa6+97rjwTZIkSZIkSZIkqSIKhMPhcHk38X3s23e4\nvFs4qdTU5DO+R0kqbc4+SWcjZ5+ks5GzT9LZxrkn6Wx0ps++1NTk76z5GkNJkiRJkiRJkiRFLcMu\nSZIkSZIkSZIkRS3DLkmSJEmSJEmSJEUtwy5JkiRJkiRJkiRFLcMuSZIkSZIkSZIkRS3DLkmSJEmS\nJEmSJEUtwy5JkiRJkiRJkiRFLcMuSZIkSZIkSZIkRS3DLkmSJEmSJEmSJEWtQDgcDpd3E5IkSZIk\nSZIkSdL/hk92SZIkSZIkSZIkKWoZdkmSJEmSJEmSJClqGXZJkiRJkiRJkiQpahl2SZIkSZIkSZIk\nKWoZdkmSJEmSJEmSJClqGXZJkiRJkiRJkiQpahl2SZIkSZIkSZIkKWoZdv0LQqEQI0eOpHPnzmRm\nZrJjx47j6vPnz6d9+/Z06tSJ9957r5y6lKTSdarZN2fOHG6//XZuv/12pk6dWk5dSlLpOtXs+8ea\n++67j5dffrkcOpSk0neq2feXv/yFTp060alTJx577DHC4XA5dSpJpedUs+/555+nffv2dOjQgT/9\n6U/l1KUklb5169aRmZn5rfP//d//TYcOHejcuTPz588vh87+d4Ll3UA0effddykuLuaVV14hJyeH\nsWPH8utf/xqAffv2kZ2dzWuvvUZRURFdunShVatWxMfHl3PXkvTDnGz27dq1i4ULF/L73/+eQCBA\nly5duO6667jwwgvLuWtJ+mFONvv+YdKkSXz11Vfl1KEklb6Tzb78/Hyefvppfve731GjRg1mzpzJ\ngQMHqFGjRjl3LUk/zMlm36FDh8jOzuaPf/wjR44c4dZbb+X6668v544l6YebOXMmCxcupEqVKsed\nP3r0KE8++SSvvvoqVapU4c4776Rt27akpqaWU6ffn092/QvWrFnD1VdfDUDz5s1Zv359pJabm0uL\nFi2Ij48nOTmZ9PR0Nm7cWF6tSlKpOdns+/GPf8ysWbOIjY0lJiaGkpISKlWqVF6tSlKpOdnsA3jn\nnXcIBAK0adOmPNqTpNPiZLPvww8/pEGDBowbN44uXbpQs2ZNgy5JFcLJZl+VKlWoVasWR44c4ciR\nIwQCgfJqU5JKVXp6OlOmTPnW+S1btpCenk61atWIj4/nkksuYfXq1eXQ4b/OJ7v+Bfn5+SQlJUWO\nY2NjKSkpIRgMkp+fT3JycqSWmJhIfn5+ebQpSaXqZLMvLi6OGjVqEA6Heeqpp2jcuDF169Ytx24l\nqXScbPZ99tlnLF68mMmTJzNt2rRy7FKSStfJZt+BAwdYsWIFCxYsICEhgbvuuovmzZv7Zz9JUe9k\nsw/gJz/5CTfeeCPHjh2jZ8+e5dWmJJWqn/3sZ+Tl5X3rfDTnHIZd/4KkpCQKCgoix6FQKPIfvv+/\nVlBQcNy/FJIUrU42+wCKiop45JFHSExMZNSoUeXRoiSVupPNvgULFrB3717uuecedu/eTVxcHLVr\n1/YpL0lR72SzLyUlhaZNm0ZeYXPppZeyYcMGwy5JUe9ks+/999/niy++4L/+678A6N69OxdffDEZ\nGRnl0qsknW7RnHP4GsN/wcUXX8z7778PQE5ODg0aNIjUMjIyWLNmDUVFRRw+fJgtW7YcV5ekaHWy\n2RcOh+nTpw8NGzZkzJgxxMbGllebklSqTjb7hg4dyu9//3uys7O57bbb6Nq1q0GXpArhZLOvSZMm\nfPbZZ3z55ZeUlJSwbt066tevX16tSlKpOdnsq1atGpUrVyY+Pp5KlSqRnJzMoUOHyqtVSTrtLrjg\nAnbs2MHBgwcpLi5m9erVtGjRorzb+l58sutfcP3117N06VLuuOMOwuEwTzzxBLNnzyY9PZ127dqR\nmZlJly5dCIfDDBw40N+tkVQhnGz2hUIhVq5cSXFxMUuWLAFg0KBBUfMfQUn6Lqf6c58kVUSnmn2D\nBw/mvvvuA+CGG27wL3hKqhBONfs++OADOnXqRExMDBdffDGtWrUq75YlqdQtWrSIwsJCOnfuzLBh\nw+jevTvhcJgOHTrwox/9qLzb+14C4XA4XN5NSJIkSZIkSZIkSf8bvsZQkiRJkiRJkiRJUcuwS5Ik\nSZIkSZIkSVHLsEuSJEmSJEmSJElRy7BLkiRJkiRJkiRJUcuwS5IkSZIkSZIkSVHLsEuSJEmSSsHo\n0aO55ZZb+PnPf06TJk245ZZbuOWWW2jbti1Tpkwp1Wvl5eVx7bXX/kufufbaa8nLy/vW+czMTFas\nWFFarUmSJElSmQuWdwOSJEmSVBGMGjUK+CaIuvvuu3nzzTcBSj3okiRJkiQdz7BLkiRJkk6z3Nxc\n7rjjDvbu3Uv79u154IEHeP3113njjTc4ePAgbdu25e6772bkyJHs2bOHQCDA4MGDueqqq1i2bBlP\nP/00ANWqVWP8+PEAfP311wwcOJBNmzZRtWpVpk2bRvXq1XnvvfeYNGkSoVCIOnXqMGbMGGrWrBnp\npbi4mEcffZT169dTu3ZtDhw4UC73RJIkSZJKi2GXJEmSJJ1m+/fvZ968eeTn53Pttddy7733ArB3\n717eeustgsEgAwcOpEOHDrRr144vvviCLl26sGDBAp577jkee+wxMjIymDlzJp988gnnn38+X375\nJffeey8ZGRn079+ft956ixtuuIGRI0fy8ssvk5aWxqxZsxgzZgyTJ0+O9JKdnQ3A22+/zfbt27n5\n5pvL5Z5IkiRJUmkx7JIkSZKk0+zqq68mPj6eGjVqUL16db766isAGjduTDD4zf+WffDBB2zdujUS\nTJWUlLBr1y7atWtHv379uO6662jXrh2tWrUiLy+Pc889l4yMDADq16/PgQMHyM3NJSMjg7S0NAA6\nd+7MjBkzjutl5cqVdO7cGYDzzz+fFi1alMk9kCRJkqTTxbBLkiRJkk6zfwRaAIFAgHA4DEDlypUj\n50OhEHPnziUlJQWAL774gnPOOYdGjRrRtm1b3nvvPZ5++mlyc3O56aabTrhnKBQ67rrhcJiSkpLj\nzv3z9f//3iRJkiQpGsWUdwOSJEmSJLjiiit46aWXANi8eTM33XQTR44c4fbbb6egoICuXbvStWtX\nPvnkk+/co1mzZqxbt468vDwAXnnlFVq2bHncmiuvvJJFixYRCoXYvXs3a9euPX1fSpIkSZLKgH+F\nT5IkSZLOAMOHD2fkyJHcdNNNADz11FMkJSUxaNAghg0bRjAYJCEhgaysrO/co2bNmowZM4Z+/fpx\n9OhRatWqxeOPP37cmi5durBp0yb+/d//ndq1a9OgQYPT+r0kSZIk6XQLhP/5/RWSJEmSJEmSJElS\nFPE1hpIkSZIkSZIkSYpahl2SJEmSJEmSJEmKWoZdkiRJkiRJkiRJilqGXZIkSZIkSZIkSYpahl2S\nJEmSJEmSJEmKWoZdkiRJkiRJkiRJilqGXZIkSZIkSZIkSYpa/xdqw3PhKrtkOQAAAABJRU5ErkJg\ngg==\n",
+ "text/plain": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "# setup the figure\n",
+ "fig1 = plt.figure(figsize=(30, 15))\n",
+ "\n",
+ "# plot one for PR curve\n",
+ "ax1 = fig1.add_subplot(1, 2, 1)\n",
+ "ax1.set_xlim([-0.025, 1.025])\n",
+ "ax1.set_ylim([-0.025, 1.025])\n",
+ "ax1.set_xlabel(\"Recall\")\n",
+ "ax1.set_ylabel(\"Precision\")\n",
+ "ax1.set_title(\"PR Curve for various Feature Importance Threshold\")\n",
+ "\n",
+ "# plot 2 for ROC curve\n",
+ "ax2 = fig1.add_subplot(1, 2, 2)\n",
+ "ax2.set_xlim([-0.025, 1.025])\n",
+ "ax2.set_ylim([-0.025, 1.025])\n",
+ "ax2.set_xlabel(\"False Positive Rate (FPR)\")\n",
+ "ax2.set_ylabel(\"True Positive Rate (TPR)\")\n",
+ "ax2.set_title(\"ROC Curve for various Feature Importance Threshold\")\n",
+ "\n",
+ "# plot the baseline ROC curve\n",
+ "ax2.plot([0, 1], [0, 1], \"k--\")\n",
+ "\n",
+ "\n",
+ "fig2 = plt.figure(figsize=(30, 15))\n",
+ "# plot 3 for precision recall vs threshold curve\n",
+ "ax3 = fig2.add_subplot(1, 1, 1)\n",
+ "ax3.set_xlim([-0.025, 1.025])\n",
+ "ax3.set_ylim([-0.025, 1.025])\n",
+ "ax3.set_xlabel(\"Threshold\")\n",
+ "ax3.set_ylabel(\"Precision and Recall\")\n",
+ "ax3.set_title(\n",
+ " \"Precision, Recall Curve vs Threshold for various Feature Importance Threshold\"\n",
+ ")\n",
+ "\n",
+ "\n",
+ "# lets explore various thresholds.\n",
+ "fi_thresholds = xgb_model_best_sofar.feature_importances_\n",
+ "\n",
+ "fi_ths_sorted = np.sort(fi_thresholds)\n",
+ "ths_size = len(fi_ths_sorted)\n",
+ "ths_lim = 10 # threshold limits i.e the various values we want to try out.\n",
+ "if ths_size > ths_lim:\n",
+ " # select only the thresholds\n",
+ " step = int(len(fi_ths_sorted) / ths_lim)\n",
+ " fi_ths_sorted = [\n",
+ " fi_ths_sorted[i] for i in range(0, len(fi_ths_sorted), step)\n",
+ " ]\n",
+ "\n",
+ "ths_size = len(fi_ths_sorted)\n",
+ "colors = plt.cm.rainbow(np.linspace(0, 1, ths_size))\n",
+ "\n",
+ "# from best_weights\n",
+ "xgb_models_bm_fi = {}\n",
+ "select_txfs = {}\n",
+ "# try various weights and plot on the same figure for better comparasion\n",
+ "for fi_th, color in zip(fi_ths_sorted, colors):\n",
+ " # train a transformer to select a feature based on threshold 50\n",
+ " select_txf = SelectFromModel(\n",
+ " xgb_model_best_sofar, threshold=fi_th, prefit=True\n",
+ " )\n",
+ "\n",
+ " select_X_train = select_txf.transform(X_train)\n",
+ " select_txfs[fi_th] = select_txf\n",
+ "\n",
+ " # create a model with pos_sample_weight and other default params\n",
+ " xgb_model = create_xgb_clf({\"scale_pos_weight\": best_weight})\n",
+ "\n",
+ " # store the model for future use\n",
+ " xgb_models_bm_fi[fi_th] = xgb_model\n",
+ "\n",
+ " # find the prediction with probabilities for pos_sample_weight\n",
+ " xgb_predict_obj = find_cv_model_predict(\n",
+ " xgb_model, select_X_train, y_train, weight=best_weight\n",
+ " )\n",
+ "\n",
+ " xgb_cls_1_proba = xgb_predict_obj[\"proba\"][:, 1]\n",
+ " xgb_y_pred = xgb_predict_obj[\"pred\"]\n",
+ " y_act = y_train\n",
+ " y_score = xgb_cls_1_proba\n",
+ " label = fi_th\n",
+ " pr, rc, pr_th = precision_recall_curve(y_act, y_score)\n",
+ " tpr, fpr, _ = roc_curve(y_act, y_score)\n",
+ "\n",
+ " ax1.plot(rc, pr, c=color, label=label)\n",
+ " ax2.plot(tpr, fpr, c=color, label=label)\n",
+ "\n",
+ " ax3.plot(pr_th, pr[:-1], c=color, label=label)\n",
+ " ax3.plot(pr_th, rc[:-1], \"--\", c=color, label=label)\n",
+ "\n",
+ "\n",
+ "ax1.legend(loc=\"lower left\")\n",
+ "ax2.legend(loc=\"lower left\")\n",
+ "ax3.legend(loc=\"lower left\")\n",
+ "\n",
+ "plt.show()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "we don't want to chose red one as it is too much overfitting.\n",
+ "\n",
+ "If we chose bluish green color corresponding to threshold 0.008, we get reasonable performance for recall and precision. \n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "##### Analysis of the Weighted Model with Feature Selection.\n",
+ "\n",
+ "Lets use 0.008 threshold to plot again various metrics especially classificaion report and see how are we going compare to our [weighted model](#ml_train_2)\n",
+ "\n",
+ "We will plot various performance metrics first as we have done in previous sections\n",
+ "\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 34,
+ "metadata": {
+ "collapsed": true
+ },
+ "outputs": [],
+ "source": [
+ "# train a transformer to select a feature based on threshold 50\n",
+ "select_txf = SelectFromModel(\n",
+ " xgb_model_best_sofar, threshold=0.008, prefit=True\n",
+ ")\n",
+ "\n",
+ "select_X_train = select_txf.transform(X_train)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 35,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "[ 0.99770278 0.99987423 0.56104761 ..., 0.99997449 0.99997449\n",
+ " 0.99993443]\n",
+ "[0 1 1 1 1 1 0 0 1 0 0 1 0 0 0 1 1 1 1 0 0 1 1 1 1 1 1 1 0 1 1 1 1 0 1 0 1\n",
+ " 0 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 0 1 0 1 1 1 1 0 1 0 1 1 1\n",
+ " 0 1 1 1 1 0 0 1 1 0 1 1 1 0 1 1]\n"
+ ]
+ }
+ ],
+ "source": [
+ "xgb_model_weighted = create_xgb_clf({\"scale_pos_weight\": best_weight})\n",
+ "\n",
+ "\n",
+ "# xgb_predict_obj = find_cv_model_predict(xgb_model, X_train, y_train, weight=1)\n",
+ "# use cross validation to find best model\n",
+ "xgb_predict_weighted_obj = find_cv_model_predict(\n",
+ " xgb_model_weighted, select_X_train, y_train, weight=best_weight\n",
+ ")\n",
+ "\n",
+ "xgb_wt_cls_1_proba = xgb_predict_weighted_obj[\"proba\"][:, 1]\n",
+ "xgb_wt_y_pred = xgb_predict_weighted_obj[\"pred\"]\n",
+ "\n",
+ "\n",
+ "print(xgb_wt_cls_1_proba)\n",
+ "print(xgb_wt_y_pred[10:100])"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 36,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "image/png": "iVBORw0KGgoAAAANSUhEUgAABI0AAAJaCAYAAACiI7eZAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDIuMS4wLCBo\ndHRwOi8vbWF0cGxvdGxpYi5vcmcvpW3flQAAIABJREFUeJzs3Xd4FVXixvHv3JabkAApNEUQASlK\nCzZUqgLSBEGqi6IoYHctFAF1EbCBKCwgrNhQOlhhraiIKCLBTnFBmvQQIP22+f0RyY8YWiDJSXk/\nz7PP471z78zLzEaOb86csWzbthERERERERERETmGw3QAEREREREREREpelQaiYiIiIiIiIhILiqN\nREREREREREQkF5VGIiIiIiIiIiKSi0ojERERERERERHJRaWRiIiIiIiIiIjkotJIxICdO3dSr149\nunbtmv2/66+/nkWLFp1we9u2benfvz87duw47j6DwSCvvvoq3bt3p2vXrnTs2JHnnnsOn89XmH80\nANavX8+1115L9+7d2blz5xntY8mSJQwePDjfMv373//m008/Pe622267jYMHDwLQpk0bfv7553w7\n7rGmTJnCmDFj8vSd1atX07lz5+NuGzx4MEuWLMmPaCIiIiVOnTp16NKlC127dqVbt260b9+eHj16\n5Ph7Pi0tjWeeeYb27dvTpUsXunTpwqRJk8jIyMixr7fffpvevXtnj7FGjx7NkSNHTnjsvH6+oOze\nvZvOnTvTtWtX1q1bd0b7ONlY5EwsXLiQt95667jbRo0axS+//AJA//79+fDDD/PtuMc6k3Hmzp07\nadKkyXG3jRkzhilTpuRHNJEix2U6gEhp5fV6effdd7Nf7927l86dO3PxxRcTGRmZa7tt24wdO5ZJ\nkybx/PPP59rfE088weHDh3n99deJiooiLS2Nhx9+mJEjR/Lcc88Vyp/pqM8++4zLL7+ccePGFepx\nT2b16tXUqlXruNu+/vrrQk4jIiIiheH1118nJiYm+/WsWbMYO3Ys8+fPJxAIcOutt9K4cWPeeecd\nwsPDSU9PZ+LEiQwcOJDXX38dl8vFSy+9xIoVK5g6dSpxcXH4/X7Gjx/PkCFDmDNnTq5j5vXzBWn1\n6tXExcXx2muvFepxT2bt2rXUrl37uNtWrVpF7969CzmRiJyMSiORIqJSpUpUr16drVu3cvHFF+fa\n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\nExPVq1evch9r8+bNeuSRR3TfffeVOa4kZWdn67TTTiu9Xg6HQ8FgUHXr1tV9992n+vXr7zfvTTfd\npNGjRx/0LcmBqozSCEDU1a1bd6/BSU5Ojrp3765zzjmnzGAMAACgMvjr+KWinH766Ro/frwkKRwO\na8iQIZo1a5aGDBlyQK9zzTXXlL795Zdflr4dqa/pnnvuUceOHSWV/FJw1KhReuGFF3TjjTf+4+d8\n88036tChwwEdZ9y4cXt9LX8+7h7r168vc73Gjx+vCRMm6KGHHtpv3hEjRmjcuHF65JFHDigbUB2w\nPA1Ahdu6dats21ZSUpKeeeYZ9e/fX3369NGECRNk27Yk6cUXX1T37t3Vs2dPPfDAA5KkFStWaNiw\nYRo4cKC6du2qqVOnmvwyAABANbS/8UgwGNSNN96ofv36qV+/fpoxY4Ykadu2bbryyis1YMAADRw4\nUJ9++ul+j+VyudS+fXv9+uuvkqTXXntNvXr1Uu/evTVmzBgVFhb+4/HGjBmj2bNn65577pEkZWVl\nSZKaN2+uUCikU089Vdu2bZMk7dy5U6eeeqqCwaA++eQTDRo0SP369dPVV1+t3Nzc/eYsKipSbm6u\natasKUl69913lZ2drT59+qhHjx765ptv9Omnn2rBggV69NFHtXDhwnKdj7Vr12rLli0H9UvGjh07\nlp63/eU96qijtGHDBq1du/aAjwNUdcw0AhB1W7ZsUd++feX3+5Wbm6tWrVrp8ccf14oVK7R8+XLN\nmjVLDodDN954o9588001btxYr776ql577TUlJCRo+PDhWr58ud544w1deeWVOumkk7Ru3Tr16dNH\n5557rukvDwAAVEF7xi979O7dW8OHD9fMmTP3OR759ttvtWvXLs2ZM0c5OTmaOHGisrOzde+992rg\nwIE644wztGXLFg0dOlRz5sxRcnLyP2bIzc3VokWLNGLECP3yyy+aNGmSZsyYobS0NN111116/PHH\n1bVr17893h633367pkyZopkzZ5Z+zO12q0ePHnrvvfd0/vnn64MPPlC3bt2Un5+viRMn6r///a9q\n1qypadOm6cEHH9S9995bJtvtt9+uhIQE7dixQzVr1lTPnj110UUXybIsTZs2TZMmTVJ6erpmzZql\nZ555RpMmTdLpp5+uDh06qFOnTrruuuv2ez4WLFigzMzMMsfds8wsKSlJr776aplswWBQ77//vtq0\nabPfvHu0a9dOH330kS688MJ/vB5AdURpBCDq9kwXtixL48eP18qVK3XKKafogQce0LJlyzRgwABJ\nJev2DzvsMG3btk1du3ZVSkqKpJJZR5LUokULLVy4UE8//bRWrFihoqIiU18SAACo4v5pedqYMWP2\nOR45+uijtXr1al1yySXq3LmzbrrpJknSp59+qlWrVunRRx+VJIVCIa1bt04tWrTY6/MXLFigvn37\nyrZt2batbt26qVevXnrllVfUtWtXpaWlSZIGDx6sW265RSNGjPjb4+1Pnz59dN999+n888/XW2+9\npeuuu07fffedNm3apAsuuEBSyTKuPbNx/mrPcq9vvvlGo0aNUrdu3eTxeCRJTzzxhBYsWKDVq1fr\nyy+/lNNZdoFLec7HmjVr1Lhx47897l/9ueQLBAJq3bq1Ro8eXa68knTYYYdpzZo15Tp3QHVCaQSg\nwjidTt10003q16+fJk+erHA4rAsvvFAXX3yxJCkvL08ul6t05tEeOTk5SkhI0G233aYaNWqoa9eu\n6tmzp9566y1TXwoAAKimrr322n2OR9LS0vT2229r8eLF+vjjj9W/f3+9/fbbsixLL730klJTUyWV\nlBy1atUq8/p/3tPozyzL2ut927YVCoX+8Xj707p1a+3atUvLli1TTk6O2rZtq/nz5yszM1OTJk2S\nJPn9fhUWFu7zdTIzMzVs2DCNHj1ar7/+uvx+vwYNGqQ+ffrohBNOUPPmzfXKK6/87dezv/PhcDjK\nvQF4efeg+mvePa/vdrv/ttwCqjv+VgCoUG63WzfddJOefPJJtWzZUm+88YYKCwsVCoV01VVX6f33\n31f79u318ccfl3589OjRWr58uRYvXqxRo0bpzDPP1CeffCKpZINIAACAirK/8ciHH36oG2+8UV26\ndCldSrVp0yadeOKJpUupfvvtN/Xu3Vs+n6/cx+3QoYMWLFignTt3Siq5E1nHjh3/8Xh/5nK5FAqF\nyrxm7969NXbsWJ1zzjmSpOOPP15Lly7V6tWrJUlPPvmkJkyYsN9sF198sQoLCzV9+nT9/vvvcjgc\nuvzyy9WxY0fNmzev9Py4XK7St8tzPjIyMrRhw4Zyn6Py+nPePdavX6+MjIyIHwuIdcw0AlDhOnfu\nrLZt2+rrr7/WWWedpezsbIXDYXXq1En9+/eXw+HQ+eefryFDhsiyLHXr1k0nn3yyRo4cqaFDh8rr\n9eqYY47R4YcfrvXr15v+cgAAQDWyv/FI586d9cEHH+icc86R1+tVnz591Lx5c91+++2644471Lt3\nb0nShAkT9rmf0V8dc8wxuuyyyzRs2DAFg0Ede+yxuuuuu+T1ev/2eH92xhlnqG/fvpo9e/ZeH+/T\np48eeeQRPfzww5KkOnXqaNy4cbr22mtlWZbq1atXekOSffF4PLr22ms1btw4zZs3Ty1atNDZZ58t\nh8OhU089VUuWLJEknXzyyXrooYeUkpJSrvPRtWtX3XDDDeU+R+X157x9+vRRSkqKvvrqq9LzAOAP\nDnvPrYoAAAAAAKhErr76ao0aNUrNmjWL2jF+/vlnPfnkk6X7KwH4A8vTAAAAAACV0i233KLJkydH\n9RjPPvusxowZE9VjALGKmUYAAAAAAAAog5lGAAAAAAAAKIPSCAAAAAAAAGVQGgEAAAAAAKAMSiMA\nAAAAAACUQWkEAAAAAACAMiiNAAAAAAAAUMb/A3TVJPYbvt5cAAAAAElFTkSuQmCC\n",
+ "text/plain": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "image/png": "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\n",
+ "text/plain": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "\n",
+ "\n",
+ " Classification Report for best threshold \n",
+ "\n",
+ "\n",
+ " precision recall f1-score support\n",
+ "\n",
+ " 0 0.99 0.36 0.53 2518\n",
+ " 1 0.17 0.98 0.29 329\n",
+ "\n",
+ "avg / total 0.90 0.43 0.50 2847\n",
+ "\n"
+ ]
+ },
+ {
+ "data": {
+ "image/png": "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\nOZ1O2Ww2z2MPHTqk8PBwz3W73a65c+dq69atWrdunSZMmKBmzZrpqaeeytf/mX243W5lZ2fnqzXX\nhXzxX3/99Ro2bJieeeYZXXvttbriiivkdrv1wAMPqG/fvpIkl8vlCUJ/fU379u1TqVKldN9996lW\nrVpq1qyZ2rdvr82bNxe5lvj4eL377rtn3b5ixQr9+OOPnn+4z+zvzC/b0NBQOZ15/xT06tVLixcv\n1vHjx9W6dWtFRUUpJydH1atXz7eQ98iRI/nW8Zz5/NzdetWrV9eVV14pSYW+V0VxZp1/fb/++rl6\n5ZVXVL16dUlmCLbZbIV+ZnL7z32PDMMo9DOU68xaHA6HV68rt9/zbefM1/dXZ27P7XZ7XseFjkNR\nFfR+/PW9aNSokaZOneq57dChQypXrpxq166tpUuXau3atVq3bp1mzJjhWat0rr5zcnLyjZFkjvtf\n34+/fjbO7AuXLo4SQkA1bdpUn332mY4ePSpJmjdvnu69915JUqNGjbRo0SK53W65XC4NGjRIP/zw\ng+e5O3fuVMeOHVW9enUNHDhQAwYMOOuohWbNmmnhwoVKS0uTJM2ZM0cNGzZUaGhosb2Gjh076oYb\nbtDEiRM9r2nBggVKSUmRZB7VlPtF0KhRIy1cuFCSlJycrHvvvVe7d+/W1q1b9a9//Utt27bV4cOH\ntXfvXrnd7iJtv23btkpJSdEbb7yhnJwcSWYQmjRpkueLqnTp0tq2bZskc1FlQkJCgf21adNGv/zy\niz744AP16tVLkhmK9uzZ4xn/HTt2qF27djpy5MhZz8+drZkxY4ZnwW9R3qvi1LRpU7311lsyDEMu\nl0sPPfSQ5s6de0F1FOUz1KRJE61Zs0aHDx+WlDcL6I2L+axu2LBBBw8elCS9//77at68+QWPg8Ph\nOGcgK+y+gjRq1Ehr1qzRH3/8IclcF9W5c2dlZGRo6NCh+vzzz9WhQweNGjVK0dHR2rt3b4F9XX31\n1XI6nfrqq68kmaF56dKlaty4cb7HNWvWzLMA/uDBg9qwYYNXNcOaiJ0IqKZNm+of//iH7rvvPtls\nNkVHR+vVV1+VzWbTo48+qvHjx6tLly7KycnRHXfcobZt22rlypWSzGni9u3bq3v37oqMjFR4eLie\ne+65fP336NFDhw4dUs+ePeV2u1W1alW9+OKLhdb17LPPqk6dOrrrrruK9DpGjBihzp07a/Xq1erZ\ns6eOHDmiXr16yWazqWLFipo0aZIkaeTIkRo9erQ6deokwzA0cOBA1alTRw8++KC6deumyMhIlS9f\nXvXq1dOePXs8sxPnExoaqtmzZ2vKlCnq1KmTZxfaQw89pDvvvFOS9K9//UujR4/W/Pnzdf311+v6\n668/b3933HGH1q5dqxtuuEGSGXimTZumyZMnKzMzU4ZhaPLkybriiivO2UfPnj31n//8R61bt5ZU\ntPeqOD377LMaP368OnXqpKysLDVu3FgPPPCAQkJCvK6jKJ+hWrVq6cknn9S9996rqKgoz7h540I/\nq5JUs2ZNDR8+XMeOHdPVV1/tOST4QsahZcuWevnll5WVlaVu3brl287tt9+u/v37a/r06UV+Xddc\nc43GjBmjIUOGyDAMOZ1OzZw5U1FRUXr44Yf17LPPav78+Z6F9Q0bNiwwYISEhOg///mPxo0bp+nT\npysnJ0ePPPKIbrnllnzPGTVqlIYNG6b27durQoUKxXJ0IgLPZlzMzm/gMrVmzRrt3bu3yIEFAOBb\n7BICziExMVGdOnUKdBkAgNOYYQEAAJbHDAsAALA8AgsAALC8S+YooYSE5Ivuo1SpSJ08mVYM1Vwe\nGI88jEV+jEd+jEcexiI/xiNPcYxFXFxMgfcF1QyL0+n9yZwuZ4xHHsYiP8YjP8YjD2ORH+ORx9dj\nEVSBBQAAXJoILAAAwPIILAAAwPIILAAAwPIILAAAwPIILAAAwPIILAAAwPIumRPHWdVPP/2okSOH\n6aqrqslmsykzM1Nt296uHj36XFB/o0YN03PPjVFISMhZ933++ScqUaKEmja99WLLBgDgkuLTwLJ5\n82a9+OKLmjNnTr7bV65cqRkzZsjpdKp79+7q1auXL8vwufr1G+j55ydKklwul/r27a527TooJqbg\nM/YVJLefc7njDn49GAAQnHwWWN544w0tWbJEERER+W7PysrSxIkTtWDBAkVEROiuu+5SixYtFBcX\n56tS/CotLU12u11PPPGwKlaspOTkZE2ZMlUvvTRJ+/fvk9vt1j/+8ZDq1WugNWtWa/bsNyRJNWrU\n0pNPDlOvXl307rsLtH79Gs2d+7acTqcqVqyk5557XrNnv6EyZcqoa9cemj7939qyZZMkqU2b29Wr\n110aP360QkJCdPjwIR0/fkzDh49WrVq1AzkcAAAUC58FlipVqmj69Ol66qmn8t3+xx9/qEqVKoqN\njZUk1a9fXz/++KPat29/0dusXz/qnLc//LBL99+fdfpyuDZsOPv0wfXr5+j11zMkSXPmhGjq1FBt\n3JhapO1u3PijHn30QdntdjmdTg0e/KTeffcdtWlzu269tYUWLVqg2NiSGjZspE6dStQjjzyot956\nT//+92S98cbbKlWqtGbPfkNHjx719Lls2VL17t1XrVu30xdffKrU1Lxa1qxZrUOHDur1199STk6O\nHnroftWv31CSVKFCRT311LNasmSRliz5SE8+OfyselOyUjR89ZMadttTqmivVqTXCABAIPkssLRr\n10779+8/6/aUlJR8u0qioqKUkpJSaH+lSkUW+jsF9gKWEMfEhCsuLlySFB4ecs7HhYXZFRcXcvrx\nZl/n+xGmXCVLRqpx40b697//ne/2Dz98T/Hx1ykuLkYHD+7Rxo0bNWTIztP3umW3u1SqVEnVrFlV\nkvTUU0MkSQ6HXXFxMRo9eoRee+01ffbZYl199dW6885OiooKU3R0uI4dO6gmTW5RuXIlJEkNGtTT\niROHFB4eogYN4hUXF6MaNa7S779vP+dr+G3vFr2/811dE1dNY1uOLfQ1BouivN/BhPHIj/HIw1jk\nx3jk8eVY+H3RbXR0dL7ZgtTU1CKt9SjKL0D+8EPB9yUkmAP58ssF/+pzQoLZdu1q/sm9fj6JiWnK\nzMw669ekXa5sJSamKyEhWeXKVdZtt5XSPffcp8zMDL399v9JCldi4in98cd+lSgRq6lTp6ht2/bK\nyXErISFZ77wzR337/l2lSpXW5Mnj9dFHnyg1NVPh4RmKi6ukzz9fog4duis7O1s//LBRt93WThkZ\nWUpKylBCQrJOnUpXRsbZdUlSWnK2JCk9O71YfgX7chAXF8NYnIHxyI/xyMNY5Md45CmOsThf4PF7\nYKlevbr27NmjxMRERUZG6scff9T999/v7zL8qkuXO/XCC+P06KMPKjU1Rd269ZTdbteQIU/rySef\nkN1uV82atXTttdd7nnPttdfriSceUWxsrCIjI9W4cVMtWDBfktSkSTP9/PNGDRz4d2VlZally9Ze\nrVUJc5izTdsTthfvCwUAwEdshmEYvup8//79GjJkiD744AN98sknSktLU+/evT1HCRmGoe7du6tf\nv36F9lUcCZYkbNqfvE/15lyvzrU667UWb8tus8tmswW6rIDis5Ef45Ef45GHsciP8cjj6xkWnwaW\n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\nbdr4qhQAAHCJ89kMy8aNG9WsWTNJUnx8vLZt2+a5LyIiQpUqVVJ6errS09Nls9l8VQYAALgM+GyG\nJSUlRdHR0Z7rDodD2dnZcjrNTVasWFEdOnRQTk6OBg4c6KsyAADAZcBngSU6Olqpqame62632xNW\nvv32Wx09elQrVqyQJN1///0xcBTQAAAgAElEQVSqV6+ebrjhhgL7K1UqUk6n46LriouLueg+LieM\nRx7GIj/GIz/GIw9jISk1w3OR8cjjy7HwWWCpV6+eVq1apTvuuEObNm1SzZo1PffFxsYqPDxcoaGh\nstlsiomJUVJS0nn7O3ky7aJriouLUUJC8kX3c7lgPPIwFvkxHvkxHnkYC9Ox9BTPZcbDVByfjfMF\nHp8FljZt2mjNmjXq06ePDMPQhAkTNHv2bFWpUkWtWrXS2rVr1atXL9ntdtWrV09NmjTxVSkAAOAS\n57PAYrfbNWbMmHy3Va9e3XN50KBBGjRokK82DwAALiOcOA4AAFgegQUAAFgegQUAAFgegQUAAFge\ngQUAAFgegQUAAFgegQUAAFgegQUAAFgegQUAAFgegQUAAFgegQUAAFgegQUAAFgegQUAAFgegQUA\nAFgegQUAAFgegQUAAFgegQUAAFgegQUAAFgegQUAAFgegQUAAFgegQUAAFgegQUAAFgegQUAAFge\ngQUAAFgegQUAAFgegQUAAFgegQUAAFgegQUAAFgegQUAAFgegQUAAFgegQUAAFgegQUAAFgegQUA\nAFgegQUAAFgegQUAAFgegQUAAFgegQUAAFgegQUAAFgegQUAAFgegQUAAFgegQUAAFgegQUAAFge\ngQUAAFgegQUAAFgegQUAAFgegQUAAFgegQUAAFgegQUAAFgegQUAAFgegQUAAFgegQUAAFgegQUA\nAFgegQUAAFgegQUAAFgegQUAAFgegQUAAFgegQUAAFgegQUAAFgegQUAAFgegQUAAFgegQUAAFge\ngQUAAFgegQUAAFgegQUAAFgegQUAAFgegQUAAFgegQUAAFgegQUAAFgegQUAAFgegQUAAFgegQUA\nAFgegQUAAFgegQUAAFgegQUAAFgegQUAAFgegQUAAFgegQUAAFgegQUAAFgegQUAAFgegQUAAFge\ngQUAAFgegQUAAFgegQUAAFgegQUAAFgegQUAAFgegQUAAFgegQUAAFgegQUAAFgegQUAAFgegQUA\n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\nPf/89WdHAAD4PQgsLdyGDaGaPbvxSplOnVwaP75WvXs3Tp+sXHn9y2wBAPAmAksL9/bb9dcTP/ts\njZ5+uka9ehn2LwEAWA6BpYX7+usqlZcHqWNHFgYDAFhXsL8LgH/s2ROiwsL6BdAIKwAAq2OGpQUy\nRpowoX6DvW+/lXt3WwAArIoZlhbo6NHGf3bCCgDgVkBgaYEa1k956in/1gEAwI0isLRAzl9WrO/S\nxb91AABwowgsLVDD5n9hYf6tAwCAG0VgaYHCwqTbb3cpJsbflQAAcGO4SqgFGjDApX//u1IxMdHs\nUAwAuCUwwwIAACyPwAIAACyPwAIAACyPwAIAwG/UKiRcocGhirZF+7uUFoMP3QIA8BtF2aK1ZeIX\nGnjHvVKVv6tpGZhhAQDgdxjY5X7FRLI+hK8QWAAAgOURWAAAgOURWAAAgOURWAAAgOURWAAAgOUR\nWAAAgOURWAAAgOURWAAAgOURWAAAgOURWAAAgOURWAAAgOURWAAAgOURWAAAgOURWAAAgOURWAAA\ngOURWAAAgOURWAAAgOURWAAAgOURWAAAgOURWAAAgOURWAAAgOURWAAAgOURWAAAgOURWAAAgOUR\nWAAAgOURWAAAgOURWAAAgOURWAAAgOURWAAAgOURWAAAgOURWAAAgOURWAAAgOURWAAAgOURWAAA\ngOURWAAAgOURWAAAgOURWAAAgOURWAAAgOURWAAAgOURWAAAgOURWAAAgOURWAAAgOURWAAAgOUR\nWAAAgOURWAAAgOURWAAAgOURWAAAgOURWAAAgOURWAAAgOURWAAAgOURWAAAgOURWAAAgOURWAAA\ngOURWAAAgOURWAAAgOV5LbC4XC5lZ2fLbrcrIyNDxcXFHuObNm1SUlKSUlNTVVBQ4K0yAABAAAj1\n1hNv375dNTU12rhxow4dOqS33npL77zzjiTp559/Vl5enj766CM5HA6lp6dryJAhstls3ioHAADc\nwrw2w3LgwAENHTpUkjRgwAAdOXLEPVZUVKT4+HjZbDZFR0crNjZWx48f91YpAADgFue1wFJRUaGo\nqCj37ZCQEDmdTvdYdHS0eywyMlIVFRXeKgUAANzivHZKKCoqSpWVle7bLpdLoaGhVx2rrKz0CDBX\n0759a4WGhtx0XTExTR+npaEfjeiFJ/rhiX40ohee6Ecjb/bCa4ElISFBBQUFGjNmjA4dOqS+ffu6\nx+Li4rR06VI5HA7V1NTo1KlTHuNXc+FC1U3XFBMTrZ9/Lr/p5wkU9KMRvfBEPzzRj0b0whP9aNQc\nvWgq8HgtsIwaNUq7du1SWlqajDHKzc3VmjVrFBsbq8TERGVkZCg9PV3GGGVlZSk8PNxbpQAAgFtc\nkDHG+LuIG9EcCZYk7Il+NKIXnuiHJ/rRiF54oh+NvD3DwsJxAADA8ggsAADA8ggsAADA8ggsAADA\n8ggsAADA8ggsAADA8ggsAADA8ggsAADA8ggsAADA8m6ZlW4BAEDLxQwLAACwPAILAACwPAILAACw\nPAILAACwPAILAACwPAILAACwvIAOLJcvX9asWbOUnp6uZ555RufPn7/iMQsXLpTdbldycrI2bdrk\nhyq9y+VyKTs7W3a7XRkZGSouLvYY37Rpk5KSkpSamqqCggI/Vek71+vHBx98oJSUFKWkpOjtt9/2\nU5W+cb1eNDxm+vTpWr9+vR8q9K3r9WPHjh1KTU1VamqqFixYoEBfEeJ6/XjvvfeUlJSk5ORkffnl\nl36q0rcOHz6sjIyMK+7/+uuvlZycLLvdHpDvI9dyrX5s3bpVKSkpSktLU3Z2tlwuV/Mc0ASw999/\n3yxbtswYY8zWrVvN66+/7jG+Z88eM2PGDGOMMQ6Hw4wcOdKUlZX5vE5v+uKLL8y8efOMMcYUFhaa\n5557zj1WWlpqxo0bZxwOh7l06ZL760DWVD9+/PFHM3HiRON0Ok1dXZ2x2+3m2LFj/irV65rqRYMl\nS5aYJ5980qxbt87X5flcU/0oLy83Y8eONefOnTPGGLNq1Sr314GqqX5cvHjRPPLII8bhcJiysjLz\n6KOP+qtMn1m1apUZN26cSUlJ8bi/pqbG/d7hcDhMUlKSKS0t9VOVvnOtflRXV5vExERTVVVljDEm\nKyvLbN++vVmOGdAzLAcOHNDQoUMlScOGDdOePXs8xuPj45Wbm+u+XVdXp9DQUJ/W6G2/7sGAAQN0\n5MgR91hRUZHi4+Nls9kUHR2t2NhYHT9+3F+l+kRT/ejatatWr16tkJAQBQcHy+l0Kjw83F+lel1T\nvZCkzz//XEFBQRo2bJg/yvO5pvpRWFiovn37auHChUpPT1enTp3UoUMHf5XqE031IyIiQt26dVN1\ndbWqq6sVFBTkrzJ9JjY2VsuXL7/i/lOnTik2NlZt27aVzWbTwIEDtX//fj9U6FvX6ofNZtOGDRsU\nEREhSc36Ohow7875+flau3atx30dO3ZUdHS0JCkyMlLl5eUe4+Hh4QoPD1dtba3mz58vu92uyMhI\nn9XsCxUVFYqKinLfDgkJkdPpVGhoqCoqKtz9kep7VFFR4Y8yfaapfoSFhalDhw4yxmjRokXq16+f\n7rjjDj9W611N9eLEiRPaunWrli1bphUrVvixSt9pqh8XLlzQ3r17tXnzZrVu3VpPPfWUBgwY0GJ/\nPyTptttu09ixY1VXV6dnn33WX2X6zGOPPaaSkpIr7m+Jr6PStfsRHBysTp06SZLy8vJUVVWlIUOG\nNMsxAyawNHzu4NdmzpypyspKSVJlZaXatGlzxfddvHhRs2fP1gMPPBCQf3RRUVHuHkj156UbXnD+\nf6yystLjDy8QNdUPSXI4HHrppZcUGRmpV1991R8l+kxTvdi8ebPOnj2rKVOm6MyZMwoLC1P37t0D\neralqX60a9dO9957r2JiYiRJgwYN0rFjxwI6sDTVj507d6q0tFRfffWVJGnatGlKSEhQXFycX2r1\np5b4Ono9LpdLixcv1vfff6/ly5c32wxcQJ8SSkhI0I4dOyTV/4ENHDjQY/zy5cvKzMxUcnKyXnjh\nBX+U6HUJCQnauXOnJOnQoUPq27eveywuLk4HDhyQw+FQeXm5Tp065TEeiJrqhzFGM2bM0N13362c\nnByFhIT4q0yfaKoXL774ovLz85WXl6eJEycqMzMzoMOK1HQ/+vfvrxMnTuj8+fNyOp06fPiw+vTp\n469SfaKpfrRt21atWrWSzWZTeHi4oqOjdenSJX+V6le9e/dWcXGxysrKVFNTo/379ys+Pt7fZflV\ndna2HA6HVq5c6T411BwCZoblaiZNmqR58+Zp0qRJCgsL05IlSyRJixYt0ujRo3Xw4EGdPn1a+fn5\nys/PlyTl5uaqZ8+e/iy7WY0aNUq7du1SWlqajDHKzc3VmjVrFBsbq8TERGVkZCg9PV3GGGVlZQX0\nZzakpvvhcrm0b98+1dTU6JtvvpEkzZkzJ2BffK73u9HSXK8fc+fO1fTp0yVJo0ePDvhwf71+7N69\nW6mpqQoODlZCQkKzTfvfKrZs2aKqqirZ7XbNnz9f06ZNkzFGycnJ6tKli7/L87mGfvTv318ffvih\nBg0apClTpkiSJk+erFGjRt30MditGQAAWF5AnxICAACBgcACAAAsj8ACAAAsj8ACAAAsj8ACAAAs\nj8AC4Hd57bXXNGHCBI0ZM0b9+/fXhAkTNGHCBA0fPvyqS3bfjJKSEo0YMeI3fc+IESOuuhJnRkaG\n9u7d21ylAfCRgF6HBYD3NKwEXFJSosmTJ+vTTz+VpGYPKwAgEVgAeEFRUZHS0tJ09uxZJSUladas\nWfr444/1ySefqKysTMOHD9fkyZOVnZ2tn376SUFBQZo7d64efvhh7dmzR4sXL5ZUv6Jqw4KPly9f\nVlZWlk6ePKk2bdpoxYoVat++vQoKCrR06VK5XC717NlTOTk57r1MJKmmpkYvv/yyjhw5ou7du+vC\nhQt+6QmAm0NgAdDszp07pw0bNqiiokIjRozQ1KlTJUlnz57Vtm3bFBoaqqysLCUnJysxMVGlpaVK\nT0/X5s2btXLlSi1YsEBxcXF69913dfToUfXq1Uvnz5/X1KlTFRcXp9mzZ2vbtm0aPXq0srOztX79\nevXo0UOrV69WTk6Oli1b5q4lLy9PkvTZZ5/phx9+0BNPPOGXngC4OQQWAM1u6NChstls6tChg9q3\nb6+LFy9Kkvr16+feQG/37t367rvv3OHC6XTq9OnTSkxM1MyZMzVy5EglJiZqyJAhKikpUefOnd2b\n6/Xp00cXLlxQUVGR4uLi1KNHD0mS3W7XqlWrPGrZt2+f7Ha7JKlXr14Bu9UCEOgILACa3a93wA4K\nClLDDiCtWrVy3+9yubR27Vq1a9dOklRaWqqOHTvqnnvu0fDhw1VQUKDFixerqKhI48ePv+pzulwu\nj+MaY+R0Oj3u+/Xx/782ALcOrhIC4BeDBw/WunXrJEnffvutxo8fr+rqaqWkpKiyslKZmZnKzMzU\n0aNHr/kc9913nw4fPuy+Gmjjxo168MEHPR7z0EMPacuWLXK5XDpz5owOHjzovR8KgNfwXw0AfvHK\nK68oOztb48ePl1S/i3pUVJTmzJmj+fPnKzQ0VK1bt9Ybb7xxzefo1KmTcnJyNHPmTNXW1qpbt256\n8803PR6Tnp6ukydP6vHHH1f37t0DfpdlIFCxWzMAALA8TgkBAADLI7AAAADLI7AAAADLI7AAAADL\nI7AAAADLI7AAAADLI7AAAADLI7AAAADL+x/r4ku7w32FYQAAAABJRU5ErkJggg==\n",
+ "text/plain": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "report_clf(\n",
+ " y_train,\n",
+ " xgb_wt_y_pred,\n",
+ " xgb_wt_cls_1_proba,\n",
+ " title=\"for best threshold\",\n",
+ " cmap=\"Greens\",\n",
+ ")\n",
+ "plot_pr_vs_th(\n",
+ " y_train, xgb_wt_cls_1_proba, show=True, tag=\" for best threshold\"\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "\n",
+ "\n",
+ "1) Compare to weighted model using a subset of features does improve a small bit of recall for positive class from 0.89 to 0.9 and also overall recall from 0.7 to 0.71.\n",
+ "\n",
+ "2) Feature Selection is important techniques for improving classification performance. Since decision based models are robust to features, for this case, we don't see much improvement in performance for feature selection.If we had differnt models say logistic regression, we would see a much bigger improvement.\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "\n",
+ "# Generalization and Prediction \n",
+ "\n",
+ "Now we have trained our model and we are ready to do inference. Note that in a real application. Once the model is trained , we will export it and deploy on the production machine. But for the purpose of this notebook, we will run it on the hold out data. Note that we didn't even use the held out data for cross validation since doing that would bias our model. So running it on the hold out dataset, will truly tell us generalization of the model.\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "###### prepare test data using ML pipeline\n",
+ "\n",
+ "Lets now run the same pipeline we created before to prepare our test data.\n",
+ "\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 37,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "\n",
+ "\n",
+ "Shape of the transformed data. Note that increased in the number of columns due to one hot encoding\n",
+ "\n",
+ "\n",
+ "Original data shape (num_rows, num_cols) == \n",
+ "(453, 17)\n",
+ "\n",
+ "Transformed data shape (num_rows, num_cols) == \n",
+ "(453, 51)\n",
+ "\n",
+ "\n",
+ " Sample of transformed inputs\n",
+ " [[-0.6734285 -0.4727389 0.12702873 ..., 0. 0. 1. ]\n",
+ " [-1.23973489 1.14925852 -0.35693557 ..., 0. 0. 1. ]\n",
+ " [ 3.57386941 0.39066179 -0.96189094 ..., 0. 0. 0. ]\n",
+ " ..., \n",
+ " [ 1.11987506 -0.37220594 1.45793055 ..., 0. 1. 0. ]\n",
+ " [-0.8621973 -0.26181681 -0.96189094 ..., 0. 0. 1. ]\n",
+ " [ 0.36479988 -0.57852848 -0.84089986 ..., 0. 0. 1. ]] \n",
+ "\n"
+ ]
+ }
+ ],
+ "source": [
+ "X_gen_test = X_pipeline.transform(data_raw_test)\n",
+ "print(\n",
+ " \"\\n\\nShape of the transformed data. Note that increased in the number of columns due to one hot encoding\\n\"\n",
+ ")\n",
+ "print(\"\\nOriginal data shape (num_rows, num_cols) == \")\n",
+ "print(data_raw_test.shape)\n",
+ "print(\"\\nTransformed data shape (num_rows, num_cols) == \")\n",
+ "print(X_gen_test.shape)\n",
+ "print(\"\\n\\n Sample of transformed inputs\\n\", X, \"\\n\")"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 38,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "\n",
+ "Sample of original output = ['no' 'no' 'no' 'no' 'no' 'yes' 'no' 'no' 'no' 'yes' 'no' 'no' 'no' 'no'\n",
+ " 'no' 'no' 'no' 'no' 'no' 'no'] \n",
+ "\n",
+ "\n",
+ "Sample of transformed output = [0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0] \n",
+ "\n"
+ ]
+ },
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ "/Users/singhal/anaconda3/lib/python3.6/site-packages/sklearn/preprocessing/label.py:128: DataConversionWarning: A column-vector y was passed when a 1d array was expected. Please change the shape of y to (n_samples, ), for example using ravel().\n",
+ " y = column_or_1d(y, warn=True)\n"
+ ]
+ }
+ ],
+ "source": [
+ "y_gen_test = y_pipeline.transform(data_raw_test)\n",
+ "\n",
+ "\n",
+ "print(\n",
+ " \"\\nSample of original output = \",\n",
+ " data_raw_test[\"y\"].as_matrix().reshape(-1)[:20],\n",
+ " \"\\n\",\n",
+ ")\n",
+ "print(\"\\nSample of transformed output = \", y_gen_test[:20], \"\\n\")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "### Run the best model for prediction\n",
+ "\n",
+ "1) Train on whole training set with best weight and best threshold.\n",
+ "\n",
+ "2) test on held out test set.\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 39,
+ "metadata": {
+ "collapsed": true
+ },
+ "outputs": [],
+ "source": [
+ "best_threshold = 0.008\n",
+ "select_txf3 = SelectFromModel(\n",
+ " xgb_model_best_sofar, threshold=best_threshold, prefit=True\n",
+ ")\n",
+ "\n",
+ "select_X_train = select_txf3.transform(X_train)\n",
+ "\n",
+ "xgb_model_gen = create_xgb_clf({\"scale_pos_weight\": best_weight})\n",
+ "\n",
+ "\n",
+ "# get the weights of w of size y\n",
+ "y_wts = create_xgb_weights(best_weight, X, y)\n",
+ "\n",
+ "xgb_model_gen.fit(select_X_train, y_train, sample_weight=y_wts)\n",
+ "\n",
+ "select_X_test = select_txf3.transform(X_gen_test)\n",
+ "\n",
+ "y_test_proba = xgb_model_gen.predict_proba(select_X_test)\n",
+ "y_test_pred = xgb_model_gen.predict(select_X_test)\n",
+ "\n",
+ "\n",
+ "y_test_cls_1_proba = y_test_proba[:, 1]\n",
+ "y_test_cls_1_pred = y_test_pred"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 40,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "image/png": "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\nt29/wXE3btyo++67Tw6HQ5LUt29fzZs3TxkZGTnOez4NGzbM/jSqbt26Wr9+vSTpyy+/1A8//KBV\nq1ZJOnst/+6bb75Rx44d5e/vL39/f3Xq1En79+/Pd77CdODAAf32228aNWpU9nMZGRnau3evbrnl\nFs2cOVN9+/bVbbfdpgEDBuiqq66Sy+XK93lsNpuCgoJkt9s1f/58ffnll/rggw/066+/yu12Kz09\nPcd/Rxc77tynsQAAFEfnlqf9+OOPGjhwoG6++WZVqFAh+/UL/Z7NyMiQj49PvudYhTknk6QuXbro\n/fff1913363Vq1erW7dukvI2F/q7TZs2qX379tnL9e677z5NnjxZR48elSQ1adLkgu+96qqrsj/Y\nrFOnjt57773sHElJSdqyZYuksx+Q/fX6SmfnZG3atMn+cDM6Ovq8+xldKl9hSk5O1s6dO/XSSy9l\nb/uQmpqqvXv3ql+/fsrKylLXrl3VvHlztWvXTg0bNizQec7NySRp2rRp+uqrrzR37tzsjq2UlJRc\n78nrcYA3o2gEFIK/71l0MS1atND999+vYcOGad26dbk6iho2bKiDBw8qOTk5x2snTpzQuHHjNGvW\nLNlsthyf1GRmZuYY41zRRDo7QencubO6du2qpKQk3XTTTUpOTpbb7dby5cuzf/klJCQoICDgotkt\ny5LNZsvx+K8TtL+e9+/+2mL91/yWZWnmzJmqWbOmpLNL6P56jvPx8fEpUL6LXbP8sixL5cqVy3Hf\n4+PjVaZMGQUEBGj9+vXaunWrvv32W/Xr10+TJ09Ws2bN8n2eH374QbVr11ZycrI6d+6stm3bqkmT\nJoqOjtb69etzfWKX1+MAACiu6tevrzFjxmj06NGqW7euqlatqsaNG2vBggWyLEt2+/8WU1iWpW3b\ntmnIkCGqVauWXC6XDh8+nKN7yOl06pFHHtGkSZNydALn5fj8zMnatWunqVOn6sCBA9q2bVv2F3oU\nZC50vmKW2+3OnvdcbE7m5+eX/ee/z8meeuoptWzZUpKUkpIip9N53vOcc7E52YXyXeqa5VdWVpak\ns5ton+v+SkhIUGBgoBwOh9auXaudO3fq22+/1WOPPaZBgwape/fu+T7PuTmZ2+1Wjx491KBBA7Vo\n0UIdOnTQrl27cs218noc4O1YngYY8MADDyg4OFizZs3K9VrlypXVqVMnPfXUU9ktv8nJyRo/frzK\n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\niU4AAAAASUVORK5CYII=\n",
+ "text/plain": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "image/png": "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\nPBDdu3cX9+7dE3PnzhW7d+8WQgixfft28f3334sTJ04IPz8/IYQQt2/fFkFBQX//iyaqIvasqVxZ\nWVlwc3MDABQVFaFr166YOXOm9v0nvdkTJ04gLS1N28ssLi5G586dcebMGXTv3h1NmjQBALi4uOD4\n8eOl9nHq1CmMGTMGSqUSTZs2xa5du0q9n5+fj4sXLyI4OFi77uHDh7h//z5OnjyJlStXAgBcXV0R\nEhJS5hhOnTqFjz/+GMDjcerY2NhS7/v6+uL48eP48ssvcfXqVRQXF6OgoABvvvkmFi5ciEOHDmHg\nwIEYMGAAHjx4gOvXr8PX1xcODg6YPXt29b9UomfEsKZyPRmzLk/dunUBABqNBkOHDtWGZX5+PjQa\nDY4dOwbxp7sZPO2ugWq1GgqFQruclpaGl156SbssSRLq1KlTqo7bt2+jYcOGAKBtX6FQQKksewrm\nr+1fu3YNVlZW2uWlS5ciPT0db7/9NgYPHoyjR49CCIG33noL3bt3x4EDB/D1118jMTERERER2LVr\nF44cOYKkpCSMGDECu3btQv369cv9joh0hScY6W/r3bs39u3bh3v37kEIgfDwcGzYsAGvv/46zp49\nizt37kCSJOzevbvMZ3v27Indu3dDCIF79+7hnXfeQVFREVQqFTQaDSwtLdGuXTttWB85cgTjx48H\nAPTr1w/x8fEAgL1796KwsLBM+3Z2dtre+rVr1+Dn51cqvI8cOQJfX18MHToU169f19YaGBiICxcu\nwMvLC9OnT8elS5eQkJCAoKAgODo6IiQkBGZmZrh165bOv0+ip2HPmv62Tp06YerUqXj33XchSRJe\neeUV+Pv7o27duggJCcF7772HevXqoUOHDmU+O27cOERERMDV1RUAEBoaCgsLC/Tv3x8LFizAsmXL\nsGLFCoSHh+OLL76AiYkJVq1aBYVCgbCwMAQFBSE2Nha2trYwNzcv0/60adMQEhICV1dXqNVqLF++\nvFRYT5w4EbNnz4apqSlefPFF2NraIiMjA5MmTcL8+fOxdu1amJiYIDw8HK+88gr27t2L4cOHo27d\nunB1deUUQNIb3nWPiEgGOAxCRCQDDGsiIhlgWBMRyQDDmohIBhjWREQywLAmIpIBhjURkQz8L1e0\nSxHee2MHAAAAAElFTkSuQmCC\n",
+ "text/plain": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "\n",
+ "\n",
+ " Classification Report for held out Test Data \n",
+ "\n",
+ "\n",
+ " precision recall f1-score support\n",
+ "\n",
+ " 0 0.97 0.67 0.79 402\n",
+ " 1 0.24 0.84 0.38 51\n",
+ "\n",
+ "avg / total 0.89 0.69 0.74 453\n",
+ "\n"
+ ]
+ },
+ {
+ "data": {
+ "image/png": "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\nfPFFtJrqiNr6o3379po/f77cbrdcLpeCwaCSkpKi1dRGV1tfSNJbb70lwzB05plnRqN5jqutPz75\n5BNlZWXp/vvvV35+vtq0aaNWrVpFq6mOqK0/UlJS1LFjR1VUVKiiokKGYUSrmY7JzMzUww8/fNDt\n69evV2Zmppo3by6fz6eTTjpJH3/8cRRa6Kyf6w+fz6fnn39eKSkpktSgn6Nxc3VevHixnnrqqYjb\nWrdurYyMDElSWlqaSkpKIu5PSkpSUlKSqqqqdNNNNykvL09paWmOtdkJpaWlSk9PD3/tdrsVDAbl\n8XhUWloa7h/J7qPS0tJoNNMxtfWH1+tVq1atZFmWHnjgAfXq1UvdunWLYmsbV219sW7dOr3++uua\nPXu2Hn300Si20jm19cfevXu1cuVKvfLKK0pNTdUll1yivn37Juz3hyR16NBB559/vkKhkK6++upo\nNdMxv/zlL7Vly5aDbk/Ez1Hp5/vD5XKpTZs2kqQFCxaovLxc/fv3b5D3jJvAUj3v4McmTZqksrIy\nSVJZWZmaNWt20PP279+vyZMn65RTTonLH7r09PRwH0j2uHT1B85/3ldWVhbxgxePausPSfL7/brl\nlluUlpamO+64IxpNdExtffHKK69o+/bt+vWvf62tW7fK6/WqU6dOcV1tqa0/WrRooRNOOEFt27aV\nJJ188sn6/PPP4zqw1NYf7733nnbs2KF33nlHkjRhwgT169dP2dnZUWlrNCXi5+ihmKapBx98UN98\n840efvjhBqvAxfWQUL9+/bRs2TJJ9g/YSSedFHF/ZWWlxo8fr5EjR+raa6+NRhMbXb9+/fTee+9J\nklavXq2srKzwfdnZ2SoqKpLf71dJSYnWr18fcX88qq0/LMvSxIkTddxxx2n69Olyu93RaqYjauuL\nG2+8UYsXL9aCBQt00UUXafz48XEdVqTa+6NPnz5at26d9uzZo2AwqE8//VQ9evSIVlMdUVt/NG/e\nXMnJyfL5fEpKSlJGRoYOHDgQraZGVffu3bVp0ybt27dPgUBAH3/8sXJycqLdrKgqKCiQ3+/XnDlz\nwkNDDSFuKiw/ZezYsZo2bZrGjh0rr9ermTNnSpIeeOABDR06VKtWrdK3336rxYsXa/HixZKkGTNm\nqEuXLtFsdoMaMmSI3n//fY0ZM0aWZWnGjBl64oknlJmZqUGDBmncuHHKz8+XZVmaMmVKXM/ZkGrv\nD9M09dFHHykQCGj58uWSpKlTp8bth8+hvjcSzaH64/rrr9cVV1whSRo6dGjch/tD9ccHH3yg0aNH\ny+VyqV+/fg1W9m8qlixZovLycuXl5emmm27ShAkTZFmWRo4cqaOOOirazXNcdX/06dNHL7zwgk4+\n+WT9+te/liRddtllGjJkSL3fg9OaAQBAzIvrISEAABAfCCwAACDmEVgAAEDMI7AAAICYR2ABAAAx\nj8AC4IjcddddGj58uM477zz16dNHw4cP1/DhwzVw4MCf3LK7PrZs2aKzzz67Ts85++yzf3InznHj\nxmnlypUN1TQADonrfVgANJ7qnYC3bNmiyy67TK+++qokNXhYAQCJwAKgERQXF2vMmDHavn27RowY\noeuuu04vvfSSXn75Ze3bt08DBw7UZZddpoKCAm3btk2GYej666/XGWecoQ8//FAPPvigJHtH1eoN\nHysrKzVlyhR99dVXatasmR599FG1bNlShYWFmjVrlkzTVJcuXTR9+vTwWSaSFAgEdOutt2rNmjXq\n1KmT9u7dG5U+AVA/BBYADW737t16/vnnVVpaqrPPPluXX365JGn79u3661//Ko/HoylTpmjkyJEa\nNGiQduzYofz8fL3yyiuaM2eO7rzzTmVnZ+tPf/qT1q5dq65du2rPnj26/PLLlZ2drcmTJ+uvf/2r\nhg4dqoKCAj333HPq3Lmz5s+fr+nTp2v27NnhtixYsECS9Oabb2rjxo361a9+FZU+AVA/BBYADS43\nN1c+n0+tWrVSy5YttX//fklSr169wgfoffDBB9qwYUM4XASDQX377bcaNGiQJk2apMGDB2vQoEHq\n37+/tmzZonbt2oUP1+vRo4f27t2r4uJiZWdnq3PnzpKkvLw8zZs3L6ItH330kfLy8iRJXbt2jduj\nFoB4R2AB0OB+fAK2YRiqPgEkOTk5fLtpmnrqqafUokULSdKOHTvUunVrHX/88Ro4cKAKCwv14IMP\nqri4WMOGDfvJ1zRNM+J9LctSMBiMuO3H7/+fbQPQdLBKCEBUnHbaaXr22WclSV9//bWGDRumiooK\njRo1SmVlZRo/frzGjx+vtWvX/uxrnHjiifr000/Dq4EWLlyoU089NeIxp59+upYsWSLTNLV161at\nWrWq8f5RABoNv2oAiIrbbrtNBQUFGjZsmCT7FPX09HRNnTpVN910kzwej1JTU3XPPff87Gu0adNG\n06dP16RJk1RVVaWOHTvq3nvvjXhMfn6+vvrqK5177rnq1KlT3J+yDMQrTmsGAAAxjyEhAAAQ8wgs\nAAAg5hFYAABAzCOwAACAmEdgAQAAMY/AAgAAYh6BBQAAxDwCCwAAiHn/DyECR7sMzS3TAAAAAElF\nTkSuQmCC\n",
+ "text/plain": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "report_clf(\n",
+ " y_gen_test,\n",
+ " y_test_cls_1_pred,\n",
+ " y_test_cls_1_proba,\n",
+ " title=\"for held out Test Data \",\n",
+ " cmap=\"Greens\",\n",
+ ")\n",
+ "plot_pr_vs_th(\n",
+ " y_gen_test, y_test_cls_1_proba, show=True, tag=\" for held out Test Data\"\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "collapsed": true
+ },
+ "source": [
+ "##### Analysis of Model Prediction on held out test data\n",
+ "\n",
+ "For We note that overall, recall is better (0.82) and positive class recall is 0.63.\n",
+ "\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Summary \n",
+ "\n",
+ "Thus, we looked at various ways of improving the model performance.\n",
+ "\n",
+ "First of all, for the class imbalance dataset, accuracy and ROC curve is not useful. So we use Precision vs Recall and Precision Recall vs threshold. Depending on the business use cases, we have to improve recall or precision. In our case, we improved recall metric without sacrificing too much of precision.\n",
+ "\n",
+ "We did three iterations for improving model performance using three different techniques\n",
+ "\n",
+ "1) Use the good parameters to build xgboost model \n",
+ "\n",
+ "2) Use the weighted samples to build a better model\n",
+ "\n",
+ "3) Since we were using almost all the 50 features, we were probably overfitting, so we plotting feature importance \n",
+ " and found the best set of the features to improve the overall recall score\n",
+ " \n",
+ "\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Other methods for improving for class imbalance. \n",
+ "\n",
+ "The performance of classification model for class imbalances can be improve further.\n",
+ "However, In this notebook, we will not explore the oversampling method and SMOTE method but we will give a short\n",
+ "description on what they are\n",
+ "\n",
+ "1) **Oversampling of minority class and Undersampling of majority class.**\n",
+ "\n",
+ "As the name implies, this is just the straightforward procedure and following scikit function can be used.See [References](#references) for examples.\n",
+ "\n",
+ "\n",
+ "2) **SMOTE method.**\n",
+ "\n",
+ "Problem with weighted and Over and Under Sampling methods are that the same data is reused and the better approach \n",
+ "is to generate a new sample based on the two samples. One in the positive class and one in the negative class and use\n",
+ "interpolation and k nearest neighbour to generate new samples between the decision boundry, that is basically the idea of SMOTE method. Scikit learn has method for this. See [References](#references) for SMOTE examples and SMOTE paper.\n",
+ "\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# References \n",
+ "\n",
+ "\n",
+ "* [Scikit Learn](http://scikit-learn.org/stable/)\n",
+ "\n",
+ "* [Pandas](https://pandas.pydata.org/)\n",
+ "\n",
+ "* [Matplotlib](https://matplotlib.org/)\n",
+ "\n",
+ "* [SeaBorn](https://seaborn.pydata.org/)\n",
+ "\n",
+ "* [XGBoost](https://github.com/dmlc/xgboost)\n",
+ "\n",
+ "* [SMOTE Paper](https://www.jair.org/media/953/live-953-2037-jair.pdf)\n",
+ "\n",
+ "* [SMOTE Example](http://contrib.scikit-learn.org/imbalanced-learn/stable/auto_examples/over-sampling/plot_smote.html)\n",
+ "\n",
+ "* [Over Sampling Example](http://contrib.scikit-learn.org/imbalanced-learn/stable/over_sampling.html)\n",
+ "\n",
+ "* [Under Sampling Example](http://contrib.scikit-learn.org/imbalanced-learn/stable/auto_examples/under-sampling/plot_random_under_sampler.html)\n"
+ ]
+ }
+ ],
+ "metadata": {
+ "kernelspec": {
+ "display_name": "Python 3",
+ "language": "python",
+ "name": "python3"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 3
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython3",
+ "version": "3.6.3"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 2
+}
diff --git a/bank_subscription_prediction/requirements.txt b/bank_subscription_prediction/requirements.txt
new file mode 100644
index 00000000..a82ea256
--- /dev/null
+++ b/bank_subscription_prediction/requirements.txt
@@ -0,0 +1,10 @@
+pandas
+numpy
+scikit-learn
+xgboost
+matplotlib
+plotly
+zenml>=0.82.1
+click
+requests
+pyarrow
\ No newline at end of file
diff --git a/bank_subscription_prediction/run.py b/bank_subscription_prediction/run.py
new file mode 100644
index 00000000..80a1a2c5
--- /dev/null
+++ b/bank_subscription_prediction/run.py
@@ -0,0 +1,76 @@
+"""Main module to run the Bank Subscription Prediction pipeline."""
+
+import click
+import logging
+from pipelines.training_pipeline import bank_subscription_training_pipeline
+
+logger = logging.getLogger(__name__)
+
+
+@click.command(
+ help="""
+Bank Subscription Prediction - Predict Term Deposit Subscriptions with ZenML
+
+Run a machine learning pipeline to predict which bank customers are likely to
+subscribe to a term deposit.
+
+Examples:
+
+ \b
+ # Run the training pipeline with default parameters
+ python run.py
+
+ \b
+ # Run with a specific configuration file
+ python run.py --config configs/more_trees.yaml
+
+ \b
+ # Run with debugging enabled
+ python run.py --debug
+"""
+)
+@click.option(
+ "--config",
+ type=str,
+ default="configs/baseline.yaml",
+ help="Path to the configuration YAML file",
+)
+@click.option(
+ "--no-cache",
+ is_flag=True,
+ default=False,
+ help="Disable caching for the pipeline run",
+)
+def main(
+ config: str = "configs/baseline.yaml",
+ no_cache: bool = False,
+):
+ """Run the bank subscription prediction pipeline.
+
+ Args:
+ config: Path to the configuration YAML file
+ no_cache: Disable caching for the pipeline run
+ """
+ pipeline_options = {}
+ if no_cache:
+ pipeline_options["enable_cache"] = False
+
+ logger.info("\n" + "=" * 80)
+ logger.info("Running bank subscription prediction pipeline...")
+
+ # Run the pipeline with the specified config
+ logger.info(f"Using configuration from: {config}")
+ pipeline_options["config_path"] = config
+
+ run = bank_subscription_training_pipeline.with_options(
+ **pipeline_options
+ )()
+
+ logger.info("=" * 80 + "\n")
+ logger.info("\n" + "=" * 80)
+ logger.info(f"Pipeline completed successfully! Run ID: {run.id}")
+ logger.info("=" * 80 + "\n")
+
+
+if __name__ == "__main__":
+ main()
diff --git a/bank_subscription_prediction/steps/__init__.py b/bank_subscription_prediction/steps/__init__.py
new file mode 100644
index 00000000..0519ecba
--- /dev/null
+++ b/bank_subscription_prediction/steps/__init__.py
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/bank_subscription_prediction/steps/data_cleaner.py b/bank_subscription_prediction/steps/data_cleaner.py
new file mode 100644
index 00000000..fe91ab31
--- /dev/null
+++ b/bank_subscription_prediction/steps/data_cleaner.py
@@ -0,0 +1,27 @@
+import pandas as pd
+from zenml import step
+
+
+@step
+def clean_data_step(df: pd.DataFrame) -> pd.DataFrame:
+ """Cleans the input DataFrame.
+
+ Args:
+ df: Pandas DataFrame to clean.
+
+ Returns:
+ Cleaned Pandas DataFrame.
+ """
+ # Drop rows with missing data
+ data = df.dropna()
+
+ # Convert the 'day' column type to object as 'day' is categorical
+ # Ensure the column exists before trying to modify it
+ if "day" in data.columns:
+ data["day"] = data["day"].astype("object")
+ else:
+ # Handle the case where 'day' column might be missing, perhaps log a warning
+ # For now, we'll proceed without this conversion if the column isn't there
+ pass
+
+ return data
diff --git a/bank_subscription_prediction/steps/data_loader.py b/bank_subscription_prediction/steps/data_loader.py
new file mode 100644
index 00000000..4deecdc6
--- /dev/null
+++ b/bank_subscription_prediction/steps/data_loader.py
@@ -0,0 +1,69 @@
+import pandas as pd
+import os
+import requests
+from zenml import step
+
+# Download the zip file
+import zipfile
+from io import BytesIO
+import logging
+
+# Set up logger
+logger = logging.getLogger(__name__)
+
+
+@step
+def load_data(
+ data_path: str = "https://archive.ics.uci.edu/ml/machine-learning-databases/00222/bank-additional.zip",
+) -> pd.DataFrame:
+ """Loads data from a CSV file or downloads it if a URL is provided.
+
+ Args:
+ data_path: Path to the CSV file or URL to download from.
+
+ Returns:
+ Pandas DataFrame loaded from the CSV.
+ """
+ # Case 1: Input is a URL - download the data
+ if data_path.startswith(("http://", "https://")):
+ logger.info(f"Downloading data from URL: {data_path}")
+ try:
+ response = requests.get(data_path)
+ response.raise_for_status() # Raise an exception for HTTP errors
+
+ # Extract the zip file
+ with zipfile.ZipFile(BytesIO(response.content)) as z:
+ # Find the CSV file (there might be multiple CSVs, we want the one with all data)
+ csv_files = [f for f in z.namelist() if f.endswith(".csv")]
+ if not csv_files:
+ raise Exception("No CSV files found in the zip archive")
+
+ bank_csv = next(
+ (f for f in csv_files if "full" in f), csv_files[0]
+ )
+
+ # Extract the CSV file
+ with z.open(bank_csv) as f:
+ # Read the CSV directly from the zip
+ data = pd.read_csv(f, sep=";")
+ return data
+
+ except Exception as e:
+ raise Exception(
+ f"Failed to download dataset from {data_path}: {str(e)}"
+ )
+
+ # Case 2: Input is a local file that exists
+ elif os.path.exists(data_path):
+ logger.info(f"Loading data from local file: {data_path}")
+ try:
+ data = pd.read_csv(data_path, sep=";")
+ return data
+ except Exception as e:
+ raise Exception(f"Error loading {data_path}: {str(e)}")
+
+ # Case 3: Neither a valid URL nor an existing file
+ else:
+ raise FileNotFoundError(
+ f"{data_path} is not a valid URL or existing file path"
+ )
diff --git a/bank_subscription_prediction/steps/data_preprocessor.py b/bank_subscription_prediction/steps/data_preprocessor.py
new file mode 100644
index 00000000..eaafb83b
--- /dev/null
+++ b/bank_subscription_prediction/steps/data_preprocessor.py
@@ -0,0 +1,56 @@
+import pandas as pd
+from zenml import step
+from typing import List
+import logging
+
+# Set up logger
+logger = logging.getLogger(__name__)
+
+
+@step
+def preprocess_data_step(df: pd.DataFrame) -> pd.DataFrame:
+ """Preprocesses the data for model training.
+
+ Args:
+ df: Cleaned Pandas DataFrame.
+
+ Returns:
+ Preprocessed Pandas DataFrame.
+ """
+ data_processed = df.copy()
+
+ # Drop the 'duration' column as it's not known before a call
+ if "duration" in data_processed.columns:
+ data_processed = data_processed.drop("duration", axis=1)
+
+ # Identify categorical columns (excluding the target 'y')
+ categorical_cols: List[str] = data_processed.select_dtypes(
+ include=["object"]
+ ).columns.tolist()
+ if "y" in categorical_cols:
+ categorical_cols.remove(
+ "y"
+ ) # Exclude target from dummification for now
+
+ # Convert categorical variables to dummy variables
+ # The notebook uses pd.get_dummies which handles 'unknown' as a category
+ if categorical_cols:
+ data_processed = pd.get_dummies(
+ data_processed, columns=categorical_cols, drop_first=False
+ )
+
+ # Convert target variable 'y' to numeric (1 for 'yes', 0 for 'no')
+ if "y" in data_processed.columns:
+ data_processed["y"] = data_processed["y"].map({"yes": 1, "no": 0})
+ # Ensure it's integer type after mapping if there were no NaNs introduced by unmapped values
+ if not data_processed["y"].isnull().any():
+ data_processed["y"] = data_processed["y"].astype(int)
+ else:
+ # Handle cases where 'y' might have values other than 'yes' or 'no'
+ # For now, we'll let them be NaNs, which might need further handling or raise an error
+ # Depending on requirements, one might want to fill NaNs or raise an error here.
+ logger.info(
+ "Warning: 'y' column contains values other than 'yes' or 'no', resulting in NaNs after mapping."
+ )
+
+ return data_processed
diff --git a/bank_subscription_prediction/steps/data_splitter.py b/bank_subscription_prediction/steps/data_splitter.py
new file mode 100644
index 00000000..ae66b414
--- /dev/null
+++ b/bank_subscription_prediction/steps/data_splitter.py
@@ -0,0 +1,55 @@
+import pandas as pd
+from zenml import step
+from sklearn.model_selection import train_test_split
+from typing import Tuple, Annotated
+import logging
+
+# Set up logger
+logger = logging.getLogger(__name__)
+
+
+@step
+def split_data_step(
+ df: pd.DataFrame,
+ test_size: float = 0.2,
+ random_state: int = 42,
+ stratify_col: str = "y", # Stratify by target variable by default
+) -> Tuple[
+ Annotated[pd.DataFrame, "X_train"],
+ Annotated[pd.DataFrame, "X_test"],
+ Annotated[pd.Series, "y_train"],
+ Annotated[pd.Series, "y_test"],
+]:
+ """Splits the data into training and testing sets.
+
+ Args:
+ df: Preprocessed Pandas DataFrame with features and target.
+ test_size: Proportion of the dataset to include in the test split.
+ random_state: Controls the shuffling applied to the data before splitting.
+ stratify_col: Column to use for stratified splitting. Defaults to 'y'.
+
+ Returns:
+ A tuple containing X_train, X_test, y_train, y_test.
+ """
+ if "y" not in df.columns:
+ raise ValueError("Target column 'y' not found in DataFrame.")
+
+ X = df.drop("y", axis=1)
+ y = df["y"]
+
+ stratify_data = None
+ if stratify_col and stratify_col in df.columns:
+ stratify_data = df[stratify_col]
+ elif stratify_col:
+ logger.info(
+ f"Warning: Stratification column '{stratify_col}' not found. Proceeding without stratification."
+ )
+
+ X_train, X_test, y_train, y_test = train_test_split(
+ X,
+ y,
+ test_size=test_size,
+ random_state=random_state,
+ stratify=stratify_data,
+ )
+ return X_train, X_test, y_train, y_test
diff --git a/bank_subscription_prediction/steps/model_evaluator.py b/bank_subscription_prediction/steps/model_evaluator.py
new file mode 100644
index 00000000..6583610c
--- /dev/null
+++ b/bank_subscription_prediction/steps/model_evaluator.py
@@ -0,0 +1,396 @@
+import pandas as pd
+import xgboost as xgb
+from sklearn.feature_selection import SelectFromModel
+from sklearn.metrics import (
+ accuracy_score,
+ classification_report,
+ confusion_matrix,
+ roc_curve,
+ precision_recall_curve,
+ auc,
+ roc_auc_score,
+)
+import matplotlib.pyplot as plt
+import plotly.express as px
+import plotly.graph_objects as go
+from plotly.subplots import make_subplots
+import numpy as np
+import json
+from typing import Dict, Any, List, Tuple
+from typing_extensions import Annotated
+
+from zenml import step
+from zenml.materializers.built_in_materializer import BuiltInMaterializer
+from zenml.types import HTMLString
+
+
+def generate_evaluation_html(
+ y_test: pd.Series,
+ y_pred: np.ndarray,
+ y_pred_proba: np.ndarray,
+ feature_names: List[str],
+ feature_importance: np.ndarray,
+ metrics: Dict[str, float],
+) -> str:
+ """Generate HTML visualization of model evaluation results.
+
+ Args:
+ y_test: True labels
+ y_pred: Predicted labels
+ y_pred_proba: Predicted probabilities
+ feature_names: Names of selected features
+ feature_importance: Importance scores for features
+ metrics: Dictionary of evaluation metrics
+
+ Returns:
+ HTML string with visualizations
+ """
+ # Create confusion matrix plot
+ cm = confusion_matrix(y_test, y_pred)
+ cm_fig = px.imshow(
+ cm,
+ text_auto=True,
+ labels=dict(x="Predicted", y="Actual"),
+ x=["No Subscription", "Subscription"],
+ y=["No Subscription", "Subscription"],
+ color_continuous_scale="Blues",
+ title="Confusion Matrix",
+ )
+ cm_fig.update_layout(width=600, height=500)
+ cm_html = cm_fig.to_html(full_html=False, include_plotlyjs="cdn")
+
+ # Create ROC curve
+ fpr, tpr, _ = roc_curve(y_test, y_pred_proba)
+ roc_fig = go.Figure()
+ roc_fig.add_trace(
+ go.Scatter(
+ x=fpr,
+ y=tpr,
+ mode="lines",
+ name=f"ROC (AUC = {metrics['roc_auc']:.3f})",
+ )
+ )
+ roc_fig.add_trace(
+ go.Scatter(
+ x=[0, 1],
+ y=[0, 1],
+ mode="lines",
+ name="Random",
+ line=dict(dash="dash", color="gray"),
+ )
+ )
+ roc_fig.update_layout(
+ title="ROC Curve",
+ xaxis_title="False Positive Rate",
+ yaxis_title="True Positive Rate",
+ width=600,
+ height=500,
+ template="plotly_white",
+ )
+ roc_html = roc_fig.to_html(full_html=False, include_plotlyjs="cdn")
+
+ # Create Precision-Recall curve
+ precision, recall, _ = precision_recall_curve(y_test, y_pred_proba)
+ pr_fig = go.Figure()
+ pr_fig.add_trace(
+ go.Scatter(
+ x=recall,
+ y=precision,
+ mode="lines",
+ name=f"PR (AUC = {metrics['pr_auc']:.3f})",
+ )
+ )
+ pr_fig.update_layout(
+ title="Precision-Recall Curve",
+ xaxis_title="Recall",
+ yaxis_title="Precision",
+ width=600,
+ height=500,
+ template="plotly_white",
+ )
+ pr_html = pr_fig.to_html(full_html=False, include_plotlyjs="cdn")
+
+ # Create feature importance plot
+ indices = np.argsort(feature_importance)[::-1]
+ features_sorted = [feature_names[i] for i in indices]
+ importance_sorted = feature_importance[indices]
+
+ # Only show top 15 features for clarity
+ if len(features_sorted) > 15:
+ features_sorted = features_sorted[:15]
+ importance_sorted = importance_sorted[:15]
+
+ fi_fig = px.bar(
+ x=importance_sorted,
+ y=features_sorted,
+ orientation="h",
+ title="Feature Importance",
+ labels={"x": "Importance", "y": "Feature"},
+ color=importance_sorted,
+ color_continuous_scale="Viridis",
+ )
+ fi_fig.update_layout(
+ yaxis=dict(autorange="reversed"),
+ width=700,
+ height=500,
+ template="plotly_white",
+ )
+ fi_html = fi_fig.to_html(full_html=False, include_plotlyjs="cdn")
+
+ # Create prediction distribution plot
+ pred_df = pd.DataFrame({"actual": y_test, "predicted_proba": y_pred_proba})
+
+ dist_fig = px.histogram(
+ pred_df,
+ x="predicted_proba",
+ color="actual",
+ nbins=30,
+ opacity=0.7,
+ barmode="overlay",
+ title="Distribution of Prediction Probabilities",
+ labels={
+ "predicted_proba": "Predicted Probability",
+ "actual": "Actual Subscription",
+ },
+ color_discrete_map={0: "#636EFA", 1: "#EF553B"},
+ )
+ dist_fig.update_layout(width=700, height=500, template="plotly_white")
+ dist_html = dist_fig.to_html(full_html=False, include_plotlyjs="cdn")
+
+ # Combine HTML elements
+ html_parts = []
+ html_parts.append("""
+
+
+
+
+
+
+
+
Bank Subscription Prediction Model Evaluation
+
Evaluation of XGBoost model performance on the test set.
+
+ """)
+
+ # Add metrics cards
+ html_parts.append("""
+
+
Model Performance Metrics
+
+ """)
+
+ # Accuracy card
+ html_parts.append(f"""
+
+
Accuracy
+
{metrics["accuracy"]:.3f}
+
Proportion of correctly classified instances
+
+ """)
+
+ # ROC AUC card
+ html_parts.append(f"""
+
+
ROC AUC
+
{metrics["roc_auc"]:.3f}
+
Area under the ROC curve
+
+ """)
+
+ # PR AUC card
+ html_parts.append(f"""
+
+
PR AUC
+
{metrics["pr_auc"]:.3f}
+
Area under the Precision-Recall curve
+
+ """)
+
+ # Close metrics section
+ html_parts.append("""
+
+
+ """)
+
+ # Add plots in two columns
+ html_parts.append("""
+
+
Visualizations
+
+
+
+ """)
+
+ # Add confusion matrix
+ html_parts.append(f"""
+
Confusion Matrix
+ {cm_html}
+ """)
+
+ # Add ROC curve
+ html_parts.append(f"""
+
+
+
ROC Curve
+ {roc_html}
+
+
+
+
+
Precision-Recall Curve
+ {pr_html}
+ """)
+
+ # Add prediction distribution
+ html_parts.append(f"""
+
+
+
Prediction Distribution
+ {dist_html}
+
+
+
+ """)
+
+ # Add feature importance
+ html_parts.append(f"""
+
Feature Importance
+
+ {fi_html}
+
+ """)
+
+ # Close the HTML document
+ html_parts.append("""
+
+
+
+
+ """)
+
+ # Combine all HTML parts
+ return "".join(html_parts)
+
+
+@step
+def evaluate_model(
+ model: xgb.XGBClassifier,
+ feature_selector: SelectFromModel,
+ X_test: pd.DataFrame,
+ y_test: pd.Series,
+) -> Tuple[
+ Annotated[Dict[str, float], "metrics"],
+ Annotated[HTMLString, "evaluation_visualization"],
+]:
+ """Evaluates the trained model on the test set.
+
+ Args:
+ model: Trained XGBoost model
+ feature_selector: Feature selector used in training
+ X_test: Test features
+ y_test: Test targets
+
+ Returns:
+ metrics: Dictionary of evaluation metrics
+ evaluation_visualization: HTML visualization of evaluation results
+ """
+ # Apply feature selection to test data
+ X_test_selected = feature_selector.transform(X_test)
+
+ # Get predictions
+ y_pred = model.predict(X_test_selected)
+ y_pred_proba = model.predict_proba(X_test_selected)[:, 1]
+
+ # Calculate metrics
+ accuracy = accuracy_score(y_test, y_pred)
+
+ # ROC curve
+ fpr, tpr, _ = roc_curve(y_test, y_pred_proba)
+ roc_auc = auc(fpr, tpr)
+
+ # Precision-Recall curve
+ precision, recall, _ = precision_recall_curve(y_test, y_pred_proba)
+ pr_auc = auc(recall, precision)
+
+ # Feature importance
+ feature_names = X_test.columns[feature_selector.get_support()]
+ importance = model.feature_importances_
+
+ # Store metrics
+ metrics = {
+ "accuracy": accuracy,
+ "roc_auc": roc_auc,
+ "pr_auc": pr_auc,
+ }
+
+ # Generate HTML visualization
+ html_content = generate_evaluation_html(
+ y_test=y_test,
+ y_pred=y_pred,
+ y_pred_proba=y_pred_proba,
+ feature_names=feature_names,
+ feature_importance=importance,
+ metrics=metrics,
+ )
+
+ return metrics, HTMLString(html_content)
diff --git a/bank_subscription_prediction/steps/model_trainer.py b/bank_subscription_prediction/steps/model_trainer.py
new file mode 100644
index 00000000..c8e1215d
--- /dev/null
+++ b/bank_subscription_prediction/steps/model_trainer.py
@@ -0,0 +1,88 @@
+import pandas as pd
+import numpy as np
+from zenml import step
+from typing import Tuple, Annotated
+import xgboost as xgb
+from sklearn.feature_selection import SelectFromModel
+import logging
+
+# Set up logger
+logger = logging.getLogger(__name__)
+
+
+@step
+def train_xgb_model_with_feature_selection(
+ X_train: pd.DataFrame,
+ y_train: pd.Series,
+ n_estimators: int = 100,
+ max_depth: int = 3,
+ learning_rate: float = 0.1,
+ feature_selection_threshold: str = "median", # Can also be specific value
+) -> Tuple[
+ Annotated[xgb.XGBClassifier, "model"],
+ Annotated[SelectFromModel, "feature_selector"],
+]:
+ """Trains an XGBoost classifier with built-in feature selection.
+
+ Args:
+ X_train: Training features.
+ y_train: Training target.
+ n_estimators: Number of trees in the model.
+ max_depth: Maximum depth of each tree.
+ learning_rate: Learning rate for the model.
+ feature_selection_threshold: Threshold strategy or value for feature selection.
+
+ Returns:
+ Tuple containing the trained model and feature selector.
+ """
+ # Check for class imbalance
+ class_counts = y_train.value_counts()
+ class_ratio = min(class_counts) / max(class_counts)
+
+ # Set scale_pos_weight for imbalanced dataset
+ scale_pos_weight = 1.0
+ if (
+ class_ratio < 0.3
+ ): # If minority class is less than 30% of majority class
+ # XGBoost recommends using the ratio of negative to positive instances
+ scale_pos_weight = class_counts[0] / class_counts[1]
+
+ # Initialize and train XGBoost classifier
+ model = xgb.XGBClassifier(
+ n_estimators=n_estimators,
+ max_depth=max_depth,
+ learning_rate=learning_rate,
+ scale_pos_weight=scale_pos_weight,
+ use_label_encoder=False, # Avoid future warning
+ eval_metric="logloss", # Specify eval metric to avoid warning
+ random_state=42,
+ )
+
+ # Train the model on the original features
+ model.fit(X_train, y_train)
+
+ # Use the model for feature selection
+ feature_selector = SelectFromModel(
+ model, threshold=feature_selection_threshold, prefit=True
+ )
+
+ # Transform the training data
+ X_train_selected = feature_selector.transform(X_train)
+
+ # Retrain the model on selected features
+ model = xgb.XGBClassifier(
+ n_estimators=n_estimators,
+ max_depth=max_depth,
+ learning_rate=learning_rate,
+ scale_pos_weight=scale_pos_weight,
+ use_label_encoder=False,
+ eval_metric="logloss",
+ random_state=42,
+ )
+ model.fit(X_train_selected, y_train)
+
+ # Log feature selection info
+ logger.info(f"Original number of features: {X_train.shape[1]}")
+ logger.info(f"Number of features selected: {X_train_selected.shape[1]}")
+
+ return model, feature_selector
diff --git a/bank_subscription_prediction/utils/__init__.py b/bank_subscription_prediction/utils/__init__.py
new file mode 100644
index 00000000..3bebe433
--- /dev/null
+++ b/bank_subscription_prediction/utils/__init__.py
@@ -0,0 +1 @@
+"""Utility functions for the Bank Subscription Prediction project."""
\ No newline at end of file
diff --git a/bank_subscription_prediction/utils/model_utils.py b/bank_subscription_prediction/utils/model_utils.py
new file mode 100644
index 00000000..334b6bfb
--- /dev/null
+++ b/bank_subscription_prediction/utils/model_utils.py
@@ -0,0 +1,51 @@
+"""Utility functions for model operations."""
+
+import pandas as pd
+import numpy as np
+
+
+def calculate_scale_pos_weight(y: pd.Series) -> float:
+ """Calculate the scale_pos_weight parameter for imbalanced classification.
+
+ Args:
+ y: Target variable series (binary: 0/1)
+
+ Returns:
+ The ratio of negative to positive samples
+ """
+ # Count occurrences of each class
+ class_counts = y.value_counts()
+
+ # For binary classification (0/1)
+ if 0 in class_counts and 1 in class_counts:
+ neg_count = class_counts[0]
+ pos_count = class_counts[1]
+ return neg_count / pos_count
+ else:
+ print(
+ "Warning: Could not calculate scale_pos_weight. Using default value 1."
+ )
+ return 1.0
+
+
+def get_feature_importance(model, feature_names):
+ """Get feature importance from a trained XGBoost model.
+
+ Args:
+ model: Trained XGBoost model
+ feature_names: List of feature names
+
+ Returns:
+ DataFrame with feature names and their importance scores
+ """
+ importance = model.feature_importances_
+ indices = np.argsort(importance)[::-1]
+
+ feature_importance_df = pd.DataFrame(
+ {
+ "Feature": [feature_names[i] for i in indices],
+ "Importance": importance[indices],
+ }
+ )
+
+ return feature_importance_df
diff --git a/retail-forecast/configs/inference.yaml b/retail-forecast/configs/inference.yaml
new file mode 100644
index 00000000..1d9156ff
--- /dev/null
+++ b/retail-forecast/configs/inference.yaml
@@ -0,0 +1,37 @@
+# Inference configuration for retail forecasting
+
+# environment configuration
+settings:
+ docker:
+ required_integrations:
+ - pandas
+ - numpy
+ requirements:
+ - matplotlib>=3.5.0
+ - plotly
+ - prophet>=3.5.0
+ - pyarrow
+ - fastparquet
+ - typing_extensions>=4.0.0
+
+# configuration of the Model Control Plane
+model:
+ name: retail_forecast_model
+ version: 0.1.0
+ license: MIT
+ description: A retail forecast model for inference
+ tags: ["retail", "forecasting", "prophet", "inference"]
+
+# Step-specific parameters
+steps:
+ # Data loading parameters
+ load_data:
+ # No specific parameters needed for this step
+
+ # Data preprocessing parameters
+ preprocess_data:
+ test_size: 0.05 # Small test set for visualization only
+
+ # Forecasting parameters
+ generate_forecasts:
+ forecast_periods: 30
\ No newline at end of file
diff --git a/retail-forecast/configs/training.yaml b/retail-forecast/configs/training.yaml
new file mode 100644
index 00000000..9fe4a41f
--- /dev/null
+++ b/retail-forecast/configs/training.yaml
@@ -0,0 +1,44 @@
+# Training configuration for retail forecasting
+
+# environment configuration
+settings:
+ docker:
+ required_integrations:
+ - pandas
+ - numpy
+ requirements:
+ - matplotlib>=3.5.0
+ - plotly
+ - prophet>=3.5.0
+ - pyarrow
+ - fastparquet
+ - typing_extensions>=4.0.0
+
+# configuration of the Model Control Plane
+model:
+ name: retail_forecast_model
+ version: 0.1.0
+ license: MIT
+ description: A retail forecast model with enhanced seasonality
+ tags: ["retail", "forecasting", "prophet", "seasonal"]
+
+# Step-specific parameters
+steps:
+ # Data loading parameters
+ load_data:
+ # No specific parameters needed for this step
+
+ # Data preprocessing parameters
+ preprocess_data:
+ test_size: 0.15
+
+ # Model training parameters
+ train_model:
+ weekly_seasonality: true
+ yearly_seasonality: true
+ daily_seasonality: true
+ seasonality_mode: "additive"
+
+ # Forecasting parameters
+ generate_forecasts:
+ forecast_periods: 60
\ No newline at end of file
diff --git a/retail-forecast/requirements.txt b/retail-forecast/requirements.txt
index ab8b37cc..f66944a1 100644
--- a/retail-forecast/requirements.txt
+++ b/retail-forecast/requirements.txt
@@ -2,7 +2,7 @@ zenml~=0.82.0
numpy>=1.20.0
pandas>=1.3.0
matplotlib>=3.5.0
-prophet>=1.1.0
+prophet>=3.5.0
typing_extensions>=4.0.0
pyarrow
fastparquet
diff --git a/retail-forecast/run.py b/retail-forecast/run.py
index a21c8def..9664f922 100644
--- a/retail-forecast/run.py
+++ b/retail-forecast/run.py
@@ -2,7 +2,6 @@
import logging
from pipelines.inference_pipeline import inference_pipeline
from pipelines.training_pipeline import training_pipeline
-from zenml import Model
from logging_config import configure_logging
logger = logging.getLogger(__name__)
@@ -17,18 +16,24 @@
Examples:
\b
- # Run the training pipeline with default parameters
+ # Run the training pipeline with default training config
python run.py
\b
- # Run with custom parameters
- python run.py --forecast-periods 60 --test-size 0.3
+ # Run with a specific training configuration file
+ python run.py --config configs/training.yaml
\b
- # Run the inference pipeline
+ # Run the inference pipeline with default inference config
python run.py --inference
"""
)
+@click.option(
+ "--config",
+ type=str,
+ default=None,
+ help="Path to the configuration YAML file",
+)
@click.option(
"--no-cache",
is_flag=True,
@@ -54,6 +59,7 @@
help="Enable debug logging",
)
def main(
+ config: str = None,
no_cache: bool = False,
inference: bool = False,
log_file: str = None,
@@ -62,6 +68,7 @@ def main(
"""Run a simplified retail forecasting pipeline with ZenML.
Args:
+ config: Path to the configuration YAML file
no_cache: Disable caching for the pipeline run
inference: Run the inference pipeline instead of the training pipeline
log_file: Path to log file
@@ -74,32 +81,29 @@ def main(
pipeline_options = {}
if no_cache:
pipeline_options["enable_cache"] = False
-
+
+ # Select default config based on pipeline type if not specified
+ if config is None:
+ config = "configs/inference.yaml" if inference else "configs/training.yaml"
+
+ # Set config path
+ pipeline_options["config_path"] = config
+
logger.info("\n" + "=" * 80)
+ logger.info(f"Using configuration from: {config}")
+
# Run the appropriate pipeline
if inference:
logger.info("Running retail forecasting inference pipeline...")
-
- # Create a new version of the model
- model = Model(
- name="retail_forecast_model",
- description="A retail forecast model trained on the sales data",
- version="production",
- )
- inference_pipeline.with_options(model=model, **pipeline_options)()
+ run = inference_pipeline.with_options(**pipeline_options)()
else:
- # Create a new version of the model
- model = Model(
- name="retail_forecast_model",
- description="A retail forecast model trained on the sales data",
- )
-
logger.info("Running retail forecasting training pipeline...")
- training_pipeline.with_options(model=model, **pipeline_options)()
+ run = training_pipeline.with_options(**pipeline_options)()
+
logger.info("=" * 80 + "\n")
logger.info("\n" + "=" * 80)
- logger.info("Pipeline completed successfully!")
+ logger.info(f"Pipeline completed successfully! Run ID: {run.id}")
logger.info("=" * 80 + "\n")